diff --git a/AssignClusters.Rmd b/AssignClusters.Rmd index 95c10a4..8fb5e56 100644 --- a/AssignClusters.Rmd +++ b/AssignClusters.Rmd @@ -138,30 +138,127 @@ rna_expression_filtered <- rna_expression_harmonized[!is.na(rna_expression_harmo ```{r} # filtering the data. we only need geneid and expression for each patients in wide format data_matrix <- as.matrix( rna_expression_filtered[, 2:425]) +``` + +```{r} # Extract entrez_ids and assign to row names rownames(data_matrix) <- rna_expression_filtered[, 427] ``` +```{r} +library(readxl) + +file_path <- "data/jnci_JNCI_14_0249_s05.xls" + +# List available sheets (optional, helpful to confirm what’s there) +excel_sheets(file_path) + +# Read sheet 4 (as you originally intended) +konecny.supplementary.data <- read_excel(file_path, sheet = 4) + +# Extract relevant columns (keep EntrezGeneID + 4 centroid columns) +konecny.centroids.raw <- konecny.supplementary.data[, c(2, 4:7)] + +# Rename for clarity (optional) +colnames(konecny.centroids.raw)[1] <- "EntrezID" + +# Convert EntrezID to character +konecny.centroids.raw$EntrezID <- as.character(konecny.centroids.raw$EntrezID) + +# Average duplicates: one row per Entrez ID +konecny.centroids <- konecny.centroids.raw %>% + group_by(EntrezID) %>% + summarise(across(everything(), mean, na.rm = TRUE)) %>% + as.data.frame() + +# Set rownames and remove EntrezID column +rownames(konecny.centroids) <- konecny.centroids$EntrezID +konecny.centroids <- unique(konecny.centroids) +konecny.centroids$EntrezID <- NULL + +shared_genes <- intersect(rownames(konecny.centroids), rownames(data_matrix)) + +``` + + + +```{r} +get.konecny.subtypes.fixed <- function(expression.matrix, entrez.ids) { + + # Z-score normalize each gene (row) + expression.matrix <- t(scale(t(expression.matrix))) + + # Ensure entrez.ids is character, in case it's being used later + entrez.ids <- as.character(entrez.ids) + + # Identify shared genes + intersecting.entrez.ids <- intersect(rownames(expression.matrix), rownames(konecny.centroids)) + + # Subset both matrices to shared genes + expression.matrix <- expression.matrix[intersecting.entrez.ids, , drop = FALSE] + konecny.centroids <- konecny.centroids[intersecting.entrez.ids, , drop = FALSE] + + # Sanity check + if (!all(rownames(expression.matrix) == rownames(konecny.centroids))) { + stop("There is a mismatch between the Entrez IDs in the reference and input datasets.") + } + + # Coerce both to matrices + konecny.centroids <- as.matrix(konecny.centroids) + expression.matrix <- as.matrix(expression.matrix) + + # Step 1: Find common genes + shared_genes <- intersect(rownames(expression.matrix), rownames(konecny.centroids)) + + # Drop genes with NA or constant rows across either matrix + valid_genes <- which( + complete.cases(konecny.centroids) & + complete.cases(expression.matrix) & + apply(konecny.centroids, 1, sd) > 0 & + apply(expression.matrix, 1, sd) > 0 + ) + + konecny.centroids <- konecny.centroids[valid_genes, , drop = FALSE] + expression.matrix <- expression.matrix[valid_genes, , drop = FALSE] + + # Now run cor() + spearman.cc.vals <- cor(konecny.centroids, expression.matrix, method = "spearman") + + # Each row is a subtype, each column is a sample + # So we want the subtype (row) with the max correlation for each column (sample) + max.idx <- apply(spearman.cc.vals, 2, which.max) + subtypes <- rownames(spearman.cc.vals)[max.idx] + subtypes <- factor(subtypes, levels = rownames(spearman.cc.vals)) + + return(list(Konecny.subtypes = subtypes, spearman.cc.vals = t(spearman.cc.vals))) +} + +``` + When you save the notebook, an HTML file containing the code and output will be saved alongside it (click the *Preview* button or press *Cmd+Shift+K* to preview the HTML file). ```{r} bentink.subtypes <- get.subtypes(data_matrix, rownames(data_matrix), method = "Bentink") bentink.subtypes$Bentink.subtypes -konecny.subtypes <- get.subtypes(data_matrix, rownames(data_matrix), method = "Konecny") +konecny.subtypes <- get.konecny.subtypes.fixed(data_matrix, rownames(data_matrix)) konecny.subtypes$Konecny.subtypes helland.subtypes <- get.subtypes(data_matrix, rownames(data_matrix), method = "Helland") helland.subtypes$Helland.subtypes +verhaak.subtypes <- get.subtypes(data_matrix, rownames(data_matrix), method = "Verhaak") -#conc.subtypes <- get.subtypes(data_matrix, rownames(data_matrix), "consensusOV") + +conc.subtypes <- get.subtypes(data_matrix, rownames(data_matrix), "consensusOV") ``` ```{r} table(bentink.subtypes$Bentink.subtypes) table(helland.subtypes$Helland.subtypes) table(konecny.subtypes$Konecny.subtypes) +table(verhaak.subtypes$Verhaak.subtypes) +table(conc.subtypes$consensusOV.subtypes) ``` ```{r} @@ -186,8 +283,6 @@ hist(row_max, consensus_matrix <- conc.subtypes$rf.probs -# Let's say your matrix is called `consensus_matrix` - # Step 1: Find the name of the column with the max value per row max_col_names <- apply(consensus_matrix, 1, function(row) { colnames(consensus_matrix)[which.max(row)] @@ -206,6 +301,14 @@ max_label_df <- data.frame( The preview shows you a rendered HTML copy of the contents of the editor. Consequently, unlike *Knit*, *Preview* does not run any R code chunks. Instead, the output of the chunk when it was last run in the editor is displayed. ```{r} +write.csv(DataFrame("sample" = rownames(conc.subtypes$rf.probs), + "type" = conc.subtypes$consensusOV.subtypes, + "score" = row_max), + "ConsensusOV_labels.csv", + row.names = FALSE) + +write.csv(DataFrame(conc.subtypes$rf.probs), "ConsensusOV_probs.csv", + row.names = TRUE) ``` diff --git a/Ovarian cancer survival.qmd b/Ovarian cancer survival.qmd new file mode 100644 index 0000000..d9350ba --- /dev/null +++ b/Ovarian cancer survival.qmd @@ -0,0 +1,414 @@ +--- +title: "Ovarian cancer survival" +format: html +editor: visual +--- + +```{r} +library(tidyr) +library(dplyr) +library(survival) +library(ggplot2) +library(ggsurvfit) +library(readr) +library(survminer) +if (!require("BiocManager", quietly = TRUE)) + install.packages("BiocManager") + +BiocManager::install("TCGAbiolinks") +``` + +```{r} +survivalData <- readr::read_tsv("clinical.project-tcga-ov.2025-06-10/clinical.tsv") +subtypingData <- read.csv("subtypes.csv") +``` + +```{r} +#factors of interest: demographic.age_at_index, age at diagnosis, days to birth, demographic.race +``` + +```{r} +# creating "time" and "event" columns and converting to numeric +survivalData <- survivalData |> + mutate( + demographic.days_to_death = as.numeric(demographic.days_to_death), + cases.days_to_lost_to_followup = as.numeric(cases.days_to_lost_to_followup), + time = ifelse( + demographic.vital_status == "Dead", + demographic.days_to_death, + cases.days_to_lost_to_followup + ), + event = ifelse(demographic.vital_status == "Dead", 1, 0) + ) + +#since data on patients lost to followup is very incomplete, temporarily to set a study_cutoff_date as the maximum days_to_death, doesn't take into account early censoring + +max_death <- max(survivalData$demographic.days_to_death, na.rm = TRUE) +survivalData <- survivalData|> + mutate(time = ifelse( + is.na(time), + max_death, + time + )) +``` + +```{r} +summary(survivalData$time) +table(survivalData$event) +``` + +```{r} +# Create a Surv() object: +surv_obj <- Surv(time = survivalData$time, event = survivalData$event) + +# Fit KM curves separately by race: +km_fit <- survfit(surv_obj ~ demographic.race, data = survivalData) + +# Plot: + +ggsurvplot( + km_fit, + data = survivalData, + risk.table = TRUE, + pval = TRUE, + xlab = "Time (days)", + ylab = "Survival probability", + legend.title = "Race", + surv.median.line = "hv" +) + +``` + +```{r} +# Histogram of distribution of patient age +ggplot(survivalData, aes(x = demographic.age_at_index)) + + geom_histogram(binwidth = 5, fill = "skyblue", color = "black") + + labs(x = "Age", y = "Number of patients", title = "Distribution of Patient Age") +``` + +```{r} +# Fit Cox model: + +# Make sure race is a factor, with a reference level: +survivalData$demographic.race <- factor( + survivalData$demographic.race, + levels = c("white", "black or african american", "asian", "american indian or alaska native", "native hawaiian or other pacific islander", "other", "Unknown", "not allowed to collect", "not reported")) + +cox_fit <- coxph( + Surv(time, event) ~ demographic.age_at_index + demographic.race, + data = survivalData) + +summary(cox_fit) +``` + +Hazard ratios (exp(coef)) greater than 1 indicate an increased risk, while hazard ratios less than 1 indicate a decreased risk. + +```{r} +# Test proportional hazards: +ph_test <- cox.zph(cox_fit) +print(ph_test) +plot(ph_test) # Schoenfeld residuals; look for non‐zero slopes +``` + +```{r} +# interaction model between age and race +coxph(Surv(time, event) ~ demographic.age_at_index * demographic.race, data = survivalData) +``` + +```{r} +#Code to extract data from TCGA files + +getwd() +subset_dir <- "TCGA-data_10:10:24_RNAandmiRNA" + +# Find all files ending in .tsv recursively +tsv_files <- list.files( + path = subset_dir, + pattern = "\\.tsv$", + recursive = TRUE, + full.names = TRUE +) + +# Filter to make sure we're only keeping files (not directories or symlinks) +tsv_files <- tsv_files[file.info(tsv_files)$isdir == FALSE] +# Select only files with rna_seq in name +rna_files <- tsv_files[grepl("rna_seq", tsv_files)] +print(length(rna_files)) + +# Loop through each file and extract the gene_id and tpm, which we can use to track all of the genes across all of the individuals + +rna_list <- list() +for (file in rna_files) { + dat <- read.delim(file, header=TRUE, sep="\t", comment.char="#") + dat <- dat[, c("gene_id", "tpm_unstranded")] + + fname <- basename(file) + file_id <- sub("\\..*$", "", fname) # yields "0a3cde41-87f6-49bb-b6fa-0e9e0f5e8102" + + colnames(dat)[2] <- file_id + rna_list[[file_id]] <- dat +} +# This will create a table with gene_id as the first column and each sample in columns 2: +rna_expression_combined <- Reduce(function(x, y) merge(x, y, by = "gene_id", all = TRUE), rna_list) + +# Create a column of cleaned ENSEMBL ids (remove version) +rna_expression_combined$ensembl_gene_id <- sub("\\.\\d+$", "",rna_expression_combined$gene_id) + +mart <- biomaRt::useMart(biomart = "ENSEMBL_MART_ENSEMBL", + dataset = "hsapiens_gene_ensembl", + host = "https://www.ensembl.org") + +genes <- getBM( + filters = "ensembl_gene_id", + attributes = c("ensembl_gene_id", "entrezgene_id", "hgnc_symbol"), + values = rna_expression_combined$ensembl_gene_id, + mart = mart +) + +# Check for duplicated values in the entrez or gene symbol columns +genes %>% + group_by(ensembl_gene_id) %>% + summarise( + n_entrez = n_distinct(entrezgene_id, na.rm = TRUE), + n_symbol = n_distinct(hgnc_symbol, na.rm = TRUE), + .groups = "drop" + ) %>% + filter(n_entrez > 1 | n_symbol > 1) + +bad <- genes %>% + group_by(entrezgene_id) %>% + summarise( + n_entrez = n_distinct(ensembl_gene_id, na.rm = TRUE), + .groups = "drop" + ) %>% + filter(n_entrez > 1) + +# Remove duplicated ENSEMBL --> entrez mappings by retaining the shortest +# entrez id (most likely to be a real gene rather than a LOC) +genes_clean <- genes %>% + # Step 1: Keep shortest entrez ID per ensembl ID + mutate(entrez_length = nchar(as.character(entrezgene_id))) %>% + group_by(ensembl_gene_id) %>% + slice_min(entrez_length, with_ties = FALSE) %>% + ungroup() %>% + select(-entrez_length) %>% + + # Step 2: Remove duplicate entrez IDs if the symbol is blank or NA + group_by(entrezgene_id) %>% + filter(!(n() > 1 & (hgnc_symbol == "" | is.na(hgnc_symbol)))) %>% + ungroup() %>% + + # Step 3: For remaining entrezgene_id duplicates, keep the shortest symbol, or first alphabetically if tied + mutate(symbol_length = nchar(hgnc_symbol)) %>% + group_by(entrezgene_id) %>% + arrange(symbol_length, hgnc_symbol) %>% + slice(1) %>% + ungroup() %>% + select(-symbol_length) + +# Join to add 'name' from lookup table into rna_expression_combined +rna_expression_harmonized <- rna_expression_combined %>% + left_join(genes_clean, by = "ensembl_gene_id") + +# Remove rows where entrez_ids are NA or match the duplicated IDs to remove +rna_expression_filtered <- rna_expression_harmonized[!is.na(rna_expression_harmonized$entrezgene_id), ] + + +library("rjson") +json_file <- "metadata.repository.2025-06-11.json" +json_data <- fromJSON(paste(readLines(json_file), collapse="")) +json_data[[1]][["file_name"]] + +# 2) Extract file_name and case_id for _all_ records: +file_names <- sapply(json_data, `[[`, "file_name") + +case_ids <- sapply(json_data, function(x) { + # If there might be >1 associated_entities, pick the first: + x[["associated_entities"]][[1]][["case_id"]] +}) + +meta <- data.frame( + file_name = file_names, + case_id = case_ids, + stringsAsFactors = FALSE +) +meta$file_id <- sub("\\..*$", "", meta$file_name) + +joined <- subtypingData |> + left_join(meta, + by = c("case_id" = "file_id")) + +final_joined <- survivalData |> + left_join(joined, + by = c("cases.case_id" = "case_id.y")) + +``` + +```{r} +# Survival Analysis +# Create a Surv() object: +surv_obj2 <- Surv(time = final_joined$time, event = final_joined$event) + +# Fit KM curves separately by subtyping mechanism: +km_fit <- survfit(surv_obj2 ~ ConsensusOV, data = final_joined) + +# Plot: +ggsurvplot( + km_fit, + data = final_joined, + risk.table = TRUE, + pval = TRUE, + xlab = "Time (days)", + ylab = "Survival probability", + legend.title = "ConsensusOV", + surv.median.line = "hv" +) +``` + +```{r} +# Fit Cox model: + +cox_fit_consensus <- coxph( + Surv(time, event) ~ ConsensusOV, + data = final_joined) + +summary(cox_fit_consensus) +``` + +Hazard ratios (exp(coef)) greater than 1 indicate an increased risk, while hazard ratios less than 1 indicate a decreased risk. + +```{r} +# Test proportional hazards: +ph_test_consensus <- cox.zph(cox_fit_consensus) +print(ph_test_consensus) +plot(ph_test_consensus) # Schoenfeld residuals; look for non‐zero slopes +``` + +# miRNA survival analysis + +```{r} +## Joining miRNA_expression_combined_normalized dataset and clinical dataset +library("rjson") +#importing the metadata json +mirna_json_file <- "mirna_metadata.repository.2025-06-23.json" +mirna_json_data <- fromJSON(paste(readLines(mirna_json_file), collapse="")) +mirna_json_data[[1]][["file_name"]] + +#importing the mirna clinical data +mirna_clinical <- readr::read_tsv("mirna_clinical.tsv") +#importing expression data +mirna_expression_combined_normalized <- read.csv("mirna_expression_combined_normalized.csv") +old <- names(mirna_expression_combined_normalized) +new <- sub("^X([0-9])", "\\1", old) # remove X only when followed by a digit +names(mirna_expression_combined_normalized) <- new +library(tidyr) +library(dplyr) + +# pivoting mirna_expression_data to long +mirna_expr_long <- mirna_expression_combined_normalized |> + pivot_longer( + cols = -miRNA_ID, + names_to = "file_name", + values_to = "tpm" + ) +head(mirna_expr_long) +#retrieving filename and caseids from metadata + +mirna_metadata_table <- readr::read_tsv("mirna_metadata_table.tsv") +head(mirna_metadata_table) + +library(stringr) + +uuid_pattern <- "^([0-9a-f]{8})\\.([0-9a-f]{4})\\.([0-9a-f]{4})\\.([0-9a-f]{4})\\.([0-9a-f]{12})" + +mirna_expr_long <- mirna_expr_long %>% + mutate(file_name = str_replace( + file_name, + uuid_pattern, + "\\1-\\2-\\3-\\4-\\5" # replace the first 4 dots with dashes + )) +# Join filename name from mirna_long with from metadata: + +expr_with_case <- mirna_expr_long |> + left_join(mirna_metadata_table, + by = c("file_name" = "file_name")) +head(expr_with_case) + +# Join expr_with_case with mirna_clinical by case_id to obtain final mirna survival data + +mirna_clin_expr <- mirna_clinical |> + left_join(expr_with_case, + by = c("cases.case_id" = "case_id"), relationship = "many-to-many") + +# creating "time" and "event" columns and converting to numeric + +mirna_clin_expr <- mirna_clin_expr |> + mutate( + demographic.days_to_death = as.numeric(demographic.days_to_death), + cases.days_to_lost_to_followup = as.numeric(cases.days_to_lost_to_followup), + time = ifelse( + demographic.vital_status == "Dead", + demographic.days_to_death, + cases.days_to_lost_to_followup + ), + event = ifelse(demographic.vital_status == "Dead", 1, 0) + ) +``` + +```{r} +#since data on patients lost to followup is very incomplete, temporarily to set a study_cutoff_date as the maximum days_to_death, doesn't take into account early censoring + +# look more closely at followup.tsv +max_death_clin <- max(mirna_clin_expr$demographic.days_to_death, na.rm = TRUE) +mirna_clin_expr <- mirna_clin_expr|> + mutate(time = ifelse( + is.na(time), + max_death_clin, + time + )) + +# Survival Analysis + +# preliminary step: filter to Hildana's final 10 miRNAs + +hildana_subset <- mirna_clin_expr |> + filter(miRNA_ID==c("hsa-let-7c", "hsa-mir-30d", "hsa-let-7i", "hsa-let-7g", "hsa-mir-21", "hsa-mir-152", "hsa-mir-340", "hsa-mir-99b", "hsa-mir-99a", " +hsa-mir-27a")) +# Create a Surv() object: +surv_obj3 <- Surv(time = hildana_subset$time, event = hildana_subset$event) + +# Fit KM curves separately by subtyping mechanism: +mirna_km_fit <- survfit(surv_obj3 ~ miRNA_ID, data = hildana_subset) + +# Plot: +ggsurvplot( + mirna_km_fit, + data = hildana_subset, + risk.table = TRUE, + pval = TRUE, + xlab = "Time (days)", + ylab = "Survival probability", + legend.title = "miRNA_ID", + surv.median.line = "hv" +) +``` + +```{r} +# KM on all sub types +surv_obj4 <- Surv(time = mirna_clin_expr$time, event = mirna_clin_expr$event) + +mirna_km_fit_all <- survfit(surv_obj4 ~ miRNA_ID, data = mirna_clin_expr) + +# Plot: +ggsurvplot( + mirna_km_fit, + data = mirna_clin_expr, + risk.table = TRUE, + pval = TRUE, + xlab = "Time (days)", + ylab = "Survival probability", + legend.title = "miRNA_ID", + surv.median.line = "hv" +) +``` + diff --git a/clinical.tsv b/clinical.tsv new file mode 100644 index 0000000..b6bc8c6 --- /dev/null +++ b/clinical.tsv @@ -0,0 +1,3075 @@ +project.project_id cases.case_id cases.consent_type cases.days_to_consent cases.days_to_lost_to_followup cases.disease_type cases.index_date cases.lost_to_followup cases.primary_site cases.submitter_id demographic.age_at_index demographic.age_is_obfuscated demographic.cause_of_death demographic.cause_of_death_source demographic.country_of_birth demographic.country_of_residence_at_enrollment demographic.days_to_birth demographic.days_to_death demographic.demographic_id demographic.education_level demographic.ethnicity demographic.gender demographic.marital_status demographic.occupation_duration_years demographic.population_group demographic.premature_at_birth demographic.race demographic.submitter_id demographic.vital_status demographic.weeks_gestation_at_birth demographic.year_of_birth demographic.year_of_death diagnoses.adrenal_hormone diagnoses.age_at_diagnosis diagnoses.ajcc_clinical_m diagnoses.ajcc_clinical_n diagnoses.ajcc_clinical_stage diagnoses.ajcc_clinical_t diagnoses.ajcc_pathologic_m diagnoses.ajcc_pathologic_n diagnoses.ajcc_pathologic_stage diagnoses.ajcc_pathologic_t diagnoses.ajcc_serum_tumor_markers diagnoses.ajcc_staging_system_edition diagnoses.ann_arbor_b_symptoms diagnoses.ann_arbor_b_symptoms_described diagnoses.ann_arbor_clinical_stage diagnoses.ann_arbor_extranodal_involvement diagnoses.ann_arbor_pathologic_stage diagnoses.best_overall_response diagnoses.burkitt_lymphoma_clinical_variant diagnoses.calgb_risk_group diagnoses.cancer_detection_method diagnoses.child_pugh_classification diagnoses.clark_level diagnoses.classification_of_tumor diagnoses.cog_liver_stage diagnoses.cog_neuroblastoma_risk_group diagnoses.cog_renal_stage diagnoses.cog_rhabdomyosarcoma_risk_group diagnoses.contiguous_organ_invaded diagnoses.days_to_best_overall_response diagnoses.days_to_diagnosis diagnoses.days_to_last_follow_up diagnoses.days_to_last_known_disease_status diagnoses.days_to_recurrence diagnoses.diagnosis_id diagnoses.diagnosis_is_primary_disease diagnoses.double_expressor_lymphoma diagnoses.double_hit_lymphoma diagnoses.eln_risk_classification diagnoses.enneking_msts_grade diagnoses.enneking_msts_metastasis diagnoses.enneking_msts_stage diagnoses.enneking_msts_tumor_site diagnoses.ensat_clinical_m diagnoses.ensat_pathologic_n diagnoses.ensat_pathologic_stage diagnoses.ensat_pathologic_t diagnoses.esophageal_columnar_dysplasia_degree diagnoses.esophageal_columnar_metaplasia_present diagnoses.fab_morphology_code diagnoses.figo_stage diagnoses.figo_staging_edition_year diagnoses.first_symptom_longest_duration diagnoses.first_symptom_prior_to_diagnosis diagnoses.gastric_esophageal_junction_involvement diagnoses.gleason_grade_group diagnoses.gleason_grade_tertiary diagnoses.gleason_patterns_percent diagnoses.gleason_score diagnoses.goblet_cells_columnar_mucosa_present diagnoses.icd_10_code diagnoses.igcccg_stage diagnoses.inpc_grade diagnoses.inpc_histologic_group diagnoses.inrg_stage diagnoses.inss_stage diagnoses.international_prognostic_index diagnoses.irs_group diagnoses.irs_stage diagnoses.ishak_fibrosis_score diagnoses.iss_stage diagnoses.last_known_disease_status diagnoses.laterality diagnoses.margin_distance diagnoses.margins_involved_site diagnoses.masaoka_stage diagnoses.max_tumor_bulk_site diagnoses.medulloblastoma_molecular_classification diagnoses.melanoma_known_primary diagnoses.metastasis_at_diagnosis diagnoses.metastasis_at_diagnosis_site diagnoses.method_of_diagnosis diagnoses.micropapillary_features diagnoses.mitosis_karyorrhexis_index diagnoses.mitotic_count diagnoses.morphology diagnoses.ovarian_specimen_status diagnoses.ovarian_surface_involvement diagnoses.papillary_renal_cell_type diagnoses.pediatric_kidney_staging diagnoses.peritoneal_fluid_cytological_status diagnoses.pregnant_at_diagnosis diagnoses.primary_diagnosis diagnoses.primary_disease diagnoses.primary_gleason_grade diagnoses.prior_malignancy diagnoses.prior_treatment diagnoses.progression_or_recurrence diagnoses.residual_disease diagnoses.satellite_nodule_present diagnoses.secondary_gleason_grade diagnoses.site_of_resection_or_biopsy diagnoses.sites_of_involvement diagnoses.sites_of_involvement_count diagnoses.submitter_id diagnoses.supratentorial_localization diagnoses.synchronous_malignancy diagnoses.tissue_or_organ_of_origin diagnoses.tumor_burden diagnoses.tumor_confined_to_organ_of_origin diagnoses.tumor_depth diagnoses.tumor_focality diagnoses.tumor_grade diagnoses.tumor_grade_category diagnoses.tumor_of_origin diagnoses.tumor_regression_grade diagnoses.uicc_clinical_m diagnoses.uicc_clinical_n diagnoses.uicc_clinical_stage diagnoses.uicc_clinical_t diagnoses.uicc_pathologic_m diagnoses.uicc_pathologic_n diagnoses.uicc_pathologic_stage diagnoses.uicc_pathologic_t diagnoses.uicc_staging_system_edition diagnoses.ulceration_indicator diagnoses.weiss_assessment_findings diagnoses.weiss_assessment_score diagnoses.who_cns_grade diagnoses.who_nte_grade diagnoses.wilms_tumor_histologic_subtype diagnoses.year_of_diagnosis treatments.chemo_concurrent_to_radiation treatments.clinical_trial_indicator treatments.course_number treatments.days_to_treatment_end treatments.days_to_treatment_start treatments.drug_category treatments.embolic_agent treatments.initial_disease_status treatments.lesions_treated_number treatments.margin_distance treatments.margin_status treatments.margins_involved_site treatments.number_of_cycles treatments.number_of_fractions treatments.prescribed_dose treatments.prescribed_dose_units treatments.pretreatment treatments.protocol_identifier treatments.radiosensitizing_agent treatments.reason_treatment_ended treatments.reason_treatment_not_given treatments.regimen_or_line_of_therapy treatments.residual_disease treatments.route_of_administration treatments.submitter_id treatments.therapeutic_agents treatments.therapeutic_level_achieved treatments.therapeutic_levels_achieved treatments.therapeutic_target_level treatments.timepoint_category treatments.treatment_anatomic_site treatments.treatment_anatomic_sites treatments.treatment_arm treatments.treatment_dose treatments.treatment_dose_max treatments.treatment_dose_units treatments.treatment_duration treatments.treatment_effect treatments.treatment_effect_indicator treatments.treatment_frequency treatments.treatment_id treatments.treatment_intent_type treatments.treatment_or_therapy treatments.treatment_outcome treatments.treatment_outcome_duration treatments.treatment_type +TCGA-OV 005a6517-2e5a-4ea3-ab36-531522723607 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1740 71 false '-- '-- '-- '-- -26169 74 e5fbcd98-33f9-575e-880d-cb5bb82420cb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1740_demographic Dead '-- '-- '-- '-- 26169 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6bce9673-5223-59f5-b869-2366b5e46652 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1740_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 74 23 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1740_treatment Tamoxifen '-- '-- '-- '-- '-- '-- '-- 1020 '-- mg '-- '-- '-- '-- cb2dc0c4-bd49-58f3-aa30-fc5f15c8fd08 Adjuvant yes '-- '-- Hormone Therapy +TCGA-OV 005a6517-2e5a-4ea3-ab36-531522723607 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1740 71 false '-- '-- '-- '-- -26169 74 e5fbcd98-33f9-575e-880d-cb5bb82420cb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1740_demographic Dead '-- '-- '-- '-- 26169 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6bce9673-5223-59f5-b869-2366b5e46652 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1740_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1740_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e458f367-1154-49ad-9075-b5ab3b8393f7 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 02594e5e-8751-47c1-9245-90c66984b665 Informed Consent 1787 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2051 42 false '-- '-- '-- '-- -15650 '-- d24768bc-31cf-5dee-8acb-c094538cc104 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-09-2051_demographic Alive '-- '-- '-- '-- 16233 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 583 '-- '-- '-- 11f82d0c-412a-4a32-97fd-947a654dd675 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-2051_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-2051_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2051_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3bacd4bf-071c-4f2d-bbd1-f46f72d3da6c '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 02594e5e-8751-47c1-9245-90c66984b665 Informed Consent 1787 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2051 42 false '-- '-- '-- '-- -15650 '-- d24768bc-31cf-5dee-8acb-c094538cc104 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-09-2051_demographic Alive '-- '-- '-- '-- 16233 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 583 '-- '-- '-- 11f82d0c-412a-4a32-97fd-947a654dd675 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-2051_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-2051_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2051_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 738babb1-270f-4688-b6ad-476cbbedd568 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 02594e5e-8751-47c1-9245-90c66984b665 Informed Consent 1787 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2051 42 false '-- '-- '-- '-- -15650 '-- d24768bc-31cf-5dee-8acb-c094538cc104 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-09-2051_demographic Alive '-- '-- '-- '-- 15650 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1d60ab6b-010d-5421-9e30-11b38b71be6e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2051_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1024 947 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2051_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 016cc344-a106-5152-a0c4-a64a22a43942 '-- yes '-- '-- Chemotherapy +TCGA-OV 02594e5e-8751-47c1-9245-90c66984b665 Informed Consent 1787 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2051 42 false '-- '-- '-- '-- -15650 '-- d24768bc-31cf-5dee-8acb-c094538cc104 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-09-2051_demographic Alive '-- '-- '-- '-- 15650 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1d60ab6b-010d-5421-9e30-11b38b71be6e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2051_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 155 8 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2051_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 02c5b353-13f8-4807-a70f-209f2490dd6f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 02594e5e-8751-47c1-9245-90c66984b665 Informed Consent 1787 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2051 42 false '-- '-- '-- '-- -15650 '-- d24768bc-31cf-5dee-8acb-c094538cc104 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-09-2051_demographic Alive '-- '-- '-- '-- 15650 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1d60ab6b-010d-5421-9e30-11b38b71be6e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2051_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2051_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 75b95e89-533b-47d5-bf7a-a81adb356f97 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 02594e5e-8751-47c1-9245-90c66984b665 Informed Consent 1787 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2051 42 false '-- '-- '-- '-- -15650 '-- d24768bc-31cf-5dee-8acb-c094538cc104 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-09-2051_demographic Alive '-- '-- '-- '-- 15650 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1d60ab6b-010d-5421-9e30-11b38b71be6e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2051_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 941 913 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2051_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 80d2f072-9130-43c0-a2b1-a080cb36b50b '-- yes '-- '-- Chemotherapy +TCGA-OV 02594e5e-8751-47c1-9245-90c66984b665 Informed Consent 1787 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2051 42 false '-- '-- '-- '-- -15650 '-- d24768bc-31cf-5dee-8acb-c094538cc104 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-09-2051_demographic Alive '-- '-- '-- '-- 15650 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1d60ab6b-010d-5421-9e30-11b38b71be6e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2051_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 941 913 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2051_treatment8 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 962e54d6-e283-43ac-9d96-65fae9c4054a '-- yes '-- '-- Chemotherapy +TCGA-OV 02594e5e-8751-47c1-9245-90c66984b665 Informed Consent 1787 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2051 42 false '-- '-- '-- '-- -15650 '-- d24768bc-31cf-5dee-8acb-c094538cc104 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-09-2051_demographic Alive '-- '-- '-- '-- 15650 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1d60ab6b-010d-5421-9e30-11b38b71be6e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2051_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1698 1586 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2051_treatment9 Carboplatin '-- '-- '-- '-- '-- '-- '-- 376 '-- mg '-- '-- '-- '-- 9f3a9498-b83e-403f-b857-a2e97bb64895 '-- yes '-- '-- Chemotherapy +TCGA-OV 02594e5e-8751-47c1-9245-90c66984b665 Informed Consent 1787 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2051 42 false '-- '-- '-- '-- -15650 '-- d24768bc-31cf-5dee-8acb-c094538cc104 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-09-2051_demographic Alive '-- '-- '-- '-- 15650 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1d60ab6b-010d-5421-9e30-11b38b71be6e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2051_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1698 1586 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2051_treatment7 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 1380 '-- mg '-- '-- '-- '-- b6c537e1-81b7-41c7-8371-d3bedf8da43f '-- yes '-- '-- Chemotherapy +TCGA-OV 02594e5e-8751-47c1-9245-90c66984b665 Informed Consent 1787 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2051 42 false '-- '-- '-- '-- -15650 '-- d24768bc-31cf-5dee-8acb-c094538cc104 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-09-2051_demographic Alive '-- '-- '-- '-- 15650 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1d60ab6b-010d-5421-9e30-11b38b71be6e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2051_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- 191 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2051_treatment5 Oregovomab '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c15a8ffe-81ea-4dfb-987d-149468436539 Consolidation Therapy yes '-- '-- Chemotherapy +TCGA-OV 02594e5e-8751-47c1-9245-90c66984b665 Informed Consent 1787 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2051 42 false '-- '-- '-- '-- -15650 '-- d24768bc-31cf-5dee-8acb-c094538cc104 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-09-2051_demographic Alive '-- '-- '-- '-- 15650 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1d60ab6b-010d-5421-9e30-11b38b71be6e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2051_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1024 947 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2051_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d283488f-dc25-44d2-ba56-411d306e65fb '-- yes '-- '-- Chemotherapy +TCGA-OV 02594e5e-8751-47c1-9245-90c66984b665 Informed Consent 1787 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2051 42 false '-- '-- '-- '-- -15650 '-- d24768bc-31cf-5dee-8acb-c094538cc104 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-09-2051_demographic Alive '-- '-- '-- '-- 15650 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1d60ab6b-010d-5421-9e30-11b38b71be6e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2051_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 155 8 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2051_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- e5506921-2e8f-4d6d-8a72-ae92f6bafdf0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 02594e5e-8751-47c1-9245-90c66984b665 Informed Consent 1787 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2051 42 false '-- '-- '-- '-- -15650 '-- d24768bc-31cf-5dee-8acb-c094538cc104 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-09-2051_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8e70a52a-42a3-4436-b32d-8220d4bae894 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-2051_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-2051_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2051_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3448609c-fee8-4e29-96ba-e2c4dd13d462 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 02594e5e-8751-47c1-9245-90c66984b665 Informed Consent 1787 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2051 42 false '-- '-- '-- '-- -15650 '-- d24768bc-31cf-5dee-8acb-c094538cc104 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-09-2051_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8e70a52a-42a3-4436-b32d-8220d4bae894 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-2051_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-2051_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2051_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 86ad1643-6715-4a09-bb1e-7429c8f14229 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 02594e5e-8751-47c1-9245-90c66984b665 Informed Consent 1787 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2051 42 false '-- '-- '-- '-- -15650 '-- d24768bc-31cf-5dee-8acb-c094538cc104 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-09-2051_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8e70a52a-42a3-4436-b32d-8220d4bae894 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-2051_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-2051_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 875 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2051_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b4f10e7d-5de8-4c55-8877-e97a2768deca '-- yes '-- '-- Surgery, NOS +TCGA-OV 02d9aa2e-b16a-48ea-a420-5daed9fd51a6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1427 58 false '-- '-- '-- '-- -21423 '-- ec306cf2-62ba-5e6a-b350-fab228fd3b76 '-- not reported female '-- '-- '-- '-- not reported TCGA-24-1427_demographic Alive '-- '-- '-- '-- 21423 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6adf251d-ef48-5413-8547-40f40921f744 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1427_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 147 14 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1427_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1996 '-- mg '-- '-- '-- '-- 38d34d79-35b6-4cd5-8661-9c7d686a9b5f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 02d9aa2e-b16a-48ea-a420-5daed9fd51a6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1427 58 false '-- '-- '-- '-- -21423 '-- ec306cf2-62ba-5e6a-b350-fab228fd3b76 '-- not reported female '-- '-- '-- '-- not reported TCGA-24-1427_demographic Alive '-- '-- '-- '-- 21423 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6adf251d-ef48-5413-8547-40f40921f744 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1427_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 147 14 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1427_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 3848 '-- mg '-- '-- '-- '-- 61d7052b-b5bb-5959-991d-9fab45e4ff79 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 02d9aa2e-b16a-48ea-a420-5daed9fd51a6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1427 58 false '-- '-- '-- '-- -21423 '-- ec306cf2-62ba-5e6a-b350-fab228fd3b76 '-- not reported female '-- '-- '-- '-- not reported TCGA-24-1427_demographic Alive '-- '-- '-- '-- 21423 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6adf251d-ef48-5413-8547-40f40921f744 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1427_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1427_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 82cc6d34-c9cc-45df-9a04-7b6ce8fa5edf Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0484a929-7a7f-4926-8d25-470ddab082ec Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1365 87 true '-- '-- '-- '-- -31925 '-- ad52a183-6a6a-50ad-8f74-a12962008af9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1365_demographic Alive '-- '-- '-- '-- 31925 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2dd073be-5331-55f3-bb9b-aa2a4a04d8b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1365_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 947 947 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1365_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 12f9ff7b-605d-48d4-b8f7-a4e563beca3b '-- yes '-- '-- Chemotherapy +TCGA-OV 0484a929-7a7f-4926-8d25-470ddab082ec Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1365 87 true '-- '-- '-- '-- -31925 '-- ad52a183-6a6a-50ad-8f74-a12962008af9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1365_demographic Alive '-- '-- '-- '-- 31925 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2dd073be-5331-55f3-bb9b-aa2a4a04d8b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1365_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 189 21 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1365_treatment5 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 11760 '-- mg '-- '-- '-- '-- 30ad66dd-c720-4e90-8888-2194448007d4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0484a929-7a7f-4926-8d25-470ddab082ec Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1365 87 true '-- '-- '-- '-- -31925 '-- ad52a183-6a6a-50ad-8f74-a12962008af9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1365_demographic Alive '-- '-- '-- '-- 31925 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2dd073be-5331-55f3-bb9b-aa2a4a04d8b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1365_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 189 21 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1365_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 5c924e77-3ff0-5b67-9f21-44d930d43e93 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0484a929-7a7f-4926-8d25-470ddab082ec Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1365 87 true '-- '-- '-- '-- -31925 '-- ad52a183-6a6a-50ad-8f74-a12962008af9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1365_demographic Alive '-- '-- '-- '-- 31925 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2dd073be-5331-55f3-bb9b-aa2a4a04d8b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1365_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 947 947 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1365_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4 '-- AUC '-- '-- '-- '-- adec6593-fcc4-4d16-990d-0a532622e53e '-- yes '-- '-- Chemotherapy +TCGA-OV 0484a929-7a7f-4926-8d25-470ddab082ec Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1365 87 true '-- '-- '-- '-- -31925 '-- ad52a183-6a6a-50ad-8f74-a12962008af9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1365_demographic Alive '-- '-- '-- '-- 31925 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2dd073be-5331-55f3-bb9b-aa2a4a04d8b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1365_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1365_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b6223261-6c6c-4e89-b19a-2f28564c4f29 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0484a929-7a7f-4926-8d25-470ddab082ec Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1365 87 true '-- '-- '-- '-- -31925 '-- ad52a183-6a6a-50ad-8f74-a12962008af9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1365_demographic Alive '-- '-- '-- '-- 31925 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2dd073be-5331-55f3-bb9b-aa2a4a04d8b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1365_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 947 947 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1365_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- c763474e-aef7-48d5-ba9c-1d5e0c70bfb1 '-- yes '-- '-- Chemotherapy +TCGA-OV 0484a929-7a7f-4926-8d25-470ddab082ec Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1365 87 true '-- '-- '-- '-- -31925 '-- ad52a183-6a6a-50ad-8f74-a12962008af9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1365_demographic Alive '-- '-- '-- '-- 31925 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2dd073be-5331-55f3-bb9b-aa2a4a04d8b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1365_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 947 947 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1365_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- c78558fa-3293-4b2a-816b-9ad3e54d2ff3 '-- yes '-- '-- Chemotherapy +TCGA-OV 0484a929-7a7f-4926-8d25-470ddab082ec Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1365 87 true '-- '-- '-- '-- -31925 '-- ad52a183-6a6a-50ad-8f74-a12962008af9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1365_demographic Alive '-- '-- '-- '-- 32872 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 947 '-- '-- '-- 8567c351-9463-4e64-b968-07a9cbae1e7b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1365_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1365_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1365_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5fec7896-8d8b-4150-8dfe-332b0db7d233 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 0484a929-7a7f-4926-8d25-470ddab082ec Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1365 87 true '-- '-- '-- '-- -31925 '-- ad52a183-6a6a-50ad-8f74-a12962008af9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1365_demographic Alive '-- '-- '-- '-- 32872 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 947 '-- '-- '-- 8567c351-9463-4e64-b968-07a9cbae1e7b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1365_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1365_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1365_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a001a74d-afe2-43b8-ab11-4ad985d43553 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 04ecaf38-0232-4dcd-9242-308a22cc1331 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1733 71 false '-- '-- '-- '-- -26180 '-- 84a893c5-e066-5859-b953-0c02021e7041 '-- not reported female '-- '-- '-- '-- white TCGA-61-1733_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 63c1e491-a690-4a13-a158-4cf3ab1ec63b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1733_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1733_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1733_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 67fef56c-df5e-4080-ad7e-2ccaa439b467 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 04ecaf38-0232-4dcd-9242-308a22cc1331 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1733 71 false '-- '-- '-- '-- -26180 '-- 84a893c5-e066-5859-b953-0c02021e7041 '-- not reported female '-- '-- '-- '-- white TCGA-61-1733_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 63c1e491-a690-4a13-a158-4cf3ab1ec63b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1733_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1733_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 175 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1733_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 985fd474-a1d4-4b3f-bf43-fcd1827c059b '-- yes '-- '-- Surgery, NOS +TCGA-OV 04ecaf38-0232-4dcd-9242-308a22cc1331 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1733 71 false '-- '-- '-- '-- -26180 '-- 84a893c5-e066-5859-b953-0c02021e7041 '-- not reported female '-- '-- '-- '-- white TCGA-61-1733_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 63c1e491-a690-4a13-a158-4cf3ab1ec63b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1733_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1733_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1733_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 99f9377c-c928-45cf-9f53-1fed7b60a0a7 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 04ecaf38-0232-4dcd-9242-308a22cc1331 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1733 71 false '-- '-- '-- '-- -26180 '-- 84a893c5-e066-5859-b953-0c02021e7041 '-- not reported female '-- '-- '-- '-- white TCGA-61-1733_demographic Alive '-- '-- '-- '-- 26180 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a285514c-8992-5900-abf4-fa923c71587d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1733_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 625 484 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-1733_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 390 '-- mg '-- '-- '-- '-- 06638246-c709-445d-bef8-566221d6a6bc '-- yes '-- '-- Chemotherapy +TCGA-OV 04ecaf38-0232-4dcd-9242-308a22cc1331 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1733 71 false '-- '-- '-- '-- -26180 '-- 84a893c5-e066-5859-b953-0c02021e7041 '-- not reported female '-- '-- '-- '-- white TCGA-61-1733_demographic Alive '-- '-- '-- '-- 26180 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a285514c-8992-5900-abf4-fa923c71587d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1733_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 625 484 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-1733_treatment5 Cisplatin '-- '-- '-- '-- '-- '-- '-- 720 '-- mg '-- '-- '-- '-- 1de4bc60-c345-4861-af9b-f84dffef0b13 '-- yes '-- '-- Chemotherapy +TCGA-OV 04ecaf38-0232-4dcd-9242-308a22cc1331 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1733 71 false '-- '-- '-- '-- -26180 '-- 84a893c5-e066-5859-b953-0c02021e7041 '-- not reported female '-- '-- '-- '-- white TCGA-61-1733_demographic Alive '-- '-- '-- '-- 26180 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a285514c-8992-5900-abf4-fa923c71587d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1733_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 625 484 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-1733_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 582 '-- mg '-- '-- '-- '-- 8d610eee-dd81-4c5d-9515-f7e165d4ba42 '-- yes '-- '-- Chemotherapy +TCGA-OV 04ecaf38-0232-4dcd-9242-308a22cc1331 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1733 71 false '-- '-- '-- '-- -26180 '-- 84a893c5-e066-5859-b953-0c02021e7041 '-- not reported female '-- '-- '-- '-- white TCGA-61-1733_demographic Alive '-- '-- '-- '-- 26180 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a285514c-8992-5900-abf4-fa923c71587d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1733_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 127 22 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1733_treatment6 Docetaxel '-- '-- '-- '-- '-- '-- '-- 638 '-- mg '-- '-- '-- '-- a4f4c31c-c369-4903-ab74-d007227711f4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 04ecaf38-0232-4dcd-9242-308a22cc1331 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1733 71 false '-- '-- '-- '-- -26180 '-- 84a893c5-e066-5859-b953-0c02021e7041 '-- not reported female '-- '-- '-- '-- white TCGA-61-1733_demographic Alive '-- '-- '-- '-- 26180 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a285514c-8992-5900-abf4-fa923c71587d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1733_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 127 22 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1733_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3924 '-- mg '-- '-- '-- '-- bf774c9d-152f-4256-be2b-24eb96f9eb8a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 04ecaf38-0232-4dcd-9242-308a22cc1331 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1733 71 false '-- '-- '-- '-- -26180 '-- 84a893c5-e066-5859-b953-0c02021e7041 '-- not reported female '-- '-- '-- '-- white TCGA-61-1733_demographic Alive '-- '-- '-- '-- 26180 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a285514c-8992-5900-abf4-fa923c71587d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1733_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 372 231 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1733_treatment Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 482 '-- mg '-- '-- '-- '-- c1f9e9f5-8b41-509f-ab2c-ef451286bf24 '-- yes '-- '-- Chemotherapy +TCGA-OV 04ecaf38-0232-4dcd-9242-308a22cc1331 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1733 71 false '-- '-- '-- '-- -26180 '-- 84a893c5-e066-5859-b953-0c02021e7041 '-- not reported female '-- '-- '-- '-- white TCGA-61-1733_demographic Alive '-- '-- '-- '-- 26180 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a285514c-8992-5900-abf4-fa923c71587d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1733_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1733_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fcf6f9bf-046c-48f1-8062-690037814279 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 04ecaf38-0232-4dcd-9242-308a22cc1331 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1733 71 false '-- '-- '-- '-- -26180 '-- 84a893c5-e066-5859-b953-0c02021e7041 '-- not reported female '-- '-- '-- '-- white TCGA-61-1733_demographic Alive '-- '-- '-- '-- 26355 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 175 '-- '-- '-- e012df40-5194-4d56-a8ad-24d14eaf99fd false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1733_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1733_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1733_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 892cd39e-fdb7-4142-8559-e83bcf8051f0 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 04ecaf38-0232-4dcd-9242-308a22cc1331 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1733 71 false '-- '-- '-- '-- -26180 '-- 84a893c5-e066-5859-b953-0c02021e7041 '-- not reported female '-- '-- '-- '-- white TCGA-61-1733_demographic Alive '-- '-- '-- '-- 26355 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 175 '-- '-- '-- e012df40-5194-4d56-a8ad-24d14eaf99fd false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1733_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1733_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1733_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9d32df55-87b4-4e87-947c-131d717f8891 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 167fdc87-5221-5292-9ca8-de9c2fc60e5b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1688_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- 2235 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1688_treatment '-- '-- '-- '-- '-- '-- Distant Site '-- '-- '-- '-- '-- '-- '-- '-- 041496d3-ca85-527c-8ad9-c68f439ff33e Palliative yes '-- '-- Radiation, External Beam +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 167fdc87-5221-5292-9ca8-de9c2fc60e5b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1688_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- 1719 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1688_treatment4 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 057af198-d6ec-4ee9-87db-7a3043dacc9c '-- yes '-- '-- Chemotherapy +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 167fdc87-5221-5292-9ca8-de9c2fc60e5b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1688_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- 197 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1688_treatment7 Etoposide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1c70ec62-b18b-4083-867d-9831176ec26e '-- yes '-- '-- Chemotherapy +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 167fdc87-5221-5292-9ca8-de9c2fc60e5b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1688_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- 197 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1688_treatment15 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3118faa4-87df-4734-a129-3cd741f62f62 '-- yes '-- '-- Chemotherapy +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 167fdc87-5221-5292-9ca8-de9c2fc60e5b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1688_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1688_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 46118353-3f79-4b57-b926-a3847cf8b62d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 167fdc87-5221-5292-9ca8-de9c2fc60e5b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1688_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-29-1688_treatment9 Etoposide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 49a3ef4a-1529-4c32-9c4f-464c2ea241ae '-- yes '-- '-- Chemotherapy +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 167fdc87-5221-5292-9ca8-de9c2fc60e5b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1688_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1688_treatment16 Etoposide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 81a67a72-8505-4b6d-8635-5b20eece7e11 '-- yes '-- '-- Chemotherapy +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 167fdc87-5221-5292-9ca8-de9c2fc60e5b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1688_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- 743 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1688_treatment12 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 97ce1490-775a-4c72-a418-814605a38385 '-- yes '-- '-- Chemotherapy +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 167fdc87-5221-5292-9ca8-de9c2fc60e5b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1688_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- 743 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1688_treatment10 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 99b621da-b576-4308-a607-81abea762a3f '-- yes '-- '-- Chemotherapy +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 167fdc87-5221-5292-9ca8-de9c2fc60e5b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1688_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- 2395 '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1688_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9debaa58-8658-4a2a-8d58-6ababcbb5e17 '-- yes '-- '-- Chemotherapy +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 167fdc87-5221-5292-9ca8-de9c2fc60e5b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1688_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- 1900 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1688_treatment8 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- a2d86c89-3d5a-4053-b65f-a04dfaab0f3a '-- yes '-- '-- Chemotherapy +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 167fdc87-5221-5292-9ca8-de9c2fc60e5b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1688_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1688_treatment13 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a462ed40-249b-43a0-b524-5cfdc5f9099b '-- yes '-- '-- Chemotherapy +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 167fdc87-5221-5292-9ca8-de9c2fc60e5b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1688_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- 1900 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1688_treatment14 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- b3671444-b9b7-44b1-a136-c22aa86f6744 '-- yes '-- '-- Chemotherapy +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 167fdc87-5221-5292-9ca8-de9c2fc60e5b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1688_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- 2395 '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1688_treatment6 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c05c99f0-8278-4419-83f0-78017841a298 '-- yes '-- '-- Chemotherapy +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 167fdc87-5221-5292-9ca8-de9c2fc60e5b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1688_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1688_treatment3 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c811e457-a297-436b-a7d2-c967fda9c42d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 167fdc87-5221-5292-9ca8-de9c2fc60e5b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1688_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1688_treatment11 Altretamine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dcb21ccb-96d9-429c-9117-3b3186fb4a85 '-- yes '-- '-- Chemotherapy +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2c445b11-e0a4-45b5-9356-3909dc91c101 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1688_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1688_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1688_treatment19 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4ba06afb-24d4-42b9-920c-1aaff6c7fc93 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2c445b11-e0a4-45b5-9356-3909dc91c101 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1688_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1688_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 184 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1688_treatment21 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b140dfaf-6832-430b-9a4b-b485676c9875 '-- yes '-- '-- Surgery, NOS +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2c445b11-e0a4-45b5-9356-3909dc91c101 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1688_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1688_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1688_treatment20 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b397a651-340c-448f-9a5a-839484fb65c0 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14758 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 184 '-- '-- '-- a532a364-aae6-40f9-b258-45e606ef2f5c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1688_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1688_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1688_treatment18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dda3cc17-3726-4c48-a59b-ca06f0e537c7 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14758 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 184 '-- '-- '-- a532a364-aae6-40f9-b258-45e606ef2f5c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1688_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1688_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1688_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f07d9918-b25d-4d3e-819f-f2d4312c2057 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 05263959-c4f5-4540-b6d2-d8c8a128861f Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2104 53 false '-- '-- '-- '-- -19432 '-- f30ef53b-8af1-5eac-93f1-59318e77e83b '-- not reported female '-- '-- '-- '-- white TCGA-61-2104_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0db77645-2e1d-4d38-bc54-320f5e465b27 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2104_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2104_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2104_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0a2cceca-690f-4031-9e9b-3aacf2ac6f31 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 05263959-c4f5-4540-b6d2-d8c8a128861f Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2104 53 false '-- '-- '-- '-- -19432 '-- f30ef53b-8af1-5eac-93f1-59318e77e83b '-- not reported female '-- '-- '-- '-- white TCGA-61-2104_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0db77645-2e1d-4d38-bc54-320f5e465b27 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2104_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2104_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2104_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 610fa5b3-2954-48e0-8acf-96a934869db6 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 05263959-c4f5-4540-b6d2-d8c8a128861f Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2104 53 false '-- '-- '-- '-- -19432 '-- f30ef53b-8af1-5eac-93f1-59318e77e83b '-- not reported female '-- '-- '-- '-- white TCGA-61-2104_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0db77645-2e1d-4d38-bc54-320f5e465b27 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2104_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2104_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1680 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2104_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e3c8b210-cd81-4aff-9094-a943c3fbcfa7 '-- yes '-- '-- Surgery, NOS +TCGA-OV 05263959-c4f5-4540-b6d2-d8c8a128861f Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2104 53 false '-- '-- '-- '-- -19432 '-- f30ef53b-8af1-5eac-93f1-59318e77e83b '-- not reported female '-- '-- '-- '-- white TCGA-61-2104_demographic Alive '-- '-- '-- '-- 21112 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1680 '-- '-- '-- 3ef1e18c-ab6c-4dd6-8a12-87499ee63bd5 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2104_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2104_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2104_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 17099a7a-db0c-413e-9878-2411a359e127 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 05263959-c4f5-4540-b6d2-d8c8a128861f Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2104 53 false '-- '-- '-- '-- -19432 '-- f30ef53b-8af1-5eac-93f1-59318e77e83b '-- not reported female '-- '-- '-- '-- white TCGA-61-2104_demographic Alive '-- '-- '-- '-- 21112 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1680 '-- '-- '-- 3ef1e18c-ab6c-4dd6-8a12-87499ee63bd5 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2104_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2104_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2104_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 19a71bee-d7be-415b-8643-6ef797fa49c1 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 05263959-c4f5-4540-b6d2-d8c8a128861f Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2104 53 false '-- '-- '-- '-- -19432 '-- f30ef53b-8af1-5eac-93f1-59318e77e83b '-- not reported female '-- '-- '-- '-- white TCGA-61-2104_demographic Alive '-- '-- '-- '-- 19432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d4287397-a95b-595b-8b83-3bc606532e4f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2104_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2104_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 05f00603-033d-4f9f-aacb-c6930473ef5a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 05263959-c4f5-4540-b6d2-d8c8a128861f Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2104 53 false '-- '-- '-- '-- -19432 '-- f30ef53b-8af1-5eac-93f1-59318e77e83b '-- not reported female '-- '-- '-- '-- white TCGA-61-2104_demographic Alive '-- '-- '-- '-- 19432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d4287397-a95b-595b-8b83-3bc606532e4f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2104_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2104_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 27f4f46d-7396-4834-b230-099d5788a046 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 05263959-c4f5-4540-b6d2-d8c8a128861f Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2104 53 false '-- '-- '-- '-- -19432 '-- f30ef53b-8af1-5eac-93f1-59318e77e83b '-- not reported female '-- '-- '-- '-- white TCGA-61-2104_demographic Alive '-- '-- '-- '-- 19432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d4287397-a95b-595b-8b83-3bc606532e4f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2104_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 1197 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2104_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 333972f9-33b6-4816-8f56-4d3871fff237 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 05263959-c4f5-4540-b6d2-d8c8a128861f Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2104 53 false '-- '-- '-- '-- -19432 '-- f30ef53b-8af1-5eac-93f1-59318e77e83b '-- not reported female '-- '-- '-- '-- white TCGA-61-2104_demographic Alive '-- '-- '-- '-- 19432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d4287397-a95b-595b-8b83-3bc606532e4f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2104_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 1197 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2104_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 50049cf8-eb1d-497c-94ad-7ef834c15686 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 05263959-c4f5-4540-b6d2-d8c8a128861f Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2104 53 false '-- '-- '-- '-- -19432 '-- f30ef53b-8af1-5eac-93f1-59318e77e83b '-- not reported female '-- '-- '-- '-- white TCGA-61-2104_demographic Alive '-- '-- '-- '-- 19432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d4287397-a95b-595b-8b83-3bc606532e4f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2104_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 1681 1680 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-61-2104_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 200 '-- mg '-- '-- '-- '-- dbddac35-5f96-5ee1-80a7-39d98af27eaf '-- yes '-- '-- Chemotherapy +TCGA-OV 05263959-c4f5-4540-b6d2-d8c8a128861f Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2104 53 false '-- '-- '-- '-- -19432 '-- f30ef53b-8af1-5eac-93f1-59318e77e83b '-- not reported female '-- '-- '-- '-- white TCGA-61-2104_demographic Alive '-- '-- '-- '-- 19432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d4287397-a95b-595b-8b83-3bc606532e4f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2104_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2104_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e319d572-4089-4adf-ab37-9bc1a3136a23 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 05263959-c4f5-4540-b6d2-d8c8a128861f Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2104 53 false '-- '-- '-- '-- -19432 '-- f30ef53b-8af1-5eac-93f1-59318e77e83b '-- not reported female '-- '-- '-- '-- white TCGA-61-2104_demographic Alive '-- '-- '-- '-- 19432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d4287397-a95b-595b-8b83-3bc606532e4f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2104_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 2338 1838 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2104_treatment5 Taxane Compound '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e7124674-3c23-49cf-9a30-b3246f7ad6c7 '-- yes '-- '-- Chemotherapy +TCGA-OV 05ba5839-e00a-4a9e-8ba3-ecb490781e62 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1422 82 false '-- '-- '-- '-- -30234 23 838591b6-cdae-547d-adfe-1dfcc60db703 '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1422_demographic Dead '-- '-- '-- '-- 30234 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f2ffb8cb-705b-5752-84dd-53e3f9fab12b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1422_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1422_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8a06f721-acc6-4f57-b56a-60f8f3987d3f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 05ba5839-e00a-4a9e-8ba3-ecb490781e62 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1422 82 false '-- '-- '-- '-- -30234 23 838591b6-cdae-547d-adfe-1dfcc60db703 '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1422_demographic Dead '-- '-- '-- '-- 30234 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f2ffb8cb-705b-5752-84dd-53e3f9fab12b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1422_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1422_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a9ea5705-2622-5dc2-b25c-5610263acf81 Adjuvant no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 062982f8-9f49-425a-99e9-008af5ed9040 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2035 65 false '-- '-- '-- '-- -23855 857 07018a25-f50f-5622-ac08-b364ea38ff12 '-- not reported female '-- '-- '-- '-- white TCGA-24-2035_demographic Dead '-- '-- '-- '-- 23855 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0e6482de-13e4-5907-b7c0-18515ebd9c3d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2035_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2035_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 052a1ab0-3690-46b0-93a9-5ec33b9e099b Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 062982f8-9f49-425a-99e9-008af5ed9040 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2035 65 false '-- '-- '-- '-- -23855 857 07018a25-f50f-5622-ac08-b364ea38ff12 '-- not reported female '-- '-- '-- '-- white TCGA-24-2035_demographic Dead '-- '-- '-- '-- 23855 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0e6482de-13e4-5907-b7c0-18515ebd9c3d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2035_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2035_treatment4 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2c437e8c-ef7c-4307-808d-6a26d821976f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 062982f8-9f49-425a-99e9-008af5ed9040 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2035 65 false '-- '-- '-- '-- -23855 857 07018a25-f50f-5622-ac08-b364ea38ff12 '-- not reported female '-- '-- '-- '-- white TCGA-24-2035_demographic Dead '-- '-- '-- '-- 23855 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0e6482de-13e4-5907-b7c0-18515ebd9c3d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2035_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- 688 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-2035_treatment7 Etoposide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5b0af149-7523-4f85-97a8-2eb00593caae '-- yes '-- '-- Chemotherapy +TCGA-OV 062982f8-9f49-425a-99e9-008af5ed9040 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2035 65 false '-- '-- '-- '-- -23855 857 07018a25-f50f-5622-ac08-b364ea38ff12 '-- not reported female '-- '-- '-- '-- white TCGA-24-2035_demographic Dead '-- '-- '-- '-- 23855 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0e6482de-13e4-5907-b7c0-18515ebd9c3d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2035_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 679 343 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2035_treatment6 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7cab499b-45bd-4160-82a0-4531c6437cb2 '-- yes '-- '-- Chemotherapy +TCGA-OV 062982f8-9f49-425a-99e9-008af5ed9040 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2035 65 false '-- '-- '-- '-- -23855 857 07018a25-f50f-5622-ac08-b364ea38ff12 '-- not reported female '-- '-- '-- '-- white TCGA-24-2035_demographic Dead '-- '-- '-- '-- 23855 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0e6482de-13e4-5907-b7c0-18515ebd9c3d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2035_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2035_treatment3 Valspodar '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7f982705-4e3a-4708-8ef0-eb0625c051a4 '-- yes '-- '-- Chemotherapy +TCGA-OV 062982f8-9f49-425a-99e9-008af5ed9040 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2035 65 false '-- '-- '-- '-- -23855 857 07018a25-f50f-5622-ac08-b364ea38ff12 '-- not reported female '-- '-- '-- '-- white TCGA-24-2035_demographic Dead '-- '-- '-- '-- 23855 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0e6482de-13e4-5907-b7c0-18515ebd9c3d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2035_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2035_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 87ee65f0-37d3-4a36-8e82-bdf885d45b95 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 062982f8-9f49-425a-99e9-008af5ed9040 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2035 65 false '-- '-- '-- '-- -23855 857 07018a25-f50f-5622-ac08-b364ea38ff12 '-- not reported female '-- '-- '-- '-- white TCGA-24-2035_demographic Dead '-- '-- '-- '-- 23855 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0e6482de-13e4-5907-b7c0-18515ebd9c3d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2035_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2035_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d183dbca-1016-5ed6-8e50-f554c32c5b76 '-- yes '-- '-- Chemotherapy +TCGA-OV 062982f8-9f49-425a-99e9-008af5ed9040 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2035 65 false '-- '-- '-- '-- -23855 857 07018a25-f50f-5622-ac08-b364ea38ff12 '-- not reported female '-- '-- '-- '-- white TCGA-24-2035_demographic Dead '-- '-- '-- '-- 23855 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0e6482de-13e4-5907-b7c0-18515ebd9c3d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2035_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- 688 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-2035_treatment2 Ifosfamide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e70859dd-6c5f-4eab-bf4a-41257869f24f '-- yes '-- '-- Chemotherapy +TCGA-OV 062982f8-9f49-425a-99e9-008af5ed9040 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2035 65 false '-- '-- '-- '-- -23855 857 07018a25-f50f-5622-ac08-b364ea38ff12 '-- not reported female '-- '-- '-- '-- white TCGA-24-2035_demographic Dead '-- '-- '-- '-- 24142 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 287 '-- '-- '-- cbfcccd6-6b5c-4ea2-84ef-a3518ee747c4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2035_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2035_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2035_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 14914e7f-43dc-413e-a435-aaef673aba48 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 062982f8-9f49-425a-99e9-008af5ed9040 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2035 65 false '-- '-- '-- '-- -23855 857 07018a25-f50f-5622-ac08-b364ea38ff12 '-- not reported female '-- '-- '-- '-- white TCGA-24-2035_demographic Dead '-- '-- '-- '-- 24142 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 287 '-- '-- '-- cbfcccd6-6b5c-4ea2-84ef-a3518ee747c4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2035_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2035_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2035_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 156633c7-eb54-425b-8464-17d53a115b77 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 0724f800-e873-45d0-bc56-809d0ec4f6e9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1861 74 false '-- '-- '-- '-- -27103 1058 306e3132-57a0-51fc-87e4-1d00bf8466d0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1861_demographic Dead '-- '-- '-- '-- 27103 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4df9c324-0ddb-5e04-beb7-a6c37bf5e8a8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1861_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 0740321b-f8a5-4e1d-b390-ca6187598fac '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0891 73 false '-- '-- '-- '-- -26886 3128 2fbefc9e-1e10-5799-9005-b6fe7e10fd13 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0891_demographic Dead '-- '-- '-- '-- 26886 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3d1dbced-2a51-54ba-b21b-6492adf26960 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0891_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 183 71 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0891_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1050 '-- mg/m2 '-- '-- '-- '-- aec64362-cf2b-4571-81b2-62a23feb6881 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0740321b-f8a5-4e1d-b390-ca6187598fac '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0891 73 false '-- '-- '-- '-- -26886 3128 2fbefc9e-1e10-5799-9005-b6fe7e10fd13 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0891_demographic Dead '-- '-- '-- '-- 26886 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3d1dbced-2a51-54ba-b21b-6492adf26960 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0891_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 183 71 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0891_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ba25d659-2194-544e-8781-bbbc25a11f2a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0740321b-f8a5-4e1d-b390-ca6187598fac '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0891 73 false '-- '-- '-- '-- -26886 3128 2fbefc9e-1e10-5799-9005-b6fe7e10fd13 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0891_demographic Dead '-- '-- '-- '-- 26886 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3d1dbced-2a51-54ba-b21b-6492adf26960 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0891_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0891_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e59429a3-2fbe-463e-9670-34f9587f0194 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0740321b-f8a5-4e1d-b390-ca6187598fac '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0891 73 false '-- '-- '-- '-- -26886 3128 2fbefc9e-1e10-5799-9005-b6fe7e10fd13 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0891_demographic Dead '-- '-- '-- '-- 27648 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 762 '-- '-- '-- 56146f35-f5e1-4943-8ddc-17ddb51d5cf4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0891_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0891_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 0740321b-f8a5-4e1d-b390-ca6187598fac '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0891 73 false '-- '-- '-- '-- -26886 3128 2fbefc9e-1e10-5799-9005-b6fe7e10fd13 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0891_demographic Dead '-- '-- '-- '-- 27648 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 762 '-- '-- '-- dc1636d6-55b4-4750-bf8c-0a9e13f46373 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0891_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0891_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0891_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 00c4332e-5d04-4e70-8fd7-414326e43981 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 0740321b-f8a5-4e1d-b390-ca6187598fac '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0891 73 false '-- '-- '-- '-- -26886 3128 2fbefc9e-1e10-5799-9005-b6fe7e10fd13 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0891_demographic Dead '-- '-- '-- '-- 27648 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 762 '-- '-- '-- dc1636d6-55b4-4750-bf8c-0a9e13f46373 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0891_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0891_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0891_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0e787ac1-5ff4-4137-9629-7d3353e11d44 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 077079c3-6877-467b-b9cc-5c650aae4f07 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1877 81 false '-- '-- '-- '-- -29615 730 b10665a5-1955-5d79-92f4-5917a33bfa22 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1877_demographic Dead '-- '-- '-- '-- 29615 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 96598802-b58e-538b-a149-13802533384c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1877_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1877_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0236fb9f-5b83-493f-bd81-622d93ec11a2 '-- yes '-- '-- Chemotherapy +TCGA-OV 077079c3-6877-467b-b9cc-5c650aae4f07 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1877 81 false '-- '-- '-- '-- -29615 730 b10665a5-1955-5d79-92f4-5917a33bfa22 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1877_demographic Dead '-- '-- '-- '-- 29615 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 96598802-b58e-538b-a149-13802533384c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1877_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1877_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1b1923a4-ea51-47ea-ac3d-c332529058a4 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 077079c3-6877-467b-b9cc-5c650aae4f07 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1877 81 false '-- '-- '-- '-- -29615 730 b10665a5-1955-5d79-92f4-5917a33bfa22 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1877_demographic Dead '-- '-- '-- '-- 29615 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 96598802-b58e-538b-a149-13802533384c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1877_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- 31 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1877_treatment Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- db1814cc-564c-5d6c-b21d-ce6dc60a5b57 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 077079c3-6877-467b-b9cc-5c650aae4f07 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1877 81 false '-- '-- '-- '-- -29615 730 b10665a5-1955-5d79-92f4-5917a33bfa22 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1877_demographic Dead '-- '-- '-- '-- 29615 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 96598802-b58e-538b-a149-13802533384c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1877_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- 31 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1877_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f45810bf-0df7-49e5-89a5-12ad17252585 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 077079c3-6877-467b-b9cc-5c650aae4f07 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1877 81 false '-- '-- '-- '-- -29615 730 b10665a5-1955-5d79-92f4-5917a33bfa22 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1877_demographic Dead '-- '-- '-- '-- 30164 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 549 '-- '-- '-- f7caa21c-9210-44fc-bd83-09de43029041 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1877_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1877_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1877_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 390c2520-c3e0-4509-8ec7-11a564c53953 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 077079c3-6877-467b-b9cc-5c650aae4f07 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1877 81 false '-- '-- '-- '-- -29615 730 b10665a5-1955-5d79-92f4-5917a33bfa22 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1877_demographic Dead '-- '-- '-- '-- 30164 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 549 '-- '-- '-- f7caa21c-9210-44fc-bd83-09de43029041 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1877_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1877_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1877_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e73ab2cd-bb31-4295-b86b-bff6384fe4b9 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 07a859fc-6f78-4905-9035-90e2403dbe8d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1326 61 false '-- '-- '-- '-- -22339 1249 64e2c7b4-6061-5765-b200-5ae4c9836b78 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1326_demographic Dead '-- '-- '-- '-- 22735 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 396 '-- '-- '-- 9e71118d-7fb5-4f0b-b005-2a56cafa47d1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1326_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1326_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1326_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 107ef6a2-38d6-4714-84c2-16e28b8b0407 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 07a859fc-6f78-4905-9035-90e2403dbe8d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1326 61 false '-- '-- '-- '-- -22339 1249 64e2c7b4-6061-5765-b200-5ae4c9836b78 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1326_demographic Dead '-- '-- '-- '-- 22735 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 396 '-- '-- '-- 9e71118d-7fb5-4f0b-b005-2a56cafa47d1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1326_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1326_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1326_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9ab8ca43-4d1d-4e08-8347-456ce14545ee '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 07a859fc-6f78-4905-9035-90e2403dbe8d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1326 61 false '-- '-- '-- '-- -22339 1249 64e2c7b4-6061-5765-b200-5ae4c9836b78 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1326_demographic Dead '-- '-- '-- '-- 22339 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ea06b490-4522-5521-8124-5f077e608a8a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1326_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 518 396 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1326_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1df02ff0-49fe-4919-869e-855fb55d9456 '-- yes '-- '-- Chemotherapy +TCGA-OV 07a859fc-6f78-4905-9035-90e2403dbe8d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1326 61 false '-- '-- '-- '-- -22339 1249 64e2c7b4-6061-5765-b200-5ae4c9836b78 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1326_demographic Dead '-- '-- '-- '-- 22339 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ea06b490-4522-5521-8124-5f077e608a8a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1326_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 153 31 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1326_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 611953da-651f-5fa7-b92a-89fdd2c73eb3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 07a859fc-6f78-4905-9035-90e2403dbe8d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1326 61 false '-- '-- '-- '-- -22339 1249 64e2c7b4-6061-5765-b200-5ae4c9836b78 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1326_demographic Dead '-- '-- '-- '-- 22339 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ea06b490-4522-5521-8124-5f077e608a8a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1326_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 153 31 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1326_treatment4 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aa7d846d-0c31-4047-9757-84078fa43f33 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 07a859fc-6f78-4905-9035-90e2403dbe8d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1326 61 false '-- '-- '-- '-- -22339 1249 64e2c7b4-6061-5765-b200-5ae4c9836b78 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1326_demographic Dead '-- '-- '-- '-- 22339 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ea06b490-4522-5521-8124-5f077e608a8a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1326_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1326_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cbb187e2-bd6e-49cd-b3d7-b2ffe79c35f2 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 07a859fc-6f78-4905-9035-90e2403dbe8d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1326 61 false '-- '-- '-- '-- -22339 1249 64e2c7b4-6061-5765-b200-5ae4c9836b78 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1326_demographic Dead '-- '-- '-- '-- 22339 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ea06b490-4522-5521-8124-5f077e608a8a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1326_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 153 31 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1326_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e39586f8-4821-4ee4-8eca-50284adfdd7d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 07fbdb3c-8337-4319-8255-f2363f8a031e Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1728 59 false '-- '-- '-- '-- -21582 '-- 3a226523-d211-5c33-ab72-74b052e22634 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1728_demographic Alive '-- '-- '-- '-- 21582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 947ce4f7-c76d-587a-af7d-533e4eeb9b1f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1728_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 204 43 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1728_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2000 '-- mg '-- '-- '-- '-- 01845e5b-e916-474f-beec-3539158a4453 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 07fbdb3c-8337-4319-8255-f2363f8a031e Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1728 59 false '-- '-- '-- '-- -21582 '-- 3a226523-d211-5c33-ab72-74b052e22634 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1728_demographic Alive '-- '-- '-- '-- 21582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 947ce4f7-c76d-587a-af7d-533e4eeb9b1f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1728_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 848 246 '-- '-- Recurrent Disease '-- '-- '-- '-- 20 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1728_treatment2 Vosaroxin '-- '-- '-- '-- '-- '-- '-- 1920 '-- mg '-- '-- '-- '-- b04063f1-386e-4ed4-8e9d-32ef5ccf0fb2 '-- yes '-- '-- Chemotherapy +TCGA-OV 07fbdb3c-8337-4319-8255-f2363f8a031e Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1728 59 false '-- '-- '-- '-- -21582 '-- 3a226523-d211-5c33-ab72-74b052e22634 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1728_demographic Alive '-- '-- '-- '-- 21582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 947ce4f7-c76d-587a-af7d-533e4eeb9b1f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1728_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1728_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c3b52cb2-dbed-4760-bf4a-62a0c6168485 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 07fbdb3c-8337-4319-8255-f2363f8a031e Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1728 59 false '-- '-- '-- '-- -21582 '-- 3a226523-d211-5c33-ab72-74b052e22634 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1728_demographic Alive '-- '-- '-- '-- 21582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 947ce4f7-c76d-587a-af7d-533e4eeb9b1f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1728_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 204 43 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1728_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 5280 '-- mg '-- '-- '-- '-- f656a5c5-3c82-5dc0-b931-b7ca5d849549 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 07fbdb3c-8337-4319-8255-f2363f8a031e Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1728 59 false '-- '-- '-- '-- -21582 '-- 3a226523-d211-5c33-ab72-74b052e22634 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1728_demographic Alive '-- '-- '-- '-- 22115 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 533 '-- '-- '-- 96e62970-1d25-4351-a196-5ffa99c0a552 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1728_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1728_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1728_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 45d72406-811f-4720-b1cd-1d2e4981d98b '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 07fbdb3c-8337-4319-8255-f2363f8a031e Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1728 59 false '-- '-- '-- '-- -21582 '-- 3a226523-d211-5c33-ab72-74b052e22634 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1728_demographic Alive '-- '-- '-- '-- 22115 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 533 '-- '-- '-- 96e62970-1d25-4351-a196-5ffa99c0a552 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1728_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1728_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1728_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8e8f74f2-194b-47e1-9d13-d44da30a7036 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 07fbdb3c-8337-4319-8255-f2363f8a031e Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1728 59 false '-- '-- '-- '-- -21582 '-- 3a226523-d211-5c33-ab72-74b052e22634 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1728_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cc896154-f115-41d1-ba14-9fc2b31c2a5c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1728_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1728_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1728_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8b2d16b7-7fc1-4052-a9ba-f2a75ce37e97 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 07fbdb3c-8337-4319-8255-f2363f8a031e Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1728 59 false '-- '-- '-- '-- -21582 '-- 3a226523-d211-5c33-ab72-74b052e22634 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1728_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cc896154-f115-41d1-ba14-9fc2b31c2a5c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1728_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1728_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 533 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1728_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a8f65526-e198-4d31-bb27-e72ea3c99b02 '-- yes '-- '-- Surgery, NOS +TCGA-OV 07fbdb3c-8337-4319-8255-f2363f8a031e Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1728 59 false '-- '-- '-- '-- -21582 '-- 3a226523-d211-5c33-ab72-74b052e22634 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1728_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cc896154-f115-41d1-ba14-9fc2b31c2a5c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1728_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1728_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1728_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c5e2d4af-b932-4e24-a254-7f433d06dbc0 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 08c64000-d320-4e4d-974b-da503d48890c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1553 53 false '-- '-- '-- '-- -19393 1767 f6ba61ac-3f98-557c-ac57-f0a30a3dc22b '-- not reported female '-- '-- '-- '-- white TCGA-24-1553_demographic Dead '-- '-- '-- '-- 19393 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0f6394e0-ad6b-55a6-bb34-cb34cbc020ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1553_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1283 864 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1553_treatment9 Topotecan '-- '-- '-- '-- '-- '-- '-- 70 '-- mg '-- '-- '-- '-- 131b477e-dcc0-44d6-be1b-145a8512206b '-- yes '-- '-- Chemotherapy +TCGA-OV 08c64000-d320-4e4d-974b-da503d48890c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1553 53 false '-- '-- '-- '-- -19393 1767 f6ba61ac-3f98-557c-ac57-f0a30a3dc22b '-- not reported female '-- '-- '-- '-- white TCGA-24-1553_demographic Dead '-- '-- '-- '-- 19393 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0f6394e0-ad6b-55a6-bb34-cb34cbc020ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1553_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1691 1659 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-1553_treatment6 Capecitabine '-- '-- '-- '-- '-- '-- '-- 6000 '-- mg '-- '-- '-- '-- 1cf6111d-abb6-47fa-9acb-583cfb52940a '-- yes '-- '-- Chemotherapy +TCGA-OV 08c64000-d320-4e4d-974b-da503d48890c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1553 53 false '-- '-- '-- '-- -19393 1767 f6ba61ac-3f98-557c-ac57-f0a30a3dc22b '-- not reported female '-- '-- '-- '-- white TCGA-24-1553_demographic Dead '-- '-- '-- '-- 19393 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0f6394e0-ad6b-55a6-bb34-cb34cbc020ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1553_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1293 1243 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-1553_treatment Tamoxifen '-- '-- '-- '-- '-- '-- '-- 20 '-- mg '-- '-- '-- '-- 2013ed67-c225-52e5-91aa-e926eaa05f58 '-- yes '-- '-- Hormone Therapy +TCGA-OV 08c64000-d320-4e4d-974b-da503d48890c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1553 53 false '-- '-- '-- '-- -19393 1767 f6ba61ac-3f98-557c-ac57-f0a30a3dc22b '-- not reported female '-- '-- '-- '-- white TCGA-24-1553_demographic Dead '-- '-- '-- '-- 19393 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0f6394e0-ad6b-55a6-bb34-cb34cbc020ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1553_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1735 1735 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1553_treatment12 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 63 '-- mg '-- '-- '-- '-- 24202c42-3f55-4d47-b66b-ef5950862010 '-- yes '-- '-- Chemotherapy +TCGA-OV 08c64000-d320-4e4d-974b-da503d48890c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1553 53 false '-- '-- '-- '-- -19393 1767 f6ba61ac-3f98-557c-ac57-f0a30a3dc22b '-- not reported female '-- '-- '-- '-- white TCGA-24-1553_demographic Dead '-- '-- '-- '-- 19393 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0f6394e0-ad6b-55a6-bb34-cb34cbc020ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1553_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1623 1309 '-- '-- Progressive Disease '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1553_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3800 '-- mg '-- '-- '-- '-- 317af912-2313-4000-ba8a-e5b16d6b73c0 '-- yes '-- '-- Chemotherapy +TCGA-OV 08c64000-d320-4e4d-974b-da503d48890c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1553 53 false '-- '-- '-- '-- -19393 1767 f6ba61ac-3f98-557c-ac57-f0a30a3dc22b '-- not reported female '-- '-- '-- '-- white TCGA-24-1553_demographic Dead '-- '-- '-- '-- 19393 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0f6394e0-ad6b-55a6-bb34-cb34cbc020ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1553_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1224 944 '-- '-- Progressive Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1553_treatment5 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 29746 '-- mg '-- '-- '-- '-- 33034fe3-cff7-43be-95cc-4deeca965302 '-- yes '-- '-- Chemotherapy +TCGA-OV 08c64000-d320-4e4d-974b-da503d48890c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1553 53 false '-- '-- '-- '-- -19393 1767 f6ba61ac-3f98-557c-ac57-f0a30a3dc22b '-- not reported female '-- '-- '-- '-- white TCGA-24-1553_demographic Dead '-- '-- '-- '-- 19393 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0f6394e0-ad6b-55a6-bb34-cb34cbc020ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1553_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1224 944 '-- '-- Progressive Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1553_treatment8 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 448 '-- mg '-- '-- '-- '-- 399217ff-15dc-49ab-81a1-83d8c69ecedf '-- yes '-- '-- Chemotherapy +TCGA-OV 08c64000-d320-4e4d-974b-da503d48890c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1553 53 false '-- '-- '-- '-- -19393 1767 f6ba61ac-3f98-557c-ac57-f0a30a3dc22b '-- not reported female '-- '-- '-- '-- white TCGA-24-1553_demographic Dead '-- '-- '-- '-- 19393 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0f6394e0-ad6b-55a6-bb34-cb34cbc020ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1553_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 735 566 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1553_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1740 '-- mg '-- '-- '-- '-- 8b1bd283-3b31-448e-938e-d456a7371ad1 '-- yes '-- '-- Chemotherapy +TCGA-OV 08c64000-d320-4e4d-974b-da503d48890c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1553 53 false '-- '-- '-- '-- -19393 1767 f6ba61ac-3f98-557c-ac57-f0a30a3dc22b '-- not reported female '-- '-- '-- '-- white TCGA-24-1553_demographic Dead '-- '-- '-- '-- 19393 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0f6394e0-ad6b-55a6-bb34-cb34cbc020ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1553_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 154 17 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1553_treatment11 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2715 '-- mg '-- '-- '-- '-- 8b3d425a-5ec8-46f9-aea6-694f29ac43d0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 08c64000-d320-4e4d-974b-da503d48890c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1553 53 false '-- '-- '-- '-- -19393 1767 f6ba61ac-3f98-557c-ac57-f0a30a3dc22b '-- not reported female '-- '-- '-- '-- white TCGA-24-1553_demographic Dead '-- '-- '-- '-- 19393 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0f6394e0-ad6b-55a6-bb34-cb34cbc020ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1553_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 154 17 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1553_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1732 '-- mg '-- '-- '-- '-- 9984b132-5bb0-4bee-9597-a2c2d900ee10 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 08c64000-d320-4e4d-974b-da503d48890c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1553 53 false '-- '-- '-- '-- -19393 1767 f6ba61ac-3f98-557c-ac57-f0a30a3dc22b '-- not reported female '-- '-- '-- '-- white TCGA-24-1553_demographic Dead '-- '-- '-- '-- 19393 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0f6394e0-ad6b-55a6-bb34-cb34cbc020ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1553_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1553_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a1d09b82-b9a9-4b7d-a1ce-5bae251f8397 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 08c64000-d320-4e4d-974b-da503d48890c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1553 53 false '-- '-- '-- '-- -19393 1767 f6ba61ac-3f98-557c-ac57-f0a30a3dc22b '-- not reported female '-- '-- '-- '-- white TCGA-24-1553_demographic Dead '-- '-- '-- '-- 19393 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0f6394e0-ad6b-55a6-bb34-cb34cbc020ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1553_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1623 1309 '-- '-- Progressive Disease '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1553_treatment10 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 3360 '-- mg '-- '-- '-- '-- c98cdc9f-6df6-468d-9946-02530b2787f5 '-- yes '-- '-- Chemotherapy +TCGA-OV 08c64000-d320-4e4d-974b-da503d48890c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1553 53 false '-- '-- '-- '-- -19393 1767 f6ba61ac-3f98-557c-ac57-f0a30a3dc22b '-- not reported female '-- '-- '-- '-- white TCGA-24-1553_demographic Dead '-- '-- '-- '-- 19393 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0f6394e0-ad6b-55a6-bb34-cb34cbc020ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1553_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 735 566 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1553_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3360 '-- mg '-- '-- '-- '-- ca153da3-c183-4212-939c-29d64d9f954b '-- yes '-- '-- Chemotherapy +TCGA-OV 08c64000-d320-4e4d-974b-da503d48890c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1553 53 false '-- '-- '-- '-- -19393 1767 f6ba61ac-3f98-557c-ac57-f0a30a3dc22b '-- not reported female '-- '-- '-- '-- white TCGA-24-1553_demographic Dead '-- '-- '-- '-- 19946 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 553 '-- '-- '-- 977c20e1-b040-4d19-851d-f5ae5af930de false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1553_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1553_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1553_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1bf442da-aa00-4859-af88-12ff0fdf3d82 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 08c64000-d320-4e4d-974b-da503d48890c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1553 53 false '-- '-- '-- '-- -19393 1767 f6ba61ac-3f98-557c-ac57-f0a30a3dc22b '-- not reported female '-- '-- '-- '-- white TCGA-24-1553_demographic Dead '-- '-- '-- '-- 19946 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 553 '-- '-- '-- 977c20e1-b040-4d19-851d-f5ae5af930de false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1553_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1553_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1553_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bc86ba36-6493-4f82-89af-15de6becad6f '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 09820a33-80b1-42d0-8366-a0ddaf94b122 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1714 68 false '-- '-- '-- '-- -25032 1158 490023f5-f2f1-5600-b594-3718d8334148 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-30-1714_demographic Dead '-- '-- '-- '-- 25273 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 241 '-- '-- '-- 829b4b09-c75f-4290-96a6-a51c5f2183ce false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1714_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1714_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1714_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9f6d0128-d129-4fe9-ae0a-941540c4e5d0 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 09820a33-80b1-42d0-8366-a0ddaf94b122 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1714 68 false '-- '-- '-- '-- -25032 1158 490023f5-f2f1-5600-b594-3718d8334148 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-30-1714_demographic Dead '-- '-- '-- '-- 25273 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 241 '-- '-- '-- 829b4b09-c75f-4290-96a6-a51c5f2183ce false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1714_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1714_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1714_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c3d71106-d773-4469-9ed4-09ae295c8ae7 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 09820a33-80b1-42d0-8366-a0ddaf94b122 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1714 68 false '-- '-- '-- '-- -25032 1158 490023f5-f2f1-5600-b594-3718d8334148 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-30-1714_demographic Dead '-- '-- '-- '-- 25032 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8d5d54a4-1e71-57dd-aac3-36c47e241a56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 283 246 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1714_treatment14 Anastrozole '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 03f57761-af0a-41f3-9e66-25afbefc4633 '-- yes '-- '-- Hormone Therapy +TCGA-OV 09820a33-80b1-42d0-8366-a0ddaf94b122 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1714 68 false '-- '-- '-- '-- -25032 1158 490023f5-f2f1-5600-b594-3718d8334148 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-30-1714_demographic Dead '-- '-- '-- '-- 25032 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8d5d54a4-1e71-57dd-aac3-36c47e241a56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 955 906 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1714_treatment10 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 700 '-- mg/m2 '-- '-- '-- '-- 09e8de2f-8b50-4844-a0d6-2ca554e034ca '-- yes '-- '-- Chemotherapy +TCGA-OV 09820a33-80b1-42d0-8366-a0ddaf94b122 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1714 68 false '-- '-- '-- '-- -25032 1158 490023f5-f2f1-5600-b594-3718d8334148 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-30-1714_demographic Dead '-- '-- '-- '-- 25032 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8d5d54a4-1e71-57dd-aac3-36c47e241a56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1075 1002 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1714_treatment9 Carboplatin '-- '-- '-- '-- '-- '-- '-- 343 '-- mg/m2 '-- '-- '-- '-- 19f010cc-2053-4de4-8360-870875f3a777 '-- yes '-- '-- Chemotherapy +TCGA-OV 09820a33-80b1-42d0-8366-a0ddaf94b122 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1714 68 false '-- '-- '-- '-- -25032 1158 490023f5-f2f1-5600-b594-3718d8334148 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-30-1714_demographic Dead '-- '-- '-- '-- 25032 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8d5d54a4-1e71-57dd-aac3-36c47e241a56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 123 15 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1714_treatment8 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 1dd4d72d-d439-40ca-a22a-ff176e660cc6 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 09820a33-80b1-42d0-8366-a0ddaf94b122 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1714 68 false '-- '-- '-- '-- -25032 1158 490023f5-f2f1-5600-b594-3718d8334148 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-30-1714_demographic Dead '-- '-- '-- '-- 25032 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8d5d54a4-1e71-57dd-aac3-36c47e241a56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 700 555 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1714_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 278 '-- mg/m2 '-- '-- '-- '-- 22671607-dda1-46f5-853a-34867362feae '-- yes '-- '-- Chemotherapy +TCGA-OV 09820a33-80b1-42d0-8366-a0ddaf94b122 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1714 68 false '-- '-- '-- '-- -25032 1158 490023f5-f2f1-5600-b594-3718d8334148 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-30-1714_demographic Dead '-- '-- '-- '-- 25032 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8d5d54a4-1e71-57dd-aac3-36c47e241a56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 700 555 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1714_treatment12 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 228bf37f-054c-4706-92a1-d30e3e829d27 '-- yes '-- '-- Chemotherapy +TCGA-OV 09820a33-80b1-42d0-8366-a0ddaf94b122 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1714 68 false '-- '-- '-- '-- -25032 1158 490023f5-f2f1-5600-b594-3718d8334148 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-30-1714_demographic Dead '-- '-- '-- '-- 25032 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8d5d54a4-1e71-57dd-aac3-36c47e241a56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 700 555 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1714_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 343 '-- mg/m2 '-- '-- '-- '-- 2483fb69-67fb-46ca-a978-d020f6a5b552 '-- yes '-- '-- Chemotherapy +TCGA-OV 09820a33-80b1-42d0-8366-a0ddaf94b122 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1714 68 false '-- '-- '-- '-- -25032 1158 490023f5-f2f1-5600-b594-3718d8334148 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-30-1714_demographic Dead '-- '-- '-- '-- 25032 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8d5d54a4-1e71-57dd-aac3-36c47e241a56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 990 973 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-30-1714_treatment7 Etoposide '-- '-- '-- '-- '-- '-- '-- 50 '-- mg '-- '-- '-- '-- 475c28bd-fb88-4548-a893-69b1a585adb7 '-- yes '-- '-- Chemotherapy +TCGA-OV 09820a33-80b1-42d0-8366-a0ddaf94b122 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1714 68 false '-- '-- '-- '-- -25032 1158 490023f5-f2f1-5600-b594-3718d8334148 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-30-1714_demographic Dead '-- '-- '-- '-- 25032 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8d5d54a4-1e71-57dd-aac3-36c47e241a56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 955 906 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1714_treatment5 Docetaxel '-- '-- '-- '-- '-- '-- '-- 30 '-- mg/m2 '-- '-- '-- '-- 5c8de676-8882-4053-a12b-510262831c32 '-- yes '-- '-- Chemotherapy +TCGA-OV 09820a33-80b1-42d0-8366-a0ddaf94b122 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1714 68 false '-- '-- '-- '-- -25032 1158 490023f5-f2f1-5600-b594-3718d8334148 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-30-1714_demographic Dead '-- '-- '-- '-- 25032 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8d5d54a4-1e71-57dd-aac3-36c47e241a56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1081 1002 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1714_treatment13 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- 5f16d2cf-b3e7-4616-a482-bb17cd0c0344 '-- yes '-- '-- Chemotherapy +TCGA-OV 09820a33-80b1-42d0-8366-a0ddaf94b122 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1714 68 false '-- '-- '-- '-- -25032 1158 490023f5-f2f1-5600-b594-3718d8334148 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-30-1714_demographic Dead '-- '-- '-- '-- 25032 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8d5d54a4-1e71-57dd-aac3-36c47e241a56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 521 424 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1714_treatment4 Topotecan '-- '-- '-- '-- '-- '-- '-- 3 '-- mg/m2 '-- '-- '-- '-- 6eaa1488-aa24-4ed4-80af-50bf5fb46076 '-- yes '-- '-- Chemotherapy +TCGA-OV 09820a33-80b1-42d0-8366-a0ddaf94b122 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1714 68 false '-- '-- '-- '-- -25032 1158 490023f5-f2f1-5600-b594-3718d8334148 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-30-1714_demographic Dead '-- '-- '-- '-- 25032 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8d5d54a4-1e71-57dd-aac3-36c47e241a56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 417 314 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1714_treatment11 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 40 '-- mg/m2 '-- '-- '-- '-- 7b85224c-53f6-4de6-aaba-a371bb0277d1 '-- yes '-- '-- Chemotherapy +TCGA-OV 09820a33-80b1-42d0-8366-a0ddaf94b122 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1714 68 false '-- '-- '-- '-- -25032 1158 490023f5-f2f1-5600-b594-3718d8334148 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-30-1714_demographic Dead '-- '-- '-- '-- 25032 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8d5d54a4-1e71-57dd-aac3-36c47e241a56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- 777 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1714_treatment '-- '-- '-- '-- '-- '-- Distant Site '-- '-- '-- '-- '-- '-- '-- '-- b1df4a94-84bb-5f56-9709-b3580d2dcb0c Adjuvant yes '-- '-- Radiation, External Beam +TCGA-OV 09820a33-80b1-42d0-8366-a0ddaf94b122 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1714 68 false '-- '-- '-- '-- -25032 1158 490023f5-f2f1-5600-b594-3718d8334148 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-30-1714_demographic Dead '-- '-- '-- '-- 25032 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8d5d54a4-1e71-57dd-aac3-36c47e241a56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 123 15 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1714_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bf5e2b82-3232-441c-ad8e-1609ce6c83f8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 09c77947-a333-4392-b18d-a6c1f08764a1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1842 49 false '-- '-- '-- '-- -18227 '-- 1002b6b2-c01e-55fc-80a0-ffb1512d7c36 '-- not reported female '-- '-- '-- '-- white TCGA-24-1842_demographic Alive '-- '-- '-- '-- 18227 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 53645a91-09b0-52fe-a6c3-029904ef194e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1842_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 253 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1842_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4355 '-- mg '-- '-- '-- '-- 127e6b3e-d997-41e1-aaaa-003ef60b1b63 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 09c77947-a333-4392-b18d-a6c1f08764a1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1842 49 false '-- '-- '-- '-- -18227 '-- 1002b6b2-c01e-55fc-80a0-ffb1512d7c36 '-- not reported female '-- '-- '-- '-- white TCGA-24-1842_demographic Alive '-- '-- '-- '-- 18227 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 53645a91-09b0-52fe-a6c3-029904ef194e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1842_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1842_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 605c71cc-1e60-4059-bc6a-fc9a0f52914f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 09c77947-a333-4392-b18d-a6c1f08764a1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1842 49 false '-- '-- '-- '-- -18227 '-- 1002b6b2-c01e-55fc-80a0-ffb1512d7c36 '-- not reported female '-- '-- '-- '-- white TCGA-24-1842_demographic Alive '-- '-- '-- '-- 18227 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 53645a91-09b0-52fe-a6c3-029904ef194e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1842_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 253 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1842_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2043 '-- mg '-- '-- '-- '-- 835bdafc-d17f-4cf8-9f88-11991c1b0b0a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 09c77947-a333-4392-b18d-a6c1f08764a1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1842 49 false '-- '-- '-- '-- -18227 '-- 1002b6b2-c01e-55fc-80a0-ffb1512d7c36 '-- not reported female '-- '-- '-- '-- white TCGA-24-1842_demographic Alive '-- '-- '-- '-- 18227 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 53645a91-09b0-52fe-a6c3-029904ef194e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1842_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 253 43 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1842_treatment Clinical Trial '-- '-- '-- '-- '-- '-- '-- 14331 '-- mg '-- '-- '-- '-- c994f920-7c4b-5e02-8f9e-f14efe9b945e Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV 0a2d29de-869a-4dc8-ad11-6ee0d0a3a895 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1736 45 false '-- '-- '-- '-- -16613 1484 939d1efe-bdfb-577a-94ee-c8c9e51b5fe6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1736_demographic Dead '-- '-- '-- '-- 16613 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 06cbb2ff-f89f-5c49-a700-1241cb4fa9f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1736_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 138 34 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1736_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 26cdbde5-ebec-5818-8d7a-29010209e452 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0a2d29de-869a-4dc8-ad11-6ee0d0a3a895 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1736 45 false '-- '-- '-- '-- -16613 1484 939d1efe-bdfb-577a-94ee-c8c9e51b5fe6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1736_demographic Dead '-- '-- '-- '-- 16613 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 06cbb2ff-f89f-5c49-a700-1241cb4fa9f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1736_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1736_treatment4 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5cc20747-d14a-4a76-b448-e37ac91a6070 '-- yes '-- '-- Chemotherapy +TCGA-OV 0a2d29de-869a-4dc8-ad11-6ee0d0a3a895 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1736 45 false '-- '-- '-- '-- -16613 1484 939d1efe-bdfb-577a-94ee-c8c9e51b5fe6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1736_demographic Dead '-- '-- '-- '-- 16613 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 06cbb2ff-f89f-5c49-a700-1241cb4fa9f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1736_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 138 34 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1736_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 95410298-1ce8-494d-8e95-9f10c6c0e860 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0a2d29de-869a-4dc8-ad11-6ee0d0a3a895 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1736 45 false '-- '-- '-- '-- -16613 1484 939d1efe-bdfb-577a-94ee-c8c9e51b5fe6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1736_demographic Dead '-- '-- '-- '-- 16613 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 06cbb2ff-f89f-5c49-a700-1241cb4fa9f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1736_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1736_treatment5 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aae02639-70cd-4a5b-8f89-032999ac473b '-- yes '-- '-- Chemotherapy +TCGA-OV 0a2d29de-869a-4dc8-ad11-6ee0d0a3a895 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1736 45 false '-- '-- '-- '-- -16613 1484 939d1efe-bdfb-577a-94ee-c8c9e51b5fe6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1736_demographic Dead '-- '-- '-- '-- 16613 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 06cbb2ff-f89f-5c49-a700-1241cb4fa9f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1736_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- 946 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1736_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cb0d37d1-df4b-474b-845e-1f62091fd964 '-- yes '-- '-- Chemotherapy +TCGA-OV 0a2d29de-869a-4dc8-ad11-6ee0d0a3a895 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1736 45 false '-- '-- '-- '-- -16613 1484 939d1efe-bdfb-577a-94ee-c8c9e51b5fe6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1736_demographic Dead '-- '-- '-- '-- 16613 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 06cbb2ff-f89f-5c49-a700-1241cb4fa9f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1736_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1736_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e642e5c4-6725-4287-b1ef-401a001bc3c7 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0a2d29de-869a-4dc8-ad11-6ee0d0a3a895 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1736 45 false '-- '-- '-- '-- -16613 1484 939d1efe-bdfb-577a-94ee-c8c9e51b5fe6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1736_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5463dc21-cbdd-465c-ad53-128b5d4b181f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1736_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1736_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 812 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1736_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 27a5e875-3f31-4e36-8d67-7ebd87e24c19 '-- yes '-- '-- Surgery, NOS +TCGA-OV 0a2d29de-869a-4dc8-ad11-6ee0d0a3a895 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1736 45 false '-- '-- '-- '-- -16613 1484 939d1efe-bdfb-577a-94ee-c8c9e51b5fe6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1736_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5463dc21-cbdd-465c-ad53-128b5d4b181f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1736_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1736_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1736_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4882be94-0b95-454a-8b33-4ec2747a40dd '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 0a2d29de-869a-4dc8-ad11-6ee0d0a3a895 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1736 45 false '-- '-- '-- '-- -16613 1484 939d1efe-bdfb-577a-94ee-c8c9e51b5fe6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1736_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5463dc21-cbdd-465c-ad53-128b5d4b181f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1736_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1736_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1736_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5aae0f59-2c3b-4ca6-a8a9-b49977290867 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 0a2d29de-869a-4dc8-ad11-6ee0d0a3a895 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1736 45 false '-- '-- '-- '-- -16613 1484 939d1efe-bdfb-577a-94ee-c8c9e51b5fe6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1736_demographic Dead '-- '-- '-- '-- 17377 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 764 '-- '-- '-- 7066c7ee-ee6e-4953-a0d3-59ea7847fcfb false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1736_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1736_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1736_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 76c2851c-ac0c-431c-8a03-59ebb6a75e9b '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 0a2d29de-869a-4dc8-ad11-6ee0d0a3a895 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1736 45 false '-- '-- '-- '-- -16613 1484 939d1efe-bdfb-577a-94ee-c8c9e51b5fe6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1736_demographic Dead '-- '-- '-- '-- 17377 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 764 '-- '-- '-- 7066c7ee-ee6e-4953-a0d3-59ea7847fcfb false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1736_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1736_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1736_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aee1fd06-e11c-410a-9d1f-d9bfdce45265 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 0a48873a-092a-4b25-822b-b0b3c18c08a8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2024 72 false '-- '-- '-- '-- -26476 1769 7d734828-adb9-5d7e-966d-8e0043300194 '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-2024_demographic Dead '-- '-- '-- '-- 26897 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 421 '-- '-- '-- d5ea7a05-cb2b-491d-abcd-c7daa8cce177 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2024_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2024_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2024_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0bd5424e-fc61-4cb2-922e-d6a21649d954 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 0a48873a-092a-4b25-822b-b0b3c18c08a8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2024 72 false '-- '-- '-- '-- -26476 1769 7d734828-adb9-5d7e-966d-8e0043300194 '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-2024_demographic Dead '-- '-- '-- '-- 26897 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 421 '-- '-- '-- d5ea7a05-cb2b-491d-abcd-c7daa8cce177 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2024_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2024_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2024_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a671333f-6470-48d6-8534-e23336721bf8 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 0a48873a-092a-4b25-822b-b0b3c18c08a8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2024 72 false '-- '-- '-- '-- -26476 1769 7d734828-adb9-5d7e-966d-8e0043300194 '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-2024_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e3a37e53-51ae-4970-88ad-6b62e829af95 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2024_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2024_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 419 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2024_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 10067186-80fe-4c2e-9934-1c842c1f2aaf '-- yes '-- '-- Surgery, NOS +TCGA-OV 0a48873a-092a-4b25-822b-b0b3c18c08a8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2024 72 false '-- '-- '-- '-- -26476 1769 7d734828-adb9-5d7e-966d-8e0043300194 '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-2024_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e3a37e53-51ae-4970-88ad-6b62e829af95 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2024_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2024_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2024_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7a6dd18c-3797-4c90-8ab7-e7f982a2abc3 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 0a48873a-092a-4b25-822b-b0b3c18c08a8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2024 72 false '-- '-- '-- '-- -26476 1769 7d734828-adb9-5d7e-966d-8e0043300194 '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-2024_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e3a37e53-51ae-4970-88ad-6b62e829af95 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2024_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2024_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2024_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9184e481-aaef-4c18-9d01-a5ed5128a0a0 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 0a48873a-092a-4b25-822b-b0b3c18c08a8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2024 72 false '-- '-- '-- '-- -26476 1769 7d734828-adb9-5d7e-966d-8e0043300194 '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-2024_demographic Dead '-- '-- '-- '-- 26476 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f6efd774-9d62-56da-95f2-00366dfc8c27 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2024_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 120 10 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2024_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1573 '-- mg '-- '-- '-- '-- 0c6679e4-1e24-4b16-b37f-54312b515c84 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0a48873a-092a-4b25-822b-b0b3c18c08a8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2024 72 false '-- '-- '-- '-- -26476 1769 7d734828-adb9-5d7e-966d-8e0043300194 '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-2024_demographic Dead '-- '-- '-- '-- 26476 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f6efd774-9d62-56da-95f2-00366dfc8c27 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2024_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 568 456 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2024_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2444 '-- mg '-- '-- '-- '-- 524d94c1-5cb2-48be-958e-977565d622af '-- yes '-- '-- Chemotherapy +TCGA-OV 0a48873a-092a-4b25-822b-b0b3c18c08a8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2024 72 false '-- '-- '-- '-- -26476 1769 7d734828-adb9-5d7e-966d-8e0043300194 '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-2024_demographic Dead '-- '-- '-- '-- 26476 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f6efd774-9d62-56da-95f2-00366dfc8c27 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2024_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 120 10 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2024_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 3348 '-- mg '-- '-- '-- '-- 823f6596-b65d-5519-86f6-a5c4e5181b3b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0a48873a-092a-4b25-822b-b0b3c18c08a8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2024 72 false '-- '-- '-- '-- -26476 1769 7d734828-adb9-5d7e-966d-8e0043300194 '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-2024_demographic Dead '-- '-- '-- '-- 26476 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f6efd774-9d62-56da-95f2-00366dfc8c27 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2024_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2024_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a1f3b445-3fd2-4e71-8d2e-d0666887042c Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0a48873a-092a-4b25-822b-b0b3c18c08a8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2024 72 false '-- '-- '-- '-- -26476 1769 7d734828-adb9-5d7e-966d-8e0043300194 '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-2024_demographic Dead '-- '-- '-- '-- 26476 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f6efd774-9d62-56da-95f2-00366dfc8c27 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2024_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 568 456 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2024_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3533 '-- mg '-- '-- '-- '-- cccd4550-91cc-49e8-bc29-1a0beb01283c '-- yes '-- '-- Chemotherapy +TCGA-OV 0aa020cb-69d2-4235-a609-c279a133d8bb Informed Consent 14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1737 42 false '-- '-- '-- '-- -15515 '-- 7a541ca2-8c30-58c9-ad7e-ff1f0d75aa14 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1737_demographic Alive '-- '-- '-- '-- 15515 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 12f72a04-d096-517f-b4d6-c4369f4a1bf6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1737_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 176 127 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-1737_treatment6 Cisplatin '-- '-- '-- '-- '-- '-- '-- 372 '-- mg '-- '-- '-- '-- 1125bf50-97a7-43e9-8297-c7863272df73 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0aa020cb-69d2-4235-a609-c279a133d8bb Informed Consent 14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1737 42 false '-- '-- '-- '-- -15515 '-- 7a541ca2-8c30-58c9-ad7e-ff1f0d75aa14 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1737_demographic Alive '-- '-- '-- '-- 15515 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 12f72a04-d096-517f-b4d6-c4369f4a1bf6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1737_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1737_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1385a320-bfc5-4da4-914c-c682bb5c36cc Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0aa020cb-69d2-4235-a609-c279a133d8bb Informed Consent 14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1737 42 false '-- '-- '-- '-- -15515 '-- 7a541ca2-8c30-58c9-ad7e-ff1f0d75aa14 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1737_demographic Alive '-- '-- '-- '-- 15515 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 12f72a04-d096-517f-b4d6-c4369f4a1bf6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1737_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- 582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1737_treatment3 Tamoxifen '-- '-- '-- '-- '-- '-- '-- 19000 '-- mg/day '-- '-- '-- '-- 440d0d89-80b4-41d3-84b7-5deb3cae6438 Adjuvant yes Treatment Ongoing '-- Hormone Therapy +TCGA-OV 0aa020cb-69d2-4235-a609-c279a133d8bb Informed Consent 14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1737 42 false '-- '-- '-- '-- -15515 '-- 7a541ca2-8c30-58c9-ad7e-ff1f0d75aa14 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1737_demographic Alive '-- '-- '-- '-- 15515 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 12f72a04-d096-517f-b4d6-c4369f4a1bf6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1737_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 176 127 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-1737_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 270 '-- mg '-- '-- '-- '-- b0b08730-81d3-4e63-baee-f4210547ae89 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0aa020cb-69d2-4235-a609-c279a133d8bb Informed Consent 14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1737 42 false '-- '-- '-- '-- -15515 '-- 7a541ca2-8c30-58c9-ad7e-ff1f0d75aa14 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1737_demographic Alive '-- '-- '-- '-- 15515 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 12f72a04-d096-517f-b4d6-c4369f4a1bf6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1737_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 106 43 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1737_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2600 '-- mg '-- '-- '-- '-- b3e3a376-78cb-47a9-adb3-3e31e0a7ee90 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0aa020cb-69d2-4235-a609-c279a133d8bb Informed Consent 14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1737 42 false '-- '-- '-- '-- -15515 '-- 7a541ca2-8c30-58c9-ad7e-ff1f0d75aa14 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1737_demographic Alive '-- '-- '-- '-- 15515 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 12f72a04-d096-517f-b4d6-c4369f4a1bf6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1737_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 106 43 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1737_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- 480 '-- mg '-- '-- '-- '-- bf28a79c-0327-5f7a-9371-c7dcce64526c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0aa020cb-69d2-4235-a609-c279a133d8bb Informed Consent 14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1737 42 false '-- '-- '-- '-- -15515 '-- 7a541ca2-8c30-58c9-ad7e-ff1f0d75aa14 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1737_demographic Alive '-- '-- '-- '-- 15515 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 12f72a04-d096-517f-b4d6-c4369f4a1bf6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1737_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 176 127 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1737_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 198 '-- mg '-- '-- '-- '-- f3ba530c-7b74-4a48-b762-d05f3c3eb91a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0b2ea4b7-98bb-4190-b682-2c75b447c90a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1314 42 false '-- '-- '-- '-- -15462 1004 e600b6c2-88c6-5447-835f-a71c482c6c16 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1314_demographic Dead '-- '-- '-- '-- 15736 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 274 '-- '-- '-- 21d8ec03-5fae-439d-83c1-94488c75f843 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1314_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1314_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1314_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 93609a03-5c16-4a58-be54-7cf798c41beb '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 0b2ea4b7-98bb-4190-b682-2c75b447c90a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1314 42 false '-- '-- '-- '-- -15462 1004 e600b6c2-88c6-5447-835f-a71c482c6c16 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1314_demographic Dead '-- '-- '-- '-- 15736 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 274 '-- '-- '-- 21d8ec03-5fae-439d-83c1-94488c75f843 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1314_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1314_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1314_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fedfc2d5-ba54-4568-a286-7f34a9deac26 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 0b2ea4b7-98bb-4190-b682-2c75b447c90a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1314 42 false '-- '-- '-- '-- -15462 1004 e600b6c2-88c6-5447-835f-a71c482c6c16 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1314_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f600ecf6-b9c5-41df-ba27-761b457269e3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1314_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1314_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1314_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 345e07b8-0be3-45dc-a091-b426ad9ef8c2 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 0b2ea4b7-98bb-4190-b682-2c75b447c90a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1314 42 false '-- '-- '-- '-- -15462 1004 e600b6c2-88c6-5447-835f-a71c482c6c16 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1314_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f600ecf6-b9c5-41df-ba27-761b457269e3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1314_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1314_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1314_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7cffbb96-d766-4ba6-8e1d-e7f513562eaa '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 0b2ea4b7-98bb-4190-b682-2c75b447c90a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1314 42 false '-- '-- '-- '-- -15462 1004 e600b6c2-88c6-5447-835f-a71c482c6c16 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1314_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f600ecf6-b9c5-41df-ba27-761b457269e3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1314_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1314_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 274 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1314_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9bac625e-a3e2-44e6-9eb5-5e8751a9c901 '-- yes '-- '-- Surgery, NOS +TCGA-OV 0b2ea4b7-98bb-4190-b682-2c75b447c90a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1314 42 false '-- '-- '-- '-- -15462 1004 e600b6c2-88c6-5447-835f-a71c482c6c16 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1314_demographic Dead '-- '-- '-- '-- 15462 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f7caf6fe-7ab2-57f8-946d-0f328ad4f7c2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1314_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1314_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 28bbfaef-289e-53bc-8bb0-f2e5cb461bf9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0b2ea4b7-98bb-4190-b682-2c75b447c90a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1314 42 false '-- '-- '-- '-- -15462 1004 e600b6c2-88c6-5447-835f-a71c482c6c16 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1314_demographic Dead '-- '-- '-- '-- 15462 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f7caf6fe-7ab2-57f8-946d-0f328ad4f7c2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1314_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- 31 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1314_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 60aa02fa-7705-467a-8c07-1285ca475f26 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0b2ea4b7-98bb-4190-b682-2c75b447c90a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1314 42 false '-- '-- '-- '-- -15462 1004 e600b6c2-88c6-5447-835f-a71c482c6c16 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1314_demographic Dead '-- '-- '-- '-- 15462 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f7caf6fe-7ab2-57f8-946d-0f328ad4f7c2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1314_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- 31 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1314_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bd6d993a-0d91-4758-946b-dbeb52b6fedc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0b2ea4b7-98bb-4190-b682-2c75b447c90a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1314 42 false '-- '-- '-- '-- -15462 1004 e600b6c2-88c6-5447-835f-a71c482c6c16 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1314_demographic Dead '-- '-- '-- '-- 15462 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f7caf6fe-7ab2-57f8-946d-0f328ad4f7c2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1314_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 425 274 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1314_treatment2 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d04edc52-5e4e-4224-a567-29096f673297 '-- yes '-- '-- Chemotherapy +TCGA-OV 0b2ea4b7-98bb-4190-b682-2c75b447c90a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1314 42 false '-- '-- '-- '-- -15462 1004 e600b6c2-88c6-5447-835f-a71c482c6c16 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1314_demographic Dead '-- '-- '-- '-- 15462 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f7caf6fe-7ab2-57f8-946d-0f328ad4f7c2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1314_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1314_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dfcfc093-aa12-485f-af29-107465f53289 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0ba7b6cc-e5f5-47d7-859a-24e31aa336ab '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0908 58 false '-- '-- '-- '-- -21422 1843 0efe3097-e953-59c4-8eb1-a4d8d5c68285 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0908_demographic Dead '-- '-- '-- '-- 21974 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 552 '-- '-- '-- 481009f9-c3d0-4cc5-8dc9-ddf1a3ce0a9f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0908_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0908_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 0ba7b6cc-e5f5-47d7-859a-24e31aa336ab '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0908 58 false '-- '-- '-- '-- -21422 1843 0efe3097-e953-59c4-8eb1-a4d8d5c68285 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0908_demographic Dead '-- '-- '-- '-- 21974 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 552 '-- '-- '-- 5eab3056-7ac2-4d05-93eb-43797fdef698 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0908_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0908_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0908_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3fa96dab-7f11-43a8-9dde-511c8a579d5f '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 0ba7b6cc-e5f5-47d7-859a-24e31aa336ab '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0908 58 false '-- '-- '-- '-- -21422 1843 0efe3097-e953-59c4-8eb1-a4d8d5c68285 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0908_demographic Dead '-- '-- '-- '-- 21974 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 552 '-- '-- '-- 5eab3056-7ac2-4d05-93eb-43797fdef698 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0908_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0908_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0908_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 50298854-b8a8-44a4-87d2-698a65384b94 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 0ba7b6cc-e5f5-47d7-859a-24e31aa336ab '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0908 58 false '-- '-- '-- '-- -21422 1843 0efe3097-e953-59c4-8eb1-a4d8d5c68285 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0908_demographic Dead '-- '-- '-- '-- 21422 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c01d98f7-34f8-57cb-9d1c-53780e4956b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0908_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0908_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5c8e27f6-e07e-4ef5-af44-ea4aa302e6ab Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0ba7b6cc-e5f5-47d7-859a-24e31aa336ab '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0908 58 false '-- '-- '-- '-- -21422 1843 0efe3097-e953-59c4-8eb1-a4d8d5c68285 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0908_demographic Dead '-- '-- '-- '-- 21422 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c01d98f7-34f8-57cb-9d1c-53780e4956b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0908_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 244 198 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0908_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 70 '-- mg/m2 '-- '-- '-- '-- 7b194fb9-e566-4986-a236-e2f84758a955 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0ba7b6cc-e5f5-47d7-859a-24e31aa336ab '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0908 58 false '-- '-- '-- '-- -21422 1843 0efe3097-e953-59c4-8eb1-a4d8d5c68285 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0908_demographic Dead '-- '-- '-- '-- 21422 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c01d98f7-34f8-57cb-9d1c-53780e4956b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0908_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 135 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0908_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- b1adcf6a-97c0-5251-8054-aa11a5482e16 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0ba7b6cc-e5f5-47d7-859a-24e31aa336ab '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0908 58 false '-- '-- '-- '-- -21422 1843 0efe3097-e953-59c4-8eb1-a4d8d5c68285 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0908_demographic Dead '-- '-- '-- '-- 21422 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c01d98f7-34f8-57cb-9d1c-53780e4956b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0908_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 135 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0908_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f825ccfa-96a0-450e-950f-d2ebf3f06b3e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 167 2 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1542_treatment9 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 17378 '-- mg '-- '-- '-- '-- 08899f5f-8c88-4218-9cf9-1a02f4975a11 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2268 2207 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1542_treatment8 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 275064ed-db5f-4c96-97f3-2abf24c1602a '-- yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2176 2115 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1542_treatment10 Docetaxel '-- '-- '-- '-- '-- '-- '-- 124 '-- mg '-- '-- '-- '-- 2d88345d-ffe6-48f8-a643-0e0a5f3dda1f '-- yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1781 1564 '-- '-- Recurrent Disease '-- '-- '-- '-- 11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1542_treatment2 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 32496 '-- mg '-- '-- '-- '-- 2e4f1a88-6118-4af5-a3d0-beab5ffdba2e '-- yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1781 1564 '-- '-- Recurrent Disease '-- '-- '-- '-- 11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1542_treatment11 Cisplatin '-- '-- '-- '-- '-- '-- '-- 11300 '-- mg '-- '-- '-- '-- 2f8b229d-8290-4f81-ac9e-f1a19fc15a75 '-- yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 167 2 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1542_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2534 '-- mg '-- '-- '-- '-- 38e25d4e-a949-58c6-a84d-461f854c58fc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1294 1051 '-- '-- Recurrent Disease '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1542_treatment15 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 4004 '-- mg '-- '-- '-- '-- 407aa31a-0ff4-4833-9577-a197409e732f '-- yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2512 2328 '-- '-- Recurrent Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1542_treatment5 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 28756 '-- mg '-- '-- '-- '-- 54a99eac-b72d-4877-8a8d-ea23a0c9812b '-- yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1542_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 58d4b26a-a818-4463-9534-b3c6e34f844a Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1487 1322 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1542_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 122 '-- mg '-- '-- '-- '-- 662b7067-7c7e-4751-a7a7-dfae159dd469 '-- yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2512 2328 '-- '-- Recurrent Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1542_treatment13 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 2870 '-- mg '-- '-- '-- '-- 7145fdd2-6c7e-4076-b2be-2ab7a347fc56 '-- yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2176 2115 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1542_treatment7 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 4875 '-- mg '-- '-- '-- '-- 78fd13bd-ec0b-4474-a8b0-0a158ee58c89 '-- yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2328 2268 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1542_treatment14 Doxorubicin '-- '-- '-- '-- '-- '-- '-- 343 '-- mg '-- '-- '-- '-- 861d72c4-2fff-4597-a940-d1538d2f89be '-- yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 167 2 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1542_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- a9cdaff0-4b9d-48bb-bc5c-0e8cb1939eb9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2106 1993 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1542_treatment12 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 7398 '-- mg '-- '-- '-- '-- bbb5175d-b4b5-49a4-8360-f4474c270d77 '-- yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1529 1501 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1542_treatment16 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 159 '-- mg '-- '-- '-- '-- c76084a3-5478-471d-8ba0-2931fb65a3c7 '-- yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1294 1051 '-- '-- Recurrent Disease '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1542_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- e4568f8b-e61a-4d62-b392-2de7d43fcf66 '-- yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 20283 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1020 '-- '-- '-- 5d9b0e32-57f6-482b-b58e-bbd7b0ba2394 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1542_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1542_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1542_treatment19 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 617d8c1f-3154-40fd-9ac2-e86ccd78f894 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 20283 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1020 '-- '-- '-- 5d9b0e32-57f6-482b-b58e-bbd7b0ba2394 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1542_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1542_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1542_treatment18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f4406411-41a1-4f89-b5c5-1dba6c3da6d6 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 0d23fa5b-95f8-4626-a4d2-c72ad3cc553b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0720 48 false '-- '-- '-- '-- -17799 1355 4361c0b6-dffe-5928-aabe-49e87f1a9447 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0720_demographic Dead '-- '-- '-- '-- 17799 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2946e499-dcfb-57a8-8e37-07c35d2228f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0720_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0720_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0f5122e9-1454-4ed6-8f15-06a74b7d89fd Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0d23fa5b-95f8-4626-a4d2-c72ad3cc553b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0720 48 false '-- '-- '-- '-- -17799 1355 4361c0b6-dffe-5928-aabe-49e87f1a9447 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0720_demographic Dead '-- '-- '-- '-- 17799 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2946e499-dcfb-57a8-8e37-07c35d2228f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0720_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 180 7 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0720_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 52c3f16b-43d6-5f3b-b00b-54f81ff2d588 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0d23fa5b-95f8-4626-a4d2-c72ad3cc553b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0720 48 false '-- '-- '-- '-- -17799 1355 4361c0b6-dffe-5928-aabe-49e87f1a9447 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0720_demographic Dead '-- '-- '-- '-- 17799 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2946e499-dcfb-57a8-8e37-07c35d2228f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0720_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 292 239 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0720_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 560 '-- mg/m2 '-- '-- '-- '-- 9d88b2bb-bc92-412f-98de-989a4818e932 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0d23fa5b-95f8-4626-a4d2-c72ad3cc553b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0720 48 false '-- '-- '-- '-- -17799 1355 4361c0b6-dffe-5928-aabe-49e87f1a9447 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0720_demographic Dead '-- '-- '-- '-- 17799 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2946e499-dcfb-57a8-8e37-07c35d2228f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0720_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 180 7 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0720_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- f8880274-08b2-41d8-86da-bf1d1b4a4ef3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0d23fa5b-95f8-4626-a4d2-c72ad3cc553b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0720 48 false '-- '-- '-- '-- -17799 1355 4361c0b6-dffe-5928-aabe-49e87f1a9447 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0720_demographic Dead '-- '-- '-- '-- 18091 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 292 '-- '-- '-- bf0c74de-0e9c-4619-a0f6-437f3021ea4d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0720_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0720_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0720_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5714ddf4-0b91-4780-aa1b-e8353d2dca6f '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 0d23fa5b-95f8-4626-a4d2-c72ad3cc553b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0720 48 false '-- '-- '-- '-- -17799 1355 4361c0b6-dffe-5928-aabe-49e87f1a9447 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0720_demographic Dead '-- '-- '-- '-- 18091 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 292 '-- '-- '-- bf0c74de-0e9c-4619-a0f6-437f3021ea4d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0720_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0720_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0720_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bbfc26f2-0eb8-4776-98fc-db2bf19f0e92 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 0d5e232d-5aa2-4f6f-be58-ffd5f15ee0b8 Informed Consent 251 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1403 48 false '-- '-- '-- '-- -17697 2345 cd835f8d-6b5c-5b52-b9f3-6392a04c6f1e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1403_demographic Dead '-- '-- '-- '-- 17697 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2bb5937a-3659-5c77-a650-35e461810f1f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1403_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 142 27 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-13-1403_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- 0809387c-642c-42e0-81d7-d3679368a7ce Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0d5e232d-5aa2-4f6f-be58-ffd5f15ee0b8 Informed Consent 251 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1403 48 false '-- '-- '-- '-- -17697 2345 cd835f8d-6b5c-5b52-b9f3-6392a04c6f1e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1403_demographic Dead '-- '-- '-- '-- 17697 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2bb5937a-3659-5c77-a650-35e461810f1f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1403_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 142 27 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-13-1403_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- 71a4ee5b-ad87-5777-a700-f569bd948d39 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0d5e232d-5aa2-4f6f-be58-ffd5f15ee0b8 Informed Consent 251 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1403 48 false '-- '-- '-- '-- -17697 2345 cd835f8d-6b5c-5b52-b9f3-6392a04c6f1e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1403_demographic Dead '-- '-- '-- '-- 17697 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2bb5937a-3659-5c77-a650-35e461810f1f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1403_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1403_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c32d0c82-c4b7-4300-b1a8-578a75b821e3 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0d5e232d-5aa2-4f6f-be58-ffd5f15ee0b8 Informed Consent 251 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1403 48 false '-- '-- '-- '-- -17697 2345 cd835f8d-6b5c-5b52-b9f3-6392a04c6f1e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1403_demographic Dead '-- '-- '-- '-- 17697 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2bb5937a-3659-5c77-a650-35e461810f1f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1403_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 142 27 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-13-1403_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- f75c0b46-f64d-4ea1-a26b-42768cc90fb1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0d5e232d-5aa2-4f6f-be58-ffd5f15ee0b8 Informed Consent 251 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1403 48 false '-- '-- '-- '-- -17697 2345 cd835f8d-6b5c-5b52-b9f3-6392a04c6f1e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1403_demographic Dead '-- '-- '-- '-- 18115 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 418 '-- '-- '-- 82c6de2f-ab66-4831-b4d8-38cef2265b2b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1403_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1403_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 0de910b1-edaf-47e4-a265-727ee12ac1c3 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0797 49 false '-- '-- '-- '-- -18051 '-- 000181a9-73a5-5da4-9bf0-5e025cfce047 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0797_demographic Alive '-- '-- '-- '-- 18051 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1721bac4-b2e8-508d-8b99-aed22fef7600 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0797_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 146 42 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0797_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- 2987e269-6b99-4fa3-a726-e6c26f410e21 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0de910b1-edaf-47e4-a265-727ee12ac1c3 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0797 49 false '-- '-- '-- '-- -18051 '-- 000181a9-73a5-5da4-9bf0-5e025cfce047 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0797_demographic Alive '-- '-- '-- '-- 18051 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1721bac4-b2e8-508d-8b99-aed22fef7600 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0797_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0797_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8931d609-610b-4514-ad22-95ba578e55b7 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0de910b1-edaf-47e4-a265-727ee12ac1c3 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0797 49 false '-- '-- '-- '-- -18051 '-- 000181a9-73a5-5da4-9bf0-5e025cfce047 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0797_demographic Alive '-- '-- '-- '-- 18051 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1721bac4-b2e8-508d-8b99-aed22fef7600 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0797_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 146 42 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0797_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 599 '-- mg '-- '-- '-- '-- a8e3feee-1dca-5f8c-845b-80182d750816 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0de910b1-edaf-47e4-a265-727ee12ac1c3 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0797 49 false '-- '-- '-- '-- -18051 '-- 000181a9-73a5-5da4-9bf0-5e025cfce047 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0797_demographic Alive '-- '-- '-- '-- 18576 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 525 '-- '-- '-- 2695cd96-6be7-439b-9de9-fe1571576799 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0797_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0797_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 0e1598d8-cbe5-4113-95f1-4bcda061239b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1702 84 false '-- '-- '-- '-- -30910 728 10173208-9da8-5d9c-abe6-266dc021e80f '-- not reported female '-- '-- '-- '-- white TCGA-29-1702_demographic Dead '-- '-- '-- '-- 31196 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 286 '-- '-- '-- 4562b29b-0220-4064-ab16-4c9e1d32902e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1702_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1702_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1702_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ac5c2a6d-86b0-477c-928c-f477c7b2a1fa '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 0e1598d8-cbe5-4113-95f1-4bcda061239b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1702 84 false '-- '-- '-- '-- -30910 728 10173208-9da8-5d9c-abe6-266dc021e80f '-- not reported female '-- '-- '-- '-- white TCGA-29-1702_demographic Dead '-- '-- '-- '-- 31196 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 286 '-- '-- '-- 4562b29b-0220-4064-ab16-4c9e1d32902e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1702_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1702_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1702_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bf7e6bd4-e6fb-4596-9400-c890f73b6319 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 0e1598d8-cbe5-4113-95f1-4bcda061239b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1702 84 false '-- '-- '-- '-- -30910 728 10173208-9da8-5d9c-abe6-266dc021e80f '-- not reported female '-- '-- '-- '-- white TCGA-29-1702_demographic Dead '-- '-- '-- '-- 30910 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- cbd53dd3-17ba-5e10-ab96-f4be6dbbfcd2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1702_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 199 '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1702_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 2c115c8a-cfca-52d0-8c1b-8cecf9f8a4c8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0e1598d8-cbe5-4113-95f1-4bcda061239b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1702 84 false '-- '-- '-- '-- -30910 728 10173208-9da8-5d9c-abe6-266dc021e80f '-- not reported female '-- '-- '-- '-- white TCGA-29-1702_demographic Dead '-- '-- '-- '-- 30910 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- cbd53dd3-17ba-5e10-ab96-f4be6dbbfcd2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1702_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- 376 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1702_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 429444be-2d78-4188-9cca-8e794bf9538e '-- yes '-- '-- Chemotherapy +TCGA-OV 0e1598d8-cbe5-4113-95f1-4bcda061239b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1702 84 false '-- '-- '-- '-- -30910 728 10173208-9da8-5d9c-abe6-266dc021e80f '-- not reported female '-- '-- '-- '-- white TCGA-29-1702_demographic Dead '-- '-- '-- '-- 30910 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- cbd53dd3-17ba-5e10-ab96-f4be6dbbfcd2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1702_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- 466 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1702_treatment4 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 461e849b-f0d5-471b-8b5b-0d6f2887bf37 '-- yes '-- '-- Chemotherapy +TCGA-OV 0e1598d8-cbe5-4113-95f1-4bcda061239b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1702 84 false '-- '-- '-- '-- -30910 728 10173208-9da8-5d9c-abe6-266dc021e80f '-- not reported female '-- '-- '-- '-- white TCGA-29-1702_demographic Dead '-- '-- '-- '-- 30910 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- cbd53dd3-17ba-5e10-ab96-f4be6dbbfcd2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1702_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1702_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c48b10e3-1422-4856-a4f2-905142f5b095 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0e1598d8-cbe5-4113-95f1-4bcda061239b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1702 84 false '-- '-- '-- '-- -30910 728 10173208-9da8-5d9c-abe6-266dc021e80f '-- not reported female '-- '-- '-- '-- white TCGA-29-1702_demographic Dead '-- '-- '-- '-- 30910 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- cbd53dd3-17ba-5e10-ab96-f4be6dbbfcd2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1702_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1702_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f5c858ff-3e72-4df0-a580-446e9eb55872 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0e475b3d-be3c-431a-ab12-5a867ea8f6cd Informed Consent 1418 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1668 57 false '-- '-- '-- '-- -20972 '-- 750dae51-7957-57e9-9cf2-2054e1f5840a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1668_demographic Alive '-- '-- '-- '-- 20972 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0fbdc72e-a36b-5c66-9042-67e6732464ab true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1668_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1668_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 217a4531-e4c7-4a78-b385-6bce29396e31 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0e475b3d-be3c-431a-ab12-5a867ea8f6cd Informed Consent 1418 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1668 57 false '-- '-- '-- '-- -20972 '-- 750dae51-7957-57e9-9cf2-2054e1f5840a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1668_demographic Alive '-- '-- '-- '-- 20972 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0fbdc72e-a36b-5c66-9042-67e6732464ab true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1668_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 320 151 '-- '-- '-- '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1668_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- 552490ce-3dd5-4b2c-ac73-4898de99932c '-- yes '-- '-- Chemotherapy +TCGA-OV 0e475b3d-be3c-431a-ab12-5a867ea8f6cd Informed Consent 1418 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1668 57 false '-- '-- '-- '-- -20972 '-- 750dae51-7957-57e9-9cf2-2054e1f5840a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1668_demographic Alive '-- '-- '-- '-- 20972 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0fbdc72e-a36b-5c66-9042-67e6732464ab true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1668_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 135 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1668_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 480 '-- mg '-- '-- '-- '-- 5ab929e6-f83f-4c44-9475-df029560e687 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0e475b3d-be3c-431a-ab12-5a867ea8f6cd Informed Consent 1418 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1668 57 false '-- '-- '-- '-- -20972 '-- 750dae51-7957-57e9-9cf2-2054e1f5840a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1668_demographic Alive '-- '-- '-- '-- 20972 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0fbdc72e-a36b-5c66-9042-67e6732464ab true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1668_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 135 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1668_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- 120 '-- mg '-- '-- '-- '-- a2ef7309-4ade-5a6a-949f-d52fe5347193 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0f4a4ad1-e394-45c4-9aa9-aadf2bff0628 Informed Consent 17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1350 46 false '-- '-- '-- '-- -16942 1946 a8d4c73c-f71c-5015-9cfe-d6499ca3919b '-- not reported female '-- '-- '-- '-- white TCGA-04-1350_demographic Dead '-- '-- '-- '-- 16942 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2755ddb9-4175-5754-a34d-883256cd0dc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1350_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 1726 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1350_treatment4 Fulvestrant '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 15fa95a9-3a11-46db-bfdc-704aadc8cedb '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 0f4a4ad1-e394-45c4-9aa9-aadf2bff0628 Informed Consent 17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1350 46 false '-- '-- '-- '-- -16942 1946 a8d4c73c-f71c-5015-9cfe-d6499ca3919b '-- not reported female '-- '-- '-- '-- white TCGA-04-1350_demographic Dead '-- '-- '-- '-- 16942 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2755ddb9-4175-5754-a34d-883256cd0dc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1350_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 363 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1350_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1c4f0647-6ac5-4a0d-a320-d0be4eb63d23 '-- yes '-- '-- Chemotherapy +TCGA-OV 0f4a4ad1-e394-45c4-9aa9-aadf2bff0628 Informed Consent 17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1350 46 false '-- '-- '-- '-- -16942 1946 a8d4c73c-f71c-5015-9cfe-d6499ca3919b '-- not reported female '-- '-- '-- '-- white TCGA-04-1350_demographic Dead '-- '-- '-- '-- 16942 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2755ddb9-4175-5754-a34d-883256cd0dc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1350_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1350_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2db3341c-cb64-4be7-9714-5621a45b2583 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0f4a4ad1-e394-45c4-9aa9-aadf2bff0628 Informed Consent 17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1350 46 false '-- '-- '-- '-- -16942 1946 a8d4c73c-f71c-5015-9cfe-d6499ca3919b '-- not reported female '-- '-- '-- '-- white TCGA-04-1350_demographic Dead '-- '-- '-- '-- 16942 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2755ddb9-4175-5754-a34d-883256cd0dc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1350_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 216 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1350_treatment7 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2f6c2643-4469-47c7-b6c7-4187e217ac47 '-- yes '-- '-- Chemotherapy +TCGA-OV 0f4a4ad1-e394-45c4-9aa9-aadf2bff0628 Informed Consent 17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1350 46 false '-- '-- '-- '-- -16942 1946 a8d4c73c-f71c-5015-9cfe-d6499ca3919b '-- not reported female '-- '-- '-- '-- white TCGA-04-1350_demographic Dead '-- '-- '-- '-- 16942 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2755ddb9-4175-5754-a34d-883256cd0dc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1350_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 1389 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1350_treatment10 Bevacizumab '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7ee9c0ed-86ec-4a5d-88b3-ae3007774b80 '-- yes '-- '-- Immunotherapy (Including Vaccines) +TCGA-OV 0f4a4ad1-e394-45c4-9aa9-aadf2bff0628 Informed Consent 17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1350 46 false '-- '-- '-- '-- -16942 1946 a8d4c73c-f71c-5015-9cfe-d6499ca3919b '-- not reported female '-- '-- '-- '-- white TCGA-04-1350_demographic Dead '-- '-- '-- '-- 16942 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2755ddb9-4175-5754-a34d-883256cd0dc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1350_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 216 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1350_treatment8 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9b6c967b-ef4d-48fa-a439-fe33059f0a20 '-- yes '-- '-- Chemotherapy +TCGA-OV 0f4a4ad1-e394-45c4-9aa9-aadf2bff0628 Informed Consent 17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1350 46 false '-- '-- '-- '-- -16942 1946 a8d4c73c-f71c-5015-9cfe-d6499ca3919b '-- not reported female '-- '-- '-- '-- white TCGA-04-1350_demographic Dead '-- '-- '-- '-- 16942 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2755ddb9-4175-5754-a34d-883256cd0dc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1350_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 1580 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1350_treatment Tamoxifen '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- be3ff3bd-d801-5b71-94ab-a9b321903f23 '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 0f4a4ad1-e394-45c4-9aa9-aadf2bff0628 Informed Consent 17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1350 46 false '-- '-- '-- '-- -16942 1946 a8d4c73c-f71c-5015-9cfe-d6499ca3919b '-- not reported female '-- '-- '-- '-- white TCGA-04-1350_demographic Dead '-- '-- '-- '-- 16942 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2755ddb9-4175-5754-a34d-883256cd0dc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1350_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 720 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1350_treatment2 Gemcitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c2a9dfc0-e312-45a1-ab07-9110e01a3e83 '-- yes '-- '-- Chemotherapy +TCGA-OV 0f4a4ad1-e394-45c4-9aa9-aadf2bff0628 Informed Consent 17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1350 46 false '-- '-- '-- '-- -16942 1946 a8d4c73c-f71c-5015-9cfe-d6499ca3919b '-- not reported female '-- '-- '-- '-- white TCGA-04-1350_demographic Dead '-- '-- '-- '-- 16942 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2755ddb9-4175-5754-a34d-883256cd0dc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1350_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 1389 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1350_treatment5 Gemcitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ccb198ed-a5ed-4db9-9922-f67e4266f1e6 '-- yes '-- '-- Chemotherapy +TCGA-OV 0f4a4ad1-e394-45c4-9aa9-aadf2bff0628 Informed Consent 17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1350 46 false '-- '-- '-- '-- -16942 1946 a8d4c73c-f71c-5015-9cfe-d6499ca3919b '-- not reported female '-- '-- '-- '-- white TCGA-04-1350_demographic Dead '-- '-- '-- '-- 16942 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2755ddb9-4175-5754-a34d-883256cd0dc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1350_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 1622 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1350_treatment6 Exemestane '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f53cbc4b-003e-4ec4-9627-a43d34f852ce '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 0f4a4ad1-e394-45c4-9aa9-aadf2bff0628 Informed Consent 17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1350 46 false '-- '-- '-- '-- -16942 1946 a8d4c73c-f71c-5015-9cfe-d6499ca3919b '-- not reported female '-- '-- '-- '-- white TCGA-04-1350_demographic Dead '-- '-- '-- '-- 16942 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2755ddb9-4175-5754-a34d-883256cd0dc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1350_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 1389 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1350_treatment9 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fbc23d5a-e44b-4e0f-8899-db61dee1cd8a '-- yes '-- '-- Chemotherapy +TCGA-OV 0f4a4ad1-e394-45c4-9aa9-aadf2bff0628 Informed Consent 17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1350 46 false '-- '-- '-- '-- -16942 1946 a8d4c73c-f71c-5015-9cfe-d6499ca3919b '-- not reported female '-- '-- '-- '-- white TCGA-04-1350_demographic Dead '-- '-- '-- '-- 17053 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 111 '-- '-- '-- f4dd29ff-b121-4f97-9a67-f10ebaeea867 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1350_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1350_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1350_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0307c73b-a14e-42a9-b74a-f2bfb1829769 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 0f4a4ad1-e394-45c4-9aa9-aadf2bff0628 Informed Consent 17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1350 46 false '-- '-- '-- '-- -16942 1946 a8d4c73c-f71c-5015-9cfe-d6499ca3919b '-- not reported female '-- '-- '-- '-- white TCGA-04-1350_demographic Dead '-- '-- '-- '-- 17053 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 111 '-- '-- '-- f4dd29ff-b121-4f97-9a67-f10ebaeea867 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1350_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1350_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1350_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5e79aab0-775b-409a-b2d1-5b0a285be47a '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 0f530b3e-5b6d-4892-9ebd-9138d76fdca7 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1570 49 false '-- '-- '-- '-- -17956 '-- 8bf011e8-2516-55b4-b40b-332a899f5710 '-- not reported female '-- '-- '-- '-- white TCGA-36-1570_demographic Alive '-- '-- '-- '-- 17956 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2a9bd40c-59be-5757-894c-c0b7f1100b5f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1570_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1570_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 32e51ce2-2665-4f37-b8bb-e3a4ca36d7ae Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0f530b3e-5b6d-4892-9ebd-9138d76fdca7 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1570 49 false '-- '-- '-- '-- -17956 '-- 8bf011e8-2516-55b4-b40b-332a899f5710 '-- not reported female '-- '-- '-- '-- white TCGA-36-1570_demographic Alive '-- '-- '-- '-- 17956 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2a9bd40c-59be-5757-894c-c0b7f1100b5f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1570_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 133 23 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1570_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 2808 '-- mg '-- '-- '-- '-- 4cdec97d-42bf-5508-a2e3-f9c2755ab3ed Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0f530b3e-5b6d-4892-9ebd-9138d76fdca7 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1570 49 false '-- '-- '-- '-- -17956 '-- 8bf011e8-2516-55b4-b40b-332a899f5710 '-- not reported female '-- '-- '-- '-- white TCGA-36-1570_demographic Alive '-- '-- '-- '-- 17956 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2a9bd40c-59be-5757-894c-c0b7f1100b5f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1570_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 432 432 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1570_treatment2 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1200 '-- mg '-- '-- '-- '-- 5633540b-88ab-4e50-8c9c-4385b4ace691 '-- yes '-- '-- Chemotherapy +TCGA-OV 0f530b3e-5b6d-4892-9ebd-9138d76fdca7 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1570 49 false '-- '-- '-- '-- -17956 '-- 8bf011e8-2516-55b4-b40b-332a899f5710 '-- not reported female '-- '-- '-- '-- white TCGA-36-1570_demographic Alive '-- '-- '-- '-- 17956 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2a9bd40c-59be-5757-894c-c0b7f1100b5f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1570_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 133 23 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1570_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1330 '-- mg '-- '-- '-- '-- eea8be95-ab17-4812-9ca0-105e1d87be5d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0f530b3e-5b6d-4892-9ebd-9138d76fdca7 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1570 49 false '-- '-- '-- '-- -17956 '-- 8bf011e8-2516-55b4-b40b-332a899f5710 '-- not reported female '-- '-- '-- '-- white TCGA-36-1570_demographic Alive '-- '-- '-- '-- 18331 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 375 '-- '-- '-- 8412a2ba-d539-48f4-8864-8f4886695aec false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-36-1570_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-36-1570_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1570_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7d2dd93e-a0a2-45a7-b295-4b28919bb934 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 0f530b3e-5b6d-4892-9ebd-9138d76fdca7 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1570 49 false '-- '-- '-- '-- -17956 '-- 8bf011e8-2516-55b4-b40b-332a899f5710 '-- not reported female '-- '-- '-- '-- white TCGA-36-1570_demographic Alive '-- '-- '-- '-- 18331 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 375 '-- '-- '-- 8412a2ba-d539-48f4-8864-8f4886695aec false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-36-1570_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-36-1570_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1570_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cb6fb5a4-cd61-4674-b726-d0bce2de458d '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 12581634-eebb-4841-8498-71dc9d78c546 Informed Consent -22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1571 53 false '-- '-- '-- '-- -19608 695 45064610-c261-5514-8632-f45474cd4857 '-- not reported female '-- '-- '-- '-- white TCGA-36-1571_demographic Dead '-- '-- '-- '-- 19983 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 375 '-- '-- '-- 158b6eb3-c035-494a-8b52-ae1d031605f4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-36-1571_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-36-1571_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1571_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 092195be-77c9-49fc-a221-15400df426a5 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 12581634-eebb-4841-8498-71dc9d78c546 Informed Consent -22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1571 53 false '-- '-- '-- '-- -19608 695 45064610-c261-5514-8632-f45474cd4857 '-- not reported female '-- '-- '-- '-- white TCGA-36-1571_demographic Dead '-- '-- '-- '-- 19983 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 375 '-- '-- '-- 158b6eb3-c035-494a-8b52-ae1d031605f4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-36-1571_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-36-1571_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1571_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 646d175e-254a-42d2-9121-58285f71842c '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 12581634-eebb-4841-8498-71dc9d78c546 Informed Consent -22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1571 53 false '-- '-- '-- '-- -19608 695 45064610-c261-5514-8632-f45474cd4857 '-- not reported female '-- '-- '-- '-- white TCGA-36-1571_demographic Dead '-- '-- '-- '-- 19608 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5cdad4c0-aa9e-59d2-b9d8-59157a7f2f7e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1571_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 173 32 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1571_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5130 '-- mg '-- '-- '-- '-- 489b1f38-d6e8-4cac-a402-57d1142ef342 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 12581634-eebb-4841-8498-71dc9d78c546 Informed Consent -22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1571 53 false '-- '-- '-- '-- -19608 695 45064610-c261-5514-8632-f45474cd4857 '-- not reported female '-- '-- '-- '-- white TCGA-36-1571_demographic Dead '-- '-- '-- '-- 19608 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5cdad4c0-aa9e-59d2-b9d8-59157a7f2f7e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1571_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 531 384 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1571_treatment4 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 26752 '-- mg '-- '-- '-- '-- 513d81d8-1c2c-4842-8410-47e8fe97da79 '-- yes '-- '-- Chemotherapy +TCGA-OV 12581634-eebb-4841-8498-71dc9d78c546 Informed Consent -22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1571 53 false '-- '-- '-- '-- -19608 695 45064610-c261-5514-8632-f45474cd4857 '-- not reported female '-- '-- '-- '-- white TCGA-36-1571_demographic Dead '-- '-- '-- '-- 19608 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5cdad4c0-aa9e-59d2-b9d8-59157a7f2f7e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1571_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 173 32 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1571_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2100 '-- mg '-- '-- '-- '-- 6af5f8d5-278b-5da9-b503-b63a549cf3a8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 12581634-eebb-4841-8498-71dc9d78c546 Informed Consent -22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1571 53 false '-- '-- '-- '-- -19608 695 45064610-c261-5514-8632-f45474cd4857 '-- not reported female '-- '-- '-- '-- white TCGA-36-1571_demographic Dead '-- '-- '-- '-- 19608 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5cdad4c0-aa9e-59d2-b9d8-59157a7f2f7e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1571_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1571_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 832ed5f2-5bc2-44c5-acdb-b980ff6c3ee3 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 12581634-eebb-4841-8498-71dc9d78c546 Informed Consent -22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1571 53 false '-- '-- '-- '-- -19608 695 45064610-c261-5514-8632-f45474cd4857 '-- not reported female '-- '-- '-- '-- white TCGA-36-1571_demographic Dead '-- '-- '-- '-- 19608 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5cdad4c0-aa9e-59d2-b9d8-59157a7f2f7e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1571_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 531 384 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1571_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4920 '-- mg '-- '-- '-- '-- b8ab9693-bbe9-41f1-82e5-a6ba6f9716a0 '-- yes '-- '-- Chemotherapy +TCGA-OV 13319c20-02f6-4b5f-b24f-3d8f4084094c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1318 54 false '-- '-- '-- '-- -19755 1064 f25e1764-8f69-5eb1-824e-789ac5a8ff24 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1318_demographic Dead '-- '-- '-- '-- 19755 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2e841bcd-46c2-5c16-95cc-6d40414476b3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1318_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1318_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3f3fef64-d0bb-4765-88df-2441307961eb Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 13319c20-02f6-4b5f-b24f-3d8f4084094c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1318 54 false '-- '-- '-- '-- -19755 1064 f25e1764-8f69-5eb1-824e-789ac5a8ff24 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1318_demographic Dead '-- '-- '-- '-- 19755 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2e841bcd-46c2-5c16-95cc-6d40414476b3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1318_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 273 212 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1318_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a70c7b2b-68d3-4271-ba0f-4762131ed24a '-- yes '-- '-- Chemotherapy +TCGA-OV 13319c20-02f6-4b5f-b24f-3d8f4084094c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1318 54 false '-- '-- '-- '-- -19755 1064 f25e1764-8f69-5eb1-824e-789ac5a8ff24 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1318_demographic Dead '-- '-- '-- '-- 19755 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2e841bcd-46c2-5c16-95cc-6d40414476b3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1318_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 122 30 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1318_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a8dead29-cdfb-544f-a4fd-7ffb3c12f56b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 13319c20-02f6-4b5f-b24f-3d8f4084094c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1318 54 false '-- '-- '-- '-- -19755 1064 f25e1764-8f69-5eb1-824e-789ac5a8ff24 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1318_demographic Dead '-- '-- '-- '-- 19755 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2e841bcd-46c2-5c16-95cc-6d40414476b3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1318_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 122 30 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1318_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b3e812a4-c2f2-4c65-a75b-47d3c14c4ad8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 13319c20-02f6-4b5f-b24f-3d8f4084094c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1318 54 false '-- '-- '-- '-- -19755 1064 f25e1764-8f69-5eb1-824e-789ac5a8ff24 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1318_demographic Dead '-- '-- '-- '-- 19940 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 185 '-- '-- '-- 338924ff-8982-48bc-a975-4288ec51b184 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1318_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1318_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1318_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 388bd3bc-1241-4770-9cd0-d4627bd2b834 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 13319c20-02f6-4b5f-b24f-3d8f4084094c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1318 54 false '-- '-- '-- '-- -19755 1064 f25e1764-8f69-5eb1-824e-789ac5a8ff24 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1318_demographic Dead '-- '-- '-- '-- 19940 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 185 '-- '-- '-- 338924ff-8982-48bc-a975-4288ec51b184 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1318_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1318_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1318_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fa6d4c66-a7d2-4c75-a247-61a8c103e501 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 13319c20-02f6-4b5f-b24f-3d8f4084094c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1318 54 false '-- '-- '-- '-- -19755 1064 f25e1764-8f69-5eb1-824e-789ac5a8ff24 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1318_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e22690fc-64b2-4cc1-9c8e-64642d4142d0 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1318_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1318_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 181 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1318_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 451bb98c-88df-4d76-85f6-1f80ad77db48 '-- yes '-- '-- Surgery, NOS +TCGA-OV 13319c20-02f6-4b5f-b24f-3d8f4084094c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1318 54 false '-- '-- '-- '-- -19755 1064 f25e1764-8f69-5eb1-824e-789ac5a8ff24 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1318_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e22690fc-64b2-4cc1-9c8e-64642d4142d0 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1318_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1318_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1318_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 83440359-810c-424d-9ea7-9b9dc45e0ea0 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 13319c20-02f6-4b5f-b24f-3d8f4084094c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1318 54 false '-- '-- '-- '-- -19755 1064 f25e1764-8f69-5eb1-824e-789ac5a8ff24 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1318_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e22690fc-64b2-4cc1-9c8e-64642d4142d0 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1318_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1318_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1318_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c8f3bdaa-82d0-442a-9cc7-4f92605afb28 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 13f5814c-1f99-4ffa-84a4-3bbd8979faae Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1477 49 false '-- '-- '-- '-- -18111 1662 b24d11cb-3d0e-5e1e-a82e-75025a577914 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1477_demographic Dead '-- '-- '-- '-- 18111 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 999ac7a5-2147-5a8f-afac-d62ded2f8f79 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1477_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 206 57 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1477_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 360 '-- mg/m2 '-- '-- '-- '-- bc902138-7d50-5a41-ba40-4935459f3eb9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 13f5814c-1f99-4ffa-84a4-3bbd8979faae Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1477 49 false '-- '-- '-- '-- -18111 1662 b24d11cb-3d0e-5e1e-a82e-75025a577914 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1477_demographic Dead '-- '-- '-- '-- 18111 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 999ac7a5-2147-5a8f-afac-d62ded2f8f79 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1477_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 206 57 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1477_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- e8b2cd10-1935-48dc-936f-7b59f4dc23e2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 13f5814c-1f99-4ffa-84a4-3bbd8979faae Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1477 49 false '-- '-- '-- '-- -18111 1662 b24d11cb-3d0e-5e1e-a82e-75025a577914 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1477_demographic Dead '-- '-- '-- '-- 18111 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 999ac7a5-2147-5a8f-afac-d62ded2f8f79 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1477_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1477_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e928df47-6f55-4342-ba1f-a7781c5de4c0 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 13f5814c-1f99-4ffa-84a4-3bbd8979faae Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1477 49 false '-- '-- '-- '-- -18111 1662 b24d11cb-3d0e-5e1e-a82e-75025a577914 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1477_demographic Dead '-- '-- '-- '-- 18346 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 235 '-- '-- '-- bc712fa8-d66a-453e-bb59-3c19a165286f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1477_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1477_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1477_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8158cd63-04b6-4402-a156-ff85b5ab9837 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 13f5814c-1f99-4ffa-84a4-3bbd8979faae Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1477 49 false '-- '-- '-- '-- -18111 1662 b24d11cb-3d0e-5e1e-a82e-75025a577914 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1477_demographic Dead '-- '-- '-- '-- 18346 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 235 '-- '-- '-- bc712fa8-d66a-453e-bb59-3c19a165286f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1477_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1477_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1477_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f0adc7e7-f33d-418a-8491-3a6237ee2483 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 14c58def-60ee-48e0-a74b-da4eb77ef344 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0887 42 false '-- '-- '-- '-- -15669 2028 05ddf2a8-4ba3-5158-ad54-369b93b80bf4 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0887_demographic Dead '-- '-- '-- '-- 15669 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5e9e3f81-ce0d-57fd-824c-1c7d28ccdbfe true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0887_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0887_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 07d14647-9b4b-402e-895e-0a91bca8c431 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 14c58def-60ee-48e0-a74b-da4eb77ef344 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0887 42 false '-- '-- '-- '-- -15669 2028 05ddf2a8-4ba3-5158-ad54-369b93b80bf4 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0887_demographic Dead '-- '-- '-- '-- 15669 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5e9e3f81-ce0d-57fd-824c-1c7d28ccdbfe true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0887_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 268 184 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0887_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5f565541-3828-4a2f-b534-f4cbff7986be Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 14c58def-60ee-48e0-a74b-da4eb77ef344 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0887 42 false '-- '-- '-- '-- -15669 2028 05ddf2a8-4ba3-5158-ad54-369b93b80bf4 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0887_demographic Dead '-- '-- '-- '-- 15669 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5e9e3f81-ce0d-57fd-824c-1c7d28ccdbfe true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0887_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 114 7 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0887_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a96bd863-5a58-5e3b-a71d-a2cf736e0240 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 14c58def-60ee-48e0-a74b-da4eb77ef344 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0887 42 false '-- '-- '-- '-- -15669 2028 05ddf2a8-4ba3-5158-ad54-369b93b80bf4 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0887_demographic Dead '-- '-- '-- '-- 15669 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5e9e3f81-ce0d-57fd-824c-1c7d28ccdbfe true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0887_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 114 7 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0887_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e777ee76-35a2-4783-8351-03a428a1b35e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 14c58def-60ee-48e0-a74b-da4eb77ef344 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0887 42 false '-- '-- '-- '-- -15669 2028 05ddf2a8-4ba3-5158-ad54-369b93b80bf4 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0887_demographic Dead '-- '-- '-- '-- 16183 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 514 '-- '-- '-- e9eff0fb-40e5-4823-9423-2fbad5a0638f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0887_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0887_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0887_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 549c2d73-1ab5-490f-9b6e-1f239e3f0c16 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 14c58def-60ee-48e0-a74b-da4eb77ef344 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0887 42 false '-- '-- '-- '-- -15669 2028 05ddf2a8-4ba3-5158-ad54-369b93b80bf4 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0887_demographic Dead '-- '-- '-- '-- 16183 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 514 '-- '-- '-- e9eff0fb-40e5-4823-9423-2fbad5a0638f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0887_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0887_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0887_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5909f432-5901-4d7d-aeef-6a21b152cc79 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 15170c7f-5880-4fb6-82ce-68d3df0dfb68 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0893 48 false '-- '-- '-- '-- -17573 1319 6c86e5a1-4fa3-5421-8580-641c2765baa8 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-13-0893_demographic Dead '-- '-- '-- '-- 17573 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 74c32721-9793-5e47-9563-559b08a6f618 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0893_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 284 80 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0893_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 186be6ea-fe78-538d-aeb7-be248980c0ae Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 15170c7f-5880-4fb6-82ce-68d3df0dfb68 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0893 48 false '-- '-- '-- '-- -17573 1319 6c86e5a1-4fa3-5421-8580-641c2765baa8 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-13-0893_demographic Dead '-- '-- '-- '-- 17573 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 74c32721-9793-5e47-9563-559b08a6f618 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0893_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 284 80 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0893_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a41514b9-da97-4b56-9145-3d1ebe1a1a54 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 15170c7f-5880-4fb6-82ce-68d3df0dfb68 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0893 48 false '-- '-- '-- '-- -17573 1319 6c86e5a1-4fa3-5421-8580-641c2765baa8 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-13-0893_demographic Dead '-- '-- '-- '-- 17573 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 74c32721-9793-5e47-9563-559b08a6f618 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0893_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 566 340 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0893_treatment3 Letrozole '-- '-- '-- '-- '-- '-- '-- 3 '-- mg/m2 '-- '-- '-- '-- c3be81cf-0b66-4d5f-b879-7c3096fdcafc Adjuvant yes '-- '-- Hormone Therapy +TCGA-OV 15170c7f-5880-4fb6-82ce-68d3df0dfb68 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0893 48 false '-- '-- '-- '-- -17573 1319 6c86e5a1-4fa3-5421-8580-641c2765baa8 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-13-0893_demographic Dead '-- '-- '-- '-- 17573 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 74c32721-9793-5e47-9563-559b08a6f618 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0893_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0893_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f54a6a19-ca16-4a2a-a31c-0825f3fe6aa5 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 15170c7f-5880-4fb6-82ce-68d3df0dfb68 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0893 48 false '-- '-- '-- '-- -17573 1319 6c86e5a1-4fa3-5421-8580-641c2765baa8 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-13-0893_demographic Dead '-- '-- '-- '-- 18034 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 461 '-- '-- '-- a28bab28-e0b8-4205-a150-2b46fd1f47ff false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0893_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0893_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0893_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0c57e2b8-2a46-459f-b5cc-b41ab1fa9206 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 15170c7f-5880-4fb6-82ce-68d3df0dfb68 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0893 48 false '-- '-- '-- '-- -17573 1319 6c86e5a1-4fa3-5421-8580-641c2765baa8 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-13-0893_demographic Dead '-- '-- '-- '-- 18034 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 461 '-- '-- '-- a28bab28-e0b8-4205-a150-2b46fd1f47ff false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0893_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0893_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0893_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a6bbc91c-4ea0-45f5-9615-3cb998dac4fd '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 15556b28-c6bd-455a-87b6-4b7b3e33d0e4 Informed Consent 9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1634 75 false '-- '-- '-- '-- -27749 1091 893d4088-f26b-55ea-aa87-aed8cf080262 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1634_demographic Dead '-- '-- '-- '-- 28129 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 380 '-- '-- '-- 6b4f6b37-2f6d-4f54-a079-6ab253da3f6a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1634_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1634_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1634_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 18d766a4-6819-4ec0-9be7-8ab497b975a3 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 15556b28-c6bd-455a-87b6-4b7b3e33d0e4 Informed Consent 9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1634 75 false '-- '-- '-- '-- -27749 1091 893d4088-f26b-55ea-aa87-aed8cf080262 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1634_demographic Dead '-- '-- '-- '-- 28129 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 380 '-- '-- '-- 6b4f6b37-2f6d-4f54-a079-6ab253da3f6a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1634_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1634_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1634_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fd574d41-0340-4016-a2c5-40e2ba466c67 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 15556b28-c6bd-455a-87b6-4b7b3e33d0e4 Informed Consent 9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1634 75 false '-- '-- '-- '-- -27749 1091 893d4088-f26b-55ea-aa87-aed8cf080262 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1634_demographic Dead '-- '-- '-- '-- 27749 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ccfe5d13-dadc-5a66-a404-f202b80053e2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1634_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 206 29 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1634_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 010bde81-759f-405e-a48d-1b7786a3d253 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 15556b28-c6bd-455a-87b6-4b7b3e33d0e4 Informed Consent 9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1634 75 false '-- '-- '-- '-- -27749 1091 893d4088-f26b-55ea-aa87-aed8cf080262 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1634_demographic Dead '-- '-- '-- '-- 27749 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ccfe5d13-dadc-5a66-a404-f202b80053e2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1634_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 573 539 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- 5000.0 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1634_treatment '-- '-- '-- '-- '-- '-- Primary Tumor Field '-- 5000 '-- cGy '-- '-- '-- '-- 3cdf91fd-268f-5fbc-aac9-6f7b6d0c4b1f '-- yes '-- '-- Radiation, External Beam +TCGA-OV 15556b28-c6bd-455a-87b6-4b7b3e33d0e4 Informed Consent 9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1634 75 false '-- '-- '-- '-- -27749 1091 893d4088-f26b-55ea-aa87-aed8cf080262 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1634_demographic Dead '-- '-- '-- '-- 27749 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ccfe5d13-dadc-5a66-a404-f202b80053e2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1634_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 206 29 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1634_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 51ac7afa-8410-4019-a02a-5c7d52e00a14 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 15556b28-c6bd-455a-87b6-4b7b3e33d0e4 Informed Consent 9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1634 75 false '-- '-- '-- '-- -27749 1091 893d4088-f26b-55ea-aa87-aed8cf080262 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1634_demographic Dead '-- '-- '-- '-- 27749 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ccfe5d13-dadc-5a66-a404-f202b80053e2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1634_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 206 29 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1634_treatment4 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c38e7e2a-ea89-4af0-b36f-7187ee30fda4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 15556b28-c6bd-455a-87b6-4b7b3e33d0e4 Informed Consent 9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1634 75 false '-- '-- '-- '-- -27749 1091 893d4088-f26b-55ea-aa87-aed8cf080262 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1634_demographic Dead '-- '-- '-- '-- 27749 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ccfe5d13-dadc-5a66-a404-f202b80053e2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1634_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 843 380 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1634_treatment5 Tamoxifen '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dcd8a86b-337b-4349-ad95-e57a055dee70 '-- yes '-- '-- Hormone Therapy +TCGA-OV 15f1a992-0724-4d76-a71a-702ac7753a41 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1870 59 false '-- '-- '-- '-- -21550 455 c0bb7234-e6e9-5243-a3ab-3e33ef23ba66 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1870_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 73ceeddf-dccc-4da2-acee-f09cd687c0f6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1870_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1870_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 243 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1870_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2443142b-eec2-4fbd-8c11-018fb716137a '-- yes '-- '-- Surgery, NOS +TCGA-OV 15f1a992-0724-4d76-a71a-702ac7753a41 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1870 59 false '-- '-- '-- '-- -21550 455 c0bb7234-e6e9-5243-a3ab-3e33ef23ba66 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1870_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 73ceeddf-dccc-4da2-acee-f09cd687c0f6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1870_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1870_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1870_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 613fc65e-9f68-4076-9b1c-2f7cab8f7afd '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 15f1a992-0724-4d76-a71a-702ac7753a41 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1870 59 false '-- '-- '-- '-- -21550 455 c0bb7234-e6e9-5243-a3ab-3e33ef23ba66 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1870_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 73ceeddf-dccc-4da2-acee-f09cd687c0f6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1870_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1870_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1870_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c3236f90-87d6-4163-8f79-324bc6f984ce '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 15f1a992-0724-4d76-a71a-702ac7753a41 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1870 59 false '-- '-- '-- '-- -21550 455 c0bb7234-e6e9-5243-a3ab-3e33ef23ba66 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1870_demographic Dead '-- '-- '-- '-- 21550 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7a970436-b1ad-5ed4-bc9d-c7e4870207ec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1870_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- '-- 31 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1870_treatment4 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 59431217-089e-42ca-b15e-245c4832cee7 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 15f1a992-0724-4d76-a71a-702ac7753a41 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1870 59 false '-- '-- '-- '-- -21550 455 c0bb7234-e6e9-5243-a3ab-3e33ef23ba66 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1870_demographic Dead '-- '-- '-- '-- 21550 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7a970436-b1ad-5ed4-bc9d-c7e4870207ec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1870_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- '-- 151 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1870_treatment3 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5b39053b-debc-4890-9c66-94c2c3ddef8e '-- yes '-- '-- Chemotherapy +TCGA-OV 15f1a992-0724-4d76-a71a-702ac7753a41 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1870 59 false '-- '-- '-- '-- -21550 455 c0bb7234-e6e9-5243-a3ab-3e33ef23ba66 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1870_demographic Dead '-- '-- '-- '-- 21550 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7a970436-b1ad-5ed4-bc9d-c7e4870207ec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1870_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- '-- 151 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1870_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7506019d-c56f-4236-9713-8e7c2dc7117e '-- yes '-- '-- Chemotherapy +TCGA-OV 15f1a992-0724-4d76-a71a-702ac7753a41 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1870 59 false '-- '-- '-- '-- -21550 455 c0bb7234-e6e9-5243-a3ab-3e33ef23ba66 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1870_demographic Dead '-- '-- '-- '-- 21550 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7a970436-b1ad-5ed4-bc9d-c7e4870207ec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1870_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1870_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a1a4297e-a59e-4a04-be63-8f5430d59b59 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 15f1a992-0724-4d76-a71a-702ac7753a41 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1870 59 false '-- '-- '-- '-- -21550 455 c0bb7234-e6e9-5243-a3ab-3e33ef23ba66 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1870_demographic Dead '-- '-- '-- '-- 21550 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7a970436-b1ad-5ed4-bc9d-c7e4870207ec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1870_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- '-- 31 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1870_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fc63c78d-4a19-561f-83e9-7c619a14021d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 15f1a992-0724-4d76-a71a-702ac7753a41 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1870 59 false '-- '-- '-- '-- -21550 455 c0bb7234-e6e9-5243-a3ab-3e33ef23ba66 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1870_demographic Dead '-- '-- '-- '-- 21793 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 243 '-- '-- '-- ee869bd1-2062-4c79-b1e7-d78137f999ff false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1870_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1870_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1870_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 40d2e8ea-bed9-46aa-a557-cb3d536a8d11 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 15f1a992-0724-4d76-a71a-702ac7753a41 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1870 59 false '-- '-- '-- '-- -21550 455 c0bb7234-e6e9-5243-a3ab-3e33ef23ba66 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1870_demographic Dead '-- '-- '-- '-- 21793 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 243 '-- '-- '-- ee869bd1-2062-4c79-b1e7-d78137f999ff false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1870_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1870_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1870_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c6c2c9e0-bcb2-4dc9-b2b8-aec186c23782 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 15fc17cd-d073-4f81-a4a2-2db3cb9d7069 Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1993 56 false '-- '-- '-- '-- -20498 '-- ca281c52-a2d4-5e1b-8bd2-7d277fd5297b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1993_demographic Alive '-- '-- '-- '-- 20498 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3d3ca882-be6d-531d-8a29-55d8eb0f5f55 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R0 '-- '-- Ovary '-- '-- TCGA-57-1993_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 62 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1993_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5bc14705-278b-445b-bb6a-dfbfbf7ce1a8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 15fc17cd-d073-4f81-a4a2-2db3cb9d7069 Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1993 56 false '-- '-- '-- '-- -20498 '-- ca281c52-a2d4-5e1b-8bd2-7d277fd5297b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1993_demographic Alive '-- '-- '-- '-- 20498 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3d3ca882-be6d-531d-8a29-55d8eb0f5f55 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R0 '-- '-- Ovary '-- '-- TCGA-57-1993_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 62 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1993_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 86b00aca-8e27-53cc-9482-58183bc3d7cc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 15fc17cd-d073-4f81-a4a2-2db3cb9d7069 Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1993 56 false '-- '-- '-- '-- -20498 '-- ca281c52-a2d4-5e1b-8bd2-7d277fd5297b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1993_demographic Alive '-- '-- '-- '-- 20498 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3d3ca882-be6d-531d-8a29-55d8eb0f5f55 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R0 '-- '-- Ovary '-- '-- TCGA-57-1993_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1993_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fad3f565-7842-4e5a-92c4-a89dacd90c32 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 16829472-5666-4fba-9bf9-360ec1689aa0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2351 51 false '-- '-- '-- '-- '-- '-- 3ba18647-da19-54a4-8a1c-be83eb7827d5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-59-2351_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4f9b4679-7b00-49b3-ade3-73c7390015d6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-59-2351_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-59-2351_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-2351_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1cef88d6-6d5e-4254-b4d7-96cf877e851f '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 16829472-5666-4fba-9bf9-360ec1689aa0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2351 51 false '-- '-- '-- '-- '-- '-- 3ba18647-da19-54a4-8a1c-be83eb7827d5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-59-2351_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4f9b4679-7b00-49b3-ade3-73c7390015d6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-59-2351_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-59-2351_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2154 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-2351_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bc3954b7-71d9-4e64-a1e6-f968e8f450b2 '-- yes '-- '-- Surgery, NOS +TCGA-OV 16829472-5666-4fba-9bf9-360ec1689aa0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2351 51 false '-- '-- '-- '-- '-- '-- 3ba18647-da19-54a4-8a1c-be83eb7827d5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-59-2351_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4f9b4679-7b00-49b3-ade3-73c7390015d6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-59-2351_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-59-2351_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-2351_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d02ec9e0-fe45-4d2a-bce5-cb9d9c3c52ef '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 16829472-5666-4fba-9bf9-360ec1689aa0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2351 51 false '-- '-- '-- '-- '-- '-- 3ba18647-da19-54a4-8a1c-be83eb7827d5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-59-2351_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9e178568-ef7f-5e7a-b7af-7397c47741bb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-59-2351_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 16829472-5666-4fba-9bf9-360ec1689aa0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2351 51 false '-- '-- '-- '-- '-- '-- 3ba18647-da19-54a4-8a1c-be83eb7827d5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-59-2351_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 2139 '-- '-- '-- a31155ac-6607-4bca-9920-69a4984b174b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-59-2351_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-59-2351_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-2351_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8d514b42-8302-4d9c-ba00-3424ea7ada31 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 16829472-5666-4fba-9bf9-360ec1689aa0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2351 51 false '-- '-- '-- '-- '-- '-- 3ba18647-da19-54a4-8a1c-be83eb7827d5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-59-2351_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 2139 '-- '-- '-- a31155ac-6607-4bca-9920-69a4984b174b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-59-2351_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-59-2351_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-2351_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d8d9823b-a6e6-49a3-876d-b27e04fb7d9c '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 16ced1b8-64d5-4498-82df-4d37bfe5b310 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1741 76 false '-- '-- '-- '-- -27762 1024 058fb30f-2085-5770-b4f2-6a6cf64072f7 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1741_demographic Dead '-- '-- '-- '-- 27762 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4338074a-9988-5342-ae53-3406d24b6758 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1741_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 605 522 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1741_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 838 '-- mg '-- '-- '-- '-- 19c4806c-15ed-46ec-a97a-1d7913aa212a '-- yes '-- '-- Chemotherapy +TCGA-OV 16ced1b8-64d5-4498-82df-4d37bfe5b310 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1741 76 false '-- '-- '-- '-- -27762 1024 058fb30f-2085-5770-b4f2-6a6cf64072f7 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1741_demographic Dead '-- '-- '-- '-- 27762 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4338074a-9988-5342-ae53-3406d24b6758 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1741_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 605 522 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1741_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1750 '-- mg '-- '-- '-- '-- 3a5a378f-30e8-48e8-b268-f7bf68429821 '-- yes '-- '-- Chemotherapy +TCGA-OV 16ced1b8-64d5-4498-82df-4d37bfe5b310 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1741 76 false '-- '-- '-- '-- -27762 1024 058fb30f-2085-5770-b4f2-6a6cf64072f7 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1741_demographic Dead '-- '-- '-- '-- 27762 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4338074a-9988-5342-ae53-3406d24b6758 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1741_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 717 711 '-- '-- '-- '-- '-- '-- '-- '-- 5.0 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1741_treatment '-- '-- '-- '-- '-- '-- Locoregional Site '-- 20 '-- cGy '-- '-- '-- '-- 56160cfd-0619-58a1-bbb8-d6d31502c502 Palliative yes '-- '-- Radiation, External Beam +TCGA-OV 16ced1b8-64d5-4498-82df-4d37bfe5b310 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1741 76 false '-- '-- '-- '-- -27762 1024 058fb30f-2085-5770-b4f2-6a6cf64072f7 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1741_demographic Dead '-- '-- '-- '-- 27762 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4338074a-9988-5342-ae53-3406d24b6758 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1741_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 180 12 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1741_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2240 '-- mg '-- '-- '-- '-- 7006c1a0-45f5-4eb5-8d8b-2b9fbfa7bba9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 16ced1b8-64d5-4498-82df-4d37bfe5b310 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1741 76 false '-- '-- '-- '-- -27762 1024 058fb30f-2085-5770-b4f2-6a6cf64072f7 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1741_demographic Dead '-- '-- '-- '-- 27762 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4338074a-9988-5342-ae53-3406d24b6758 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1741_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-61-1741_treatment3 Tamoxifen '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7d9a49ce-8c0f-4d5f-a189-2d582aa2d68a '-- yes '-- '-- Hormone Therapy +TCGA-OV 16ced1b8-64d5-4498-82df-4d37bfe5b310 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1741 76 false '-- '-- '-- '-- -27762 1024 058fb30f-2085-5770-b4f2-6a6cf64072f7 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1741_demographic Dead '-- '-- '-- '-- 27762 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4338074a-9988-5342-ae53-3406d24b6758 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1741_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 180 12 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1741_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3799 '-- mg '-- '-- '-- '-- c5402745-e4d8-4bac-8bd0-41a0a767118e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 16ced1b8-64d5-4498-82df-4d37bfe5b310 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1741 76 false '-- '-- '-- '-- -27762 1024 058fb30f-2085-5770-b4f2-6a6cf64072f7 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1741_demographic Dead '-- '-- '-- '-- 28250 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 488 '-- '-- '-- 74614a01-9a10-49a8-bdbe-2ed8ce8f2fdc false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1741_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1741_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1741_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1a1ef5a4-f4fe-4319-8684-514af5fb68f4 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 16ced1b8-64d5-4498-82df-4d37bfe5b310 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1741 76 false '-- '-- '-- '-- -27762 1024 058fb30f-2085-5770-b4f2-6a6cf64072f7 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1741_demographic Dead '-- '-- '-- '-- 28250 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 488 '-- '-- '-- 74614a01-9a10-49a8-bdbe-2ed8ce8f2fdc false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1741_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1741_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1741_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- adb5a934-5422-49f2-b03e-345ed0ee44b3 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 17181157-c9e2-4bd6-8653-f5dce56f9053 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2038 68 false '-- '-- '-- '-- -24957 1354 3ea04b59-4837-5855-9da9-a7e5b46b7e10 '-- not reported female '-- '-- '-- '-- white TCGA-24-2038_demographic Dead '-- '-- '-- '-- 24957 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 82ae2a62-aea4-5d85-9136-e3403b28b06c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2038_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GB '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1254 1212 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2038_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- 35 '-- mg '-- '-- '-- '-- 3db13011-a4d2-48a0-bf8a-c90103a4b11d '-- yes '-- '-- Chemotherapy +TCGA-OV 17181157-c9e2-4bd6-8653-f5dce56f9053 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2038 68 false '-- '-- '-- '-- -24957 1354 3ea04b59-4837-5855-9da9-a7e5b46b7e10 '-- not reported female '-- '-- '-- '-- white TCGA-24-2038_demographic Dead '-- '-- '-- '-- 24957 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 82ae2a62-aea4-5d85-9136-e3403b28b06c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2038_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GB '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1352 1268 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2038_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 2345 '-- mg '-- '-- '-- '-- 69152569-be83-508b-94fb-050e944616a9 '-- yes '-- '-- Chemotherapy +TCGA-OV 17181157-c9e2-4bd6-8653-f5dce56f9053 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2038 68 false '-- '-- '-- '-- -24957 1354 3ea04b59-4837-5855-9da9-a7e5b46b7e10 '-- not reported female '-- '-- '-- '-- white TCGA-24-2038_demographic Dead '-- '-- '-- '-- 24957 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 82ae2a62-aea4-5d85-9136-e3403b28b06c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2038_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GB '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1352 1268 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2038_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1407 '-- mg '-- '-- '-- '-- 6be2a491-bdb0-4aeb-b616-225d6e80c21a '-- yes '-- '-- Chemotherapy +TCGA-OV 17181157-c9e2-4bd6-8653-f5dce56f9053 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2038 68 false '-- '-- '-- '-- -24957 1354 3ea04b59-4837-5855-9da9-a7e5b46b7e10 '-- not reported female '-- '-- '-- '-- white TCGA-24-2038_demographic Dead '-- '-- '-- '-- 24957 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 82ae2a62-aea4-5d85-9136-e3403b28b06c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2038_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GB '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2038_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c80c597c-05e3-4085-a10e-4dbcfb2d8f14 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 17181157-c9e2-4bd6-8653-f5dce56f9053 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2038 68 false '-- '-- '-- '-- -24957 1354 3ea04b59-4837-5855-9da9-a7e5b46b7e10 '-- not reported female '-- '-- '-- '-- white TCGA-24-2038_demographic Dead '-- '-- '-- '-- 26126 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1169 '-- '-- '-- 9f2e8151-aff9-4d97-a1d7-dec1d5095fbe false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2038_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2038_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2038_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 327ebaee-b499-4d99-b716-26e76b34105c '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 17181157-c9e2-4bd6-8653-f5dce56f9053 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2038 68 false '-- '-- '-- '-- -24957 1354 3ea04b59-4837-5855-9da9-a7e5b46b7e10 '-- not reported female '-- '-- '-- '-- white TCGA-24-2038_demographic Dead '-- '-- '-- '-- 26126 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1169 '-- '-- '-- 9f2e8151-aff9-4d97-a1d7-dec1d5095fbe false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2038_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2038_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2038_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 355ae82f-4936-4708-ac2e-30adec8c12f7 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 17181157-c9e2-4bd6-8653-f5dce56f9053 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2038 68 false '-- '-- '-- '-- -24957 1354 3ea04b59-4837-5855-9da9-a7e5b46b7e10 '-- not reported female '-- '-- '-- '-- white TCGA-24-2038_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bd9a6902-7677-4cb6-9212-62450979e757 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2038_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2038_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2038_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 708d4d1e-6191-4b88-b335-193938df3b0d '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 17181157-c9e2-4bd6-8653-f5dce56f9053 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2038 68 false '-- '-- '-- '-- -24957 1354 3ea04b59-4837-5855-9da9-a7e5b46b7e10 '-- not reported female '-- '-- '-- '-- white TCGA-24-2038_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bd9a6902-7677-4cb6-9212-62450979e757 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2038_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2038_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2038_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 70b8135b-0601-4e6a-a084-c2d0c3b201e1 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 17181157-c9e2-4bd6-8653-f5dce56f9053 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2038 68 false '-- '-- '-- '-- -24957 1354 3ea04b59-4837-5855-9da9-a7e5b46b7e10 '-- not reported female '-- '-- '-- '-- white TCGA-24-2038_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bd9a6902-7677-4cb6-9212-62450979e757 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2038_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2038_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1183 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2038_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f297778b-3537-4096-b2d7-0654ffeca58c '-- yes '-- '-- Surgery, NOS +TCGA-OV 171f7917-69eb-4a3f-9cc0-0e1dffd412c1 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1463 70 false '-- '-- '-- '-- -25734 2218 9e8c9476-f74b-57c4-9fd8-5a3786d7c834 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-24-1463_demographic Dead '-- '-- '-- '-- 26705 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 971 '-- '-- '-- 3759142d-0cf6-4fc6-ae00-1e661971803e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1463_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1463_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1463_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 60deb3a5-41d0-47cc-949e-ba52a1ec88e2 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 171f7917-69eb-4a3f-9cc0-0e1dffd412c1 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1463 70 false '-- '-- '-- '-- -25734 2218 9e8c9476-f74b-57c4-9fd8-5a3786d7c834 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-24-1463_demographic Dead '-- '-- '-- '-- 26705 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 971 '-- '-- '-- 3759142d-0cf6-4fc6-ae00-1e661971803e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1463_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1463_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1463_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b8cbd81e-5d43-45d5-b6bf-fa9fd53e2406 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 171f7917-69eb-4a3f-9cc0-0e1dffd412c1 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1463 70 false '-- '-- '-- '-- -25734 2218 9e8c9476-f74b-57c4-9fd8-5a3786d7c834 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-24-1463_demographic Dead '-- '-- '-- '-- 25734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6f5d29ee-4ea0-5da7-be01-e7daeef0d99f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1463_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1084 976 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1463_treatment10 Cisplatin '-- '-- '-- '-- '-- '-- '-- 172 '-- mg '-- '-- '-- '-- 21bbfbb5-666b-493d-a981-642070ea9894 '-- yes '-- '-- Chemotherapy +TCGA-OV 171f7917-69eb-4a3f-9cc0-0e1dffd412c1 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1463 70 false '-- '-- '-- '-- -25734 2218 9e8c9476-f74b-57c4-9fd8-5a3786d7c834 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-24-1463_demographic Dead '-- '-- '-- '-- 25734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6f5d29ee-4ea0-5da7-be01-e7daeef0d99f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1463_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1084 976 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1463_treatment8 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1895 '-- mg '-- '-- '-- '-- 2c227a25-08ef-4725-aa40-c7e344ecd2c3 '-- yes '-- '-- Chemotherapy +TCGA-OV 171f7917-69eb-4a3f-9cc0-0e1dffd412c1 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1463 70 false '-- '-- '-- '-- -25734 2218 9e8c9476-f74b-57c4-9fd8-5a3786d7c834 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-24-1463_demographic Dead '-- '-- '-- '-- 25734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6f5d29ee-4ea0-5da7-be01-e7daeef0d99f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1463_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1463_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3811ef4d-c722-4be8-8907-501902db8b91 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 171f7917-69eb-4a3f-9cc0-0e1dffd412c1 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1463 70 false '-- '-- '-- '-- -25734 2218 9e8c9476-f74b-57c4-9fd8-5a3786d7c834 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-24-1463_demographic Dead '-- '-- '-- '-- 25734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6f5d29ee-4ea0-5da7-be01-e7daeef0d99f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1463_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1791 1742 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1463_treatment4 Cisplatin '-- '-- '-- '-- '-- '-- '-- 168 '-- mg '-- '-- '-- '-- 3d47e5f6-ebad-44db-bf71-80e05d28a253 '-- yes '-- '-- Chemotherapy +TCGA-OV 171f7917-69eb-4a3f-9cc0-0e1dffd412c1 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1463 70 false '-- '-- '-- '-- -25734 2218 9e8c9476-f74b-57c4-9fd8-5a3786d7c834 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-24-1463_demographic Dead '-- '-- '-- '-- 25734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6f5d29ee-4ea0-5da7-be01-e7daeef0d99f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1463_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1084 976 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1463_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1660 '-- mg '-- '-- '-- '-- 40e92b8b-02ae-5176-a68b-3325f97769f1 '-- yes '-- '-- Chemotherapy +TCGA-OV 171f7917-69eb-4a3f-9cc0-0e1dffd412c1 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1463 70 false '-- '-- '-- '-- -25734 2218 9e8c9476-f74b-57c4-9fd8-5a3786d7c834 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-24-1463_demographic Dead '-- '-- '-- '-- 25734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6f5d29ee-4ea0-5da7-be01-e7daeef0d99f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1463_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1383 1270 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1463_treatment9 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- 508 '-- mg '-- '-- '-- '-- 67c6bc4e-0ad6-4f11-97b5-d600f64314f0 '-- yes '-- '-- Chemotherapy +TCGA-OV 171f7917-69eb-4a3f-9cc0-0e1dffd412c1 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1463 70 false '-- '-- '-- '-- -25734 2218 9e8c9476-f74b-57c4-9fd8-5a3786d7c834 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-24-1463_demographic Dead '-- '-- '-- '-- 25734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6f5d29ee-4ea0-5da7-be01-e7daeef0d99f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1463_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1558 1465 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1463_treatment11 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 20684 '-- mg '-- '-- '-- '-- 73e1e55d-7f90-46db-bbde-216d5ef426ae '-- yes '-- '-- Chemotherapy +TCGA-OV 171f7917-69eb-4a3f-9cc0-0e1dffd412c1 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1463 70 false '-- '-- '-- '-- -25734 2218 9e8c9476-f74b-57c4-9fd8-5a3786d7c834 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-24-1463_demographic Dead '-- '-- '-- '-- 25734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6f5d29ee-4ea0-5da7-be01-e7daeef0d99f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1463_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 123 18 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1463_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3310 '-- mg '-- '-- '-- '-- 8819caa0-b7b4-426b-94b4-39f597eb500d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 171f7917-69eb-4a3f-9cc0-0e1dffd412c1 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1463 70 false '-- '-- '-- '-- -25734 2218 9e8c9476-f74b-57c4-9fd8-5a3786d7c834 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-24-1463_demographic Dead '-- '-- '-- '-- 25734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6f5d29ee-4ea0-5da7-be01-e7daeef0d99f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1463_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1383 1270 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1463_treatment2 Topotecan '-- '-- '-- '-- '-- '-- '-- 49 '-- mg '-- '-- '-- '-- 902ca928-8480-43f0-98c4-a60b61de3d29 '-- yes '-- '-- Chemotherapy +TCGA-OV 171f7917-69eb-4a3f-9cc0-0e1dffd412c1 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1463 70 false '-- '-- '-- '-- -25734 2218 9e8c9476-f74b-57c4-9fd8-5a3786d7c834 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-24-1463_demographic Dead '-- '-- '-- '-- 25734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6f5d29ee-4ea0-5da7-be01-e7daeef0d99f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1463_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1558 1465 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1463_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 277 '-- mg '-- '-- '-- '-- d0e95e86-f769-441c-85dc-db788d4b1f56 '-- yes '-- '-- Chemotherapy +TCGA-OV 171f7917-69eb-4a3f-9cc0-0e1dffd412c1 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1463 70 false '-- '-- '-- '-- -25734 2218 9e8c9476-f74b-57c4-9fd8-5a3786d7c834 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-24-1463_demographic Dead '-- '-- '-- '-- 25734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6f5d29ee-4ea0-5da7-be01-e7daeef0d99f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1463_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1733 1600 '-- '-- Progressive Disease '-- '-- '-- '-- 17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1463_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2275 '-- mg '-- '-- '-- '-- fc38feba-988d-47ad-93b9-e7798cad98fa '-- yes '-- '-- Chemotherapy +TCGA-OV 171f7917-69eb-4a3f-9cc0-0e1dffd412c1 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1463 70 false '-- '-- '-- '-- -25734 2218 9e8c9476-f74b-57c4-9fd8-5a3786d7c834 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-24-1463_demographic Dead '-- '-- '-- '-- 25734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6f5d29ee-4ea0-5da7-be01-e7daeef0d99f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1463_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 123 18 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1463_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1712 '-- mg '-- '-- '-- '-- fe05604a-707e-40c9-8f42-889f91db6952 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 184aac07-44c1-47f1-8adf-50acbcc1762c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2048 63 false '-- '-- '-- '-- -23043 138 43dd4513-5e1d-57ed-8b5a-5bf9175bb209 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2048_demographic Dead '-- '-- '-- '-- 23043 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e84e8a2c-231c-56f6-97e2-983b9bb2e049 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2048_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 60 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2048_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6742f88d-c93f-565f-8b51-0f565f6845e8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 184aac07-44c1-47f1-8adf-50acbcc1762c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2048 63 false '-- '-- '-- '-- -23043 138 43dd4513-5e1d-57ed-8b5a-5bf9175bb209 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2048_demographic Dead '-- '-- '-- '-- 23043 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e84e8a2c-231c-56f6-97e2-983b9bb2e049 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2048_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2048_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ef8dbed5-5e21-4f99-aba0-81ec234681e2 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 1858b58f-fdf4-413c-9c29-96ae85b88a74 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1550 49 false '-- '-- '-- '-- -18049 1249 398a8019-dc37-529c-a1ed-c9dd8bc38628 '-- not reported female '-- '-- '-- '-- white TCGA-24-1550_demographic Dead '-- '-- '-- '-- 18049 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 128ce7b5-2666-568d-8370-bd8ce225cb6a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1550_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 965 902 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1550_treatment Topotecan '-- '-- '-- '-- '-- '-- '-- 405 '-- mg '-- '-- '-- '-- 4a777e8f-38d3-5b9a-9567-7ece5a98878f '-- yes '-- '-- Chemotherapy +TCGA-OV 1858b58f-fdf4-413c-9c29-96ae85b88a74 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1550 49 false '-- '-- '-- '-- -18049 1249 398a8019-dc37-529c-a1ed-c9dd8bc38628 '-- not reported female '-- '-- '-- '-- white TCGA-24-1550_demographic Dead '-- '-- '-- '-- 18049 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 128ce7b5-2666-568d-8370-bd8ce225cb6a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1550_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1233 1233 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1550_treatment7 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 64 '-- mg '-- '-- '-- '-- 6cb177b2-84ee-4a45-a5dd-bf2f2a3476eb '-- yes '-- '-- Chemotherapy +TCGA-OV 1858b58f-fdf4-413c-9c29-96ae85b88a74 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1550 49 false '-- '-- '-- '-- -18049 1249 398a8019-dc37-529c-a1ed-c9dd8bc38628 '-- not reported female '-- '-- '-- '-- white TCGA-24-1550_demographic Dead '-- '-- '-- '-- 18049 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 128ce7b5-2666-568d-8370-bd8ce225cb6a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1550_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 174 8 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1550_treatment5 Cisplatin '-- '-- '-- '-- '-- '-- '-- 165 '-- mg '-- '-- '-- '-- 77b0a730-c557-4b57-a1bf-e18d1d69c30b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1858b58f-fdf4-413c-9c29-96ae85b88a74 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1550 49 false '-- '-- '-- '-- -18049 1249 398a8019-dc37-529c-a1ed-c9dd8bc38628 '-- not reported female '-- '-- '-- '-- white TCGA-24-1550_demographic Dead '-- '-- '-- '-- 18049 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 128ce7b5-2666-568d-8370-bd8ce225cb6a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1550_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1211 1164 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1550_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 837 '-- mg '-- '-- '-- '-- 87d74113-d7c6-4fa5-bfcf-3388ddc5e022 '-- yes '-- '-- Chemotherapy +TCGA-OV 1858b58f-fdf4-413c-9c29-96ae85b88a74 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1550 49 false '-- '-- '-- '-- -18049 1249 398a8019-dc37-529c-a1ed-c9dd8bc38628 '-- not reported female '-- '-- '-- '-- white TCGA-24-1550_demographic Dead '-- '-- '-- '-- 18049 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 128ce7b5-2666-568d-8370-bd8ce225cb6a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1550_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 174 8 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1550_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2070 '-- mg '-- '-- '-- '-- bf6c4cf4-333a-467e-8cb0-770862f7c41c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1858b58f-fdf4-413c-9c29-96ae85b88a74 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1550 49 false '-- '-- '-- '-- -18049 1249 398a8019-dc37-529c-a1ed-c9dd8bc38628 '-- not reported female '-- '-- '-- '-- white TCGA-24-1550_demographic Dead '-- '-- '-- '-- 18049 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 128ce7b5-2666-568d-8370-bd8ce225cb6a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1550_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1107 986 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1550_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4200 '-- mg '-- '-- '-- '-- c45f1f87-0594-4968-bdc9-c1267177a129 '-- yes '-- '-- Chemotherapy +TCGA-OV 1858b58f-fdf4-413c-9c29-96ae85b88a74 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1550 49 false '-- '-- '-- '-- -18049 1249 398a8019-dc37-529c-a1ed-c9dd8bc38628 '-- not reported female '-- '-- '-- '-- white TCGA-24-1550_demographic Dead '-- '-- '-- '-- 18049 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 128ce7b5-2666-568d-8370-bd8ce225cb6a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1550_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1550_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c8432b5f-3fa6-4935-938a-cf055d0a34f8 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 1858b58f-fdf4-413c-9c29-96ae85b88a74 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1550 49 false '-- '-- '-- '-- -18049 1249 398a8019-dc37-529c-a1ed-c9dd8bc38628 '-- not reported female '-- '-- '-- '-- white TCGA-24-1550_demographic Dead '-- '-- '-- '-- 18049 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 128ce7b5-2666-568d-8370-bd8ce225cb6a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1550_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1211 1164 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1550_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1950 '-- mg '-- '-- '-- '-- f1a9f26b-2d54-4883-9f67-fa027cb348cd '-- yes '-- '-- Chemotherapy +TCGA-OV 1858b58f-fdf4-413c-9c29-96ae85b88a74 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1550 49 false '-- '-- '-- '-- -18049 1249 398a8019-dc37-529c-a1ed-c9dd8bc38628 '-- not reported female '-- '-- '-- '-- white TCGA-24-1550_demographic Dead '-- '-- '-- '-- 18941 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 892 '-- '-- '-- 528d1141-7243-40b9-bbde-915acf3899cf false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1550_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1550_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1550_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 24f01bbd-7548-4bb8-86fd-2d2adef1c574 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 1858b58f-fdf4-413c-9c29-96ae85b88a74 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1550 49 false '-- '-- '-- '-- -18049 1249 398a8019-dc37-529c-a1ed-c9dd8bc38628 '-- not reported female '-- '-- '-- '-- white TCGA-24-1550_demographic Dead '-- '-- '-- '-- 18941 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 892 '-- '-- '-- 528d1141-7243-40b9-bbde-915acf3899cf false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1550_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1550_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1550_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fe60049d-323e-4faf-a8ae-c667e225c1b2 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 1858b58f-fdf4-413c-9c29-96ae85b88a74 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1550 49 false '-- '-- '-- '-- -18049 1249 398a8019-dc37-529c-a1ed-c9dd8bc38628 '-- not reported female '-- '-- '-- '-- white TCGA-24-1550_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f5a5f763-e96a-4d9b-83f7-9525b36c33c9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1550_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1550_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1550_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 00eb8e90-edce-4a78-b283-111ae714a3d6 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 1858b58f-fdf4-413c-9c29-96ae85b88a74 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1550 49 false '-- '-- '-- '-- -18049 1249 398a8019-dc37-529c-a1ed-c9dd8bc38628 '-- not reported female '-- '-- '-- '-- white TCGA-24-1550_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f5a5f763-e96a-4d9b-83f7-9525b36c33c9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1550_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1550_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1121 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1550_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bae47f18-f85b-49a6-be1c-68c2ccbaa3f8 '-- yes '-- '-- Surgery, NOS +TCGA-OV 1858b58f-fdf4-413c-9c29-96ae85b88a74 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1550 49 false '-- '-- '-- '-- -18049 1249 398a8019-dc37-529c-a1ed-c9dd8bc38628 '-- not reported female '-- '-- '-- '-- white TCGA-24-1550_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f5a5f763-e96a-4d9b-83f7-9525b36c33c9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1550_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1550_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1550_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- de1344c8-ad57-437d-abd3-e6c6746b0a99 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 186d40cd-624c-4016-a497-b30c892d393c Informed Consent 26 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1959 49 false '-- '-- '-- '-- -18247 '-- f9c4143c-c920-522f-9333-0e259cb78801 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1959_demographic Alive '-- '-- '-- '-- 18247 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 121cc11a-b0d3-537e-ae08-106d193c7667 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1959_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1959_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 13257195-47ed-4195-8d46-f1f6f8112e50 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 186d40cd-624c-4016-a497-b30c892d393c Informed Consent 26 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1959 49 false '-- '-- '-- '-- -18247 '-- f9c4143c-c920-522f-9333-0e259cb78801 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1959_demographic Alive '-- '-- '-- '-- 18247 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 121cc11a-b0d3-537e-ae08-106d193c7667 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1959_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- 26 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1959_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8aca474d-6dba-5b4e-bd7d-3cbe12ceacf0 Adjuvant yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 186d40cd-624c-4016-a497-b30c892d393c Informed Consent 26 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1959 49 false '-- '-- '-- '-- -18247 '-- f9c4143c-c920-522f-9333-0e259cb78801 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1959_demographic Alive '-- '-- '-- '-- 18247 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 121cc11a-b0d3-537e-ae08-106d193c7667 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1959_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- 26 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1959_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ede088a1-c130-424a-9656-de5d01e70ed1 Adjuvant yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0ea5c48d-eb6d-434a-aa9d-95feab6d9185 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1698_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1698_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1698_treatment18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 11b258b0-acf9-4e85-9e76-9008102a409b '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0ea5c48d-eb6d-434a-aa9d-95feab6d9185 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1698_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1698_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 181 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1698_treatment19 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1ff7c7d3-e59f-4c53-b005-3acca8f6dba8 '-- yes '-- '-- Surgery, NOS +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0ea5c48d-eb6d-434a-aa9d-95feab6d9185 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1698_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1698_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1698_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 33739b65-915f-4e09-9c69-a20621a8c265 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- 19611 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e383018c-dd08-5acf-a9de-02abce0898a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1698_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 909 741 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1698_treatment10 Carboplatin '-- '-- '-- '-- '-- '-- '-- 570 '-- mg '-- '-- '-- '-- 01432719-43c3-4bdf-9dab-253fce130f6c '-- yes '-- '-- Chemotherapy +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- 19611 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e383018c-dd08-5acf-a9de-02abce0898a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1698_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 2028 1986 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1698_treatment12 Docetaxel '-- '-- '-- '-- '-- '-- '-- 100 '-- mg '-- '-- '-- '-- 11ca6770-9d29-453f-ae0a-905e6cac51ec '-- yes '-- '-- Chemotherapy +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- 19611 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e383018c-dd08-5acf-a9de-02abce0898a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1698_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1783 1615 '-- '-- Progressive Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1698_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 68 '-- mg '-- '-- '-- '-- 1b321bb4-2e5a-4233-b051-dabd419c2bf0 '-- yes '-- '-- Chemotherapy +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- 19611 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e383018c-dd08-5acf-a9de-02abce0898a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1698_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1972 1811 '-- '-- Progressive Disease '-- '-- '-- '-- 17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1698_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 100 '-- mg '-- '-- '-- '-- 1e2ecc61-0ffd-42ab-bdeb-040775c9b2db '-- yes '-- '-- Chemotherapy +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- 19611 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e383018c-dd08-5acf-a9de-02abce0898a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1698_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1566 1321 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1698_treatment6 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 1020 '-- mg '-- '-- '-- '-- 2cdef613-5e72-4035-9980-8e3127eaf57a '-- yes '-- '-- Chemotherapy +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- 19611 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e383018c-dd08-5acf-a9de-02abce0898a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1698_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 237 8 '-- '-- '-- '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1698_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 5600 '-- mg '-- '-- '-- '-- 435a5a1a-20b0-5e6f-824e-9b9d6c590a35 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- 19611 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e383018c-dd08-5acf-a9de-02abce0898a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1698_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1580 1524 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1698_treatment9 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 600 '-- mg '-- '-- '-- '-- 65990be8-cc7a-4c91-bd64-e3c3a22ba38b '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- 19611 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e383018c-dd08-5acf-a9de-02abce0898a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1698_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 2245 2051 '-- '-- Progressive Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1698_treatment13 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 95174805-c602-4cb7-9ff8-f88595c080b9 '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- 19611 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e383018c-dd08-5acf-a9de-02abce0898a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1698_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 853 741 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1698_treatment7 Docetaxel '-- '-- '-- '-- '-- '-- '-- 53 '-- mg '-- '-- '-- '-- 96ec216e-08bc-4bdc-aa61-dad8411fd25f '-- yes '-- '-- Chemotherapy +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- 19611 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e383018c-dd08-5acf-a9de-02abce0898a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1698_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1419 328 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1698_treatment4 Tamoxifen '-- '-- '-- '-- '-- '-- '-- 20 '-- mg '-- '-- '-- '-- a5a90a0a-74c9-492e-8e59-42ff4d5bee3c '-- yes '-- '-- Hormone Therapy +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- 19611 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e383018c-dd08-5acf-a9de-02abce0898a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1698_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 237 8 '-- '-- '-- '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1698_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2603 '-- mg '-- '-- '-- '-- b1e6a47e-32c7-44ff-9260-5284f8ad93a4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- 19611 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e383018c-dd08-5acf-a9de-02abce0898a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1698_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1698_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b1e96512-7518-46c1-a4d5-58b59194ec0a Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- 19611 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e383018c-dd08-5acf-a9de-02abce0898a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1698_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1349 1321 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1698_treatment8 Carboplatin '-- '-- '-- '-- '-- '-- '-- 510 '-- mg '-- '-- '-- '-- c1bdc91d-7d25-4f7e-a54e-f4d5083180b5 '-- yes '-- '-- Chemotherapy +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- 19611 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e383018c-dd08-5acf-a9de-02abce0898a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1698_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1587 1580 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1698_treatment11 Topotecan '-- '-- '-- '-- '-- '-- '-- 5 '-- mg '-- '-- '-- '-- c33f151d-5bb4-4765-9f0c-9e798eacccbf '-- yes '-- '-- Chemotherapy +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- 19792 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 181 '-- '-- '-- f46e2dc1-3194-4241-82d8-7bcfca3a1586 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1698_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1698_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1698_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 37e6790c-bfd3-45ae-bb69-c23cc256fa69 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- 19792 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 181 '-- '-- '-- f46e2dc1-3194-4241-82d8-7bcfca3a1586 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1698_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1698_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1698_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7ce594ee-30b7-4355-82a8-2897eacdfa67 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 18e0e996-8f23-4f53-94a5-dde38b550863 Informed Consent 27 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1409 73 false '-- '-- '-- '-- -26836 1742 cf0eeee1-5dd7-5bef-ad40-5d881bf9d762 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1409_demographic Dead '-- '-- '-- '-- 26836 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6b0f33e6-884d-5a93-8335-9f55569790a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1409_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- 94 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1409_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 3a194d10-0034-4360-af0b-0220f04faacb Adjuvant yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 18e0e996-8f23-4f53-94a5-dde38b550863 Informed Consent 27 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1409 73 false '-- '-- '-- '-- -26836 1742 cf0eeee1-5dd7-5bef-ad40-5d881bf9d762 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1409_demographic Dead '-- '-- '-- '-- 26836 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6b0f33e6-884d-5a93-8335-9f55569790a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1409_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1409_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6f43a717-fff1-4073-9a7f-1f1fc810c2d3 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 18e0e996-8f23-4f53-94a5-dde38b550863 Informed Consent 27 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1409 73 false '-- '-- '-- '-- -26836 1742 cf0eeee1-5dd7-5bef-ad40-5d881bf9d762 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1409_demographic Dead '-- '-- '-- '-- 26836 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6b0f33e6-884d-5a93-8335-9f55569790a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1409_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- 94 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1409_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c9c78335-6d3f-52a5-92a9-c41ccbd8d4d8 Adjuvant yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 18e0e996-8f23-4f53-94a5-dde38b550863 Informed Consent 27 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1409 73 false '-- '-- '-- '-- -26836 1742 cf0eeee1-5dd7-5bef-ad40-5d881bf9d762 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1409_demographic Dead '-- '-- '-- '-- 27526 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 690 '-- '-- '-- cf88593f-a4c4-4021-8a35-44e716e39c5c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1409_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1409_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 19427350-619b-4b9c-a3ba-37f667bb2843 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1603 53 false '-- '-- '-- '-- -19681 2742 d5969403-73a4-5315-a0c2-0c82873ad345 '-- not reported female '-- '-- '-- '-- white TCGA-24-1603_demographic Dead '-- '-- '-- '-- 20673 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 992 '-- '-- '-- 678b7443-7a17-4ef9-83e1-9a49db07593c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1603_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1603_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1603_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7dc97a98-55ba-4fd2-b7cf-5e33fc9844bf '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 19427350-619b-4b9c-a3ba-37f667bb2843 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1603 53 false '-- '-- '-- '-- -19681 2742 d5969403-73a4-5315-a0c2-0c82873ad345 '-- not reported female '-- '-- '-- '-- white TCGA-24-1603_demographic Dead '-- '-- '-- '-- 20673 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 992 '-- '-- '-- 678b7443-7a17-4ef9-83e1-9a49db07593c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1603_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1603_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1603_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cbeb1bab-d528-43c2-8937-d268d48bef30 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 19427350-619b-4b9c-a3ba-37f667bb2843 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1603 53 false '-- '-- '-- '-- -19681 2742 d5969403-73a4-5315-a0c2-0c82873ad345 '-- not reported female '-- '-- '-- '-- white TCGA-24-1603_demographic Dead '-- '-- '-- '-- 19681 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6ebcfddc-d5a4-507d-9a7b-141c1dbe899d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1603_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 1853 '-- '-- '-- Progressive Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1603_treatment13 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 12a31e70-4106-4084-92aa-cd2682529065 '-- yes '-- '-- Chemotherapy +TCGA-OV 19427350-619b-4b9c-a3ba-37f667bb2843 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1603 53 false '-- '-- '-- '-- -19681 2742 d5969403-73a4-5315-a0c2-0c82873ad345 '-- not reported female '-- '-- '-- '-- white TCGA-24-1603_demographic Dead '-- '-- '-- '-- 19681 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6ebcfddc-d5a4-507d-9a7b-141c1dbe899d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1603_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1603_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1ca7a074-9e49-41c9-bcc1-1c14fcc85a0e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 19427350-619b-4b9c-a3ba-37f667bb2843 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1603 53 false '-- '-- '-- '-- -19681 2742 d5969403-73a4-5315-a0c2-0c82873ad345 '-- not reported female '-- '-- '-- '-- white TCGA-24-1603_demographic Dead '-- '-- '-- '-- 19681 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6ebcfddc-d5a4-507d-9a7b-141c1dbe899d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1603_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 1991 1899 '-- '-- Progressive Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1603_treatment11 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 39764cf1-f474-4efa-9090-bc40e1b1c315 '-- yes '-- '-- Chemotherapy +TCGA-OV 19427350-619b-4b9c-a3ba-37f667bb2843 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1603 53 false '-- '-- '-- '-- -19681 2742 d5969403-73a4-5315-a0c2-0c82873ad345 '-- not reported female '-- '-- '-- '-- white TCGA-24-1603_demographic Dead '-- '-- '-- '-- 19681 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6ebcfddc-d5a4-507d-9a7b-141c1dbe899d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1603_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 2448 2234 '-- '-- Progressive Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1603_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 42598d1d-8ad3-4977-ad4f-7b7304debe5b '-- yes '-- '-- Chemotherapy +TCGA-OV 19427350-619b-4b9c-a3ba-37f667bb2843 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1603 53 false '-- '-- '-- '-- -19681 2742 d5969403-73a4-5315-a0c2-0c82873ad345 '-- not reported female '-- '-- '-- '-- white TCGA-24-1603_demographic Dead '-- '-- '-- '-- 19681 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6ebcfddc-d5a4-507d-9a7b-141c1dbe899d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1603_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 1991 1899 '-- '-- Progressive Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1603_treatment7 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4d6710b9-608d-4da6-976e-c1567b0eafb9 '-- yes '-- '-- Chemotherapy +TCGA-OV 19427350-619b-4b9c-a3ba-37f667bb2843 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1603 53 false '-- '-- '-- '-- -19681 2742 d5969403-73a4-5315-a0c2-0c82873ad345 '-- not reported female '-- '-- '-- '-- white TCGA-24-1603_demographic Dead '-- '-- '-- '-- 19681 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6ebcfddc-d5a4-507d-9a7b-141c1dbe899d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1603_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 1516 1356 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1603_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4fe45ac0-0fa1-4bdc-b800-885698e7cf6a '-- yes '-- '-- Chemotherapy +TCGA-OV 19427350-619b-4b9c-a3ba-37f667bb2843 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1603 53 false '-- '-- '-- '-- -19681 2742 d5969403-73a4-5315-a0c2-0c82873ad345 '-- not reported female '-- '-- '-- '-- white TCGA-24-1603_demographic Dead '-- '-- '-- '-- 19681 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6ebcfddc-d5a4-507d-9a7b-141c1dbe899d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1603_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 2629 2629 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1603_treatment12 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5cb391b6-7f41-4f66-9510-d2c777be946d '-- yes '-- '-- Chemotherapy +TCGA-OV 19427350-619b-4b9c-a3ba-37f667bb2843 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1603 53 false '-- '-- '-- '-- -19681 2742 d5969403-73a4-5315-a0c2-0c82873ad345 '-- not reported female '-- '-- '-- '-- white TCGA-24-1603_demographic Dead '-- '-- '-- '-- 19681 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6ebcfddc-d5a4-507d-9a7b-141c1dbe899d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1603_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1603_treatment10 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 84514ddb-1e2e-4625-a0ff-c3dd80dd3b8f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 19427350-619b-4b9c-a3ba-37f667bb2843 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1603 53 false '-- '-- '-- '-- -19681 2742 d5969403-73a4-5315-a0c2-0c82873ad345 '-- not reported female '-- '-- '-- '-- white TCGA-24-1603_demographic Dead '-- '-- '-- '-- 19681 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6ebcfddc-d5a4-507d-9a7b-141c1dbe899d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1603_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 1181 1107 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1603_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8bb74ab4-575e-4090-9012-c3e24679e372 '-- yes '-- '-- Chemotherapy +TCGA-OV 19427350-619b-4b9c-a3ba-37f667bb2843 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1603 53 false '-- '-- '-- '-- -19681 2742 d5969403-73a4-5315-a0c2-0c82873ad345 '-- not reported female '-- '-- '-- '-- white TCGA-24-1603_demographic Dead '-- '-- '-- '-- 19681 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6ebcfddc-d5a4-507d-9a7b-141c1dbe899d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1603_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 1181 1107 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1603_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9a3a551e-7fcb-5ce7-9efa-913311ec6bfe '-- yes '-- '-- Chemotherapy +TCGA-OV 19427350-619b-4b9c-a3ba-37f667bb2843 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1603 53 false '-- '-- '-- '-- -19681 2742 d5969403-73a4-5315-a0c2-0c82873ad345 '-- not reported female '-- '-- '-- '-- white TCGA-24-1603_demographic Dead '-- '-- '-- '-- 19681 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6ebcfddc-d5a4-507d-9a7b-141c1dbe899d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1603_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1603_treatment9 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b3a1475f-7501-4054-8b94-06f74aa4ed27 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 19427350-619b-4b9c-a3ba-37f667bb2843 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1603 53 false '-- '-- '-- '-- -19681 2742 d5969403-73a4-5315-a0c2-0c82873ad345 '-- not reported female '-- '-- '-- '-- white TCGA-24-1603_demographic Dead '-- '-- '-- '-- 19681 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6ebcfddc-d5a4-507d-9a7b-141c1dbe899d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1603_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 2203 2022 '-- '-- Progressive Disease '-- '-- '-- '-- 28 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1603_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d4a82d47-aab7-48b0-99ad-5e04670fef18 '-- yes '-- '-- Chemotherapy +TCGA-OV 19427350-619b-4b9c-a3ba-37f667bb2843 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1603 53 false '-- '-- '-- '-- -19681 2742 d5969403-73a4-5315-a0c2-0c82873ad345 '-- not reported female '-- '-- '-- '-- white TCGA-24-1603_demographic Dead '-- '-- '-- '-- 19681 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6ebcfddc-d5a4-507d-9a7b-141c1dbe899d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1603_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 1516 1356 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1603_treatment8 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e068ac30-983b-4789-9392-a2dc825e31b1 '-- yes '-- '-- Chemotherapy +TCGA-OV 19427350-619b-4b9c-a3ba-37f667bb2843 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1603 53 false '-- '-- '-- '-- -19681 2742 d5969403-73a4-5315-a0c2-0c82873ad345 '-- not reported female '-- '-- '-- '-- white TCGA-24-1603_demographic Dead '-- '-- '-- '-- 19681 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6ebcfddc-d5a4-507d-9a7b-141c1dbe899d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1603_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 2629 2568 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1603_treatment2 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e44a41f3-694d-4459-991f-50596f1615df '-- yes '-- '-- Chemotherapy +TCGA-OV 195ecf43-06bd-4ffe-8d8b-a766f3f7179b Informed Consent 1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1418 68 false '-- '-- '-- '-- -24842 '-- f7482f5e-2a1e-5563-bd07-0041884d5457 '-- not reported female '-- '-- '-- '-- white TCGA-24-1418_demographic Alive '-- '-- '-- '-- 24842 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 624e0ef7-bfb4-547e-83f8-3468edfbae97 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1418_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1418_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 019af930-09f5-4bea-a082-84fe3dc740fd Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 195ecf43-06bd-4ffe-8d8b-a766f3f7179b Informed Consent 1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1418 68 false '-- '-- '-- '-- -24842 '-- f7482f5e-2a1e-5563-bd07-0041884d5457 '-- not reported female '-- '-- '-- '-- white TCGA-24-1418_demographic Alive '-- '-- '-- '-- 24842 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 624e0ef7-bfb4-547e-83f8-3468edfbae97 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1418_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 231 43 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1418_treatment3 Clinical Trial '-- '-- '-- '-- '-- '-- '-- 8459 '-- mg '-- '-- '-- '-- 0db08895-ff4c-42b0-99fe-623dae1f8af7 Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV 195ecf43-06bd-4ffe-8d8b-a766f3f7179b Informed Consent 1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1418 68 false '-- '-- '-- '-- -24842 '-- f7482f5e-2a1e-5563-bd07-0041884d5457 '-- not reported female '-- '-- '-- '-- white TCGA-24-1418_demographic Alive '-- '-- '-- '-- 24842 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 624e0ef7-bfb4-547e-83f8-3468edfbae97 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1418_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 161 23 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1418_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 2554 '-- mg '-- '-- '-- '-- 726efb55-eb75-5dfe-a418-915bce72ca08 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 195ecf43-06bd-4ffe-8d8b-a766f3f7179b Informed Consent 1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1418 68 false '-- '-- '-- '-- -24842 '-- f7482f5e-2a1e-5563-bd07-0041884d5457 '-- not reported female '-- '-- '-- '-- white TCGA-24-1418_demographic Alive '-- '-- '-- '-- 24842 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 624e0ef7-bfb4-547e-83f8-3468edfbae97 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1418_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 161 23 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1418_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1510 '-- mg '-- '-- '-- '-- a642d148-6066-400b-b070-fd3927df14dd Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 196f4600-b6c9-4652-9f77-65c92883f8c1 Informed Consent -9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2060 51 false '-- '-- '-- '-- -18635 '-- b78eb8ff-ab78-5321-aa85-a563f3b4d1fb '-- not reported female '-- '-- '-- '-- white TCGA-13-2060_demographic Alive '-- '-- '-- '-- 18635 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 31073de8-aadc-57d6-99a1-0a6b4d438bb9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2060_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 143 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-13-2060_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- 3b289c5a-3774-50a6-8cda-424d24af7b96 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 196f4600-b6c9-4652-9f77-65c92883f8c1 Informed Consent -9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2060 51 false '-- '-- '-- '-- -18635 '-- b78eb8ff-ab78-5321-aa85-a563f3b4d1fb '-- not reported female '-- '-- '-- '-- white TCGA-13-2060_demographic Alive '-- '-- '-- '-- 18635 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 31073de8-aadc-57d6-99a1-0a6b4d438bb9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2060_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 143 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-13-2060_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- 422167c4-17c5-4004-ab92-7ee66db13280 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 196f4600-b6c9-4652-9f77-65c92883f8c1 Informed Consent -9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2060 51 false '-- '-- '-- '-- -18635 '-- b78eb8ff-ab78-5321-aa85-a563f3b4d1fb '-- not reported female '-- '-- '-- '-- white TCGA-13-2060_demographic Alive '-- '-- '-- '-- 18635 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 31073de8-aadc-57d6-99a1-0a6b4d438bb9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2060_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 143 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-13-2060_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 600 '-- mg/m2 '-- '-- '-- '-- 4b559942-befc-4819-9f59-146fc87dabd4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 196f4600-b6c9-4652-9f77-65c92883f8c1 Informed Consent -9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2060 51 false '-- '-- '-- '-- -18635 '-- b78eb8ff-ab78-5321-aa85-a563f3b4d1fb '-- not reported female '-- '-- '-- '-- white TCGA-13-2060_demographic Alive '-- '-- '-- '-- 18635 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 31073de8-aadc-57d6-99a1-0a6b4d438bb9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2060_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-2060_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9ad776f8-ccae-47d7-9d2a-efa6d8898a51 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 196f4600-b6c9-4652-9f77-65c92883f8c1 Informed Consent -9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2060 51 false '-- '-- '-- '-- -18635 '-- b78eb8ff-ab78-5321-aa85-a563f3b4d1fb '-- not reported female '-- '-- '-- '-- white TCGA-13-2060_demographic Alive '-- '-- '-- '-- 20110 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 1475 '-- '-- '-- 44b5b6a8-a54e-41cd-8a56-edc5672a76fa false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-2060_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-2060_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 1aea3c25-d2bc-4ff5-bc27-32e939944e9d Informed Consent 1053 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1785 55 false '-- '-- '-- '-- -20417 1104 e84a85c2-be73-5952-b964-921c0feadca1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1785_demographic Dead '-- '-- '-- '-- 20417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3af0fe9d-b0be-520d-93e2-62c3dde90896 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1785_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1785_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4fb9346f-4143-4aba-a35b-26a12001d2af Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 1aea3c25-d2bc-4ff5-bc27-32e939944e9d Informed Consent 1053 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1785 55 false '-- '-- '-- '-- -20417 1104 e84a85c2-be73-5952-b964-921c0feadca1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1785_demographic Dead '-- '-- '-- '-- 20417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3af0fe9d-b0be-520d-93e2-62c3dde90896 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1785_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 612 521 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1785_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 610 '-- mg '-- '-- '-- '-- 609fb1b8-127c-4088-a569-6b599eb5e73e '-- yes '-- '-- Chemotherapy +TCGA-OV 1aea3c25-d2bc-4ff5-bc27-32e939944e9d Informed Consent 1053 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1785 55 false '-- '-- '-- '-- -20417 1104 e84a85c2-be73-5952-b964-921c0feadca1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1785_demographic Dead '-- '-- '-- '-- 20417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3af0fe9d-b0be-520d-93e2-62c3dde90896 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1785_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 156 94 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1785_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 300 '-- mg '-- '-- '-- '-- 658c3d14-78ef-4054-9273-4f07aa6b2a06 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1aea3c25-d2bc-4ff5-bc27-32e939944e9d Informed Consent 1053 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1785 55 false '-- '-- '-- '-- -20417 1104 e84a85c2-be73-5952-b964-921c0feadca1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1785_demographic Dead '-- '-- '-- '-- 20417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3af0fe9d-b0be-520d-93e2-62c3dde90896 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1785_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 496 496 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1785_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 560 '-- mg '-- '-- '-- '-- a4a4b362-02c4-4d4b-a2a0-81c00379b9fd '-- yes '-- '-- Chemotherapy +TCGA-OV 1aea3c25-d2bc-4ff5-bc27-32e939944e9d Informed Consent 1053 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1785 55 false '-- '-- '-- '-- -20417 1104 e84a85c2-be73-5952-b964-921c0feadca1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1785_demographic Dead '-- '-- '-- '-- 20417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3af0fe9d-b0be-520d-93e2-62c3dde90896 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1785_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 612 521 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1785_treatment4 Docetaxel '-- '-- '-- '-- '-- '-- '-- 110 '-- mg '-- '-- '-- '-- b0545a07-4b2b-4339-b93f-19123b25b216 '-- yes '-- '-- Chemotherapy +TCGA-OV 1aea3c25-d2bc-4ff5-bc27-32e939944e9d Informed Consent 1053 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1785 55 false '-- '-- '-- '-- -20417 1104 e84a85c2-be73-5952-b964-921c0feadca1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1785_demographic Dead '-- '-- '-- '-- 20417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3af0fe9d-b0be-520d-93e2-62c3dde90896 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1785_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 496 496 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1785_treatment7 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 330 '-- mg '-- '-- '-- '-- b227d204-66ed-486f-b14e-d619be05211a '-- yes '-- '-- Chemotherapy +TCGA-OV 1aea3c25-d2bc-4ff5-bc27-32e939944e9d Informed Consent 1053 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1785 55 false '-- '-- '-- '-- -20417 1104 e84a85c2-be73-5952-b964-921c0feadca1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1785_demographic Dead '-- '-- '-- '-- 20417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3af0fe9d-b0be-520d-93e2-62c3dde90896 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1785_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 156 94 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1785_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 610 '-- mg '-- '-- '-- '-- e0b65e6b-3e29-4ffd-9278-d3439079bf8a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1aea3c25-d2bc-4ff5-bc27-32e939944e9d Informed Consent 1053 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1785 55 false '-- '-- '-- '-- -20417 1104 e84a85c2-be73-5952-b964-921c0feadca1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1785_demographic Dead '-- '-- '-- '-- 20417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3af0fe9d-b0be-520d-93e2-62c3dde90896 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1785_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 73 51 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1785_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 610 '-- mg '-- '-- '-- '-- ed796433-2627-589a-bd13-572865e856d5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1aea3c25-d2bc-4ff5-bc27-32e939944e9d Informed Consent 1053 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1785 55 false '-- '-- '-- '-- -20417 1104 e84a85c2-be73-5952-b964-921c0feadca1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1785_demographic Dead '-- '-- '-- '-- 20890 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 473 '-- '-- '-- 951f08ea-22d1-4c49-a867-1ee358ea205e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1785_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1785_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1785_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ad7fa1a6-b16d-4d88-a574-c9c29f2d0c14 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 1aea3c25-d2bc-4ff5-bc27-32e939944e9d Informed Consent 1053 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1785 55 false '-- '-- '-- '-- -20417 1104 e84a85c2-be73-5952-b964-921c0feadca1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1785_demographic Dead '-- '-- '-- '-- 20890 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 473 '-- '-- '-- 951f08ea-22d1-4c49-a867-1ee358ea205e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1785_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1785_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1785_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ff1bdef4-fcc4-41e6-b543-c4a5e6e36b0f '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 1c0318d9-0472-4840-add4-46bb9f914a30 Informed Consent 142 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1721 38 false '-- '-- '-- '-- -13894 '-- 1eb55aba-7ecf-530a-91c4-218735f5c0e5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1721_demographic Alive '-- '-- '-- '-- 13894 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dcf90374-280a-5d2e-992f-9c76e9acd8e3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported Yes '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1721_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1721_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 20531ffd-84b6-45f3-87a1-0c23173633d4 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 1c0318d9-0472-4840-add4-46bb9f914a30 Informed Consent 142 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1721 38 false '-- '-- '-- '-- -13894 '-- 1eb55aba-7ecf-530a-91c4-218735f5c0e5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1721_demographic Alive '-- '-- '-- '-- 13894 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dcf90374-280a-5d2e-992f-9c76e9acd8e3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported Yes '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1721_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 338 2 '-- '-- Not Reported '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1721_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3960 '-- mg '-- '-- '-- '-- 205b9f44-7c5a-4e95-b48e-610b7726da53 Neoadjuvant yes '-- '-- Chemotherapy +TCGA-OV 1c0318d9-0472-4840-add4-46bb9f914a30 Informed Consent 142 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1721 38 false '-- '-- '-- '-- -13894 '-- 1eb55aba-7ecf-530a-91c4-218735f5c0e5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1721_demographic Alive '-- '-- '-- '-- 13894 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dcf90374-280a-5d2e-992f-9c76e9acd8e3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported Yes '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1721_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 317 193 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-1721_treatment Oxaliplatin '-- '-- '-- '-- '-- '-- '-- 528 '-- mg '-- '-- '-- '-- 317421ae-09b2-5042-acb5-8e8b08650fd1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1c0318d9-0472-4840-add4-46bb9f914a30 Informed Consent 142 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1721 38 false '-- '-- '-- '-- -13894 '-- 1eb55aba-7ecf-530a-91c4-218735f5c0e5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1721_demographic Alive '-- '-- '-- '-- 13894 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dcf90374-280a-5d2e-992f-9c76e9acd8e3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported Yes '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1721_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 338 2 '-- '-- Not Reported '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1721_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1782 '-- mg '-- '-- '-- '-- 36296aa4-7bc1-47f4-83ae-be0c3eeb3fa7 Neoadjuvant yes '-- '-- Chemotherapy +TCGA-OV 1c0318d9-0472-4840-add4-46bb9f914a30 Informed Consent 142 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1721 38 false '-- '-- '-- '-- -13894 '-- 1eb55aba-7ecf-530a-91c4-218735f5c0e5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1721_demographic Alive '-- '-- '-- '-- 13894 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dcf90374-280a-5d2e-992f-9c76e9acd8e3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported Yes '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1721_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 317 193 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-1721_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 786 '-- mg '-- '-- '-- '-- 72e450e1-d820-423f-8421-77a261eb9d9c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1cc02c64-a34e-46ae-9bc7-5d50f2fefb31 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1506 45 false '-- '-- '-- '-- -16734 1039 75bc4385-e9df-5793-a283-7c3a014c1c85 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1506_demographic Dead '-- '-- '-- '-- 17400 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 666 '-- '-- '-- 260569da-fe10-48c3-b85e-a8dbcb985bf9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1506_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1506_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 1cc02c64-a34e-46ae-9bc7-5d50f2fefb31 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1506 45 false '-- '-- '-- '-- -16734 1039 75bc4385-e9df-5793-a283-7c3a014c1c85 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1506_demographic Dead '-- '-- '-- '-- 16734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b7b88b39-5b78-5c15-a1fb-100e200d6917 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1506_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 51 50 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-13-1506_treatment4 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- 7216fb36-7c36-433c-8ab1-8e0bd76d17ef Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1cc02c64-a34e-46ae-9bc7-5d50f2fefb31 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1506 45 false '-- '-- '-- '-- -16734 1039 75bc4385-e9df-5793-a283-7c3a014c1c85 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1506_demographic Dead '-- '-- '-- '-- 16734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b7b88b39-5b78-5c15-a1fb-100e200d6917 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1506_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1506_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 96ff7193-8327-4486-8c50-af5f10d3619b Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 1cc02c64-a34e-46ae-9bc7-5d50f2fefb31 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1506 45 false '-- '-- '-- '-- -16734 1039 75bc4385-e9df-5793-a283-7c3a014c1c85 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1506_demographic Dead '-- '-- '-- '-- 16734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b7b88b39-5b78-5c15-a1fb-100e200d6917 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1506_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 80 79 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-13-1506_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- bd8253dc-bb4c-48e7-9a71-431d4e772a55 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1cc02c64-a34e-46ae-9bc7-5d50f2fefb31 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1506 45 false '-- '-- '-- '-- -16734 1039 75bc4385-e9df-5793-a283-7c3a014c1c85 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1506_demographic Dead '-- '-- '-- '-- 16734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b7b88b39-5b78-5c15-a1fb-100e200d6917 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1506_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 197 99 '-- '-- '-- '-- '-- '-- '-- 5 '-- 800.0 mg/m2 '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1506_treatment5 Gemcitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ca5731d5-3c05-45d9-85fc-eb53cdec55ff Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1cc02c64-a34e-46ae-9bc7-5d50f2fefb31 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1506 45 false '-- '-- '-- '-- -16734 1039 75bc4385-e9df-5793-a283-7c3a014c1c85 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1506_demographic Dead '-- '-- '-- '-- 16734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b7b88b39-5b78-5c15-a1fb-100e200d6917 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1506_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 51 50 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-13-1506_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- 65 '-- mg/m2 '-- '-- '-- '-- dc096bc6-e3eb-4439-bf65-b713a68cb3a8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1cc02c64-a34e-46ae-9bc7-5d50f2fefb31 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1506 45 false '-- '-- '-- '-- -16734 1039 75bc4385-e9df-5793-a283-7c3a014c1c85 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1506_demographic Dead '-- '-- '-- '-- 16734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b7b88b39-5b78-5c15-a1fb-100e200d6917 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1506_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 80 79 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-13-1506_treatment Gemcitabine '-- '-- '-- '-- '-- '-- '-- 800 '-- mg/m2 '-- '-- '-- '-- dccd01fd-9917-5b2c-8e65-030281a82c81 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1cc02c64-a34e-46ae-9bc7-5d50f2fefb31 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1506 45 false '-- '-- '-- '-- -16734 1039 75bc4385-e9df-5793-a283-7c3a014c1c85 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1506_demographic Dead '-- '-- '-- '-- 16734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b7b88b39-5b78-5c15-a1fb-100e200d6917 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1506_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 197 99 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1506_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4 '-- AUC '-- '-- '-- '-- f44f8955-525c-4b3e-a700-d697315caa6e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1d0225b5-f515-4197-bba7-3dc17e502b88 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2262 57 false '-- '-- '-- '-- -20861 11 354360d8-cfa6-5226-8582-8db9bf3e8ee9 '-- not reported female '-- '-- '-- '-- white TCGA-24-2262_demographic Dead '-- '-- '-- '-- 20861 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d5a8ef4a-e9fb-5014-939c-b0fcf9d6a2e5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2262_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2262_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7616810e-f532-4cce-ae69-734b02a6b5a2 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 1d0225b5-f515-4197-bba7-3dc17e502b88 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2262 57 false '-- '-- '-- '-- -20861 11 354360d8-cfa6-5226-8582-8db9bf3e8ee9 '-- not reported female '-- '-- '-- '-- white TCGA-24-2262_demographic Dead '-- '-- '-- '-- 20861 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d5a8ef4a-e9fb-5014-939c-b0fcf9d6a2e5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2262_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2262_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e6ec155b-d287-5959-b056-11401a70ba01 Adjuvant no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 1d192835-524e-429d-bf74-3c4727acb446 Informed Consent 236 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1362 59 false '-- '-- '-- '-- -21745 1348 508c36c3-7b48-5032-937e-d91e566e31a6 '-- not reported female '-- '-- '-- '-- white TCGA-04-1362_demographic Dead '-- '-- '-- '-- 21745 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6c650e4b-ae78-596e-8ff7-657d4f6db775 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1362_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1362_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 22f286ad-bc2b-4fee-866d-23d5963532cf Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 1d192835-524e-429d-bf74-3c4727acb446 Informed Consent 236 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1362 59 false '-- '-- '-- '-- -21745 1348 508c36c3-7b48-5032-937e-d91e566e31a6 '-- not reported female '-- '-- '-- '-- white TCGA-04-1362_demographic Dead '-- '-- '-- '-- 21745 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6c650e4b-ae78-596e-8ff7-657d4f6db775 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1362_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- 658 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1362_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2347f080-a9b6-41d9-a181-4759650f6811 '-- yes '-- '-- Chemotherapy +TCGA-OV 1d192835-524e-429d-bf74-3c4727acb446 Informed Consent 236 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1362 59 false '-- '-- '-- '-- -21745 1348 508c36c3-7b48-5032-937e-d91e566e31a6 '-- not reported female '-- '-- '-- '-- white TCGA-04-1362_demographic Dead '-- '-- '-- '-- 21745 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6c650e4b-ae78-596e-8ff7-657d4f6db775 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1362_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 172 7 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1362_treatment6 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 13856 '-- mg '-- '-- '-- '-- 506cdf3e-cfd6-45e6-80fe-381d2db0264b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1d192835-524e-429d-bf74-3c4727acb446 Informed Consent 236 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1362 59 false '-- '-- '-- '-- -21745 1348 508c36c3-7b48-5032-937e-d91e566e31a6 '-- not reported female '-- '-- '-- '-- white TCGA-04-1362_demographic Dead '-- '-- '-- '-- 21745 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6c650e4b-ae78-596e-8ff7-657d4f6db775 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1362_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 172 7 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1362_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1689 '-- mg '-- '-- '-- '-- 6cfcfadd-2adf-4f1f-b290-c71d67900355 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1d192835-524e-429d-bf74-3c4727acb446 Informed Consent 236 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1362 59 false '-- '-- '-- '-- -21745 1348 508c36c3-7b48-5032-937e-d91e566e31a6 '-- not reported female '-- '-- '-- '-- white TCGA-04-1362_demographic Dead '-- '-- '-- '-- 21745 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6c650e4b-ae78-596e-8ff7-657d4f6db775 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1362_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- 658 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1362_treatment5 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 741a3197-32c7-4893-b112-c3b94b02baa2 '-- yes '-- '-- Chemotherapy +TCGA-OV 1d192835-524e-429d-bf74-3c4727acb446 Informed Consent 236 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1362 59 false '-- '-- '-- '-- -21745 1348 508c36c3-7b48-5032-937e-d91e566e31a6 '-- not reported female '-- '-- '-- '-- white TCGA-04-1362_demographic Dead '-- '-- '-- '-- 21745 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6c650e4b-ae78-596e-8ff7-657d4f6db775 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1362_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- 658 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1362_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 75086b0f-7c17-4bbd-a68a-cddaaf2ef392 '-- yes '-- '-- Chemotherapy +TCGA-OV 1d192835-524e-429d-bf74-3c4727acb446 Informed Consent 236 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1362 59 false '-- '-- '-- '-- -21745 1348 508c36c3-7b48-5032-937e-d91e566e31a6 '-- not reported female '-- '-- '-- '-- white TCGA-04-1362_demographic Dead '-- '-- '-- '-- 21745 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6c650e4b-ae78-596e-8ff7-657d4f6db775 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1362_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 172 7 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1362_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 2593 '-- mg '-- '-- '-- '-- e4570351-8389-5e5a-a13c-13883ddf03a2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1d192835-524e-429d-bf74-3c4727acb446 Informed Consent 236 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1362 59 false '-- '-- '-- '-- -21745 1348 508c36c3-7b48-5032-937e-d91e566e31a6 '-- not reported female '-- '-- '-- '-- white TCGA-04-1362_demographic Dead '-- '-- '-- '-- 21968 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 223 '-- '-- '-- e5516947-4d75-4930-8552-ee83cb24b3c5 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1362_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1362_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1362_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4c6f61ba-c382-4afc-946e-4e6285315d58 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 1d192835-524e-429d-bf74-3c4727acb446 Informed Consent 236 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1362 59 false '-- '-- '-- '-- -21745 1348 508c36c3-7b48-5032-937e-d91e566e31a6 '-- not reported female '-- '-- '-- '-- white TCGA-04-1362_demographic Dead '-- '-- '-- '-- 21968 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 223 '-- '-- '-- e5516947-4d75-4930-8552-ee83cb24b3c5 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1362_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1362_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1362_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 60890e5f-d4e7-4c76-9609-7c3102e2bbc0 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 1d9893c8-0de3-4b07-b0ba-a53019b23eb4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0369 56 false '-- '-- '-- '-- -20705 1082 91435668-d5f8-5c6b-8afd-e3e973f0a0aa '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0369_demographic Dead '-- '-- '-- '-- 20705 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2ccc9ded-6131-5138-ac74-27f15e75a761 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-0369_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 298 298 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-0369_treatment6 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 40 '-- mg/m2 '-- '-- '-- '-- 1b8e92fe-3116-4247-af2c-46766c540d39 '-- yes '-- '-- Chemotherapy +TCGA-OV 1d9893c8-0de3-4b07-b0ba-a53019b23eb4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0369 56 false '-- '-- '-- '-- -20705 1082 91435668-d5f8-5c6b-8afd-e3e973f0a0aa '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0369_demographic Dead '-- '-- '-- '-- 20705 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2ccc9ded-6131-5138-ac74-27f15e75a761 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-0369_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 74 8 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-0369_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 347072d1-9959-41fd-b347-270d19bc4942 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1d9893c8-0de3-4b07-b0ba-a53019b23eb4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0369 56 false '-- '-- '-- '-- -20705 1082 91435668-d5f8-5c6b-8afd-e3e973f0a0aa '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0369_demographic Dead '-- '-- '-- '-- 20705 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2ccc9ded-6131-5138-ac74-27f15e75a761 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-0369_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 99 99 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-0369_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 35a52e70-cfdd-42db-8097-5afc68a05c51 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1d9893c8-0de3-4b07-b0ba-a53019b23eb4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0369 56 false '-- '-- '-- '-- -20705 1082 91435668-d5f8-5c6b-8afd-e3e973f0a0aa '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0369_demographic Dead '-- '-- '-- '-- 20705 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2ccc9ded-6131-5138-ac74-27f15e75a761 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-0369_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 74 8 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-0369_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6d5b4e3d-f52a-45b2-94f0-085148e276ed Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1d9893c8-0de3-4b07-b0ba-a53019b23eb4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0369 56 false '-- '-- '-- '-- -20705 1082 91435668-d5f8-5c6b-8afd-e3e973f0a0aa '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0369_demographic Dead '-- '-- '-- '-- 20705 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2ccc9ded-6131-5138-ac74-27f15e75a761 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-0369_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 99 99 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-0369_treatment Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1000 '-- mg/m2 '-- '-- '-- '-- 702913e1-f549-5908-ba73-05f3a66fc72e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1d9893c8-0de3-4b07-b0ba-a53019b23eb4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0369 56 false '-- '-- '-- '-- -20705 1082 91435668-d5f8-5c6b-8afd-e3e973f0a0aa '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0369_demographic Dead '-- '-- '-- '-- 20705 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2ccc9ded-6131-5138-ac74-27f15e75a761 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-0369_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 446 310 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-0369_treatment7 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d4862ff4-752e-457e-bf40-ab3552c89683 '-- yes '-- '-- Chemotherapy +TCGA-OV 1d9893c8-0de3-4b07-b0ba-a53019b23eb4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0369 56 false '-- '-- '-- '-- -20705 1082 91435668-d5f8-5c6b-8afd-e3e973f0a0aa '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0369_demographic Dead '-- '-- '-- '-- 20705 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2ccc9ded-6131-5138-ac74-27f15e75a761 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-0369_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 78 78 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-0369_treatment5 Docetaxel '-- '-- '-- '-- '-- '-- '-- 80 '-- mg '-- '-- '-- '-- d92c3bbc-c955-4ee7-aa32-ba26eba2b7c1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1d9893c8-0de3-4b07-b0ba-a53019b23eb4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0369 56 false '-- '-- '-- '-- -20705 1082 91435668-d5f8-5c6b-8afd-e3e973f0a0aa '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0369_demographic Dead '-- '-- '-- '-- 20705 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2ccc9ded-6131-5138-ac74-27f15e75a761 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-0369_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-0369_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f63cf101-5dbd-46b0-8545-03419be997a7 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 1d9893c8-0de3-4b07-b0ba-a53019b23eb4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0369 56 false '-- '-- '-- '-- -20705 1082 91435668-d5f8-5c6b-8afd-e3e973f0a0aa '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0369_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 93d34fef-e894-466a-9afd-78258808e3b9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-0369_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-0369_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 326 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-0369_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3a240054-93ae-49d6-87d4-8ca0fe8261ce '-- yes '-- '-- Surgery, NOS +TCGA-OV 1d9893c8-0de3-4b07-b0ba-a53019b23eb4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0369 56 false '-- '-- '-- '-- -20705 1082 91435668-d5f8-5c6b-8afd-e3e973f0a0aa '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0369_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 93d34fef-e894-466a-9afd-78258808e3b9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-0369_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-0369_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-0369_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a98c673f-1048-4d03-8a0a-b8e69a231482 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 1d9893c8-0de3-4b07-b0ba-a53019b23eb4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0369 56 false '-- '-- '-- '-- -20705 1082 91435668-d5f8-5c6b-8afd-e3e973f0a0aa '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0369_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 93d34fef-e894-466a-9afd-78258808e3b9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-0369_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-0369_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-0369_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cfee03b1-0afd-45ef-ada1-6c4a54192b68 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 1d9893c8-0de3-4b07-b0ba-a53019b23eb4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0369 56 false '-- '-- '-- '-- -20705 1082 91435668-d5f8-5c6b-8afd-e3e973f0a0aa '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0369_demographic Dead '-- '-- '-- '-- 20979 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 274 '-- '-- '-- faf32d90-3184-4f9d-8182-05fc89c21d1a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-0369_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-0369_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-0369_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2ef4422f-cd8e-4248-a1f0-9cf3f190a36c '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 1d9893c8-0de3-4b07-b0ba-a53019b23eb4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0369 56 false '-- '-- '-- '-- -20705 1082 91435668-d5f8-5c6b-8afd-e3e973f0a0aa '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0369_demographic Dead '-- '-- '-- '-- 20979 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 274 '-- '-- '-- faf32d90-3184-4f9d-8182-05fc89c21d1a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-0369_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-0369_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-0369_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b6709b73-9902-423c-b6b4-734ae60a15cb '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 1db60f09-7f5a-4f21-8003-06a6abc781db Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1694 45 false '-- '-- '-- '-- -16523 1187 109ece40-b218-5b70-83d3-e21fe429076f '-- not reported female '-- '-- '-- '-- white TCGA-29-1694_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 23e1151c-8ade-4fd6-a9ac-5368e0e52d28 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1694_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1694_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 206 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1694_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1d19f824-ae61-4185-a505-5fb36c67d9d1 '-- yes '-- '-- Surgery, NOS +TCGA-OV 1db60f09-7f5a-4f21-8003-06a6abc781db Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1694 45 false '-- '-- '-- '-- -16523 1187 109ece40-b218-5b70-83d3-e21fe429076f '-- not reported female '-- '-- '-- '-- white TCGA-29-1694_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 23e1151c-8ade-4fd6-a9ac-5368e0e52d28 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1694_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1694_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1694_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8ce456ae-5071-44ef-b110-ada0d0674b08 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 1db60f09-7f5a-4f21-8003-06a6abc781db Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1694 45 false '-- '-- '-- '-- -16523 1187 109ece40-b218-5b70-83d3-e21fe429076f '-- not reported female '-- '-- '-- '-- white TCGA-29-1694_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 23e1151c-8ade-4fd6-a9ac-5368e0e52d28 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1694_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1694_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1694_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f3e1630f-2a21-4fe8-be19-4d4300b6d18f '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 1db60f09-7f5a-4f21-8003-06a6abc781db Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1694 45 false '-- '-- '-- '-- -16523 1187 109ece40-b218-5b70-83d3-e21fe429076f '-- not reported female '-- '-- '-- '-- white TCGA-29-1694_demographic Dead '-- '-- '-- '-- 16523 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8c0fa4a4-95b4-5ff6-aa24-077fd12ff564 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1694_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 485 241 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-29-1694_treatment9 Cisplatin '-- '-- '-- '-- '-- '-- '-- 50 '-- mg/m2 '-- '-- '-- '-- 051fa0d5-64f1-4bdb-aaff-f56efb274c0f '-- yes '-- '-- Chemotherapy +TCGA-OV 1db60f09-7f5a-4f21-8003-06a6abc781db Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1694 45 false '-- '-- '-- '-- -16523 1187 109ece40-b218-5b70-83d3-e21fe429076f '-- not reported female '-- '-- '-- '-- white TCGA-29-1694_demographic Dead '-- '-- '-- '-- 16523 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8c0fa4a4-95b4-5ff6-aa24-077fd12ff564 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1694_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1071 969 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1694_treatment2 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1020 '-- mg '-- '-- '-- '-- 0a50a847-f320-4e08-ba86-68f7e6eab90b '-- yes '-- '-- Chemotherapy +TCGA-OV 1db60f09-7f5a-4f21-8003-06a6abc781db Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1694 45 false '-- '-- '-- '-- -16523 1187 109ece40-b218-5b70-83d3-e21fe429076f '-- not reported female '-- '-- '-- '-- white TCGA-29-1694_demographic Dead '-- '-- '-- '-- 16523 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8c0fa4a4-95b4-5ff6-aa24-077fd12ff564 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1694_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 161 43 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1694_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4 '-- AUC '-- '-- '-- '-- 0d207e91-1df2-456f-b70f-142ecea58290 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1db60f09-7f5a-4f21-8003-06a6abc781db Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1694 45 false '-- '-- '-- '-- -16523 1187 109ece40-b218-5b70-83d3-e21fe429076f '-- not reported female '-- '-- '-- '-- white TCGA-29-1694_demographic Dead '-- '-- '-- '-- 16523 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8c0fa4a4-95b4-5ff6-aa24-077fd12ff564 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1694_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 719 658 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1694_treatment6 Paclitaxel Poliglumex '-- '-- '-- '-- '-- '-- '-- 243 '-- mg '-- '-- '-- '-- 42a836cd-a2e8-4505-938c-5c9a65eee48d '-- yes '-- '-- Chemotherapy +TCGA-OV 1db60f09-7f5a-4f21-8003-06a6abc781db Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1694 45 false '-- '-- '-- '-- -16523 1187 109ece40-b218-5b70-83d3-e21fe429076f '-- not reported female '-- '-- '-- '-- white TCGA-29-1694_demographic Dead '-- '-- '-- '-- 16523 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8c0fa4a4-95b4-5ff6-aa24-077fd12ff564 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1694_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- 202 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1694_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 71f71a25-ef58-5fc9-b2b5-ca5883263da3 '-- yes '-- '-- Radiation, Radioisotope +TCGA-OV 1db60f09-7f5a-4f21-8003-06a6abc781db Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1694 45 false '-- '-- '-- '-- -16523 1187 109ece40-b218-5b70-83d3-e21fe429076f '-- not reported female '-- '-- '-- '-- white TCGA-29-1694_demographic Dead '-- '-- '-- '-- 16523 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8c0fa4a4-95b4-5ff6-aa24-077fd12ff564 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1694_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 161 43 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1694_treatment7 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 150 '-- mg/m2 '-- '-- '-- '-- 7821bd38-c937-4c3d-bd24-01f1823a8717 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1db60f09-7f5a-4f21-8003-06a6abc781db Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1694 45 false '-- '-- '-- '-- -16523 1187 109ece40-b218-5b70-83d3-e21fe429076f '-- not reported female '-- '-- '-- '-- white TCGA-29-1694_demographic Dead '-- '-- '-- '-- 16523 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8c0fa4a4-95b4-5ff6-aa24-077fd12ff564 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1694_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1108 1101 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1694_treatment10 Topotecan '-- '-- '-- '-- '-- '-- '-- 4 '-- mg '-- '-- '-- '-- 890a9660-543d-48c3-9f42-519dad7f1816 '-- yes '-- '-- Chemotherapy +TCGA-OV 1db60f09-7f5a-4f21-8003-06a6abc781db Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1694 45 false '-- '-- '-- '-- -16523 1187 109ece40-b218-5b70-83d3-e21fe429076f '-- not reported female '-- '-- '-- '-- white TCGA-29-1694_demographic Dead '-- '-- '-- '-- 16523 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8c0fa4a4-95b4-5ff6-aa24-077fd12ff564 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1694_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1071 1057 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1694_treatment5 Cisplatin '-- '-- '-- '-- '-- '-- '-- 40 '-- mg '-- '-- '-- '-- 8f620a25-6078-4f83-b3ee-2ea0cde6853c '-- yes '-- '-- Chemotherapy +TCGA-OV 1db60f09-7f5a-4f21-8003-06a6abc781db Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1694 45 false '-- '-- '-- '-- -16523 1187 109ece40-b218-5b70-83d3-e21fe429076f '-- not reported female '-- '-- '-- '-- white TCGA-29-1694_demographic Dead '-- '-- '-- '-- 16523 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8c0fa4a4-95b4-5ff6-aa24-077fd12ff564 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1694_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 658 339 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1694_treatment8 Tamoxifen '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b00f6731-bb36-4967-a1b9-0d0cf138f1f3 '-- yes '-- '-- Hormone Therapy +TCGA-OV 1db60f09-7f5a-4f21-8003-06a6abc781db Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1694 45 false '-- '-- '-- '-- -16523 1187 109ece40-b218-5b70-83d3-e21fe429076f '-- not reported female '-- '-- '-- '-- white TCGA-29-1694_demographic Dead '-- '-- '-- '-- 16523 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8c0fa4a4-95b4-5ff6-aa24-077fd12ff564 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1694_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 928 750 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1694_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 56 '-- mg '-- '-- '-- '-- d95f1e80-87b3-4ff5-92b6-a9330e2f2ab6 '-- yes '-- '-- Chemotherapy +TCGA-OV 1e14f098-17b2-4f54-8e4f-e38088008df7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0714 55 false '-- '-- '-- '-- -20109 189 228a6c55-1ab5-5019-bd8f-387fb592df71 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0714_demographic Dead '-- '-- '-- '-- 20109 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a2212176-e116-5cb8-adee-defab8d379bf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0714_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 04a61e9c-f15e-4b06-aeac-f44bb78a91e5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1e14f098-17b2-4f54-8e4f-e38088008df7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0714 55 false '-- '-- '-- '-- -20109 189 228a6c55-1ab5-5019-bd8f-387fb592df71 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0714_demographic Dead '-- '-- '-- '-- 20109 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a2212176-e116-5cb8-adee-defab8d379bf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0714_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 97546469-eff3-4b64-a472-a95e494aa5d5 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 1e14f098-17b2-4f54-8e4f-e38088008df7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0714 55 false '-- '-- '-- '-- -20109 189 228a6c55-1ab5-5019-bd8f-387fb592df71 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0714_demographic Dead '-- '-- '-- '-- 20109 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a2212176-e116-5cb8-adee-defab8d379bf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0714_treatment Gemcitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- be736da6-b59e-5da9-b184-ad682b358041 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1e14f098-17b2-4f54-8e4f-e38088008df7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0714 55 false '-- '-- '-- '-- -20109 189 228a6c55-1ab5-5019-bd8f-387fb592df71 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0714_demographic Dead '-- '-- '-- '-- 20109 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a2212176-e116-5cb8-adee-defab8d379bf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-13-0714_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c96e6636-2200-422d-b084-4b794107c461 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1e14f098-17b2-4f54-8e4f-e38088008df7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0714 55 false '-- '-- '-- '-- -20109 189 228a6c55-1ab5-5019-bd8f-387fb592df71 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0714_demographic Dead '-- '-- '-- '-- 20219 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 110 '-- '-- '-- ea45e1cc-67a8-47b9-84b2-6128c239ffff false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0714_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0714_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0714_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 206e752a-ec8b-4d0c-b08c-e73195a117e1 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 1e14f098-17b2-4f54-8e4f-e38088008df7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0714 55 false '-- '-- '-- '-- -20109 189 228a6c55-1ab5-5019-bd8f-387fb592df71 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0714_demographic Dead '-- '-- '-- '-- 20219 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 110 '-- '-- '-- ea45e1cc-67a8-47b9-84b2-6128c239ffff false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0714_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0714_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0714_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- da6e0300-4622-4e02-b07c-f290de30c18c '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 1ede8063-e0e9-466d-891c-ac8916f1b5fa Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1674 79 false '-- '-- '-- '-- -28878 '-- 7eefb98f-771a-5ff3-bef3-fe4d7b7f4a10 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1674_demographic Alive '-- '-- '-- '-- 28878 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7ff83dd1-9fd9-5e82-a1c8-181953c5f320 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1674_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 145 41 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1674_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 3e8f6157-7a6c-486d-9a97-ee110ac63335 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1ede8063-e0e9-466d-891c-ac8916f1b5fa Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1674 79 false '-- '-- '-- '-- -28878 '-- 7eefb98f-771a-5ff3-bef3-fe4d7b7f4a10 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1674_demographic Alive '-- '-- '-- '-- 28878 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7ff83dd1-9fd9-5e82-a1c8-181953c5f320 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1674_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 145 41 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1674_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b66b0332-bce1-592f-8563-04297bc31934 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1ede8063-e0e9-466d-891c-ac8916f1b5fa Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1674 79 false '-- '-- '-- '-- -28878 '-- 7eefb98f-771a-5ff3-bef3-fe4d7b7f4a10 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1674_demographic Alive '-- '-- '-- '-- 28878 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7ff83dd1-9fd9-5e82-a1c8-181953c5f320 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1674_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1674_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f7d5ea32-ab0b-46ba-9add-ff519c046d55 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 1fe19c6b-71d0-4b07-923b-74ea32210db0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1536 60 false '-- '-- '-- '-- -21939 885 4075c35e-4315-55c2-8f7e-f4fccace1701 '-- not reported female '-- '-- '-- '-- black or african american TCGA-04-1536_demographic Dead '-- '-- '-- '-- 22437 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 498 '-- '-- '-- bb0701cb-c8ea-4a48-9f6c-62c7dcde1aa4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1536_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1536_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1536_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c07094ce-30f7-4661-91d8-5b43e081f9ab '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 1fe19c6b-71d0-4b07-923b-74ea32210db0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1536 60 false '-- '-- '-- '-- -21939 885 4075c35e-4315-55c2-8f7e-f4fccace1701 '-- not reported female '-- '-- '-- '-- black or african american TCGA-04-1536_demographic Dead '-- '-- '-- '-- 22437 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 498 '-- '-- '-- bb0701cb-c8ea-4a48-9f6c-62c7dcde1aa4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1536_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1536_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1536_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f35bf032-0a76-493c-b708-db790885574d '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 1fe19c6b-71d0-4b07-923b-74ea32210db0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1536 60 false '-- '-- '-- '-- -21939 885 4075c35e-4315-55c2-8f7e-f4fccace1701 '-- not reported female '-- '-- '-- '-- black or african american TCGA-04-1536_demographic Dead '-- '-- '-- '-- 21939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f17fde83-65f4-517c-a222-7ce85742a76a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1536_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1536_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0b2da872-15ad-4bdb-864b-848f83f8d78f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 1fe19c6b-71d0-4b07-923b-74ea32210db0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1536 60 false '-- '-- '-- '-- -21939 885 4075c35e-4315-55c2-8f7e-f4fccace1701 '-- not reported female '-- '-- '-- '-- black or african american TCGA-04-1536_demographic Dead '-- '-- '-- '-- 21939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f17fde83-65f4-517c-a222-7ce85742a76a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1536_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- 518 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1536_treatment2 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 978ff54b-9cb1-4753-a39b-61478d9f6d7c '-- yes '-- '-- Chemotherapy +TCGA-OV 1fe19c6b-71d0-4b07-923b-74ea32210db0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1536 60 false '-- '-- '-- '-- -21939 885 4075c35e-4315-55c2-8f7e-f4fccace1701 '-- not reported female '-- '-- '-- '-- black or african american TCGA-04-1536_demographic Dead '-- '-- '-- '-- 21939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f17fde83-65f4-517c-a222-7ce85742a76a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1536_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 232 36 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1536_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 3360 '-- mg '-- '-- '-- '-- 9ce48eab-0d8c-5500-afb6-f15cba3c0ba6 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1fe19c6b-71d0-4b07-923b-74ea32210db0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1536 60 false '-- '-- '-- '-- -21939 885 4075c35e-4315-55c2-8f7e-f4fccace1701 '-- not reported female '-- '-- '-- '-- black or african american TCGA-04-1536_demographic Dead '-- '-- '-- '-- 21939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f17fde83-65f4-517c-a222-7ce85742a76a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1536_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 232 36 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1536_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 188 '-- mg '-- '-- '-- '-- b8d77d35-1993-4949-b54a-bf561342e30a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1fe19c6b-71d0-4b07-923b-74ea32210db0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1536 60 false '-- '-- '-- '-- -21939 885 4075c35e-4315-55c2-8f7e-f4fccace1701 '-- not reported female '-- '-- '-- '-- black or african american TCGA-04-1536_demographic Dead '-- '-- '-- '-- 21939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f17fde83-65f4-517c-a222-7ce85742a76a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1536_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- 518 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1536_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c4cbdc30-7ae4-491d-aa80-b95554bd076a '-- yes '-- '-- Chemotherapy +TCGA-OV 1fe19c6b-71d0-4b07-923b-74ea32210db0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1536 60 false '-- '-- '-- '-- -21939 885 4075c35e-4315-55c2-8f7e-f4fccace1701 '-- not reported female '-- '-- '-- '-- black or african american TCGA-04-1536_demographic Dead '-- '-- '-- '-- 21939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f17fde83-65f4-517c-a222-7ce85742a76a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1536_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 232 36 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1536_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2125 '-- mg '-- '-- '-- '-- e78c9b88-f213-433f-b1c2-d49612b4ac56 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1fe19c6b-71d0-4b07-923b-74ea32210db0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1536 60 false '-- '-- '-- '-- -21939 885 4075c35e-4315-55c2-8f7e-f4fccace1701 '-- not reported female '-- '-- '-- '-- black or african american TCGA-04-1536_demographic Dead '-- '-- '-- '-- 21939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f17fde83-65f4-517c-a222-7ce85742a76a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1536_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- 518 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1536_treatment5 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fdf08475-bd9e-488f-acc6-5ec314c13d32 '-- yes '-- '-- Chemotherapy +TCGA-OV 20336269-5a5b-4ba7-8fe8-665a1f9af738 Informed Consent 1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1633 64 false '-- '-- '-- '-- -23407 1891 e394758b-5b02-5855-a821-a660650ab989 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1633_demographic Dead '-- '-- '-- '-- 23407 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a2f9c05f-49fc-5fcf-8f44-9a62df7e890e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1633_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 184 26 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1633_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2253f219-7f50-5701-aef6-ab41b0a2129b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 20336269-5a5b-4ba7-8fe8-665a1f9af738 Informed Consent 1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1633 64 false '-- '-- '-- '-- -23407 1891 e394758b-5b02-5855-a821-a660650ab989 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1633_demographic Dead '-- '-- '-- '-- 23407 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a2f9c05f-49fc-5fcf-8f44-9a62df7e890e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1633_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 740 617 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1633_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 32760cdf-4012-4ce1-a5cf-5454e56668b2 '-- yes '-- '-- Chemotherapy +TCGA-OV 20336269-5a5b-4ba7-8fe8-665a1f9af738 Informed Consent 1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1633 64 false '-- '-- '-- '-- -23407 1891 e394758b-5b02-5855-a821-a660650ab989 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1633_demographic Dead '-- '-- '-- '-- 23407 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a2f9c05f-49fc-5fcf-8f44-9a62df7e890e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1633_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 740 617 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1633_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4c2299d0-04a8-4509-bac0-f069996d21a3 '-- yes '-- '-- Chemotherapy +TCGA-OV 20336269-5a5b-4ba7-8fe8-665a1f9af738 Informed Consent 1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1633 64 false '-- '-- '-- '-- -23407 1891 e394758b-5b02-5855-a821-a660650ab989 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1633_demographic Dead '-- '-- '-- '-- 23407 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a2f9c05f-49fc-5fcf-8f44-9a62df7e890e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1633_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1633_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b40d4f39-c075-40b4-a524-aa96354af3fc Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 20336269-5a5b-4ba7-8fe8-665a1f9af738 Informed Consent 1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1633 64 false '-- '-- '-- '-- -23407 1891 e394758b-5b02-5855-a821-a660650ab989 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1633_demographic Dead '-- '-- '-- '-- 23407 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a2f9c05f-49fc-5fcf-8f44-9a62df7e890e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1633_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 184 26 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1633_treatment4 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d4639cdf-13f9-42e0-a85d-27b8642750f5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 20336269-5a5b-4ba7-8fe8-665a1f9af738 Informed Consent 1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1633 64 false '-- '-- '-- '-- -23407 1891 e394758b-5b02-5855-a821-a660650ab989 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1633_demographic Dead '-- '-- '-- '-- 23407 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a2f9c05f-49fc-5fcf-8f44-9a62df7e890e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1633_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 184 26 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1633_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- eacbc6ef-4dd5-4d5e-975f-0b48f3b5e7bb Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 20336269-5a5b-4ba7-8fe8-665a1f9af738 Informed Consent 1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1633 64 false '-- '-- '-- '-- -23407 1891 e394758b-5b02-5855-a821-a660650ab989 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1633_demographic Dead '-- '-- '-- '-- 24023 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 616 '-- '-- '-- e9b263dc-5de0-4bc0-944f-b08b3a0a6f7e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1633_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1633_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1633_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5a3ec7cf-7fad-4630-9acb-26050be2bbaa '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 20336269-5a5b-4ba7-8fe8-665a1f9af738 Informed Consent 1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1633 64 false '-- '-- '-- '-- -23407 1891 e394758b-5b02-5855-a821-a660650ab989 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1633_demographic Dead '-- '-- '-- '-- 24023 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 616 '-- '-- '-- e9b263dc-5de0-4bc0-944f-b08b3a0a6f7e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1633_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1633_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1633_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f2349fd1-51b7-4a4c-9a95-bfbe354745aa '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 2038fd65-d8f1-4b16-af90-b1c8f9a379a7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0905 51 false '-- '-- '-- '-- -18757 '-- 48698460-7bda-5e2d-bc8b-c4314044aaca '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0905_demographic Alive '-- '-- '-- '-- 20292 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 1535 '-- '-- '-- 0c4ac03b-3c61-44ff-b7d0-600ede24f11b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0905_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0905_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 2038fd65-d8f1-4b16-af90-b1c8f9a379a7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0905 51 false '-- '-- '-- '-- -18757 '-- 48698460-7bda-5e2d-bc8b-c4314044aaca '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0905_demographic Alive '-- '-- '-- '-- 18757 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f00a9a54-c99b-5b21-acd3-6fae35b74a82 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0905_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 125 20 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0905_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 4d506f87-5e8b-4e98-a401-8a50cdf1b056 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2038fd65-d8f1-4b16-af90-b1c8f9a379a7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0905 51 false '-- '-- '-- '-- -18757 '-- 48698460-7bda-5e2d-bc8b-c4314044aaca '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0905_demographic Alive '-- '-- '-- '-- 18757 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f00a9a54-c99b-5b21-acd3-6fae35b74a82 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0905_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0905_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 827f9295-f04c-4a37-ad47-dc81032ad66f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 2038fd65-d8f1-4b16-af90-b1c8f9a379a7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0905 51 false '-- '-- '-- '-- -18757 '-- 48698460-7bda-5e2d-bc8b-c4314044aaca '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0905_demographic Alive '-- '-- '-- '-- 18757 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f00a9a54-c99b-5b21-acd3-6fae35b74a82 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0905_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 125 20 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0905_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b49df4b8-98e2-4a82-b2f4-7cc1740f331a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2038fd65-d8f1-4b16-af90-b1c8f9a379a7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0905 51 false '-- '-- '-- '-- -18757 '-- 48698460-7bda-5e2d-bc8b-c4314044aaca '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0905_demographic Alive '-- '-- '-- '-- 18757 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f00a9a54-c99b-5b21-acd3-6fae35b74a82 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0905_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 223 153 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0905_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 500 '-- mg/m2 '-- '-- '-- '-- bd53d914-bb52-5fcd-aa09-68d4e03edab9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 206ce0ed-36a4-47ab-ac8e-f6fca6ac5c18 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0982 77 false '-- '-- '-- '-- -28201 679 849e1718-c71c-5361-b7d6-b8cc306d138e '-- not reported female '-- '-- '-- '-- white TCGA-24-0982_demographic Dead '-- '-- '-- '-- 28201 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 39a59ccd-64aa-5441-84ae-81793fbe9199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0982_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-0982_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1547ca03-0619-4f37-b17e-1789dde00839 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 206ce0ed-36a4-47ab-ac8e-f6fca6ac5c18 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0982 77 false '-- '-- '-- '-- -28201 679 849e1718-c71c-5361-b7d6-b8cc306d138e '-- not reported female '-- '-- '-- '-- white TCGA-24-0982_demographic Dead '-- '-- '-- '-- 28201 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 39a59ccd-64aa-5441-84ae-81793fbe9199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0982_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 321 251 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0982_treatment5 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- 390 '-- mg '-- '-- '-- '-- 238a2a9a-2218-4fed-bbef-1466e53c3199 '-- yes '-- '-- Chemotherapy +TCGA-OV 206ce0ed-36a4-47ab-ac8e-f6fca6ac5c18 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0982 77 false '-- '-- '-- '-- -28201 679 849e1718-c71c-5361-b7d6-b8cc306d138e '-- not reported female '-- '-- '-- '-- white TCGA-24-0982_demographic Dead '-- '-- '-- '-- 28201 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 39a59ccd-64aa-5441-84ae-81793fbe9199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0982_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 474 341 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0982_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 388 '-- mg '-- '-- '-- '-- 54e94e17-9baf-4c2a-b5ad-a0581216c903 '-- yes '-- '-- Chemotherapy +TCGA-OV 206ce0ed-36a4-47ab-ac8e-f6fca6ac5c18 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0982 77 false '-- '-- '-- '-- -28201 679 849e1718-c71c-5361-b7d6-b8cc306d138e '-- not reported female '-- '-- '-- '-- white TCGA-24-0982_demographic Dead '-- '-- '-- '-- 28201 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 39a59ccd-64aa-5441-84ae-81793fbe9199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0982_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 615 488 '-- '-- Progressive Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0982_treatment7 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2276 '-- mg '-- '-- '-- '-- 75df1c59-9ee0-448f-9a88-787b76983a42 '-- yes '-- '-- Chemotherapy +TCGA-OV 206ce0ed-36a4-47ab-ac8e-f6fca6ac5c18 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0982 77 false '-- '-- '-- '-- -28201 679 849e1718-c71c-5361-b7d6-b8cc306d138e '-- not reported female '-- '-- '-- '-- white TCGA-24-0982_demographic Dead '-- '-- '-- '-- 28201 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 39a59ccd-64aa-5441-84ae-81793fbe9199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0982_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 321 251 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0982_treatment6 Topotecan '-- '-- '-- '-- '-- '-- '-- 39 '-- mg '-- '-- '-- '-- bc95f6b5-0673-4810-adfd-2b6ef4f7c161 '-- yes '-- '-- Chemotherapy +TCGA-OV 206ce0ed-36a4-47ab-ac8e-f6fca6ac5c18 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0982 77 false '-- '-- '-- '-- -28201 679 849e1718-c71c-5361-b7d6-b8cc306d138e '-- not reported female '-- '-- '-- '-- white TCGA-24-0982_demographic Dead '-- '-- '-- '-- 28201 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 39a59ccd-64aa-5441-84ae-81793fbe9199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0982_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 125 13 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0982_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1966 '-- mg '-- '-- '-- '-- bea58a28-e1e0-4c96-bd85-d5ab1f077b52 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 206ce0ed-36a4-47ab-ac8e-f6fca6ac5c18 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0982 77 false '-- '-- '-- '-- -28201 679 849e1718-c71c-5361-b7d6-b8cc306d138e '-- not reported female '-- '-- '-- '-- white TCGA-24-0982_demographic Dead '-- '-- '-- '-- 28201 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 39a59ccd-64aa-5441-84ae-81793fbe9199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0982_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 125 13 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0982_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4090 '-- mg '-- '-- '-- '-- c873a01f-9b1c-4c50-9272-524734405d4f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 206ce0ed-36a4-47ab-ac8e-f6fca6ac5c18 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0982 77 false '-- '-- '-- '-- -28201 679 849e1718-c71c-5361-b7d6-b8cc306d138e '-- not reported female '-- '-- '-- '-- white TCGA-24-0982_demographic Dead '-- '-- '-- '-- 28201 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 39a59ccd-64aa-5441-84ae-81793fbe9199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0982_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 474 341 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0982_treatment Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 24798 '-- mg '-- '-- '-- '-- d81ea43b-389a-5133-a0dd-61f3ff1b9e3b '-- yes '-- '-- Chemotherapy +TCGA-OV 206ce0ed-36a4-47ab-ac8e-f6fca6ac5c18 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0982 77 false '-- '-- '-- '-- -28201 679 849e1718-c71c-5361-b7d6-b8cc306d138e '-- not reported female '-- '-- '-- '-- white TCGA-24-0982_demographic Dead '-- '-- '-- '-- 28201 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 39a59ccd-64aa-5441-84ae-81793fbe9199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0982_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 615 488 '-- '-- Progressive Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0982_treatment8 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3800 '-- mg '-- '-- '-- '-- f2dfa1cc-3eb9-4356-9bf5-c062afb8347b '-- yes '-- '-- Chemotherapy +TCGA-OV 206ce0ed-36a4-47ab-ac8e-f6fca6ac5c18 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0982 77 false '-- '-- '-- '-- -28201 679 849e1718-c71c-5361-b7d6-b8cc306d138e '-- not reported female '-- '-- '-- '-- white TCGA-24-0982_demographic Dead '-- '-- '-- '-- 28354 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 153 '-- '-- '-- 56980cf0-76d2-4f6b-9b72-803ca1a51f3d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-0982_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-0982_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-0982_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8523df17-2911-4d26-a111-c2d083b85a1e '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 206ce0ed-36a4-47ab-ac8e-f6fca6ac5c18 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0982 77 false '-- '-- '-- '-- -28201 679 849e1718-c71c-5361-b7d6-b8cc306d138e '-- not reported female '-- '-- '-- '-- white TCGA-24-0982_demographic Dead '-- '-- '-- '-- 28354 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 153 '-- '-- '-- 56980cf0-76d2-4f6b-9b72-803ca1a51f3d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-0982_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-0982_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-0982_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 85b20b3d-58ea-4d60-9b18-7ea721cb535b '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 20c6be4d-7baf-4ea0-93e2-a5212f2e9b9c Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2012 81 false '-- '-- '-- '-- -29830 '-- 8498c00e-74f7-5fcf-b735-19fa805babfc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2012_demographic Alive '-- '-- '-- '-- 29830 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c2f4be9a-f3ef-5c78-b92f-88a7763041f2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2012_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- 29 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2012_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 537a2b9f-65ee-4e24-acca-60c743cacc5e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 20c6be4d-7baf-4ea0-93e2-a5212f2e9b9c Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2012 81 false '-- '-- '-- '-- -29830 '-- 8498c00e-74f7-5fcf-b735-19fa805babfc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2012_demographic Alive '-- '-- '-- '-- 29830 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c2f4be9a-f3ef-5c78-b92f-88a7763041f2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2012_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- 29 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2012_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7aad98b3-a724-40d4-8219-c1b22cbea8d0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 20c6be4d-7baf-4ea0-93e2-a5212f2e9b9c Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2012 81 false '-- '-- '-- '-- -29830 '-- 8498c00e-74f7-5fcf-b735-19fa805babfc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2012_demographic Alive '-- '-- '-- '-- 29830 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c2f4be9a-f3ef-5c78-b92f-88a7763041f2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2012_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2012_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- da579c57-8052-52c0-90de-1bb0c90d7898 Adjuvant yes '-- '-- Radiation Therapy, NOS +TCGA-OV 20cf00ea-d7da-42bb-bce7-f005f0b952eb Informed Consent 16 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2348 59 false '-- '-- '-- '-- '-- '-- 6a7ef2cd-8b8c-57fc-af3d-74c34a357885 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-59-2348_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7fbc9ad4-d3ae-5f9c-bb13-bdfa201dec51 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-59-2348_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 21966708-4e66-4211-add0-f1515b09e362 Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1847 45 false '-- '-- '-- '-- -16529 '-- 7dff2c76-7f44-5910-806b-2355bc702bbf '-- not reported female '-- '-- '-- '-- white TCGA-24-1847_demographic Alive '-- '-- '-- '-- 16529 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3384bda3-487e-5148-92d7-620f7ed61f10 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1847_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 143 28 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-24-1847_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 862 '-- mg '-- '-- '-- '-- 1f6e6b25-750f-46b8-808e-b5da4dd5eccc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 21966708-4e66-4211-add0-f1515b09e362 Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1847 45 false '-- '-- '-- '-- -16529 '-- 7dff2c76-7f44-5910-806b-2355bc702bbf '-- not reported female '-- '-- '-- '-- white TCGA-24-1847_demographic Alive '-- '-- '-- '-- 16529 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3384bda3-487e-5148-92d7-620f7ed61f10 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1847_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 143 28 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-24-1847_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 687 '-- mg '-- '-- '-- '-- 5b59d74a-2379-49f3-9474-c1120ad126c0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 21966708-4e66-4211-add0-f1515b09e362 Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1847 45 false '-- '-- '-- '-- -16529 '-- 7dff2c76-7f44-5910-806b-2355bc702bbf '-- not reported female '-- '-- '-- '-- white TCGA-24-1847_demographic Alive '-- '-- '-- '-- 16529 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3384bda3-487e-5148-92d7-620f7ed61f10 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1847_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1847_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- acbecc65-9c5a-4dd8-8d96-d12543543c69 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 21966708-4e66-4211-add0-f1515b09e362 Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1847 45 false '-- '-- '-- '-- -16529 '-- 7dff2c76-7f44-5910-806b-2355bc702bbf '-- not reported female '-- '-- '-- '-- white TCGA-24-1847_demographic Alive '-- '-- '-- '-- 16529 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3384bda3-487e-5148-92d7-620f7ed61f10 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1847_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 143 28 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1847_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- 733 '-- mg '-- '-- '-- '-- bdef78fe-9ed5-575c-9c8f-1337cd8ecdd5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 18835 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7e4bfb50-f7b9-5a44-a69e-28e275a0517e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 3154 2982 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2027_treatment14 Topotecan '-- '-- '-- '-- '-- '-- '-- 67 '-- mg '-- '-- '-- '-- 069bf078-c3eb-448f-ae37-44eddd36443b '-- yes '-- '-- Chemotherapy +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 18835 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7e4bfb50-f7b9-5a44-a69e-28e275a0517e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 258 6 '-- '-- '-- '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2027_treatment11 Carboplatin '-- '-- '-- '-- '-- '-- '-- 9838 '-- mg '-- '-- '-- '-- 16f2f158-bba0-4390-b197-cde5326ffa41 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 18835 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7e4bfb50-f7b9-5a44-a69e-28e275a0517e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 2540 2400 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2027_treatment13 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 400 '-- mg '-- '-- '-- '-- 213ba8f2-4ff7-41d0-80e1-2431fe1511d9 '-- yes '-- '-- Chemotherapy +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 18835 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7e4bfb50-f7b9-5a44-a69e-28e275a0517e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2027_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 326e6346-1a29-4fb9-b83c-177725f15488 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 18835 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7e4bfb50-f7b9-5a44-a69e-28e275a0517e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 784 624 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2027_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 3411 '-- mg '-- '-- '-- '-- 3f913450-7829-55de-a999-e5e30b983e2e '-- yes '-- '-- Chemotherapy +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 18835 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7e4bfb50-f7b9-5a44-a69e-28e275a0517e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 1985 1614 '-- '-- Recurrent Disease '-- '-- '-- '-- 17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2027_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- 151 '-- mg '-- '-- '-- '-- 49e84fba-4a17-4c29-81af-8c1d39f001f6 '-- yes '-- '-- Chemotherapy +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 18835 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7e4bfb50-f7b9-5a44-a69e-28e275a0517e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 3273 3168 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2027_treatment8 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1052 '-- mg '-- '-- '-- '-- 62d8cd80-15ce-4a93-a867-bd73c33a3f4c '-- yes '-- '-- Chemotherapy +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 18835 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7e4bfb50-f7b9-5a44-a69e-28e275a0517e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 784 624 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2027_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1860 '-- mg '-- '-- '-- '-- 744d79a0-9bb4-4802-ad69-130b537d90e3 '-- yes '-- '-- Chemotherapy +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 18835 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7e4bfb50-f7b9-5a44-a69e-28e275a0517e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 2216 2048 '-- '-- Recurrent Disease '-- '-- '-- '-- 20 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2027_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1747 '-- mg '-- '-- '-- '-- 74b4b448-38df-44c8-b154-4ec4bc3cc77f '-- yes '-- '-- Chemotherapy +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 18835 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7e4bfb50-f7b9-5a44-a69e-28e275a0517e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 2951 2759 '-- '-- Progressive Disease '-- '-- '-- '-- 18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2027_treatment9 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1108 '-- mg '-- '-- '-- '-- 7eb89c1f-5a24-4bc8-85cf-5d27e603aa52 '-- yes '-- '-- Chemotherapy +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 18835 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7e4bfb50-f7b9-5a44-a69e-28e275a0517e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 784 624 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2027_treatment10 Cisplatin '-- '-- '-- '-- '-- '-- '-- 88 '-- mg '-- '-- '-- '-- c529f9f3-cbb7-4f9e-97a6-a21dbcd28e57 '-- yes '-- '-- Chemotherapy +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 18835 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7e4bfb50-f7b9-5a44-a69e-28e275a0517e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 2745 2602 '-- '-- Progressive Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2027_treatment12 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- 311 '-- mg '-- '-- '-- '-- ca39274d-c6d7-44b6-820b-79593ad7a2ac '-- yes '-- '-- Chemotherapy +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 18835 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7e4bfb50-f7b9-5a44-a69e-28e275a0517e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 2591 2577 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2027_treatment2 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 1992 '-- mg '-- '-- '-- '-- ed18fe32-696f-4920-aad2-95d064687528 '-- yes '-- '-- Chemotherapy +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 18835 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7e4bfb50-f7b9-5a44-a69e-28e275a0517e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 258 6 '-- '-- '-- '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2027_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 3724 '-- mg '-- '-- '-- '-- fabdd2fb-6ad9-4e41-aac7-842b5254fa48 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 18835 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7e4bfb50-f7b9-5a44-a69e-28e275a0517e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 2591 2577 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2027_treatment7 Cisplatin '-- '-- '-- '-- '-- '-- '-- 83 '-- mg '-- '-- '-- '-- faea4e47-8c4e-4c45-8883-0a74835ce74a '-- yes '-- '-- Chemotherapy +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 19452 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 617 '-- '-- '-- a623a655-4833-4629-8ba5-ffeea96c1f26 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2027_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2027_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2027_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 79c009c9-c027-4bc9-9fcb-e8cd12143d67 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 19452 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 617 '-- '-- '-- a623a655-4833-4629-8ba5-ffeea96c1f26 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2027_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2027_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2027_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d1206997-6727-4d88-9871-9533d3af66eb '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 21f6bf91-dfc6-4a59-8b76-88a0f95c7b47 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1544 71 false '-- '-- '-- '-- -26141 820 d6576dc5-1505-5552-85bd-65620144f49e '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1544_demographic Dead '-- '-- '-- '-- 26784 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 643 '-- '-- '-- 4dc9a70e-5f7a-45b1-972e-aa5821eae909 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1544_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1544_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1544_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a1dcc9b0-eaa8-4a7a-94ba-db6cfc54fead '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 21f6bf91-dfc6-4a59-8b76-88a0f95c7b47 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1544 71 false '-- '-- '-- '-- -26141 820 d6576dc5-1505-5552-85bd-65620144f49e '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1544_demographic Dead '-- '-- '-- '-- 26784 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 643 '-- '-- '-- 4dc9a70e-5f7a-45b1-972e-aa5821eae909 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1544_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1544_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1544_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b094e09a-e098-4800-8ca5-82f137e46f0d '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 21f6bf91-dfc6-4a59-8b76-88a0f95c7b47 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1544 71 false '-- '-- '-- '-- -26141 820 d6576dc5-1505-5552-85bd-65620144f49e '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1544_demographic Dead '-- '-- '-- '-- 26141 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b05e9689-4d0c-5974-965f-d8c1411d17ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1544_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 203 18 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1544_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1356 '-- mg '-- '-- '-- '-- 6b784789-cbf5-4077-9755-1609dacd0b59 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 21f6bf91-dfc6-4a59-8b76-88a0f95c7b47 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1544 71 false '-- '-- '-- '-- -26141 820 d6576dc5-1505-5552-85bd-65620144f49e '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1544_demographic Dead '-- '-- '-- '-- 26141 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b05e9689-4d0c-5974-965f-d8c1411d17ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1544_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 470 243 '-- '-- Persistent Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1544_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 2100 '-- mg '-- '-- '-- '-- 7c82e619-991e-446e-a092-613360963daf Not Reported yes '-- '-- Chemotherapy +TCGA-OV 21f6bf91-dfc6-4a59-8b76-88a0f95c7b47 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1544 71 false '-- '-- '-- '-- -26141 820 d6576dc5-1505-5552-85bd-65620144f49e '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1544_demographic Dead '-- '-- '-- '-- 26141 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b05e9689-4d0c-5974-965f-d8c1411d17ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1544_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 799 777 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1544_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 595 '-- mg '-- '-- '-- '-- 7e5eea55-c677-5c45-8463-f4efa49ca963 '-- yes '-- '-- Chemotherapy +TCGA-OV 21f6bf91-dfc6-4a59-8b76-88a0f95c7b47 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1544 71 false '-- '-- '-- '-- -26141 820 d6576dc5-1505-5552-85bd-65620144f49e '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1544_demographic Dead '-- '-- '-- '-- 26141 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b05e9689-4d0c-5974-965f-d8c1411d17ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1544_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 203 18 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1544_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3080 '-- mg '-- '-- '-- '-- 95a9024a-e9d5-4d9b-a353-3e8792cf3c36 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 21f6bf91-dfc6-4a59-8b76-88a0f95c7b47 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1544 71 false '-- '-- '-- '-- -26141 820 d6576dc5-1505-5552-85bd-65620144f49e '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1544_demographic Dead '-- '-- '-- '-- 26141 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b05e9689-4d0c-5974-965f-d8c1411d17ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1544_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 638 533 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1544_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2500 '-- mg '-- '-- '-- '-- 9d784194-e741-470f-849c-e4121e0185d0 '-- yes '-- '-- Chemotherapy +TCGA-OV 21f6bf91-dfc6-4a59-8b76-88a0f95c7b47 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1544 71 false '-- '-- '-- '-- -26141 820 d6576dc5-1505-5552-85bd-65620144f49e '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1544_demographic Dead '-- '-- '-- '-- 26141 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b05e9689-4d0c-5974-965f-d8c1411d17ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1544_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 203 18 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1544_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- 13 '-- mg '-- '-- '-- '-- e72df009-ee07-4ab6-b3d6-66a4220bed21 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 21f6bf91-dfc6-4a59-8b76-88a0f95c7b47 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1544 71 false '-- '-- '-- '-- -26141 820 d6576dc5-1505-5552-85bd-65620144f49e '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1544_demographic Dead '-- '-- '-- '-- 26141 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b05e9689-4d0c-5974-965f-d8c1411d17ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1544_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1544_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f64246f6-811d-4577-83d6-0144f4605e5d Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 22178c3c-6b04-46d8-8041-dc83fa195029 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2404 38 false '-- '-- '-- '-- -14184 883 2491559b-7a65-500d-b886-d23b26c6aadd '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2404_demographic Dead '-- '-- '-- '-- 14610 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 426 '-- '-- '-- 3d8f4203-7f48-4c30-8322-ca947353deab false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-2404_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-2404_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2404_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2c11798c-3d00-4d64-a3e3-ab93be820fef '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 22178c3c-6b04-46d8-8041-dc83fa195029 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2404 38 false '-- '-- '-- '-- -14184 883 2491559b-7a65-500d-b886-d23b26c6aadd '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2404_demographic Dead '-- '-- '-- '-- 14610 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 426 '-- '-- '-- 3d8f4203-7f48-4c30-8322-ca947353deab false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-2404_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-2404_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2404_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2cae9564-8004-4701-8389-8c770f8a7d0e '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 22178c3c-6b04-46d8-8041-dc83fa195029 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2404 38 false '-- '-- '-- '-- -14184 883 2491559b-7a65-500d-b886-d23b26c6aadd '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2404_demographic Dead '-- '-- '-- '-- 14184 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8a61260e-5e20-5dc5-94bf-549afb0dbbd8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2404_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2404_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1e072972-cacb-45ee-a13c-0647b7214599 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 22178c3c-6b04-46d8-8041-dc83fa195029 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2404 38 false '-- '-- '-- '-- -14184 883 2491559b-7a65-500d-b886-d23b26c6aadd '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2404_demographic Dead '-- '-- '-- '-- 14184 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8a61260e-5e20-5dc5-94bf-549afb0dbbd8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2404_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 306 184 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2404_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5ef16413-a656-402d-9e56-3204f429351c '-- yes '-- '-- Chemotherapy +TCGA-OV 22178c3c-6b04-46d8-8041-dc83fa195029 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2404 38 false '-- '-- '-- '-- -14184 883 2491559b-7a65-500d-b886-d23b26c6aadd '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2404_demographic Dead '-- '-- '-- '-- 14184 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8a61260e-5e20-5dc5-94bf-549afb0dbbd8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2404_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 122 0 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2404_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 87318159-dd0c-52a3-be85-bf3c51c29f67 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 22178c3c-6b04-46d8-8041-dc83fa195029 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2404 38 false '-- '-- '-- '-- -14184 883 2491559b-7a65-500d-b886-d23b26c6aadd '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2404_demographic Dead '-- '-- '-- '-- 14184 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8a61260e-5e20-5dc5-94bf-549afb0dbbd8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2404_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 306 184 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2404_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bd020a97-4697-4295-8bf7-21623b2d02f4 '-- yes '-- '-- Chemotherapy +TCGA-OV 22178c3c-6b04-46d8-8041-dc83fa195029 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2404 38 false '-- '-- '-- '-- -14184 883 2491559b-7a65-500d-b886-d23b26c6aadd '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2404_demographic Dead '-- '-- '-- '-- 14184 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8a61260e-5e20-5dc5-94bf-549afb0dbbd8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2404_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 122 0 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2404_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c6388364-a8e4-4079-8be9-2ed301709a98 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 23d32627-9fd2-4312-bcda-ee7409e3983f Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1784 55 false '-- '-- '-- '-- -20210 '-- 331533e8-2b22-538a-bb92-3ba7f81c58a2 '-- not reported female '-- '-- '-- '-- white TCGA-29-1784_demographic Alive '-- '-- '-- '-- 20210 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3e3aadeb-f781-5f50-86b3-d49f1aa93c4f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1784_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 59 59 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1784_treatment Nab-paclitaxel '-- '-- '-- '-- '-- '-- '-- 300 '-- mg '-- '-- '-- '-- 23d48b9a-e5f7-5aee-bb22-0a3c67d096a5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 23d32627-9fd2-4312-bcda-ee7409e3983f Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1784 55 false '-- '-- '-- '-- -20210 '-- 331533e8-2b22-538a-bb92-3ba7f81c58a2 '-- not reported female '-- '-- '-- '-- white TCGA-29-1784_demographic Alive '-- '-- '-- '-- 20210 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3e3aadeb-f781-5f50-86b3-d49f1aa93c4f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1784_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 136 17 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1784_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3330 '-- mg '-- '-- '-- '-- 78fc38df-b24c-47c8-b94e-83028092e483 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 23d32627-9fd2-4312-bcda-ee7409e3983f Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1784 55 false '-- '-- '-- '-- -20210 '-- 331533e8-2b22-538a-bb92-3ba7f81c58a2 '-- not reported female '-- '-- '-- '-- white TCGA-29-1784_demographic Alive '-- '-- '-- '-- 20210 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3e3aadeb-f781-5f50-86b3-d49f1aa93c4f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1784_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1784_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a6a379db-4e93-4004-a3d7-a876247acd8b Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 23d32627-9fd2-4312-bcda-ee7409e3983f Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1784 55 false '-- '-- '-- '-- -20210 '-- 331533e8-2b22-538a-bb92-3ba7f81c58a2 '-- not reported female '-- '-- '-- '-- white TCGA-29-1784_demographic Alive '-- '-- '-- '-- 20210 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3e3aadeb-f781-5f50-86b3-d49f1aa93c4f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1784_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 17 17 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1784_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 270 '-- mg '-- '-- '-- '-- e46f10f9-2355-4990-aeea-5e5345b45b21 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 23d32627-9fd2-4312-bcda-ee7409e3983f Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1784 55 false '-- '-- '-- '-- -20210 '-- 331533e8-2b22-538a-bb92-3ba7f81c58a2 '-- not reported female '-- '-- '-- '-- white TCGA-29-1784_demographic Alive '-- '-- '-- '-- 20210 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3e3aadeb-f781-5f50-86b3-d49f1aa93c4f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1784_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 24 23 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1784_treatment3 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 2480 '-- mg '-- '-- '-- '-- f5e90ba6-a600-47b1-9125-ac98f8f8981d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 242943fe-1fa0-4a12-8f7e-9c6c4af1194d Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2088 51 false '-- '-- '-- '-- -18770 '-- f10f87ea-db88-50ac-8b62-e269aa16ba67 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2088_demographic Alive '-- '-- '-- '-- 18770 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6e4a13d0-dffc-5780-9f24-ee952362f22d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2088_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2088_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0620c19a-1e05-4d55-a864-ef3c568c63b5 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 242943fe-1fa0-4a12-8f7e-9c6c4af1194d Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2088 51 false '-- '-- '-- '-- -18770 '-- f10f87ea-db88-50ac-8b62-e269aa16ba67 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2088_demographic Alive '-- '-- '-- '-- 18770 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6e4a13d0-dffc-5780-9f24-ee952362f22d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2088_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 145 34 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2088_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3900 '-- mg '-- '-- '-- '-- afebd551-2446-4f52-9a2a-b41485f9aafe Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 242943fe-1fa0-4a12-8f7e-9c6c4af1194d Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2088 51 false '-- '-- '-- '-- -18770 '-- f10f87ea-db88-50ac-8b62-e269aa16ba67 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2088_demographic Alive '-- '-- '-- '-- 18770 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6e4a13d0-dffc-5780-9f24-ee952362f22d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2088_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 145 34 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2088_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- 900 '-- mg '-- '-- '-- '-- ef2a5e93-9f0f-53c1-96d5-da124011ce36 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 Informed Consent 1877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1763 43 false '-- '-- '-- '-- -16021 '-- 8ae2cac3-bc30-5b1f-969f-cad425be9356 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1763_demographic Alive '-- '-- '-- '-- 16449 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 428 '-- '-- '-- 98c9de89-8261-469c-9c72-ca953537f4c7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1763_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1763_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1763_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 28a92c4b-58d5-481c-899f-b02be1b78d98 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 Informed Consent 1877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1763 43 false '-- '-- '-- '-- -16021 '-- 8ae2cac3-bc30-5b1f-969f-cad425be9356 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1763_demographic Alive '-- '-- '-- '-- 16449 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 428 '-- '-- '-- 98c9de89-8261-469c-9c72-ca953537f4c7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1763_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1763_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1763_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d7b2cada-4c1a-4cdc-9fc5-89d504d4610d '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 Informed Consent 1877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1763 43 false '-- '-- '-- '-- -16021 '-- 8ae2cac3-bc30-5b1f-969f-cad425be9356 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1763_demographic Alive '-- '-- '-- '-- 16021 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d1f6b014-7b53-518b-a401-c80c673bf79b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1763_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1325 1283 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1763_treatment11 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 2000 '-- mg '-- '-- '-- '-- 270de7c2-617b-4116-aaf4-90814594700c '-- yes '-- '-- Chemotherapy +TCGA-OV 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 Informed Consent 1877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1763 43 false '-- '-- '-- '-- -16021 '-- 8ae2cac3-bc30-5b1f-969f-cad425be9356 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1763_demographic Alive '-- '-- '-- '-- 16021 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d1f6b014-7b53-518b-a401-c80c673bf79b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1763_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 100 15 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1763_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3175 '-- mg '-- '-- '-- '-- 271ded09-d539-463a-8b65-cce6e77d8560 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 Informed Consent 1877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1763 43 false '-- '-- '-- '-- -16021 '-- 8ae2cac3-bc30-5b1f-969f-cad425be9356 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1763_demographic Alive '-- '-- '-- '-- 16021 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d1f6b014-7b53-518b-a401-c80c673bf79b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1763_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 2252 2189 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1763_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 4e8806da-f713-42d1-b04a-86024b07c8e2 '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 Informed Consent 1877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1763 43 false '-- '-- '-- '-- -16021 '-- 8ae2cac3-bc30-5b1f-969f-cad425be9356 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1763_demographic Alive '-- '-- '-- '-- 16021 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d1f6b014-7b53-518b-a401-c80c673bf79b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1763_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 100 15 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1763_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1645 '-- mg '-- '-- '-- '-- 66a9da14-f866-41e5-acc7-15a1a1f4a197 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 Informed Consent 1877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1763 43 false '-- '-- '-- '-- -16021 '-- 8ae2cac3-bc30-5b1f-969f-cad425be9356 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1763_demographic Alive '-- '-- '-- '-- 16021 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d1f6b014-7b53-518b-a401-c80c673bf79b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1763_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1367 1346 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1763_treatment10 Carboplatin '-- '-- '-- '-- '-- '-- '-- 435 '-- mg '-- '-- '-- '-- 6925c731-32bc-45b7-a100-6422c1eb5ab6 '-- yes '-- '-- Chemotherapy +TCGA-OV 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 Informed Consent 1877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1763 43 false '-- '-- '-- '-- -16021 '-- 8ae2cac3-bc30-5b1f-969f-cad425be9356 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1763_demographic Alive '-- '-- '-- '-- 16021 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d1f6b014-7b53-518b-a401-c80c673bf79b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1763_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 2126 2049 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1763_treatment7 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 80 '-- mg '-- '-- '-- '-- 96d4ccb3-caf1-4446-82ae-2ad9322124c7 '-- yes '-- '-- Chemotherapy +TCGA-OV 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 Informed Consent 1877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1763 43 false '-- '-- '-- '-- -16021 '-- 8ae2cac3-bc30-5b1f-969f-cad425be9356 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1763_demographic Alive '-- '-- '-- '-- 16021 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d1f6b014-7b53-518b-a401-c80c673bf79b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1763_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1979 1948 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1763_treatment '-- '-- '-- '-- '-- '-- Locoregional Site '-- '-- '-- '-- '-- '-- '-- '-- b9499b9f-eef9-51af-92a5-55e855112876 '-- yes '-- '-- Radiation, External Beam +TCGA-OV 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 Informed Consent 1877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1763 43 false '-- '-- '-- '-- -16021 '-- 8ae2cac3-bc30-5b1f-969f-cad425be9356 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1763_demographic Alive '-- '-- '-- '-- 16021 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d1f6b014-7b53-518b-a401-c80c673bf79b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1763_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 2161 2049 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1763_treatment8 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 1000 '-- mg '-- '-- '-- '-- d3ac99a8-31ad-498b-96b4-b6c4a61b52a1 '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 Informed Consent 1877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1763 43 false '-- '-- '-- '-- -16021 '-- 8ae2cac3-bc30-5b1f-969f-cad425be9356 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1763_demographic Alive '-- '-- '-- '-- 16021 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d1f6b014-7b53-518b-a401-c80c673bf79b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1763_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1376 1346 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1763_treatment9 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 350 '-- mg '-- '-- '-- '-- db4a2b0a-cac2-4e8a-be42-dd85fec00bfd '-- yes '-- '-- Chemotherapy +TCGA-OV 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 Informed Consent 1877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1763 43 false '-- '-- '-- '-- -16021 '-- 8ae2cac3-bc30-5b1f-969f-cad425be9356 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1763_demographic Alive '-- '-- '-- '-- 16021 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d1f6b014-7b53-518b-a401-c80c673bf79b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1763_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 579 450 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1763_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 675 '-- mg '-- '-- '-- '-- e1566cbe-b7da-484b-8d69-d8aa6b048e0b '-- yes '-- '-- Chemotherapy +TCGA-OV 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 Informed Consent 1877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1763 43 false '-- '-- '-- '-- -16021 '-- 8ae2cac3-bc30-5b1f-969f-cad425be9356 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1763_demographic Alive '-- '-- '-- '-- 16021 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d1f6b014-7b53-518b-a401-c80c673bf79b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1763_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1839 1727 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1763_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 350 '-- mg '-- '-- '-- '-- f26adedf-1aa6-41b9-b7d0-b33a0839207b '-- yes '-- '-- Chemotherapy +TCGA-OV 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 Informed Consent 1877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1763 43 false '-- '-- '-- '-- -16021 '-- 8ae2cac3-bc30-5b1f-969f-cad425be9356 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1763_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- de3aa864-53c6-4c25-b91c-202c5527db3d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1763_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1763_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1868 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1763_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3f268038-2699-436f-8471-f36ae3076d87 '-- yes '-- '-- Surgery, NOS +TCGA-OV 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 Informed Consent 1877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1763 43 false '-- '-- '-- '-- -16021 '-- 8ae2cac3-bc30-5b1f-969f-cad425be9356 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1763_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- de3aa864-53c6-4c25-b91c-202c5527db3d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1763_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1763_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1763_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 44f6911a-d452-4318-93ef-dd012cf2cfc2 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 Informed Consent 1877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1763 43 false '-- '-- '-- '-- -16021 '-- 8ae2cac3-bc30-5b1f-969f-cad425be9356 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1763_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- de3aa864-53c6-4c25-b91c-202c5527db3d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1763_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1763_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1763_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 548017d7-2c13-4f23-b48b-8644ccec5e29 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 2517ca7a-6057-4c19-b7e1-f6d078e9881a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2026 79 false '-- '-- '-- '-- -29050 1059 108043f3-cc98-5a3e-9410-f2aea4bf95ec '-- not reported female '-- '-- '-- '-- white TCGA-24-2026_demographic Dead '-- '-- '-- '-- 29050 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d2d82e4b-87db-5610-a968-930933e83fb7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2026_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2026_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5fd7e2ef-9e7f-4cfd-9d31-bfc423645b08 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 2517ca7a-6057-4c19-b7e1-f6d078e9881a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2026 79 false '-- '-- '-- '-- -29050 1059 108043f3-cc98-5a3e-9410-f2aea4bf95ec '-- not reported female '-- '-- '-- '-- white TCGA-24-2026_demographic Dead '-- '-- '-- '-- 29050 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d2d82e4b-87db-5610-a968-930933e83fb7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2026_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- '-- 23 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2026_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 65c0746e-3c0a-4df2-9a09-e3afb8829a94 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2517ca7a-6057-4c19-b7e1-f6d078e9881a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2026 79 false '-- '-- '-- '-- -29050 1059 108043f3-cc98-5a3e-9410-f2aea4bf95ec '-- not reported female '-- '-- '-- '-- white TCGA-24-2026_demographic Dead '-- '-- '-- '-- 29050 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d2d82e4b-87db-5610-a968-930933e83fb7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2026_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- '-- 23 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2026_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 68f6ac27-3f36-54a2-b22a-4c15522f35dc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 260723bf-9620-450d-bf31-f3a45543f9db Informed Consent -15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-OY-A56P 48 false '-- '-- '-- United States -17580 '-- 24bd713d-fde2-55f4-b722-af81e504bde1 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-OY-A56P_demographic Alive '-- '-- '-- '-- 18374 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 794 '-- '-- '-- 555f158b-eb4f-406f-a71f-c672e1eb7533 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-OY-A56P_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-OY-A56P_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-OY-A56P_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 29970bc9-0f51-426e-aceb-2324ae1dcd88 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 260723bf-9620-450d-bf31-f3a45543f9db Informed Consent -15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-OY-A56P 48 false '-- '-- '-- United States -17580 '-- 24bd713d-fde2-55f4-b722-af81e504bde1 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-OY-A56P_demographic Alive '-- '-- '-- '-- 18374 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 794 '-- '-- '-- 752c8837-b2ce-4436-832c-81cdb77b2f16 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8460/3 '-- '-- '-- '-- '-- '-- Papillary serous cystadenocarcinoma '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-OY-A56P_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-OY-A56P_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-OY-A56P_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3760a16a-508a-4d9f-ae19-8c5171b85f34 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 260723bf-9620-450d-bf31-f3a45543f9db Informed Consent -15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-OY-A56P 48 false '-- '-- '-- United States -17580 '-- 24bd713d-fde2-55f4-b722-af81e504bde1 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-OY-A56P_demographic Alive '-- '-- '-- '-- 17580 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 82ad7dba-92ee-55f3-ba07-577d050bf995 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8460/3 '-- '-- '-- '-- '-- '-- Papillary serous cystadenocarcinoma '-- '-- no No '-- R2 '-- '-- Ovary '-- '-- TCGA-OY-A56P_diagnosis '-- No Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2010 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-OY-A56P_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 31223cab-b108-4ee1-9c3f-d2e6daa37993 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 260723bf-9620-450d-bf31-f3a45543f9db Informed Consent -15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-OY-A56P 48 false '-- '-- '-- United States -17580 '-- 24bd713d-fde2-55f4-b722-af81e504bde1 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-OY-A56P_demographic Alive '-- '-- '-- '-- 17580 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 82ad7dba-92ee-55f3-ba07-577d050bf995 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8460/3 '-- '-- '-- '-- '-- '-- Papillary serous cystadenocarcinoma '-- '-- no No '-- R2 '-- '-- Ovary '-- '-- TCGA-OY-A56P_diagnosis '-- No Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2010 '-- No '-- 160 26 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-OY-A56P_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d0deb2cc-8645-514b-87f1-025000fd7526 '-- yes Complete Response '-- Chemotherapy +TCGA-OV 260723bf-9620-450d-bf31-f3a45543f9db Informed Consent -15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-OY-A56P 48 false '-- '-- '-- United States -17580 '-- 24bd713d-fde2-55f4-b722-af81e504bde1 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-OY-A56P_demographic Alive '-- '-- '-- '-- 17580 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 82ad7dba-92ee-55f3-ba07-577d050bf995 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8460/3 '-- '-- '-- '-- '-- '-- Papillary serous cystadenocarcinoma '-- '-- no No '-- R2 '-- '-- Ovary '-- '-- TCGA-OY-A56P_diagnosis '-- No Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2010 '-- No '-- 160 26 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-OY-A56P_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- de65de46-481e-4a70-82f3-385011b1938f '-- yes Complete Response '-- Chemotherapy +TCGA-OV 263e85e2-7b6f-453f-8fd0-e5ea1409fece Informed Consent -10 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1630 73 false '-- '-- '-- '-- -27006 1162 8731f7e7-074d-5810-ae94-e09b25cf790d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1630_demographic Dead '-- '-- '-- '-- 27006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3c66f500-b2a5-5482-af5d-a85b32db3b8f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1630_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1630_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6434071f-6e27-411d-bc75-bcb73e980431 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 263e85e2-7b6f-453f-8fd0-e5ea1409fece Informed Consent -10 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1630 73 false '-- '-- '-- '-- -27006 1162 8731f7e7-074d-5810-ae94-e09b25cf790d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1630_demographic Dead '-- '-- '-- '-- 27006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3c66f500-b2a5-5482-af5d-a85b32db3b8f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1630_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- 33 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1630_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 79b18290-a7b8-5b0c-9922-a85b4d5adcc6 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 263e85e2-7b6f-453f-8fd0-e5ea1409fece Informed Consent -10 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1630 73 false '-- '-- '-- '-- -27006 1162 8731f7e7-074d-5810-ae94-e09b25cf790d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1630_demographic Dead '-- '-- '-- '-- 27006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3c66f500-b2a5-5482-af5d-a85b32db3b8f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1630_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- 33 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1630_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- acfcfa22-f818-4fc3-98f2-59d5a8b4b33d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 26558703-a659-43f2-86cb-0695989bc14e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1924 65 false '-- '-- '-- '-- -23801 919 ebc2ba2c-fc56-5869-b71c-e4f8b4479474 '-- not reported female '-- '-- '-- '-- white TCGA-24-1924_demographic Dead '-- '-- '-- '-- 23801 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2d0eccd4-29ce-5014-9267-b0c39ebbf933 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1924_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 743 706 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-1924_treatment6 Altretamine '-- '-- '-- '-- '-- '-- '-- 12600 '-- mg '-- '-- '-- '-- 540e1de8-6626-46ea-b212-5915c2072f56 '-- yes '-- '-- Chemotherapy +TCGA-OV 26558703-a659-43f2-86cb-0695989bc14e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1924 65 false '-- '-- '-- '-- -23801 919 ebc2ba2c-fc56-5869-b71c-e4f8b4479474 '-- not reported female '-- '-- '-- '-- white TCGA-24-1924_demographic Dead '-- '-- '-- '-- 23801 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2d0eccd4-29ce-5014-9267-b0c39ebbf933 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1924_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 681 597 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1924_treatment4 Cisplatin '-- '-- '-- '-- '-- '-- '-- 441 '-- mg '-- '-- '-- '-- 56c7c373-092e-4317-bd86-e5e16fc232bc '-- yes '-- '-- Chemotherapy +TCGA-OV 26558703-a659-43f2-86cb-0695989bc14e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1924 65 false '-- '-- '-- '-- -23801 919 ebc2ba2c-fc56-5869-b71c-e4f8b4479474 '-- not reported female '-- '-- '-- '-- white TCGA-24-1924_demographic Dead '-- '-- '-- '-- 23801 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2d0eccd4-29ce-5014-9267-b0c39ebbf933 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1924_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 525 329 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1924_treatment7 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 576 '-- mg '-- '-- '-- '-- 991d649e-fae8-468f-9dbf-89734c29201a '-- yes '-- '-- Chemotherapy +TCGA-OV 26558703-a659-43f2-86cb-0695989bc14e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1924 65 false '-- '-- '-- '-- -23801 919 ebc2ba2c-fc56-5869-b71c-e4f8b4479474 '-- not reported female '-- '-- '-- '-- white TCGA-24-1924_demographic Dead '-- '-- '-- '-- 23801 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2d0eccd4-29ce-5014-9267-b0c39ebbf933 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1924_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 681 597 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1924_treatment2 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 7914 '-- mg '-- '-- '-- '-- a33a3246-fb6d-4410-8e04-ad0b49adce09 '-- yes '-- '-- Chemotherapy +TCGA-OV 26558703-a659-43f2-86cb-0695989bc14e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1924 65 false '-- '-- '-- '-- -23801 919 ebc2ba2c-fc56-5869-b71c-e4f8b4479474 '-- not reported female '-- '-- '-- '-- white TCGA-24-1924_demographic Dead '-- '-- '-- '-- 23801 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2d0eccd4-29ce-5014-9267-b0c39ebbf933 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1924_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 583 553 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1924_treatment Topotecan '-- '-- '-- '-- '-- '-- '-- 18 '-- mg '-- '-- '-- '-- ba91a268-44c4-5348-b906-56556ec299ff '-- yes '-- '-- Chemotherapy +TCGA-OV 26558703-a659-43f2-86cb-0695989bc14e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1924 65 false '-- '-- '-- '-- -23801 919 ebc2ba2c-fc56-5869-b71c-e4f8b4479474 '-- not reported female '-- '-- '-- '-- white TCGA-24-1924_demographic Dead '-- '-- '-- '-- 23801 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2d0eccd4-29ce-5014-9267-b0c39ebbf933 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1924_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1924_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c16ec088-4a40-4afd-8abf-5ef4a85f2fe5 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 26558703-a659-43f2-86cb-0695989bc14e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1924 65 false '-- '-- '-- '-- -23801 919 ebc2ba2c-fc56-5869-b71c-e4f8b4479474 '-- not reported female '-- '-- '-- '-- white TCGA-24-1924_demographic Dead '-- '-- '-- '-- 23801 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2d0eccd4-29ce-5014-9267-b0c39ebbf933 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1924_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 161 21 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1924_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1621 '-- mg '-- '-- '-- '-- ee827b1e-fb59-4f78-8714-71dcd8e358ee Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 26558703-a659-43f2-86cb-0695989bc14e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1924 65 false '-- '-- '-- '-- -23801 919 ebc2ba2c-fc56-5869-b71c-e4f8b4479474 '-- not reported female '-- '-- '-- '-- white TCGA-24-1924_demographic Dead '-- '-- '-- '-- 23801 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2d0eccd4-29ce-5014-9267-b0c39ebbf933 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1924_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 161 21 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1924_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2595 '-- mg '-- '-- '-- '-- f8f6bfaf-014d-478c-ac59-6649843c1f4e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 26558703-a659-43f2-86cb-0695989bc14e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1924 65 false '-- '-- '-- '-- -23801 919 ebc2ba2c-fc56-5869-b71c-e4f8b4479474 '-- not reported female '-- '-- '-- '-- white TCGA-24-1924_demographic Dead '-- '-- '-- '-- 23801 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2d0eccd4-29ce-5014-9267-b0c39ebbf933 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1924_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 583 553 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1924_treatment8 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- 184 '-- mg '-- '-- '-- '-- fe3a611b-1d63-4de3-ae27-247b916bde09 '-- yes '-- '-- Chemotherapy +TCGA-OV 26558703-a659-43f2-86cb-0695989bc14e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1924 65 false '-- '-- '-- '-- -23801 919 ebc2ba2c-fc56-5869-b71c-e4f8b4479474 '-- not reported female '-- '-- '-- '-- white TCGA-24-1924_demographic Dead '-- '-- '-- '-- 24121 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 320 '-- '-- '-- a1ca2bf4-dc0c-4a34-8da6-1fbd89c6e8e3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1924_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1924_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1924_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 64ac5c37-1128-4789-82bf-96bfd86d0ff8 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 26558703-a659-43f2-86cb-0695989bc14e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1924 65 false '-- '-- '-- '-- -23801 919 ebc2ba2c-fc56-5869-b71c-e4f8b4479474 '-- not reported female '-- '-- '-- '-- white TCGA-24-1924_demographic Dead '-- '-- '-- '-- 24121 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 320 '-- '-- '-- a1ca2bf4-dc0c-4a34-8da6-1fbd89c6e8e3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1924_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1924_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1924_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b39f1ddd-282b-4089-8c04-6aa225349acc '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 27920e1e-b9ab-4587-970a-0cba7025becb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0901 41 false '-- '-- '-- '-- -15333 '-- 039bb7cc-4731-57bd-bbe7-dfce13b11b2e '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-0901_demographic Alive '-- '-- '-- '-- 15333 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8285c0fe-f59c-574b-87d7-0bb866d8ac59 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0901_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 88 44 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0901_treatment Cetuximab '-- '-- '-- '-- '-- '-- '-- 250 '-- mg/m2 '-- '-- '-- '-- 469999a3-4b66-5c0e-a9df-78a39a510a99 Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV 27920e1e-b9ab-4587-970a-0cba7025becb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0901 41 false '-- '-- '-- '-- -15333 '-- 039bb7cc-4731-57bd-bbe7-dfce13b11b2e '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-0901_demographic Alive '-- '-- '-- '-- 15333 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8285c0fe-f59c-574b-87d7-0bb866d8ac59 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0901_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 165 44 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0901_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d08674eb-a73f-46ed-ba7d-36185905b210 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 27920e1e-b9ab-4587-970a-0cba7025becb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0901 41 false '-- '-- '-- '-- -15333 '-- 039bb7cc-4731-57bd-bbe7-dfce13b11b2e '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-0901_demographic Alive '-- '-- '-- '-- 15333 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8285c0fe-f59c-574b-87d7-0bb866d8ac59 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0901_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 165 44 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0901_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- d0a4d8cf-f3d9-4c77-ab5a-bfdbc66e4fdd Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 27920e1e-b9ab-4587-970a-0cba7025becb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0901 41 false '-- '-- '-- '-- -15333 '-- 039bb7cc-4731-57bd-bbe7-dfce13b11b2e '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-0901_demographic Alive '-- '-- '-- '-- 15333 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8285c0fe-f59c-574b-87d7-0bb866d8ac59 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0901_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0901_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f90eec4a-0af2-4c55-9744-eea930803e37 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 27920e1e-b9ab-4587-970a-0cba7025becb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0901 41 false '-- '-- '-- '-- -15333 '-- 039bb7cc-4731-57bd-bbe7-dfce13b11b2e '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-0901_demographic Alive '-- '-- '-- '-- 15723 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 390 '-- '-- '-- b7e0510f-1c44-44f0-9bf4-828a0b4e2c16 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0901_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0901_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0901_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 41c39a19-5274-46c6-9d99-74d4ee0ba425 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 27920e1e-b9ab-4587-970a-0cba7025becb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0901 41 false '-- '-- '-- '-- -15333 '-- 039bb7cc-4731-57bd-bbe7-dfce13b11b2e '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-0901_demographic Alive '-- '-- '-- '-- 15723 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 390 '-- '-- '-- b7e0510f-1c44-44f0-9bf4-828a0b4e2c16 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0901_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0901_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0901_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a4b841dd-ca15-42a0-a2a0-42aa547e3178 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 28ed2d42-5b4c-4bca-b2b2-6b2a6d3c42cf Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2288 70 false '-- '-- '-- '-- -25831 25 04990ab9-c2a6-52e5-be59-8e9024d7e18c '-- not reported female '-- '-- '-- '-- white TCGA-24-2288_demographic Dead '-- '-- '-- '-- 25831 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 54c4860f-11d8-5cff-be3e-d4405cc30f73 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2288_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2288_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1ecfc1fe-7051-451e-9fb3-8c4c281efda9 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 28ed2d42-5b4c-4bca-b2b2-6b2a6d3c42cf Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2288 70 false '-- '-- '-- '-- -25831 25 04990ab9-c2a6-52e5-be59-8e9024d7e18c '-- not reported female '-- '-- '-- '-- white TCGA-24-2288_demographic Dead '-- '-- '-- '-- 25831 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 54c4860f-11d8-5cff-be3e-d4405cc30f73 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2288_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 21 21 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2288_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 350 '-- mg '-- '-- '-- '-- a514274f-a2ac-5f8f-9a8b-c8b32dec1aee Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 28ed2d42-5b4c-4bca-b2b2-6b2a6d3c42cf Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2288 70 false '-- '-- '-- '-- -25831 25 04990ab9-c2a6-52e5-be59-8e9024d7e18c '-- not reported female '-- '-- '-- '-- white TCGA-24-2288_demographic Dead '-- '-- '-- '-- 25831 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 54c4860f-11d8-5cff-be3e-d4405cc30f73 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2288_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 21 21 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2288_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 600 '-- mg '-- '-- '-- '-- ad4ef2d9-253b-46d0-ab87-adee25c798ac Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 29949b65-2913-4c86-bbd7-b85c5df6f15e Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2000 67 false '-- '-- '-- '-- -24723 '-- 2281e96f-9ac0-5e8c-9510-0876507277a1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2000_demographic Alive '-- '-- '-- '-- 25062 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 339 '-- '-- '-- 36d85764-2bb9-4de7-b006-82408a0f5aef false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2000_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2000_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2000_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1bf10f84-13a7-4f39-aa84-f638f68c2645 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 29949b65-2913-4c86-bbd7-b85c5df6f15e Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2000 67 false '-- '-- '-- '-- -24723 '-- 2281e96f-9ac0-5e8c-9510-0876507277a1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2000_demographic Alive '-- '-- '-- '-- 25062 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 339 '-- '-- '-- 36d85764-2bb9-4de7-b006-82408a0f5aef false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2000_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2000_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2000_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cbf1f459-7a96-4ad6-b8f6-0c0dbac6cb65 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 29949b65-2913-4c86-bbd7-b85c5df6f15e Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2000 67 false '-- '-- '-- '-- -24723 '-- 2281e96f-9ac0-5e8c-9510-0876507277a1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2000_demographic Alive '-- '-- '-- '-- 24723 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9b576de5-79c4-5514-93fa-4d5497230584 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2000_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 588 525 '-- '-- Recurrent Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2000_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 855 '-- mg '-- '-- '-- '-- 1a0f7fd1-d868-5029-81a1-473594177e34 '-- yes '-- '-- Chemotherapy +TCGA-OV 29949b65-2913-4c86-bbd7-b85c5df6f15e Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2000 67 false '-- '-- '-- '-- -24723 '-- 2281e96f-9ac0-5e8c-9510-0876507277a1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2000_demographic Alive '-- '-- '-- '-- 24723 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9b576de5-79c4-5514-93fa-4d5497230584 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2000_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 491 420 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-2000_treatment6 Docetaxel '-- '-- '-- '-- '-- '-- '-- 508 '-- mg '-- '-- '-- '-- 51d828a5-9485-48f8-acbc-3c77466ff9a5 '-- yes '-- '-- Chemotherapy +TCGA-OV 29949b65-2913-4c86-bbd7-b85c5df6f15e Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2000 67 false '-- '-- '-- '-- -24723 '-- 2281e96f-9ac0-5e8c-9510-0876507277a1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2000_demographic Alive '-- '-- '-- '-- 24723 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9b576de5-79c4-5514-93fa-4d5497230584 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2000_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 231 28 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-2000_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 390 '-- mg '-- '-- '-- '-- 5eb5ea49-2353-4b18-9b1c-7ed4e46f6bf5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 29949b65-2913-4c86-bbd7-b85c5df6f15e Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2000 67 false '-- '-- '-- '-- -24723 '-- 2281e96f-9ac0-5e8c-9510-0876507277a1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2000_demographic Alive '-- '-- '-- '-- 24723 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9b576de5-79c4-5514-93fa-4d5497230584 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2000_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 588 525 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2000_treatment8 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 3780 '-- mg '-- '-- '-- '-- 82ea7f84-ad05-4bf1-9e1a-25b603f43317 '-- yes '-- '-- Chemotherapy +TCGA-OV 29949b65-2913-4c86-bbd7-b85c5df6f15e Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2000 67 false '-- '-- '-- '-- -24723 '-- 2281e96f-9ac0-5e8c-9510-0876507277a1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2000_demographic Alive '-- '-- '-- '-- 24723 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9b576de5-79c4-5514-93fa-4d5497230584 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2000_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 231 28 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-2000_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1905 '-- mg '-- '-- '-- '-- 88686812-5d01-4274-8d75-d532be440cc5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 29949b65-2913-4c86-bbd7-b85c5df6f15e Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2000 67 false '-- '-- '-- '-- -24723 '-- 2281e96f-9ac0-5e8c-9510-0876507277a1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2000_demographic Alive '-- '-- '-- '-- 24723 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9b576de5-79c4-5514-93fa-4d5497230584 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2000_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 231 28 '-- '-- '-- '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-2000_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2130 '-- mg '-- '-- '-- '-- aac2b6e5-8f54-4560-b0af-2ec8064c610c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 29949b65-2913-4c86-bbd7-b85c5df6f15e Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2000 67 false '-- '-- '-- '-- -24723 '-- 2281e96f-9ac0-5e8c-9510-0876507277a1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2000_demographic Alive '-- '-- '-- '-- 24723 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9b576de5-79c4-5514-93fa-4d5497230584 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2000_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 491 420 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-2000_treatment4 Oxaliplatin '-- '-- '-- '-- '-- '-- '-- 367 '-- mg '-- '-- '-- '-- b6bef6c0-8734-4737-a8df-107528882fba '-- yes '-- '-- Chemotherapy +TCGA-OV 29949b65-2913-4c86-bbd7-b85c5df6f15e Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2000 67 false '-- '-- '-- '-- -24723 '-- 2281e96f-9ac0-5e8c-9510-0876507277a1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2000_demographic Alive '-- '-- '-- '-- 24723 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9b576de5-79c4-5514-93fa-4d5497230584 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2000_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 231 28 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-2000_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 720 '-- mg '-- '-- '-- '-- cea91d4d-5207-4bda-8cf5-f09c202924c7 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 29949b65-2913-4c86-bbd7-b85c5df6f15e Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2000 67 false '-- '-- '-- '-- -24723 '-- 2281e96f-9ac0-5e8c-9510-0876507277a1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2000_demographic Alive '-- '-- '-- '-- 24723 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9b576de5-79c4-5514-93fa-4d5497230584 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2000_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2000_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fee03aaa-a0e3-4593-b032-d2ce828c8929 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 29949b65-2913-4c86-bbd7-b85c5df6f15e Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2000 67 false '-- '-- '-- '-- -24723 '-- 2281e96f-9ac0-5e8c-9510-0876507277a1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2000_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d239bb21-4d19-4a0b-b502-ce358412e3be false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2000_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2000_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2000_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 61ad45a3-99b4-43e4-9454-27bb068b5b7d '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 29949b65-2913-4c86-bbd7-b85c5df6f15e Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2000 67 false '-- '-- '-- '-- -24723 '-- 2281e96f-9ac0-5e8c-9510-0876507277a1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2000_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d239bb21-4d19-4a0b-b502-ce358412e3be false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2000_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2000_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 381 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2000_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 902046bd-8d56-4caf-b44e-624ccba61780 '-- yes '-- '-- Surgery, NOS +TCGA-OV 29949b65-2913-4c86-bbd7-b85c5df6f15e Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2000 67 false '-- '-- '-- '-- -24723 '-- 2281e96f-9ac0-5e8c-9510-0876507277a1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2000_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d239bb21-4d19-4a0b-b502-ce358412e3be false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2000_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2000_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2000_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- db485c24-c94e-4b6f-921d-63e598ff63ca '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 29d26e7e-f4ae-4476-9a3f-27d5ec2ccb8a '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0928 71 false '-- '-- '-- '-- -26066 563 86af060d-7656-5dea-bef2-06252f78bea5 '-- not reported female '-- '-- '-- '-- white TCGA-10-0928_demographic Dead '-- '-- '-- '-- 26066 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b513bda1-4ea9-5a15-be5c-afdf0225f33f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0928_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0928_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8e5cb970-4c0d-59ae-bbb8-b542474096f1 Adjuvant yes Not Reported '-- Pharmaceutical Therapy, NOS +TCGA-OV 29d26e7e-f4ae-4476-9a3f-27d5ec2ccb8a '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0928 71 false '-- '-- '-- '-- -26066 563 86af060d-7656-5dea-bef2-06252f78bea5 '-- not reported female '-- '-- '-- '-- white TCGA-10-0928_demographic Dead '-- '-- '-- '-- 26066 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b513bda1-4ea9-5a15-be5c-afdf0225f33f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0928_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0928_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c8d10e50-b189-4b47-a960-d6e85ba07625 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 29dccd25-4c4a-463b-a353-38a193337f38 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1405 49 false '-- '-- '-- '-- -18218 868 baec593a-b625-575d-9c78-53c435b457e4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1405_demographic Dead '-- '-- '-- '-- 18446 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 228 '-- '-- '-- 802a2497-9dfe-4433-9166-6272d2c9cb74 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1405_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1405_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 29dccd25-4c4a-463b-a353-38a193337f38 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1405 49 false '-- '-- '-- '-- -18218 868 baec593a-b625-575d-9c78-53c435b457e4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1405_demographic Dead '-- '-- '-- '-- 18218 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 84bc8778-a967-5764-8dc6-e7fb3efed07f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1405_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 147 23 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1405_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- a81ae376-f962-41aa-a5c3-b258e1f15ff8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 29dccd25-4c4a-463b-a353-38a193337f38 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1405 49 false '-- '-- '-- '-- -18218 868 baec593a-b625-575d-9c78-53c435b457e4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1405_demographic Dead '-- '-- '-- '-- 18218 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 84bc8778-a967-5764-8dc6-e7fb3efed07f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1405_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 147 23 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1405_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 599 '-- mg '-- '-- '-- '-- c7850771-7a41-51a9-bb1d-2c5902c69931 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 29dccd25-4c4a-463b-a353-38a193337f38 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1405 49 false '-- '-- '-- '-- -18218 868 baec593a-b625-575d-9c78-53c435b457e4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1405_demographic Dead '-- '-- '-- '-- 18218 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 84bc8778-a967-5764-8dc6-e7fb3efed07f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1405_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1405_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dd0af736-1ffc-4442-886f-1ce3601e39d5 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 2a924999-1fbf-470a-97bd-fd2276a9a366 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0885 70 false '-- '-- '-- '-- -25763 '-- 83bbd790-7f3e-5f1e-91be-9aaf019078bd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0885_demographic Alive '-- '-- '-- '-- 25763 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 65552a39-e03f-5986-9476-19628f3e6d7e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0885_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0885_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 131907d6-7838-4b60-98ae-48369a37cf62 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 2a924999-1fbf-470a-97bd-fd2276a9a366 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0885 70 false '-- '-- '-- '-- -25763 '-- 83bbd790-7f3e-5f1e-91be-9aaf019078bd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0885_demographic Alive '-- '-- '-- '-- 25763 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 65552a39-e03f-5986-9476-19628f3e6d7e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0885_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 208 '-- '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0885_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3c9fc7f5-2aed-50e8-b25b-9b2f60e6e352 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2a924999-1fbf-470a-97bd-fd2276a9a366 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0885 70 false '-- '-- '-- '-- -25763 '-- 83bbd790-7f3e-5f1e-91be-9aaf019078bd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0885_demographic Alive '-- '-- '-- '-- 25763 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 65552a39-e03f-5986-9476-19628f3e6d7e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0885_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 110 6 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0885_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 64e62513-8668-47d0-84d3-86d7e2674f2d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2a924999-1fbf-470a-97bd-fd2276a9a366 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0885 70 false '-- '-- '-- '-- -25763 '-- 83bbd790-7f3e-5f1e-91be-9aaf019078bd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0885_demographic Alive '-- '-- '-- '-- 25763 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 65552a39-e03f-5986-9476-19628f3e6d7e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0885_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 110 6 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0885_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 9ecbe30b-5c66-4e4c-97f6-6294b1f9ad0a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2ab32e11-80d6-4ed0-a42e-da612219bbdd Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2297 56 false '-- '-- '-- '-- -20487 1699 5e77a0b3-6cd4-5602-bdb2-874b275291f9 '-- not reported female '-- '-- '-- '-- white TCGA-24-2297_demographic Dead '-- '-- '-- '-- 20487 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 036f498f-caec-57c3-8ca1-8d83d027149d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2297_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2297_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d15a8c62-719a-4992-93c9-a7fd9ecfeab0 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 2ab32e11-80d6-4ed0-a42e-da612219bbdd Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2297 56 false '-- '-- '-- '-- -20487 1699 5e77a0b3-6cd4-5602-bdb2-874b275291f9 '-- not reported female '-- '-- '-- '-- white TCGA-24-2297_demographic Dead '-- '-- '-- '-- 20487 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 036f498f-caec-57c3-8ca1-8d83d027149d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2297_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 153 19 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2297_treatment Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 5530 '-- mg '-- '-- '-- '-- dc3124f9-3068-5934-890b-d005d0885181 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2ab32e11-80d6-4ed0-a42e-da612219bbdd Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2297 56 false '-- '-- '-- '-- -20487 1699 5e77a0b3-6cd4-5602-bdb2-874b275291f9 '-- not reported female '-- '-- '-- '-- white TCGA-24-2297_demographic Dead '-- '-- '-- '-- 20487 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 036f498f-caec-57c3-8ca1-8d83d027149d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2297_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 153 19 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2297_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3981 '-- mg '-- '-- '-- '-- ef3c0bca-e79a-4925-a9d0-14c6105c333c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2ae65a06-df0f-4de1-a536-537cae0cc260 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1724 47 false '-- '-- '-- '-- -17168 637 ea68bd4e-83c7-5ede-a7d8-58a344ab1732 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1724_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4e42e060-d17f-4e69-9e42-eee827078056 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1724_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1724_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 187 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1724_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0d2617c9-0226-4eb1-bf15-4263672dfb23 '-- yes '-- '-- Surgery, NOS +TCGA-OV 2ae65a06-df0f-4de1-a536-537cae0cc260 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1724 47 false '-- '-- '-- '-- -17168 637 ea68bd4e-83c7-5ede-a7d8-58a344ab1732 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1724_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4e42e060-d17f-4e69-9e42-eee827078056 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1724_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1724_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1724_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6a306ffe-6af7-492e-ba22-62c48a8e2c37 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 2ae65a06-df0f-4de1-a536-537cae0cc260 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1724 47 false '-- '-- '-- '-- -17168 637 ea68bd4e-83c7-5ede-a7d8-58a344ab1732 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1724_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4e42e060-d17f-4e69-9e42-eee827078056 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1724_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1724_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1724_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- db763293-7ad4-4462-b4b1-39072fc83986 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 2ae65a06-df0f-4de1-a536-537cae0cc260 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1724 47 false '-- '-- '-- '-- -17168 637 ea68bd4e-83c7-5ede-a7d8-58a344ab1732 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1724_demographic Dead '-- '-- '-- '-- 17168 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6395ea1f-b5c3-5f02-a6fb-9d10768d3764 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1724_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 514 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1724_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1b63409b-1a6b-491f-9095-7cb127c4f829 '-- yes '-- '-- Chemotherapy +TCGA-OV 2ae65a06-df0f-4de1-a536-537cae0cc260 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1724 47 false '-- '-- '-- '-- -17168 637 ea68bd4e-83c7-5ede-a7d8-58a344ab1732 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1724_demographic Dead '-- '-- '-- '-- 17168 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6395ea1f-b5c3-5f02-a6fb-9d10768d3764 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1724_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1724_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 34fef059-2a04-52f6-b86d-44c336665b9f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2ae65a06-df0f-4de1-a536-537cae0cc260 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1724 47 false '-- '-- '-- '-- -17168 637 ea68bd4e-83c7-5ede-a7d8-58a344ab1732 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1724_demographic Dead '-- '-- '-- '-- 17168 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6395ea1f-b5c3-5f02-a6fb-9d10768d3764 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1724_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1724_treatment4 Gemcitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4726efea-fd42-477a-8195-26b22f89a228 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2ae65a06-df0f-4de1-a536-537cae0cc260 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1724 47 false '-- '-- '-- '-- -17168 637 ea68bd4e-83c7-5ede-a7d8-58a344ab1732 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1724_demographic Dead '-- '-- '-- '-- 17168 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6395ea1f-b5c3-5f02-a6fb-9d10768d3764 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1724_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 287 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-61-1724_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 74347c6a-0841-4b71-a30e-238e0ba5be5c '-- yes '-- '-- Chemotherapy +TCGA-OV 2ae65a06-df0f-4de1-a536-537cae0cc260 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1724 47 false '-- '-- '-- '-- -17168 637 ea68bd4e-83c7-5ede-a7d8-58a344ab1732 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1724_demographic Dead '-- '-- '-- '-- 17168 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6395ea1f-b5c3-5f02-a6fb-9d10768d3764 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1724_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 608 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1724_treatment6 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a47381d5-22f5-4f74-b5cd-fd7b42735a2c '-- yes '-- '-- Chemotherapy +TCGA-OV 2ae65a06-df0f-4de1-a536-537cae0cc260 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1724 47 false '-- '-- '-- '-- -17168 637 ea68bd4e-83c7-5ede-a7d8-58a344ab1732 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1724_demographic Dead '-- '-- '-- '-- 17168 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6395ea1f-b5c3-5f02-a6fb-9d10768d3764 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1724_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1724_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d13c88c7-2d15-43e8-be23-f607c9d3c584 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 2ae65a06-df0f-4de1-a536-537cae0cc260 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1724 47 false '-- '-- '-- '-- -17168 637 ea68bd4e-83c7-5ede-a7d8-58a344ab1732 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1724_demographic Dead '-- '-- '-- '-- 17168 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6395ea1f-b5c3-5f02-a6fb-9d10768d3764 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1724_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 368 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1724_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e6a58e22-357e-433b-8787-792e5e8706bb '-- yes '-- '-- Chemotherapy +TCGA-OV 2cb50c2d-e749-4172-b101-d975507435c5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1567 54 false '-- '-- '-- '-- -19843 524 ace5236c-02a5-559b-a2d3-bea9b6fc13a9 '-- not reported female '-- '-- '-- '-- white TCGA-24-1567_demographic Dead '-- '-- '-- '-- 20162 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 319 '-- '-- '-- 729d6f8f-710b-4c86-986c-b9fe559d1c23 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1567_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1567_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1567_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6184abc7-52b8-474c-9c00-40eec9a14054 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 2cb50c2d-e749-4172-b101-d975507435c5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1567 54 false '-- '-- '-- '-- -19843 524 ace5236c-02a5-559b-a2d3-bea9b6fc13a9 '-- not reported female '-- '-- '-- '-- white TCGA-24-1567_demographic Dead '-- '-- '-- '-- 20162 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 319 '-- '-- '-- 729d6f8f-710b-4c86-986c-b9fe559d1c23 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1567_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1567_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1567_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9c0e8bfe-59d4-4d58-aee5-c8a921ae5d57 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 2cb50c2d-e749-4172-b101-d975507435c5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1567 54 false '-- '-- '-- '-- -19843 524 ace5236c-02a5-559b-a2d3-bea9b6fc13a9 '-- not reported female '-- '-- '-- '-- white TCGA-24-1567_demographic Dead '-- '-- '-- '-- 19843 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dbe92bcb-69f3-5886-b674-14650afaf711 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1567_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1567_treatment2 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 48511441-675d-4263-88fc-1a942e475384 '-- yes '-- '-- Chemotherapy +TCGA-OV 2cb50c2d-e749-4172-b101-d975507435c5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1567 54 false '-- '-- '-- '-- -19843 524 ace5236c-02a5-559b-a2d3-bea9b6fc13a9 '-- not reported female '-- '-- '-- '-- white TCGA-24-1567_demographic Dead '-- '-- '-- '-- 19843 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dbe92bcb-69f3-5886-b674-14650afaf711 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1567_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 153 41 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1567_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4c82f95c-1c51-478f-9f81-06a4307465f1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2cb50c2d-e749-4172-b101-d975507435c5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1567 54 false '-- '-- '-- '-- -19843 524 ace5236c-02a5-559b-a2d3-bea9b6fc13a9 '-- not reported female '-- '-- '-- '-- white TCGA-24-1567_demographic Dead '-- '-- '-- '-- 19843 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dbe92bcb-69f3-5886-b674-14650afaf711 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1567_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1567_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 91e72bf5-226b-4417-a17f-1255f2b44126 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 2cb50c2d-e749-4172-b101-d975507435c5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1567 54 false '-- '-- '-- '-- -19843 524 ace5236c-02a5-559b-a2d3-bea9b6fc13a9 '-- not reported female '-- '-- '-- '-- white TCGA-24-1567_demographic Dead '-- '-- '-- '-- 19843 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dbe92bcb-69f3-5886-b674-14650afaf711 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1567_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 153 41 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1567_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a278fc4d-ed97-5d6b-8d66-58f0cd87ba68 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 249b85e7-5021-4131-90a7-1a13987a70d2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-2084_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-2084_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2084_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 15a71c6e-1b95-4919-8ad5-e6d7345c2c64 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 249b85e7-5021-4131-90a7-1a13987a70d2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-2084_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-2084_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2084_treatment18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e55e269c-4a75-4129-a4dc-97f74ea6c6c1 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 249b85e7-5021-4131-90a7-1a13987a70d2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-2084_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-2084_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 627 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2084_treatment19 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f7d8c710-b6eb-4fa8-bdaa-c86fd008bd72 '-- yes '-- '-- Surgery, NOS +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- 16493 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2aaa9e6d-1157-5f86-b34f-9c9abf6e82f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2084_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 155 6 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2084_treatment11 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2200 '-- mg '-- '-- '-- '-- 00731b95-f543-4841-9b0e-963c14d2dba3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- 16493 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2aaa9e6d-1157-5f86-b34f-9c9abf6e82f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2084_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 155 6 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2084_treatment8 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4240 '-- mg '-- '-- '-- '-- 04655c22-37cd-4442-b6d5-6bb9c7bba230 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- 16493 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2aaa9e6d-1157-5f86-b34f-9c9abf6e82f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2084_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1401 1381 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2084_treatment13 Ifosfamide '-- '-- '-- '-- '-- '-- '-- 1615 '-- mg '-- '-- '-- '-- 04d6de93-8690-4ec3-b4b6-149bc797cbe8 '-- yes '-- '-- Chemotherapy +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- 16493 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2aaa9e6d-1157-5f86-b34f-9c9abf6e82f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2084_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1359 1324 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2084_treatment9 Topotecan '-- '-- '-- '-- '-- '-- '-- 14 '-- mg '-- '-- '-- '-- 066e57f2-a226-45b3-a64e-762370f310f1 '-- yes '-- '-- Chemotherapy +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- 16493 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2aaa9e6d-1157-5f86-b34f-9c9abf6e82f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2084_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1240 1183 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2084_treatment7 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 195 '-- mg '-- '-- '-- '-- 10202b07-b609-4311-80d2-07cad98d485c '-- yes '-- '-- Chemotherapy +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- 16493 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2aaa9e6d-1157-5f86-b34f-9c9abf6e82f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2084_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1169 1127 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2084_treatment12 Clinical Trial '-- '-- '-- '-- '-- '-- '-- 1680 '-- mg '-- '-- '-- '-- 1d387342-edf8-4092-ba9d-d8c1de4309f5 '-- yes '-- '-- Immunotherapy (Including Vaccines) +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- 16493 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2aaa9e6d-1157-5f86-b34f-9c9abf6e82f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2084_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1485 1457 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-23-2084_treatment3 Etoposide '-- '-- '-- '-- '-- '-- '-- 100 '-- mg '-- '-- '-- '-- 2b4c0d6e-bf02-44b8-8d62-2596c13d0abb '-- yes '-- '-- Chemotherapy +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- 16493 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2aaa9e6d-1157-5f86-b34f-9c9abf6e82f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2084_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 701 631 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2084_treatment4 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 12600 '-- mg '-- '-- '-- '-- 2e14a974-2885-4686-9510-103b15a2c4a3 '-- yes '-- '-- Chemotherapy +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- 16493 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2aaa9e6d-1157-5f86-b34f-9c9abf6e82f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2084_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 701 631 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2084_treatment6 Cisplatin '-- '-- '-- '-- '-- '-- '-- 700 '-- mg '-- '-- '-- '-- 2eafdfc5-2789-46db-9729-bf282c08b824 '-- yes '-- '-- Chemotherapy +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- 16493 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2aaa9e6d-1157-5f86-b34f-9c9abf6e82f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2084_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1425 1425 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2084_treatment10 Ifosfamide '-- '-- '-- '-- '-- '-- '-- 730 '-- mg '-- '-- '-- '-- 49c7fef3-07b5-4a7e-a420-22835559d8d9 '-- yes '-- '-- Chemotherapy +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- 16493 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2aaa9e6d-1157-5f86-b34f-9c9abf6e82f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2084_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1302 1261 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2084_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 360 '-- mg '-- '-- '-- '-- 690424b3-19bc-4b30-88e1-4d50621964f7 '-- yes '-- '-- Chemotherapy +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- 16493 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2aaa9e6d-1157-5f86-b34f-9c9abf6e82f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2084_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1425 1425 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2084_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 100 '-- mg '-- '-- '-- '-- 7a3b9a37-c86c-5a54-a1c3-5bc54d09979c '-- yes '-- '-- Chemotherapy +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- 16493 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2aaa9e6d-1157-5f86-b34f-9c9abf6e82f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2084_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2084_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a0db4270-5e4c-40ee-ba8f-33f67f02b4b4 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- 16493 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2aaa9e6d-1157-5f86-b34f-9c9abf6e82f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2084_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1401 1381 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2084_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 920 '-- mg '-- '-- '-- '-- e8e4e06d-0eb3-49e4-83fd-22a18d07700c '-- yes '-- '-- Chemotherapy +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- 17112 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 619 '-- '-- '-- d177ba06-5520-4358-abc6-730595bfd2b6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-2084_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-2084_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2084_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 63813c91-0802-4388-8ba0-5411cbb84ec8 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- 17112 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 619 '-- '-- '-- d177ba06-5520-4358-abc6-730595bfd2b6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-2084_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-2084_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2084_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 781c1e97-9783-4184-b8d4-84cbf0dffc29 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 2dfd8a0e-e642-49b3-abd7-f0334927eebb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1119 64 false '-- '-- '-- '-- -23686 '-- f3da4ea8-cbc9-5519-9037-d701e149a8f6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1119_demographic Alive '-- '-- '-- '-- 27064 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 3378 '-- '-- '-- 8f1e3f64-95d0-4d3a-9658-049e35597ae6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1119_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1119_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1119_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b2881a0c-3a68-4de9-b874-155ebd1cc5be '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 2dfd8a0e-e642-49b3-abd7-f0334927eebb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1119 64 false '-- '-- '-- '-- -23686 '-- f3da4ea8-cbc9-5519-9037-d701e149a8f6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1119_demographic Alive '-- '-- '-- '-- 27064 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 3378 '-- '-- '-- 8f1e3f64-95d0-4d3a-9658-049e35597ae6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1119_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1119_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1119_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b7e73882-3cd1-4d88-9be2-1206e8b8442c '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 2dfd8a0e-e642-49b3-abd7-f0334927eebb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1119 64 false '-- '-- '-- '-- -23686 '-- f3da4ea8-cbc9-5519-9037-d701e149a8f6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1119_demographic Alive '-- '-- '-- '-- 23686 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- cfa1e23f-420a-51df-9119-d916745ddbb1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1119_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1119_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7ac73557-f661-45b0-9d2a-7165cb1698ab Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 2dfd8a0e-e642-49b3-abd7-f0334927eebb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1119 64 false '-- '-- '-- '-- -23686 '-- f3da4ea8-cbc9-5519-9037-d701e149a8f6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1119_demographic Alive '-- '-- '-- '-- 23686 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- cfa1e23f-420a-51df-9119-d916745ddbb1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1119_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 125 18 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1119_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2700 '-- mg '-- '-- '-- '-- dcff1706-a070-4c88-b15b-8efa735ee9ee Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2dfd8a0e-e642-49b3-abd7-f0334927eebb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1119 64 false '-- '-- '-- '-- -23686 '-- f3da4ea8-cbc9-5519-9037-d701e149a8f6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1119_demographic Alive '-- '-- '-- '-- 23686 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- cfa1e23f-420a-51df-9119-d916745ddbb1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1119_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 3494 3389 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1119_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 2230 '-- mg '-- '-- '-- '-- f6fee3e9-e14b-5301-96fe-88ab01895f94 '-- yes '-- '-- Chemotherapy +TCGA-OV 2dfd8a0e-e642-49b3-abd7-f0334927eebb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1119 64 false '-- '-- '-- '-- -23686 '-- f3da4ea8-cbc9-5519-9037-d701e149a8f6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1119_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ebd1434b-508f-4260-a6fe-c4560d4ddff0 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1119_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1119_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3378 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1119_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 18a50a36-b7b6-4da0-aed8-330ca65ef417 '-- yes '-- '-- Surgery, NOS +TCGA-OV 2dfd8a0e-e642-49b3-abd7-f0334927eebb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1119 64 false '-- '-- '-- '-- -23686 '-- f3da4ea8-cbc9-5519-9037-d701e149a8f6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1119_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ebd1434b-508f-4260-a6fe-c4560d4ddff0 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1119_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1119_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1119_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 714ce4c1-1bb7-46e5-b8b9-0c673c669c64 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 2dfd8a0e-e642-49b3-abd7-f0334927eebb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1119 64 false '-- '-- '-- '-- -23686 '-- f3da4ea8-cbc9-5519-9037-d701e149a8f6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1119_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ebd1434b-508f-4260-a6fe-c4560d4ddff0 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1119_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1119_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1119_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 922b1095-2a2d-4ba4-9178-dec60619f701 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 2ebb738c-4829-4720-931a-96c0fd117e2a '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-13-0730 71 false '-- '-- '-- '-- -26086 542 1049f24d-d521-549d-bda2-361501386994 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0730_demographic Dead '-- '-- '-- '-- 26086 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- fc0019a4-0e6b-5e7d-b8f7-e7a1d85c90e6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0730_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0730_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e37bbf48-7ace-5775-9bee-668d8cd94a3a Adjuvant unknown '-- '-- Radiation Therapy, NOS +TCGA-OV 2ee36d9d-128b-4761-aa1a-a637da106f3d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1323 72 false '-- '-- '-- '-- -26602 395 b7f1ad25-47b4-5bb3-8f7d-332afedb0764 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1323_demographic Dead '-- '-- '-- '-- 26967 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 365 '-- '-- '-- 454cb5f3-dd08-4638-b9cf-3ddb39988a72 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1323_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1323_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1323_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 891774d9-9510-46af-b6be-d3d2e7d4e2b2 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 2ee36d9d-128b-4761-aa1a-a637da106f3d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1323 72 false '-- '-- '-- '-- -26602 395 b7f1ad25-47b4-5bb3-8f7d-332afedb0764 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1323_demographic Dead '-- '-- '-- '-- 26967 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 365 '-- '-- '-- 454cb5f3-dd08-4638-b9cf-3ddb39988a72 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1323_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1323_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1323_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9e7c21cc-77e7-40b9-82a2-f3da724edcc4 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 2ee36d9d-128b-4761-aa1a-a637da106f3d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1323 72 false '-- '-- '-- '-- -26602 395 b7f1ad25-47b4-5bb3-8f7d-332afedb0764 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1323_demographic Dead '-- '-- '-- '-- 26602 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b3861530-7540-5dbb-af8a-d27f40d5b8d0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1323_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 122 30 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1323_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 13ad5c8d-616f-4150-8d67-bc3c87174b0b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2ee36d9d-128b-4761-aa1a-a637da106f3d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1323 72 false '-- '-- '-- '-- -26602 395 b7f1ad25-47b4-5bb3-8f7d-332afedb0764 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1323_demographic Dead '-- '-- '-- '-- 26602 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b3861530-7540-5dbb-af8a-d27f40d5b8d0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1323_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 365 365 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1323_treatment Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 74ed6bfb-fdc9-586d-aa2b-cfb506e7dcff '-- yes '-- '-- Chemotherapy +TCGA-OV 2ee36d9d-128b-4761-aa1a-a637da106f3d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1323 72 false '-- '-- '-- '-- -26602 395 b7f1ad25-47b4-5bb3-8f7d-332afedb0764 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1323_demographic Dead '-- '-- '-- '-- 26602 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b3861530-7540-5dbb-af8a-d27f40d5b8d0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1323_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1323_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c4ce99e8-4a79-4fb6-b87e-4fd086261c46 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 2ee36d9d-128b-4761-aa1a-a637da106f3d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1323 72 false '-- '-- '-- '-- -26602 395 b7f1ad25-47b4-5bb3-8f7d-332afedb0764 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1323_demographic Dead '-- '-- '-- '-- 26602 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b3861530-7540-5dbb-af8a-d27f40d5b8d0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1323_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 122 30 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1323_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f9d25e31-331f-4152-9778-f6a00f5a2b0c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3018efe7-13a1-47ae-a726-8fc967c73841 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1430 68 false '-- '-- '-- '-- -24939 863 a7a4f433-78e4-5763-b441-d0eb0f1eb85f '-- not reported female '-- '-- '-- '-- white TCGA-24-1430_demographic Dead '-- '-- '-- '-- 24939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2a0f08c5-3c4b-577d-927e-0626042b4204 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1430_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 106 22 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1430_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1252 '-- mg '-- '-- '-- '-- 203e6089-83fa-465a-96a5-0ee334873fc4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3018efe7-13a1-47ae-a726-8fc967c73841 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1430 68 false '-- '-- '-- '-- -24939 863 a7a4f433-78e4-5763-b441-d0eb0f1eb85f '-- not reported female '-- '-- '-- '-- white TCGA-24-1430_demographic Dead '-- '-- '-- '-- 24939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2a0f08c5-3c4b-577d-927e-0626042b4204 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1430_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 769 652 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1430_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1960 '-- mg '-- '-- '-- '-- 325d666a-482f-4278-8934-afcd1e4052f5 '-- yes '-- '-- Chemotherapy +TCGA-OV 3018efe7-13a1-47ae-a726-8fc967c73841 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1430 68 false '-- '-- '-- '-- -24939 863 a7a4f433-78e4-5763-b441-d0eb0f1eb85f '-- not reported female '-- '-- '-- '-- white TCGA-24-1430_demographic Dead '-- '-- '-- '-- 24939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2a0f08c5-3c4b-577d-927e-0626042b4204 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1430_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 106 22 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1430_treatment6 Amifostine '-- '-- '-- '-- '-- '-- '-- 5301 '-- mg '-- '-- '-- '-- 3bc01f11-f663-4dee-8b7c-e280b4493e54 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3018efe7-13a1-47ae-a726-8fc967c73841 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1430 68 false '-- '-- '-- '-- -24939 863 a7a4f433-78e4-5763-b441-d0eb0f1eb85f '-- not reported female '-- '-- '-- '-- white TCGA-24-1430_demographic Dead '-- '-- '-- '-- 24939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2a0f08c5-3c4b-577d-927e-0626042b4204 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1430_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 106 22 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1430_treatment9 Cisplatin '-- '-- '-- '-- '-- '-- '-- 539 '-- mg '-- '-- '-- '-- 41f374ec-c4b3-463c-ae59-3a5d1f498e07 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3018efe7-13a1-47ae-a726-8fc967c73841 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1430 68 false '-- '-- '-- '-- -24939 863 a7a4f433-78e4-5763-b441-d0eb0f1eb85f '-- not reported female '-- '-- '-- '-- white TCGA-24-1430_demographic Dead '-- '-- '-- '-- 24939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2a0f08c5-3c4b-577d-927e-0626042b4204 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1430_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1430_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 48459bde-383b-4c7d-86da-28c2cb819c70 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 3018efe7-13a1-47ae-a726-8fc967c73841 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1430 68 false '-- '-- '-- '-- -24939 863 a7a4f433-78e4-5763-b441-d0eb0f1eb85f '-- not reported female '-- '-- '-- '-- white TCGA-24-1430_demographic Dead '-- '-- '-- '-- 24939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2a0f08c5-3c4b-577d-927e-0626042b4204 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1430_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 841 804 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1430_treatment Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 81 '-- mg '-- '-- '-- '-- 5b1f79c6-9afc-5ccc-b844-1230f88cf803 '-- yes '-- '-- Chemotherapy +TCGA-OV 3018efe7-13a1-47ae-a726-8fc967c73841 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1430 68 false '-- '-- '-- '-- -24939 863 a7a4f433-78e4-5763-b441-d0eb0f1eb85f '-- not reported female '-- '-- '-- '-- white TCGA-24-1430_demographic Dead '-- '-- '-- '-- 24939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2a0f08c5-3c4b-577d-927e-0626042b4204 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1430_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 547 463 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1430_treatment5 Topotecan '-- '-- '-- '-- '-- '-- '-- 45 '-- mg '-- '-- '-- '-- 74dfe6fb-7196-4ac2-9d4b-a035365a47ff '-- yes '-- '-- Chemotherapy +TCGA-OV 3018efe7-13a1-47ae-a726-8fc967c73841 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1430 68 false '-- '-- '-- '-- -24939 863 a7a4f433-78e4-5763-b441-d0eb0f1eb85f '-- not reported female '-- '-- '-- '-- white TCGA-24-1430_demographic Dead '-- '-- '-- '-- 24939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2a0f08c5-3c4b-577d-927e-0626042b4204 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1430_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 624 568 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1430_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 177 '-- mg '-- '-- '-- '-- b8bee02c-9827-44ac-9095-dd96b8b3cede '-- yes '-- '-- Chemotherapy +TCGA-OV 3018efe7-13a1-47ae-a726-8fc967c73841 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1430 68 false '-- '-- '-- '-- -24939 863 a7a4f433-78e4-5763-b441-d0eb0f1eb85f '-- not reported female '-- '-- '-- '-- white TCGA-24-1430_demographic Dead '-- '-- '-- '-- 24939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2a0f08c5-3c4b-577d-927e-0626042b4204 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1430_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 769 652 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1430_treatment7 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 128 '-- mg '-- '-- '-- '-- b9c8d654-6dbf-4648-8af0-b391640bf458 '-- yes '-- '-- Chemotherapy +TCGA-OV 3018efe7-13a1-47ae-a726-8fc967c73841 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1430 68 false '-- '-- '-- '-- -24939 863 a7a4f433-78e4-5763-b441-d0eb0f1eb85f '-- not reported female '-- '-- '-- '-- white TCGA-24-1430_demographic Dead '-- '-- '-- '-- 24939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2a0f08c5-3c4b-577d-927e-0626042b4204 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1430_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 841 804 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1430_treatment8 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 5150 '-- mg '-- '-- '-- '-- df6007c1-d9d0-44dd-b778-ae766eca3372 '-- yes '-- '-- Chemotherapy +TCGA-OV 3018efe7-13a1-47ae-a726-8fc967c73841 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1430 68 false '-- '-- '-- '-- -24939 863 a7a4f433-78e4-5763-b441-d0eb0f1eb85f '-- not reported female '-- '-- '-- '-- white TCGA-24-1430_demographic Dead '-- '-- '-- '-- 25388 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 449 '-- '-- '-- 3e6723d1-3e38-4804-8fe6-0cb8769f400c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1430_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1430_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1430_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bd17983a-e3b6-42e4-aba1-7512c2d9ec6c '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 3018efe7-13a1-47ae-a726-8fc967c73841 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1430 68 false '-- '-- '-- '-- -24939 863 a7a4f433-78e4-5763-b441-d0eb0f1eb85f '-- not reported female '-- '-- '-- '-- white TCGA-24-1430_demographic Dead '-- '-- '-- '-- 25388 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 449 '-- '-- '-- 3e6723d1-3e38-4804-8fe6-0cb8769f400c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1430_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1430_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1430_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f3aca692-8516-483a-bb37-a13000fd24b0 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 31872f6a-d225-4f91-b38d-4505d19e406c Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1338 78 false '-- '-- '-- '-- -28789 '-- e8692f76-bc92-57a4-9d02-6ea94d74b7b9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1338_demographic Alive '-- '-- '-- '-- 28789 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5a6c0be4-e300-56d1-85c2-bb11bf6409b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1338_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 201 0 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1338_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 281b59c3-bf65-5194-ae83-64187eba70fc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 31872f6a-d225-4f91-b38d-4505d19e406c Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1338 78 false '-- '-- '-- '-- -28789 '-- e8692f76-bc92-57a4-9d02-6ea94d74b7b9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1338_demographic Alive '-- '-- '-- '-- 28789 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5a6c0be4-e300-56d1-85c2-bb11bf6409b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1338_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 510 415 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1338_treatment5 Docetaxel '-- '-- '-- '-- '-- '-- '-- 812 '-- mg '-- '-- '-- '-- 54422771-5f2e-4183-b7d5-fb25a0533734 '-- yes '-- '-- Chemotherapy +TCGA-OV 31872f6a-d225-4f91-b38d-4505d19e406c Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1338 78 false '-- '-- '-- '-- -28789 '-- e8692f76-bc92-57a4-9d02-6ea94d74b7b9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1338_demographic Alive '-- '-- '-- '-- 28789 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5a6c0be4-e300-56d1-85c2-bb11bf6409b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1338_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 627 597 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1338_treatment2 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 800 '-- mg '-- '-- '-- '-- 5bbdf4ef-abc5-4695-b688-db3b92c1f3aa '-- yes '-- '-- Chemotherapy +TCGA-OV 31872f6a-d225-4f91-b38d-4505d19e406c Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1338 78 false '-- '-- '-- '-- -28789 '-- e8692f76-bc92-57a4-9d02-6ea94d74b7b9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1338_demographic Alive '-- '-- '-- '-- 28789 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5a6c0be4-e300-56d1-85c2-bb11bf6409b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1338_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1338_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6bf283f9-f5fc-44d6-86fd-5a98cd84d9ab Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 31872f6a-d225-4f91-b38d-4505d19e406c Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1338 78 false '-- '-- '-- '-- -28789 '-- e8692f76-bc92-57a4-9d02-6ea94d74b7b9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1338_demographic Alive '-- '-- '-- '-- 28789 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5a6c0be4-e300-56d1-85c2-bb11bf6409b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1338_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- 627 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1338_treatment3 Tamoxifen '-- '-- '-- '-- '-- '-- '-- 10 '-- mg '-- '-- '-- '-- 8d220e33-4b39-4244-982b-64a18d969683 '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 31872f6a-d225-4f91-b38d-4505d19e406c Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1338 78 false '-- '-- '-- '-- -28789 '-- e8692f76-bc92-57a4-9d02-6ea94d74b7b9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1338_demographic Alive '-- '-- '-- '-- 28789 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5a6c0be4-e300-56d1-85c2-bb11bf6409b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1338_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 201 0 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1338_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b39b6eae-ba30-4905-9091-619a9fd685d4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 31872f6a-d225-4f91-b38d-4505d19e406c Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1338 78 false '-- '-- '-- '-- -28789 '-- e8692f76-bc92-57a4-9d02-6ea94d74b7b9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1338_demographic Alive '-- '-- '-- '-- 29169 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 380 '-- '-- '-- d1f7c511-dd1b-4cc0-a721-c107fc185104 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1338_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1338_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1338_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3929a89f-85d1-4550-ad40-00a52133edb6 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 31872f6a-d225-4f91-b38d-4505d19e406c Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1338 78 false '-- '-- '-- '-- -28789 '-- e8692f76-bc92-57a4-9d02-6ea94d74b7b9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1338_demographic Alive '-- '-- '-- '-- 29169 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 380 '-- '-- '-- d1f7c511-dd1b-4cc0-a721-c107fc185104 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1338_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1338_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1338_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 94b71972-de7c-4806-90f5-220dbf4d5e01 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 32960bc7-839a-42c5-9460-3917fa578ffc '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0726 55 false '-- '-- '-- '-- -20134 949 056db782-ad0b-5cfe-9fe5-55f48edf37d0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0726_demographic Dead '-- '-- '-- '-- 20526 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 392 '-- '-- '-- 2b9277e8-f892-4b03-a950-d7a2999f2a76 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0726_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0726_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0726_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 21f31345-921a-429b-9946-e9b94974e56d '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 32960bc7-839a-42c5-9460-3917fa578ffc '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0726 55 false '-- '-- '-- '-- -20134 949 056db782-ad0b-5cfe-9fe5-55f48edf37d0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0726_demographic Dead '-- '-- '-- '-- 20526 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 392 '-- '-- '-- 2b9277e8-f892-4b03-a950-d7a2999f2a76 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0726_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0726_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0726_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 267baecd-0140-4a0d-9dac-b4c6a5577581 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 32960bc7-839a-42c5-9460-3917fa578ffc '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0726 55 false '-- '-- '-- '-- -20134 949 056db782-ad0b-5cfe-9fe5-55f48edf37d0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0726_demographic Dead '-- '-- '-- '-- 20134 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ed0b214c-e415-5615-bfad-27541c16d7bd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0726_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 169 29 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0726_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a3cd27d8-3518-4678-9c17-a5ae59a5a5f1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 32960bc7-839a-42c5-9460-3917fa578ffc '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0726 55 false '-- '-- '-- '-- -20134 949 056db782-ad0b-5cfe-9fe5-55f48edf37d0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0726_demographic Dead '-- '-- '-- '-- 20134 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ed0b214c-e415-5615-bfad-27541c16d7bd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0726_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 169 29 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0726_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- a659d0d0-4cd3-5dfa-82bf-b1f1d7eae1bb Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 32960bc7-839a-42c5-9460-3917fa578ffc '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0726 55 false '-- '-- '-- '-- -20134 949 056db782-ad0b-5cfe-9fe5-55f48edf37d0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0726_demographic Dead '-- '-- '-- '-- 20134 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ed0b214c-e415-5615-bfad-27541c16d7bd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0726_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0726_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c492257b-e89f-4546-b268-aab65b08ff09 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 32d4d200-1fdf-44ed-b81f-1954a9c93926 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1667 61 false '-- '-- '-- '-- -22306 '-- 74bea85c-1cac-5272-9bd3-f20fe9ca3b0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1667_demographic Alive '-- '-- '-- '-- 22766 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 460 '-- '-- '-- 84ba6cba-36d9-43bc-b567-0898cfb29516 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1667_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1667_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1667_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 14e45dee-699b-4fda-89cd-b253cffa75f5 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 32d4d200-1fdf-44ed-b81f-1954a9c93926 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1667 61 false '-- '-- '-- '-- -22306 '-- 74bea85c-1cac-5272-9bd3-f20fe9ca3b0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1667_demographic Alive '-- '-- '-- '-- 22766 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 460 '-- '-- '-- 84ba6cba-36d9-43bc-b567-0898cfb29516 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1667_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1667_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1667_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b3ddcf31-561e-494e-bf1d-0f6e82322383 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 32d4d200-1fdf-44ed-b81f-1954a9c93926 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1667 61 false '-- '-- '-- '-- -22306 '-- 74bea85c-1cac-5272-9bd3-f20fe9ca3b0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1667_demographic Alive '-- '-- '-- '-- 22306 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a6b591a1-0fe2-54bb-b79b-392e1358cdb7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1667_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 118 7 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1667_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 228b952d-ec2c-4294-8f28-bfd5436c5923 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 32d4d200-1fdf-44ed-b81f-1954a9c93926 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1667 61 false '-- '-- '-- '-- -22306 '-- 74bea85c-1cac-5272-9bd3-f20fe9ca3b0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1667_demographic Alive '-- '-- '-- '-- 22306 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a6b591a1-0fe2-54bb-b79b-392e1358cdb7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1667_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 685 559 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1667_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 30998180-ec22-4e3d-9d83-9260f99368dd '-- yes '-- '-- Chemotherapy +TCGA-OV 32d4d200-1fdf-44ed-b81f-1954a9c93926 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1667 61 false '-- '-- '-- '-- -22306 '-- 74bea85c-1cac-5272-9bd3-f20fe9ca3b0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1667_demographic Alive '-- '-- '-- '-- 22306 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a6b591a1-0fe2-54bb-b79b-392e1358cdb7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1667_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1135 1135 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1667_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- b5f63fb4-f66c-49eb-86a2-86e0e5dc693c '-- yes '-- '-- Chemotherapy +TCGA-OV 32d4d200-1fdf-44ed-b81f-1954a9c93926 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1667 61 false '-- '-- '-- '-- -22306 '-- 74bea85c-1cac-5272-9bd3-f20fe9ca3b0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1667_demographic Alive '-- '-- '-- '-- 22306 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a6b591a1-0fe2-54bb-b79b-392e1358cdb7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1667_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 118 7 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1667_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- c28bdc3b-ca3b-4ff7-b4ec-78a9494a5d76 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 32d4d200-1fdf-44ed-b81f-1954a9c93926 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1667 61 false '-- '-- '-- '-- -22306 '-- 74bea85c-1cac-5272-9bd3-f20fe9ca3b0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1667_demographic Alive '-- '-- '-- '-- 22306 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a6b591a1-0fe2-54bb-b79b-392e1358cdb7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1667_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1875 820 '-- '-- Progressive Disease '-- '-- '-- '-- 20 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1667_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 40 '-- mg/m2 '-- '-- '-- '-- d1f07464-24c0-43fe-8234-248d1a00cd46 '-- yes '-- '-- Chemotherapy +TCGA-OV 32d4d200-1fdf-44ed-b81f-1954a9c93926 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1667 61 false '-- '-- '-- '-- -22306 '-- 74bea85c-1cac-5272-9bd3-f20fe9ca3b0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1667_demographic Alive '-- '-- '-- '-- 22306 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a6b591a1-0fe2-54bb-b79b-392e1358cdb7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1667_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1552 1539 '-- '-- '-- '-- '-- '-- '-- '-- 10.0 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1667_treatment '-- '-- '-- '-- '-- '-- Locoregional Site '-- 3000 '-- cGy '-- '-- '-- '-- dd668383-cf24-5d47-9ef7-1cc2f70f508a Palliative yes '-- '-- Radiation, External Beam +TCGA-OV 32d4d200-1fdf-44ed-b81f-1954a9c93926 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1667 61 false '-- '-- '-- '-- -22306 '-- 74bea85c-1cac-5272-9bd3-f20fe9ca3b0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1667_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- eb52741f-2ca0-44d3-98d8-190d5bdabd6e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1667_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1667_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 511 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1667_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 089e32de-ecfd-4926-b8e2-56da5f235ee8 '-- yes '-- '-- Surgery, NOS +TCGA-OV 32d4d200-1fdf-44ed-b81f-1954a9c93926 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1667 61 false '-- '-- '-- '-- -22306 '-- 74bea85c-1cac-5272-9bd3-f20fe9ca3b0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1667_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- eb52741f-2ca0-44d3-98d8-190d5bdabd6e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1667_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1667_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1667_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7e3f3e97-43d6-4e18-8702-6c57dbe07815 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 32d4d200-1fdf-44ed-b81f-1954a9c93926 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1667 61 false '-- '-- '-- '-- -22306 '-- 74bea85c-1cac-5272-9bd3-f20fe9ca3b0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1667_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- eb52741f-2ca0-44d3-98d8-190d5bdabd6e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1667_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1667_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1667_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 96b222e4-a127-49d1-852f-659444f0717a '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 33d36b64-4688-40a7-9a4f-7cd3d4cc683d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1695 62 false '-- '-- '-- '-- -22895 1229 dce94daf-399a-5bdc-9190-563469a5a908 '-- not reported female '-- '-- '-- '-- white TCGA-29-1695_demographic Dead '-- '-- '-- '-- 22895 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 545dae36-7e9c-574c-81a8-71ad91172902 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1695_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1695_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5e98915f-9215-5b0f-a8d2-af86dff4b291 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 33dc48d8-2e01-482b-944c-ac10da727ec9 Informed Consent 5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2003 53 false '-- '-- '-- '-- -19605 '-- 08fce3da-3c8e-5e7f-9af4-734444e2919c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2003_demographic Alive '-- '-- '-- '-- 19605 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ad8f87df-db51-56a1-840d-89f7e394ab23 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2003_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- 122 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2003_treatment3 Gemcitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 00c29751-5832-4ae3-9037-ea030ac0855f '-- yes '-- '-- Chemotherapy +TCGA-OV 33dc48d8-2e01-482b-944c-ac10da727ec9 Informed Consent 5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2003 53 false '-- '-- '-- '-- -19605 '-- 08fce3da-3c8e-5e7f-9af4-734444e2919c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2003_demographic Alive '-- '-- '-- '-- 19605 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ad8f87df-db51-56a1-840d-89f7e394ab23 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2003_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 121 52 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2003_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 322070a9-b213-4341-9aaa-68b9cd07e9c4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 33dc48d8-2e01-482b-944c-ac10da727ec9 Informed Consent 5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2003 53 false '-- '-- '-- '-- -19605 '-- 08fce3da-3c8e-5e7f-9af4-734444e2919c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2003_demographic Alive '-- '-- '-- '-- 19605 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ad8f87df-db51-56a1-840d-89f7e394ab23 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2003_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2003_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 354e5ce7-a1ff-40a1-bde8-5d67059ea432 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 33dc48d8-2e01-482b-944c-ac10da727ec9 Informed Consent 5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2003 53 false '-- '-- '-- '-- -19605 '-- 08fce3da-3c8e-5e7f-9af4-734444e2919c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2003_demographic Alive '-- '-- '-- '-- 19605 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ad8f87df-db51-56a1-840d-89f7e394ab23 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2003_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 121 52 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-2003_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 82ae9fb4-8dfa-420b-b76a-f37aba37befe Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 33dc48d8-2e01-482b-944c-ac10da727ec9 Informed Consent 5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2003 53 false '-- '-- '-- '-- -19605 '-- 08fce3da-3c8e-5e7f-9af4-734444e2919c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2003_demographic Alive '-- '-- '-- '-- 19605 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ad8f87df-db51-56a1-840d-89f7e394ab23 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2003_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- 122 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2003_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 82bf33a9-33b0-5f3c-a260-0f9e0bc340ec '-- yes '-- '-- Chemotherapy +TCGA-OV 33dc48d8-2e01-482b-944c-ac10da727ec9 Informed Consent 5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2003 53 false '-- '-- '-- '-- -19605 '-- 08fce3da-3c8e-5e7f-9af4-734444e2919c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2003_demographic Alive '-- '-- '-- '-- 19605 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ad8f87df-db51-56a1-840d-89f7e394ab23 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2003_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 121 52 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-61-2003_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c4748631-2f0f-4764-98cc-989fd8cd1f28 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3445c524-5a37-40b6-8614-956d76eed939 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1576 76 false '-- '-- '-- '-- -27778 '-- c18e2936-9d87-546c-a5a8-35e127f24d64 '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1576_demographic Alive '-- '-- '-- '-- 27778 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 12f10f5c-d361-5f22-9b2e-011d487caa6b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1576_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 222 12 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1576_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3648 '-- mg '-- '-- '-- '-- 0fbd411f-0552-42d5-a43a-3fac6bba3b02 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3445c524-5a37-40b6-8614-956d76eed939 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1576 76 false '-- '-- '-- '-- -27778 '-- c18e2936-9d87-546c-a5a8-35e127f24d64 '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1576_demographic Alive '-- '-- '-- '-- 27778 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 12f10f5c-d361-5f22-9b2e-011d487caa6b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1576_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1576_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 65650e0d-211e-4464-bba6-132817ff1a71 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 3445c524-5a37-40b6-8614-956d76eed939 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1576 76 false '-- '-- '-- '-- -27778 '-- c18e2936-9d87-546c-a5a8-35e127f24d64 '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1576_demographic Alive '-- '-- '-- '-- 27778 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 12f10f5c-d361-5f22-9b2e-011d487caa6b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1576_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 222 12 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1576_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2528 '-- mg '-- '-- '-- '-- dff8e585-7ede-5263-b007-1a6ec4555f91 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3445c524-5a37-40b6-8614-956d76eed939 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1576 76 false '-- '-- '-- '-- -27778 '-- c18e2936-9d87-546c-a5a8-35e127f24d64 '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1576_demographic Alive '-- '-- '-- '-- 28595 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 817 '-- '-- '-- bb83cd72-ea25-4e63-a04f-15cd84507e5a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-36-1576_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-36-1576_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1576_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 463edaf6-d0f5-4b6f-88c2-cc6ead78cdcd '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 3445c524-5a37-40b6-8614-956d76eed939 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1576 76 false '-- '-- '-- '-- -27778 '-- c18e2936-9d87-546c-a5a8-35e127f24d64 '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1576_demographic Alive '-- '-- '-- '-- 28595 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 817 '-- '-- '-- bb83cd72-ea25-4e63-a04f-15cd84507e5a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-36-1576_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-36-1576_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1576_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d85bd4c1-5754-42ad-9af0-401d0bbdf74e '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 3491d67a-4f83-4f67-8085-bbb9fe942be5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1918 45 false '-- '-- '-- '-- -16689 479 3e70c222-a83b-5da9-9917-afab5c944561 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1918_demographic Dead '-- '-- '-- '-- 16689 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 333c3c88-a293-5542-b167-ffd3a6a82a8d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1918_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 146 9 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1918_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4686 '-- mg '-- '-- '-- '-- 854ad469-98aa-47e9-944c-3b5c18a80cae Adjuvant yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 3491d67a-4f83-4f67-8085-bbb9fe942be5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1918 45 false '-- '-- '-- '-- -16689 479 3e70c222-a83b-5da9-9917-afab5c944561 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1918_demographic Dead '-- '-- '-- '-- 16689 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 333c3c88-a293-5542-b167-ffd3a6a82a8d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1918_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 146 9 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1918_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2179 '-- mg '-- '-- '-- '-- 913a1420-0d51-49c3-9f1c-c44985a6b80e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3491d67a-4f83-4f67-8085-bbb9fe942be5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1918 45 false '-- '-- '-- '-- -16689 479 3e70c222-a83b-5da9-9917-afab5c944561 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1918_demographic Dead '-- '-- '-- '-- 16689 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 333c3c88-a293-5542-b167-ffd3a6a82a8d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1918_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 146 9 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1918_treatment Gemcitabine '-- '-- '-- '-- '-- '-- '-- 15616 '-- mg '-- '-- '-- '-- 92769dda-b04b-5014-a5a0-0fb807673dfe Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3491d67a-4f83-4f67-8085-bbb9fe942be5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1918 45 false '-- '-- '-- '-- -16689 479 3e70c222-a83b-5da9-9917-afab5c944561 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1918_demographic Dead '-- '-- '-- '-- 16689 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 333c3c88-a293-5542-b167-ffd3a6a82a8d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1918_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1918_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 936ec02e-0b1c-44dd-a9b9-def34f1dde01 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 3491d67a-4f83-4f67-8085-bbb9fe942be5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1918 45 false '-- '-- '-- '-- -16689 479 3e70c222-a83b-5da9-9917-afab5c944561 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1918_demographic Dead '-- '-- '-- '-- 17102 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 413 '-- '-- '-- 5db4051e-6a7c-4045-a2ab-38af1f4cb108 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1918_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1918_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1918_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 583cad5d-22da-48fe-b3fc-58408e0bd5df '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 3491d67a-4f83-4f67-8085-bbb9fe942be5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1918 45 false '-- '-- '-- '-- -16689 479 3e70c222-a83b-5da9-9917-afab5c944561 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1918_demographic Dead '-- '-- '-- '-- 17102 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 413 '-- '-- '-- 5db4051e-6a7c-4045-a2ab-38af1f4cb108 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1918_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1918_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1918_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7af469bd-2538-43e6-a48d-9b0a04e30c02 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 34f285ab-6c31-4865-a0a7-a57af3567df0 Informed Consent 51 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-0987 61 false '-- '-- '-- '-- -22287 701 320febbb-04db-59be-aced-d111a47c27ba '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-0987_demographic Dead '-- '-- '-- '-- 22729 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 442 '-- '-- '-- 02b58c15-bd61-4725-9415-296878026063 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-20-0987_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-20-0987_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-20-0987_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6d33b084-050c-4e66-88f4-88f6c32480fd '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 34f285ab-6c31-4865-a0a7-a57af3567df0 Informed Consent 51 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-0987 61 false '-- '-- '-- '-- -22287 701 320febbb-04db-59be-aced-d111a47c27ba '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-0987_demographic Dead '-- '-- '-- '-- 22729 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 442 '-- '-- '-- 02b58c15-bd61-4725-9415-296878026063 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-20-0987_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-20-0987_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-20-0987_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d67070da-5ab1-4dee-8138-c1fd22bcfc0a '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 34f285ab-6c31-4865-a0a7-a57af3567df0 Informed Consent 51 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-0987 61 false '-- '-- '-- '-- -22287 701 320febbb-04db-59be-aced-d111a47c27ba '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-0987_demographic Dead '-- '-- '-- '-- 22287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d704293e-b3ad-5c64-946f-4bacf3517263 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-0987_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- 91 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-0987_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2bfaa920-0463-5a3d-aab2-bb32658cfbd7 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 34f285ab-6c31-4865-a0a7-a57af3567df0 Informed Consent 51 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-0987 61 false '-- '-- '-- '-- -22287 701 320febbb-04db-59be-aced-d111a47c27ba '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-0987_demographic Dead '-- '-- '-- '-- 22287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d704293e-b3ad-5c64-946f-4bacf3517263 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-0987_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 442 427 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-20-0987_treatment2 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 422b13b1-c194-48d8-a4fa-a5b4e91700af '-- yes '-- '-- Chemotherapy +TCGA-OV 34f285ab-6c31-4865-a0a7-a57af3567df0 Informed Consent 51 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-0987 61 false '-- '-- '-- '-- -22287 701 320febbb-04db-59be-aced-d111a47c27ba '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-0987_demographic Dead '-- '-- '-- '-- 22287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d704293e-b3ad-5c64-946f-4bacf3517263 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-0987_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- 91 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-0987_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a095ac2b-3120-4976-80c1-670d10c5dd65 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 34f285ab-6c31-4865-a0a7-a57af3567df0 Informed Consent 51 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-0987 61 false '-- '-- '-- '-- -22287 701 320febbb-04db-59be-aced-d111a47c27ba '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-0987_demographic Dead '-- '-- '-- '-- 22287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d704293e-b3ad-5c64-946f-4bacf3517263 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-0987_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-20-0987_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a56823d3-485a-47f5-bab2-41af6e13a991 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5fefd09f-e6da-4962-b32c-38b35b442491 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1467_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1467_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1467_treatment23 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0b278c6d-2c93-4a92-94fc-ad1ca312deaa '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5fefd09f-e6da-4962-b32c-38b35b442491 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1467_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1467_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1467_treatment24 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ba463a42-e9bf-4379-bc26-6d9404f5fa1e '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5fefd09f-e6da-4962-b32c-38b35b442491 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1467_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1467_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1253 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1467_treatment25 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ca037d5d-8892-4cd7-bbb6-2a442f143f0e '-- yes '-- '-- Surgery, NOS +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 19905 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1253 '-- '-- '-- e1abcbcd-957e-4715-9d6d-04eab569f042 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1467_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1467_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1467_treatment22 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 17229468-2145-47c4-a426-98dd7da83805 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 19905 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1253 '-- '-- '-- e1abcbcd-957e-4715-9d6d-04eab569f042 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1467_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1467_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1467_treatment21 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6a547126-bf9f-4d05-a1fb-8dea3b5db96a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1909 1804 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment19 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1620 '-- mg '-- '-- '-- '-- 0d932fc6-9325-4b71-a93c-0d1c46be9691 '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1909 1804 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 600 '-- mg '-- '-- '-- '-- 0ddbd0d2-38e5-404e-8bb3-6eb5d48e8390 '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2737 2561 '-- '-- Progressive Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment4 Docetaxel '-- '-- '-- '-- '-- '-- '-- 1350 '-- mg '-- '-- '-- '-- 10573f4e-ad5f-43c6-9e42-4b309c136f6b '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 3059 2989 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment8 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 240 '-- mg '-- '-- '-- '-- 1f126068-18e8-43ed-a258-c8965edd3389 '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- '-- 2758 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment9 Tamoxifen '-- '-- '-- '-- '-- '-- '-- 20 '-- mg '-- '-- '-- '-- 2b09fb39-2ccb-44c3-95ff-a467c6043f8f '-- yes Treatment Ongoing '-- Hormone Therapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2889 2819 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-1467_treatment3 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 3610 '-- mg '-- '-- '-- '-- 4197ebe3-e7fb-4722-905f-e3bff75de5a4 Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2737 2561 '-- '-- Progressive Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment11 Cisplatin '-- '-- '-- '-- '-- '-- '-- 115 '-- mg '-- '-- '-- '-- 49ba3b95-5b3e-446f-a60d-e1b88e37179e '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1467_treatment20 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6f91757e-4593-4310-89be-deb08c8e0597 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2296 2170 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment15 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- 600 '-- mg '-- '-- '-- '-- 762b9277-43c8-49cf-b704-0cba8c156515 '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2296 2170 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment13 Topotecan '-- '-- '-- '-- '-- '-- '-- 60 '-- mg '-- '-- '-- '-- 7ea8e5da-2710-4e9f-af67-a280f5f3ef4b '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2889 2819 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment16 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 50 '-- mg '-- '-- '-- '-- 88db6cc5-7337-4d94-bed8-519caba30bda '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 3101 3073 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment17 Topotecan '-- '-- '-- '-- '-- '-- '-- 21 '-- mg '-- '-- '-- '-- 900b5cea-ecd5-475a-96f0-f4e35a2fe504 '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1391 1277 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1780 '-- mg '-- '-- '-- '-- aca9b339-bbca-5160-a750-2a740c69e77d '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2531 2476 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 240 '-- mg '-- '-- '-- '-- bd344845-a944-43a3-a2c9-cac9287b6a1b '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 110 6 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment18 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2650 '-- mg '-- '-- '-- '-- bd9a1b9a-7979-4e6f-80c1-202bec310fc6 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1391 1277 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment14 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1275 '-- mg '-- '-- '-- '-- c0e7b6d2-2e0d-41a8-aabe-576025520ae1 '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2458 2363 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment7 Tamoxifen '-- '-- '-- '-- '-- '-- '-- 20 '-- mg '-- '-- '-- '-- d3877182-84ec-4b90-8071-fda9dbf8171a '-- yes Treatment Ongoing '-- Hormone Therapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 110 6 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4565 '-- mg '-- '-- '-- '-- d6b6b288-c3e5-4c3c-8e84-99bb0ca3d631 Adjuvant yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1391 1277 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment10 Cisplatin '-- '-- '-- '-- '-- '-- '-- 400 '-- mg '-- '-- '-- '-- dc82333f-8085-46a3-9884-0c9e9499aac5 '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 3059 2989 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment12 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 8871 '-- mg '-- '-- '-- '-- e0887fa1-9410-453c-a671-5f49a489e2e8 '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 35916942-e7aa-45db-ad27-03cba67d4d5b Informed Consent -295 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1517 79 false '-- '-- '-- '-- -29045 608 475ebd3e-0dfc-5d80-aa9a-145aa1385328 '-- not reported female '-- '-- '-- '-- white TCGA-04-1517_demographic Dead '-- '-- '-- '-- 29394 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 349 '-- '-- '-- 663c06e7-5a5e-4e97-bf48-b89fc761b77f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1517_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1517_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1517_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4764c147-0298-4b15-ac89-741c08f87f0c '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 35916942-e7aa-45db-ad27-03cba67d4d5b Informed Consent -295 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1517 79 false '-- '-- '-- '-- -29045 608 475ebd3e-0dfc-5d80-aa9a-145aa1385328 '-- not reported female '-- '-- '-- '-- white TCGA-04-1517_demographic Dead '-- '-- '-- '-- 29394 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 349 '-- '-- '-- 663c06e7-5a5e-4e97-bf48-b89fc761b77f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1517_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1517_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1517_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7c95667c-882e-4fe1-ae7c-35b4eae5f379 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 35916942-e7aa-45db-ad27-03cba67d4d5b Informed Consent -295 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1517 79 false '-- '-- '-- '-- -29045 608 475ebd3e-0dfc-5d80-aa9a-145aa1385328 '-- not reported female '-- '-- '-- '-- white TCGA-04-1517_demographic Dead '-- '-- '-- '-- 29045 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a533a03b-cac4-5cc9-89ef-905ef85da2e4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1517_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 144 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1517_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- 70 '-- mg/m2 '-- '-- '-- '-- 0927662c-275a-5ab1-a874-90c4ce75b258 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 35916942-e7aa-45db-ad27-03cba67d4d5b Informed Consent -295 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1517 79 false '-- '-- '-- '-- -29045 608 475ebd3e-0dfc-5d80-aa9a-145aa1385328 '-- not reported female '-- '-- '-- '-- white TCGA-04-1517_demographic Dead '-- '-- '-- '-- 29045 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a533a03b-cac4-5cc9-89ef-905ef85da2e4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1517_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 144 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1517_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 4b64f1a6-ba24-400d-9b4e-cbb639559e83 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 35916942-e7aa-45db-ad27-03cba67d4d5b Informed Consent -295 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1517 79 false '-- '-- '-- '-- -29045 608 475ebd3e-0dfc-5d80-aa9a-145aa1385328 '-- not reported female '-- '-- '-- '-- white TCGA-04-1517_demographic Dead '-- '-- '-- '-- 29045 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a533a03b-cac4-5cc9-89ef-905ef85da2e4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1517_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1517_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 553502c1-ded9-4673-bc84-8efe46c4eba7 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 35916942-e7aa-45db-ad27-03cba67d4d5b Informed Consent -295 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1517 79 false '-- '-- '-- '-- -29045 608 475ebd3e-0dfc-5d80-aa9a-145aa1385328 '-- not reported female '-- '-- '-- '-- white TCGA-04-1517_demographic Dead '-- '-- '-- '-- 29045 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a533a03b-cac4-5cc9-89ef-905ef85da2e4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1517_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 421 352 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1517_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6e8803e3-1da5-4131-9a43-cb4afacf0c20 '-- yes '-- '-- Chemotherapy +TCGA-OV 35916942-e7aa-45db-ad27-03cba67d4d5b Informed Consent -295 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1517 79 false '-- '-- '-- '-- -29045 608 475ebd3e-0dfc-5d80-aa9a-145aa1385328 '-- not reported female '-- '-- '-- '-- white TCGA-04-1517_demographic Dead '-- '-- '-- '-- 29045 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a533a03b-cac4-5cc9-89ef-905ef85da2e4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1517_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 421 352 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1517_treatment3 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e2c869ba-41e3-4048-bb78-209315887326 '-- yes '-- '-- Chemotherapy +TCGA-OV 36595b52-2b5f-4e87-80eb-37c29109e92a Informed Consent 21 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-0991 78 false '-- '-- '-- '-- -28694 '-- 36753d6c-f821-5dbf-a8b3-662cb2430bed '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-0991_demographic Alive '-- '-- '-- '-- 28694 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b12547de-b3e3-59fe-a426-d67e9bb05533 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-0991_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- 71 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-0991_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 425 '-- mg/m2 '-- '-- '-- '-- 0bac6761-7a5f-5ace-8dca-80cefb181dc5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 36595b52-2b5f-4e87-80eb-37c29109e92a Informed Consent 21 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-0991 78 false '-- '-- '-- '-- -28694 '-- 36753d6c-f821-5dbf-a8b3-662cb2430bed '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-0991_demographic Alive '-- '-- '-- '-- 28694 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b12547de-b3e3-59fe-a426-d67e9bb05533 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-0991_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-20-0991_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e3b1ad43-dc0d-4647-b564-ef94d2f52512 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 374ea8df-ecc4-44b0-b519-33efa5078018 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1761 80 false '-- '-- '-- '-- -29337 528 5707415c-114a-55b6-9c7a-ffe492bcd227 '-- not reported female '-- '-- '-- '-- asian TCGA-29-1761_demographic Dead '-- '-- '-- '-- 29337 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d4e1d5f5-41cc-55eb-b085-39c793219da6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1761_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 202 '-- '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1761_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1e6a1434-c30c-42cd-b741-99866b474834 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 374ea8df-ecc4-44b0-b519-33efa5078018 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1761 80 false '-- '-- '-- '-- -29337 528 5707415c-114a-55b6-9c7a-ffe492bcd227 '-- not reported female '-- '-- '-- '-- asian TCGA-29-1761_demographic Dead '-- '-- '-- '-- 29337 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d4e1d5f5-41cc-55eb-b085-39c793219da6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1761_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 202 49 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1761_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8228dadd-a42b-5674-90c3-3f343a60fdae Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 374ea8df-ecc4-44b0-b519-33efa5078018 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1761 80 false '-- '-- '-- '-- -29337 528 5707415c-114a-55b6-9c7a-ffe492bcd227 '-- not reported female '-- '-- '-- '-- asian TCGA-29-1761_demographic Dead '-- '-- '-- '-- 29337 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d4e1d5f5-41cc-55eb-b085-39c793219da6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1761_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1761_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 930c30d2-8197-4f0c-8b8a-135527234da1 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 3768d34f-1527-40db-b116-cd80cee5ec3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2045 50 false '-- '-- '-- '-- -18285 1069 6ca6b1db-10fc-590d-a441-127763862ffa '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2045_demographic Dead '-- '-- '-- '-- 18285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0ffcd742-a709-52d5-b7ac-ea8a72376fdf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2045_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 895 875 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-09-2045_treatment6 Etoposide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 00384dae-a28f-47e3-a395-36bdecd58af0 '-- yes '-- '-- Chemotherapy +TCGA-OV 3768d34f-1527-40db-b116-cd80cee5ec3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2045 50 false '-- '-- '-- '-- -18285 1069 6ca6b1db-10fc-590d-a441-127763862ffa '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2045_demographic Dead '-- '-- '-- '-- 18285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0ffcd742-a709-52d5-b7ac-ea8a72376fdf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2045_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 239 121 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2045_treatment8 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- 07c51cb8-37a0-48c8-9324-57207fde0293 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3768d34f-1527-40db-b116-cd80cee5ec3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2045 50 false '-- '-- '-- '-- -18285 1069 6ca6b1db-10fc-590d-a441-127763862ffa '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2045_demographic Dead '-- '-- '-- '-- 18285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0ffcd742-a709-52d5-b7ac-ea8a72376fdf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2045_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 11 11 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2045_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- 1b2c6cef-ba81-4958-938d-225000f554be Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3768d34f-1527-40db-b116-cd80cee5ec3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2045 50 false '-- '-- '-- '-- -18285 1069 6ca6b1db-10fc-590d-a441-127763862ffa '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2045_demographic Dead '-- '-- '-- '-- 18285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0ffcd742-a709-52d5-b7ac-ea8a72376fdf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2045_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 808 678 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2045_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- 70 '-- mg/m2 '-- '-- '-- '-- 35aab97a-27d7-48df-a26e-68963cecaebb Not Reported yes '-- '-- Chemotherapy +TCGA-OV 3768d34f-1527-40db-b116-cd80cee5ec3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2045 50 false '-- '-- '-- '-- -18285 1069 6ca6b1db-10fc-590d-a441-127763862ffa '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2045_demographic Dead '-- '-- '-- '-- 18285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0ffcd742-a709-52d5-b7ac-ea8a72376fdf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2045_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 11 11 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2045_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 810 '-- mg '-- '-- '-- '-- 3fddf00d-d655-4ee4-b10a-0252399d9e26 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3768d34f-1527-40db-b116-cd80cee5ec3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2045 50 false '-- '-- '-- '-- -18285 1069 6ca6b1db-10fc-590d-a441-127763862ffa '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2045_demographic Dead '-- '-- '-- '-- 18285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0ffcd742-a709-52d5-b7ac-ea8a72376fdf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2045_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 939 933 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2045_treatment9 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1600 '-- mg '-- '-- '-- '-- 49e9ebeb-2801-4180-a82a-7c71790182ca '-- yes '-- '-- Chemotherapy +TCGA-OV 3768d34f-1527-40db-b116-cd80cee5ec3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2045 50 false '-- '-- '-- '-- -18285 1069 6ca6b1db-10fc-590d-a441-127763862ffa '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2045_demographic Dead '-- '-- '-- '-- 18285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0ffcd742-a709-52d5-b7ac-ea8a72376fdf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2045_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 808 678 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2045_treatment10 Topotecan '-- '-- '-- '-- '-- '-- '-- 1 '-- mg/m2 '-- '-- '-- '-- 7d4be807-5188-482b-b262-cb1f3829207c Not Reported yes '-- '-- Chemotherapy +TCGA-OV 3768d34f-1527-40db-b116-cd80cee5ec3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2045 50 false '-- '-- '-- '-- -18285 1069 6ca6b1db-10fc-590d-a441-127763862ffa '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2045_demographic Dead '-- '-- '-- '-- 18285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0ffcd742-a709-52d5-b7ac-ea8a72376fdf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2045_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2045_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c2b741f0-9882-4483-b1ea-6742c0846fd4 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 3768d34f-1527-40db-b116-cd80cee5ec3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2045 50 false '-- '-- '-- '-- -18285 1069 6ca6b1db-10fc-590d-a441-127763862ffa '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2045_demographic Dead '-- '-- '-- '-- 18285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0ffcd742-a709-52d5-b7ac-ea8a72376fdf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2045_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 939 933 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2045_treatment11 Carboplatin '-- '-- '-- '-- '-- '-- '-- 560 '-- mg '-- '-- '-- '-- c7a499ad-5696-4fd4-80fb-5e3509451f5a '-- yes '-- '-- Chemotherapy +TCGA-OV 3768d34f-1527-40db-b116-cd80cee5ec3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2045 50 false '-- '-- '-- '-- -18285 1069 6ca6b1db-10fc-590d-a441-127763862ffa '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2045_demographic Dead '-- '-- '-- '-- 18285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0ffcd742-a709-52d5-b7ac-ea8a72376fdf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2045_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 94 64 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2045_treatment4 Cisplatin '-- '-- '-- '-- '-- '-- '-- 50 '-- mg/m2 '-- '-- '-- '-- d6c5532c-b73c-4446-99aa-9b24d9c6ba22 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3768d34f-1527-40db-b116-cd80cee5ec3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2045 50 false '-- '-- '-- '-- -18285 1069 6ca6b1db-10fc-590d-a441-127763862ffa '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2045_demographic Dead '-- '-- '-- '-- 18285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0ffcd742-a709-52d5-b7ac-ea8a72376fdf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2045_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 94 64 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2045_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 100 '-- mg/m2 '-- '-- '-- '-- e31e9778-3847-42eb-a80b-d9e469c14dea Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3768d34f-1527-40db-b116-cd80cee5ec3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2045 50 false '-- '-- '-- '-- -18285 1069 6ca6b1db-10fc-590d-a441-127763862ffa '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2045_demographic Dead '-- '-- '-- '-- 18285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0ffcd742-a709-52d5-b7ac-ea8a72376fdf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2045_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 239 121 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2045_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 50 '-- mg/m2 '-- '-- '-- '-- fbf4c9d9-7fcc-5779-8624-88535dfac6a3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3768d34f-1527-40db-b116-cd80cee5ec3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2045 50 false '-- '-- '-- '-- -18285 1069 6ca6b1db-10fc-590d-a441-127763862ffa '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2045_demographic Dead '-- '-- '-- '-- 18916 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 631 '-- '-- '-- 16c4841d-ee31-4ee8-b7be-07c59d221633 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-2045_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-2045_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2045_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9ce95555-23bb-4f3f-b044-c5cb8462ed38 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 3768d34f-1527-40db-b116-cd80cee5ec3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2045 50 false '-- '-- '-- '-- -18285 1069 6ca6b1db-10fc-590d-a441-127763862ffa '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2045_demographic Dead '-- '-- '-- '-- 18916 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 631 '-- '-- '-- 16c4841d-ee31-4ee8-b7be-07c59d221633 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-2045_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-2045_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2045_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e836a430-97ed-4f2e-bcab-14bc1b90d409 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 378f7ea2-86b4-4072-80b8-e12d67193106 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0923 74 false '-- '-- '-- '-- -27081 '-- b8d6ce63-c7cb-5f82-a118-f49f9fc7cb75 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0923_demographic Alive '-- '-- '-- '-- 27081 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 47744210-bad0-50d1-a104-be4181e7ed85 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0923_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 151 39 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0923_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- 0df3a888-7ae2-4c44-9297-eb7e07254fbc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 378f7ea2-86b4-4072-80b8-e12d67193106 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0923 74 false '-- '-- '-- '-- -27081 '-- b8d6ce63-c7cb-5f82-a118-f49f9fc7cb75 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0923_demographic Alive '-- '-- '-- '-- 27081 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 47744210-bad0-50d1-a104-be4181e7ed85 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0923_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 151 39 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0923_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- 4c9c8bc1-8450-5812-85a2-9263e7d23512 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 378f7ea2-86b4-4072-80b8-e12d67193106 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0923 74 false '-- '-- '-- '-- -27081 '-- b8d6ce63-c7cb-5f82-a118-f49f9fc7cb75 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0923_demographic Alive '-- '-- '-- '-- 27081 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 47744210-bad0-50d1-a104-be4181e7ed85 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0923_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0923_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 78666a7c-f6aa-4601-8f08-2ab035e611a6 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 378f7ea2-86b4-4072-80b8-e12d67193106 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0923 74 false '-- '-- '-- '-- -27081 '-- b8d6ce63-c7cb-5f82-a118-f49f9fc7cb75 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0923_demographic Alive '-- '-- '-- '-- 27081 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 47744210-bad0-50d1-a104-be4181e7ed85 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0923_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 151 39 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0923_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- 9dbbd0d7-4336-4f54-b61c-4d34c1de458c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 378f7ea2-86b4-4072-80b8-e12d67193106 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0923 74 false '-- '-- '-- '-- -27081 '-- b8d6ce63-c7cb-5f82-a118-f49f9fc7cb75 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0923_demographic Alive '-- '-- '-- '-- 28800 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 1719 '-- '-- '-- f29a4b56-64c7-45e8-87e7-147643f6e591 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0923_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0923_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 384170fc-e8be-426a-a54e-bf1ca61f2986 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1431 67 false '-- '-- '-- '-- -24758 567 60cbb98e-688e-507e-8f47-5429ab9d40b4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1431_demographic Dead '-- '-- '-- '-- 24758 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4ea91113-9bc3-52d6-92be-98286edfdb2e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1431_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1431_treatment4 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 414ba74f-851b-4655-9ba4-772aefb4fc88 '-- yes '-- '-- Chemotherapy +TCGA-OV 384170fc-e8be-426a-a54e-bf1ca61f2986 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1431 67 false '-- '-- '-- '-- -24758 567 60cbb98e-688e-507e-8f47-5429ab9d40b4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1431_demographic Dead '-- '-- '-- '-- 24758 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4ea91113-9bc3-52d6-92be-98286edfdb2e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1431_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 147 42 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1431_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 59c0259d-6e2a-5736-ace6-f9f0cb199276 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 384170fc-e8be-426a-a54e-bf1ca61f2986 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1431 67 false '-- '-- '-- '-- -24758 567 60cbb98e-688e-507e-8f47-5429ab9d40b4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1431_demographic Dead '-- '-- '-- '-- 24758 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4ea91113-9bc3-52d6-92be-98286edfdb2e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1431_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1431_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5ac8bf4d-5099-4ba1-b24b-67d17b8069cc Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 384170fc-e8be-426a-a54e-bf1ca61f2986 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1431 67 false '-- '-- '-- '-- -24758 567 60cbb98e-688e-507e-8f47-5429ab9d40b4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1431_demographic Dead '-- '-- '-- '-- 24758 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4ea91113-9bc3-52d6-92be-98286edfdb2e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1431_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 147 42 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1431_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cc78ac0f-bd88-48b9-8aba-62eecb17f0ae Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 384170fc-e8be-426a-a54e-bf1ca61f2986 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1431 67 false '-- '-- '-- '-- -24758 567 60cbb98e-688e-507e-8f47-5429ab9d40b4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1431_demographic Dead '-- '-- '-- '-- 24758 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4ea91113-9bc3-52d6-92be-98286edfdb2e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1431_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 329 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1431_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d1837a45-20b1-4c9b-86ef-e6ce13004e00 '-- yes '-- '-- Chemotherapy +TCGA-OV 384170fc-e8be-426a-a54e-bf1ca61f2986 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1431 67 false '-- '-- '-- '-- -24758 567 60cbb98e-688e-507e-8f47-5429ab9d40b4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1431_demographic Dead '-- '-- '-- '-- 24758 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4ea91113-9bc3-52d6-92be-98286edfdb2e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1431_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 308 262 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1431_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fad950d5-82f9-4283-9f91-44c40036d29e '-- yes '-- '-- Chemotherapy +TCGA-OV 384170fc-e8be-426a-a54e-bf1ca61f2986 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1431 67 false '-- '-- '-- '-- -24758 567 60cbb98e-688e-507e-8f47-5429ab9d40b4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1431_demographic Dead '-- '-- '-- '-- 24957 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 199 '-- '-- '-- f32f5f06-3dc3-4068-9814-8f1e974080e9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1431_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1431_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1431_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3bc9138c-7764-4494-867a-4fa6220f87ec '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 384170fc-e8be-426a-a54e-bf1ca61f2986 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1431 67 false '-- '-- '-- '-- -24758 567 60cbb98e-688e-507e-8f47-5429ab9d40b4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1431_demographic Dead '-- '-- '-- '-- 24957 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 199 '-- '-- '-- f32f5f06-3dc3-4068-9814-8f1e974080e9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1431_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1431_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1431_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bc83be55-d07f-40ef-b077-181c937d9dc8 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 390eed6b-50af-48a9-9fd6-3a68a2bbb7f9 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0800 52 false '-- '-- '-- '-- -19087 '-- 5f1fb8da-be94-5c96-95df-d92366f4f2cd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0800_demographic Alive '-- '-- '-- '-- 20483 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 1396 '-- '-- '-- 6fd200ed-0824-4ad4-9ab0-3a8f25da1069 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0800_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0800_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 390eed6b-50af-48a9-9fd6-3a68a2bbb7f9 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0800 52 false '-- '-- '-- '-- -19087 '-- 5f1fb8da-be94-5c96-95df-d92366f4f2cd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0800_demographic Alive '-- '-- '-- '-- 19087 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 876d6193-704f-5a99-a4cc-eff9b4e4f2d5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0800_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 142 30 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0800_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4e4aa7c2-4f66-4465-9565-dc0d9dace86b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 390eed6b-50af-48a9-9fd6-3a68a2bbb7f9 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0800 52 false '-- '-- '-- '-- -19087 '-- 5f1fb8da-be94-5c96-95df-d92366f4f2cd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0800_demographic Alive '-- '-- '-- '-- 19087 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 876d6193-704f-5a99-a4cc-eff9b4e4f2d5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0800_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0800_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 900edc18-b269-41b8-ad9c-9e59c5d6048e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 390eed6b-50af-48a9-9fd6-3a68a2bbb7f9 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0800 52 false '-- '-- '-- '-- -19087 '-- 5f1fb8da-be94-5c96-95df-d92366f4f2cd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0800_demographic Alive '-- '-- '-- '-- 19087 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 876d6193-704f-5a99-a4cc-eff9b4e4f2d5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0800_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 142 30 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0800_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 97066293-e221-5df0-9097-d6eb462e5791 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 390eed6b-50af-48a9-9fd6-3a68a2bbb7f9 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0800 52 false '-- '-- '-- '-- -19087 '-- 5f1fb8da-be94-5c96-95df-d92366f4f2cd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0800_demographic Alive '-- '-- '-- '-- 19087 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 876d6193-704f-5a99-a4cc-eff9b4e4f2d5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0800_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 142 30 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0800_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fe7d2504-4f2d-42f0-b4df-fe230dfe1c31 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3ac45a71-c463-4f0f-b030-58c475a34418 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2008 40 false '-- '-- '-- '-- -14791 '-- 32601890-a62f-5eac-821d-10d86af7637f '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-61-2008_demographic Alive '-- '-- '-- '-- 14791 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4233e6db-8d18-5461-b504-3aa62d11e73f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2008_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 979 861 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2008_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1260 '-- mg '-- '-- '-- '-- 250be9cb-0748-4ce8-9b12-4bde630732da '-- yes '-- '-- Chemotherapy +TCGA-OV 3ac45a71-c463-4f0f-b030-58c475a34418 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2008 40 false '-- '-- '-- '-- -14791 '-- 32601890-a62f-5eac-821d-10d86af7637f '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-61-2008_demographic Alive '-- '-- '-- '-- 14791 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4233e6db-8d18-5461-b504-3aa62d11e73f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2008_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 149 29 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2008_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 690 '-- mg '-- '-- '-- '-- 272bb86f-8af0-4e53-b5bf-85c34c32cdfa Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3ac45a71-c463-4f0f-b030-58c475a34418 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2008 40 false '-- '-- '-- '-- -14791 '-- 32601890-a62f-5eac-821d-10d86af7637f '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-61-2008_demographic Alive '-- '-- '-- '-- 14791 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4233e6db-8d18-5461-b504-3aa62d11e73f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2008_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 149 29 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2008_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3600 '-- mg '-- '-- '-- '-- 58c61cf2-ff51-4029-9532-35c2f6340c86 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3ac45a71-c463-4f0f-b030-58c475a34418 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2008 40 false '-- '-- '-- '-- -14791 '-- 32601890-a62f-5eac-821d-10d86af7637f '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-61-2008_demographic Alive '-- '-- '-- '-- 14791 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4233e6db-8d18-5461-b504-3aa62d11e73f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2008_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 979 861 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-61-2008_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 372 '-- mg '-- '-- '-- '-- 8e378e12-53e5-58b2-b236-5632aa905b06 '-- yes '-- '-- Chemotherapy +TCGA-OV 3ac45a71-c463-4f0f-b030-58c475a34418 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2008 40 false '-- '-- '-- '-- -14791 '-- 32601890-a62f-5eac-821d-10d86af7637f '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-61-2008_demographic Alive '-- '-- '-- '-- 14791 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4233e6db-8d18-5461-b504-3aa62d11e73f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2008_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 979 861 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-2008_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 702 '-- mg '-- '-- '-- '-- be98b2ae-dfc0-4117-8634-22a7a747aa22 '-- yes '-- '-- Chemotherapy +TCGA-OV 3ac45a71-c463-4f0f-b030-58c475a34418 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2008 40 false '-- '-- '-- '-- -14791 '-- 32601890-a62f-5eac-821d-10d86af7637f '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-61-2008_demographic Alive '-- '-- '-- '-- 14791 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4233e6db-8d18-5461-b504-3aa62d11e73f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2008_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2008_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dfe28ad7-c53d-4c03-bc34-9e1c1235e2f3 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 3ac45a71-c463-4f0f-b030-58c475a34418 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2008 40 false '-- '-- '-- '-- -14791 '-- 32601890-a62f-5eac-821d-10d86af7637f '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-61-2008_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4f470568-65cb-4b63-8909-e898849fac6a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2008_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2008_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2008_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 307862de-8876-4961-be58-9aa1f342e590 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 3ac45a71-c463-4f0f-b030-58c475a34418 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2008 40 false '-- '-- '-- '-- -14791 '-- 32601890-a62f-5eac-821d-10d86af7637f '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-61-2008_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4f470568-65cb-4b63-8909-e898849fac6a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2008_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2008_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 828 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2008_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 704b0356-9693-4249-8b41-eae133374222 '-- yes '-- '-- Surgery, NOS +TCGA-OV 3ac45a71-c463-4f0f-b030-58c475a34418 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2008 40 false '-- '-- '-- '-- -14791 '-- 32601890-a62f-5eac-821d-10d86af7637f '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-61-2008_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4f470568-65cb-4b63-8909-e898849fac6a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2008_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2008_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2008_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ede07552-e630-4733-8220-4c7c76f2c0e6 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 3ac45a71-c463-4f0f-b030-58c475a34418 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2008 40 false '-- '-- '-- '-- -14791 '-- 32601890-a62f-5eac-821d-10d86af7637f '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-61-2008_demographic Alive '-- '-- '-- '-- 15609 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 818 '-- '-- '-- a3073331-752e-4629-8585-886ba6f23e1f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2008_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2008_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2008_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2e2e3e78-2ede-4a24-9313-01f9088b3ad1 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 3ac45a71-c463-4f0f-b030-58c475a34418 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2008 40 false '-- '-- '-- '-- -14791 '-- 32601890-a62f-5eac-821d-10d86af7637f '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-61-2008_demographic Alive '-- '-- '-- '-- 15609 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 818 '-- '-- '-- a3073331-752e-4629-8585-886ba6f23e1f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2008_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2008_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2008_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5e091cc7-8da3-45c1-ad0d-3e3ad431b178 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 22474 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1042 '-- '-- '-- 4260a528-be39-47a7-8ba7-50172f482ceb false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1549_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1549_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1549_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1c2e0a4e-5586-4c53-bf4a-1e1645a6aeb4 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 22474 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1042 '-- '-- '-- 4260a528-be39-47a7-8ba7-50172f482ceb false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1549_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1549_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1549_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d62ef05a-9b24-4811-a209-eb38bed371fb '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8dea0054-c483-4b17-bd12-8a56e90c6a84 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1549_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1549_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1154 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1549_treatment20 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0f43e596-e767-447d-982b-2936551f159a '-- yes '-- '-- Surgery, NOS +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8dea0054-c483-4b17-bd12-8a56e90c6a84 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1549_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1549_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1549_treatment18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3abb3992-d703-45c7-886a-f40fa66fa8dc '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8dea0054-c483-4b17-bd12-8a56e90c6a84 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1549_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1549_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1549_treatment19 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 43968a37-4c90-45d0-a455-50ac1f52001c '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 21432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f36f2c46-02cd-5d38-a399-09fd46cbb94d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1549_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1549_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 031c8ddf-12ce-4c58-87f2-fd306f41147f '-- yes '-- '-- Chemotherapy +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 21432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f36f2c46-02cd-5d38-a399-09fd46cbb94d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1549_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1549_treatment2 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 08a04248-3951-4cb7-aa5e-f682192216cd '-- yes '-- '-- Chemotherapy +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 21432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f36f2c46-02cd-5d38-a399-09fd46cbb94d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1549_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1549_treatment8 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0c73d25a-f82a-45ad-93a1-d4e7cd37d758 '-- yes '-- '-- Chemotherapy +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 21432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f36f2c46-02cd-5d38-a399-09fd46cbb94d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1549_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1549_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2a4136fa-2fd1-4a08-bf13-d6e790284cf4 '-- yes '-- '-- Chemotherapy +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 21432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f36f2c46-02cd-5d38-a399-09fd46cbb94d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1549_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- 1518 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1549_treatment10 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 342487bd-18ae-4221-80d4-30ce5b227fce '-- yes '-- '-- Chemotherapy +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 21432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f36f2c46-02cd-5d38-a399-09fd46cbb94d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1549_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1549_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 473999fe-f843-4ec1-8b1b-45a4cedb3d94 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 21432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f36f2c46-02cd-5d38-a399-09fd46cbb94d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1549_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1549_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 537014ac-188c-42ec-b054-06b27a1ce5cd Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 21432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f36f2c46-02cd-5d38-a399-09fd46cbb94d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1549_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1549_treatment11 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5e07770a-70f1-4738-853c-e3e37bcbe6b8 '-- yes '-- '-- Chemotherapy +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 21432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f36f2c46-02cd-5d38-a399-09fd46cbb94d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1549_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-1549_treatment13 Capecitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aa6abe6f-70f6-42cd-b191-b4f22f5153f4 '-- yes '-- '-- Chemotherapy +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 21432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f36f2c46-02cd-5d38-a399-09fd46cbb94d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1549_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1549_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ad5ea13e-3382-5f99-a511-54945c4d6605 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 21432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f36f2c46-02cd-5d38-a399-09fd46cbb94d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1549_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1549_treatment6 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b0fc5f1a-bfe9-4b47-833e-d32fba3f1e42 '-- yes '-- '-- Chemotherapy +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 21432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f36f2c46-02cd-5d38-a399-09fd46cbb94d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1549_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1549_treatment14 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c9f4cf12-efa9-4219-b709-774822df3b2f '-- yes '-- '-- Chemotherapy +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 21432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f36f2c46-02cd-5d38-a399-09fd46cbb94d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1549_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1549_treatment3 Etoposide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e665dc46-e095-4bf7-a279-38c307ac08dc '-- yes '-- '-- Chemotherapy +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 21432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f36f2c46-02cd-5d38-a399-09fd46cbb94d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1549_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1549_treatment12 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- edec7ad3-9664-443b-9c45-9dc6e6034677 '-- yes '-- '-- Chemotherapy +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 21432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f36f2c46-02cd-5d38-a399-09fd46cbb94d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1549_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1549_treatment9 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- edf31f48-0253-48a3-bcc5-7bc43bb92cdc '-- yes '-- '-- Chemotherapy +TCGA-OV 3bc8a74f-49bd-46b6-a3a4-68ca838e83c6 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2401 64 false '-- '-- '-- '-- -23711 90 61b69ecd-1137-5c6b-8e08-e9acae100eb2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2401_demographic Dead '-- '-- '-- '-- 23711 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 012f225f-1cb8-5962-a806-b05cca31ffd9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2401_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2401_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d51b968c-33f8-5c0c-a1e2-7f32f53f231f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 3e8a51bf-7e1f-4eab-af83-3c60d04db1bf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0913 53 false '-- '-- '-- '-- -19573 '-- 7566af4a-1027-5501-b6dd-0c2b437a7790 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0913_demographic Alive '-- '-- '-- '-- 20444 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 871 '-- '-- '-- 2614be00-e0af-4ade-8eea-b9f54a1490d8 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0913_diagnosis4 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0913_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 3e8a51bf-7e1f-4eab-af83-3c60d04db1bf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0913 53 false '-- '-- '-- '-- -19573 '-- 7566af4a-1027-5501-b6dd-0c2b437a7790 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0913_demographic Alive '-- '-- '-- '-- 19573 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2be71456-45a9-5969-9734-1a2d672374ed true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0913_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 161 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0913_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- 1e298880-0a07-516f-990d-749cd230ff0d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3e8a51bf-7e1f-4eab-af83-3c60d04db1bf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0913 53 false '-- '-- '-- '-- -19573 '-- 7566af4a-1027-5501-b6dd-0c2b437a7790 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0913_demographic Alive '-- '-- '-- '-- 19573 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2be71456-45a9-5969-9734-1a2d672374ed true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0913_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0913_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4a9451ac-da4e-459f-b0fc-f2a47aba2120 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 3e8a51bf-7e1f-4eab-af83-3c60d04db1bf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0913 53 false '-- '-- '-- '-- -19573 '-- 7566af4a-1027-5501-b6dd-0c2b437a7790 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0913_demographic Alive '-- '-- '-- '-- 19573 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2be71456-45a9-5969-9734-1a2d672374ed true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0913_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 161 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0913_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- 7fb6a174-7d0d-453f-8498-af0d0bd60e25 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3e8a51bf-7e1f-4eab-af83-3c60d04db1bf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0913 53 false '-- '-- '-- '-- -19573 '-- 7566af4a-1027-5501-b6dd-0c2b437a7790 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0913_demographic Alive '-- '-- '-- '-- 19573 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2be71456-45a9-5969-9734-1a2d672374ed true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0913_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 161 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0913_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- d13f9b5e-6778-46c9-9d24-ae142efdd145 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3e8a51bf-7e1f-4eab-af83-3c60d04db1bf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0913 53 false '-- '-- '-- '-- -19573 '-- 7566af4a-1027-5501-b6dd-0c2b437a7790 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0913_demographic Alive '-- '-- '-- '-- 19573 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2be71456-45a9-5969-9734-1a2d672374ed true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0913_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 1071 962 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0913_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- d5c7052e-0304-4696-8aa1-0e6f76b3cdcf '-- yes '-- '-- Chemotherapy +TCGA-OV 3e8a51bf-7e1f-4eab-af83-3c60d04db1bf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0913 53 false '-- '-- '-- '-- -19573 '-- 7566af4a-1027-5501-b6dd-0c2b437a7790 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0913_demographic Alive '-- '-- '-- '-- 19573 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2be71456-45a9-5969-9734-1a2d672374ed true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0913_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 1071 962 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- 175.0 mg/m2 '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0913_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- db218fa6-a3e8-4a93-b1e6-a737888d35c4 '-- yes '-- '-- Chemotherapy +TCGA-OV 3e8a51bf-7e1f-4eab-af83-3c60d04db1bf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0913 53 false '-- '-- '-- '-- -19573 '-- 7566af4a-1027-5501-b6dd-0c2b437a7790 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0913_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5e2a17e7-64e9-4ea6-88d2-3cfdbf0d159b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0913_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0913_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0913_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1211026f-8ab2-4fd2-a762-11e210788bad '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 3e8a51bf-7e1f-4eab-af83-3c60d04db1bf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0913 53 false '-- '-- '-- '-- -19573 '-- 7566af4a-1027-5501-b6dd-0c2b437a7790 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0913_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5e2a17e7-64e9-4ea6-88d2-3cfdbf0d159b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0913_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0913_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0913_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 48bddafc-8fb4-4739-ace1-e9462641960e '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 3e8a51bf-7e1f-4eab-af83-3c60d04db1bf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0913 53 false '-- '-- '-- '-- -19573 '-- 7566af4a-1027-5501-b6dd-0c2b437a7790 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0913_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5e2a17e7-64e9-4ea6-88d2-3cfdbf0d159b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0913_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0913_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 912 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0913_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f93d283c-a816-4930-857e-2b40e1137999 '-- yes '-- '-- Surgery, NOS +TCGA-OV 3e8a51bf-7e1f-4eab-af83-3c60d04db1bf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0913 53 false '-- '-- '-- '-- -19573 '-- 7566af4a-1027-5501-b6dd-0c2b437a7790 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0913_demographic Alive '-- '-- '-- '-- 20444 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 871 '-- '-- '-- e9774f28-71b2-40ed-8c77-f7c7ea7ee9de false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0913_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0913_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0913_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 46924ae0-e65e-4c36-9c59-95deedf2235e '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 3e8a51bf-7e1f-4eab-af83-3c60d04db1bf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0913 53 false '-- '-- '-- '-- -19573 '-- 7566af4a-1027-5501-b6dd-0c2b437a7790 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0913_demographic Alive '-- '-- '-- '-- 20444 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 871 '-- '-- '-- e9774f28-71b2-40ed-8c77-f7c7ea7ee9de false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0913_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0913_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0913_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4ea2ee65-721a-45a7-9737-fc4d0c050ef2 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 3f917550-89a6-404b-94df-938c99121411 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1628 67 false '-- '-- '-- '-- -24488 627 6e2d232b-ab2e-50d6-bfae-ee839c5600ad '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1628_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 32e96cae-7bf2-487e-97b5-dd2bb49ea751 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1628_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1628_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1628_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6a082f2a-692d-41aa-8285-66e9aab926c9 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 3f917550-89a6-404b-94df-938c99121411 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1628 67 false '-- '-- '-- '-- -24488 627 6e2d232b-ab2e-50d6-bfae-ee839c5600ad '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1628_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 32e96cae-7bf2-487e-97b5-dd2bb49ea751 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1628_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1628_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1628_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b708d9ba-a812-4b35-a46e-30f0aaafbb1a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 3f917550-89a6-404b-94df-938c99121411 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1628 67 false '-- '-- '-- '-- -24488 627 6e2d232b-ab2e-50d6-bfae-ee839c5600ad '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1628_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 32e96cae-7bf2-487e-97b5-dd2bb49ea751 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1628_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1628_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 483 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1628_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b82985d8-ddbc-423c-994c-7a8b7a240476 '-- yes '-- '-- Surgery, NOS +TCGA-OV 3f917550-89a6-404b-94df-938c99121411 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1628 67 false '-- '-- '-- '-- -24488 627 6e2d232b-ab2e-50d6-bfae-ee839c5600ad '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1628_demographic Dead '-- '-- '-- '-- 24775 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 287 '-- '-- '-- 5ba19c31-3f02-41f0-a38e-f1311ebf0e0c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1628_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1628_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1628_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3d6dd47e-4702-44e5-a51d-552ef8a295f3 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 3f917550-89a6-404b-94df-938c99121411 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1628 67 false '-- '-- '-- '-- -24488 627 6e2d232b-ab2e-50d6-bfae-ee839c5600ad '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1628_demographic Dead '-- '-- '-- '-- 24775 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 287 '-- '-- '-- 5ba19c31-3f02-41f0-a38e-f1311ebf0e0c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1628_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1628_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1628_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8c025c21-0227-46a8-93e7-3fbbd903f0bd '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 3f917550-89a6-404b-94df-938c99121411 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1628 67 false '-- '-- '-- '-- -24488 627 6e2d232b-ab2e-50d6-bfae-ee839c5600ad '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1628_demographic Dead '-- '-- '-- '-- 24488 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8a7f1425-a395-5f52-8f54-d892a3e2f7e7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1628_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 182 35 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1628_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1ab570b3-3dbc-4057-bcf2-75fcab876460 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3f917550-89a6-404b-94df-938c99121411 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1628 67 false '-- '-- '-- '-- -24488 627 6e2d232b-ab2e-50d6-bfae-ee839c5600ad '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1628_demographic Dead '-- '-- '-- '-- 24488 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8a7f1425-a395-5f52-8f54-d892a3e2f7e7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1628_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 182 35 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1628_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 23777ecf-03ee-5cd8-a454-ff354ab7ddc9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3f917550-89a6-404b-94df-938c99121411 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1628 67 false '-- '-- '-- '-- -24488 627 6e2d232b-ab2e-50d6-bfae-ee839c5600ad '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1628_demographic Dead '-- '-- '-- '-- 24488 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8a7f1425-a395-5f52-8f54-d892a3e2f7e7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1628_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 350 299 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1628_treatment2 Gemcitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5405e41b-4699-457a-b2a8-26f215d9b05f '-- yes '-- '-- Chemotherapy +TCGA-OV 3f917550-89a6-404b-94df-938c99121411 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1628 67 false '-- '-- '-- '-- -24488 627 6e2d232b-ab2e-50d6-bfae-ee839c5600ad '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1628_demographic Dead '-- '-- '-- '-- 24488 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8a7f1425-a395-5f52-8f54-d892a3e2f7e7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1628_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1628_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- eff0751e-9ef6-460b-8bf2-7f86839c2b8c Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 3fc8f799-5bd3-4f48-baf0-c458ce86ab7e Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1413 51 false '-- '-- '-- '-- -18846 '-- 74a17d97-ff76-50a8-858a-cc082f7219c2 '-- not reported female '-- '-- '-- '-- white TCGA-24-1413_demographic Alive '-- '-- '-- '-- 18846 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7ad436d5-5f18-51e6-a99d-d533a2c7e2cc true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1413_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1413_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d0dc6dab-a6b2-4a19-af37-071410cbd5fa Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 3fc8f799-5bd3-4f48-baf0-c458ce86ab7e Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1413 51 false '-- '-- '-- '-- -18846 '-- 74a17d97-ff76-50a8-858a-cc082f7219c2 '-- not reported female '-- '-- '-- '-- white TCGA-24-1413_demographic Alive '-- '-- '-- '-- 18846 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7ad436d5-5f18-51e6-a99d-d533a2c7e2cc true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1413_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 145 34 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1413_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1340 '-- mg '-- '-- '-- '-- d3c5b21a-960c-5ddb-a798-7eb73176d614 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3fc8f799-5bd3-4f48-baf0-c458ce86ab7e Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1413 51 false '-- '-- '-- '-- -18846 '-- 74a17d97-ff76-50a8-858a-cc082f7219c2 '-- not reported female '-- '-- '-- '-- white TCGA-24-1413_demographic Alive '-- '-- '-- '-- 18846 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7ad436d5-5f18-51e6-a99d-d533a2c7e2cc true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1413_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 145 34 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1413_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3864 '-- mg '-- '-- '-- '-- d60a093e-acbf-4ec8-a078-af9530c887be Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 40635bf3-d8ba-4833-b623-547e55e5d07e Informed Consent 1802 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2425 60 false '-- '-- '-- '-- -22089 '-- 90915e14-fbfa-56e5-8fcd-04df28f44be4 '-- not reported female '-- '-- '-- '-- white TCGA-29-2425_demographic Alive '-- '-- '-- '-- 22089 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0d0523a7-c86c-5ce8-a0ab-2cc6094af039 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2425_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 202 10 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-2425_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 0f9840d1-0c0d-47f0-b453-3f7b69096726 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 40635bf3-d8ba-4833-b623-547e55e5d07e Informed Consent 1802 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2425 60 false '-- '-- '-- '-- -22089 '-- 90915e14-fbfa-56e5-8fcd-04df28f44be4 '-- not reported female '-- '-- '-- '-- white TCGA-29-2425_demographic Alive '-- '-- '-- '-- 22089 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0d0523a7-c86c-5ce8-a0ab-2cc6094af039 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2425_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 97 10 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-2425_treatment3 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 1000 '-- mg/m2 '-- '-- '-- '-- 3633f109-d50b-4166-988f-e5aed2104055 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 40635bf3-d8ba-4833-b623-547e55e5d07e Informed Consent 1802 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2425 60 false '-- '-- '-- '-- -22089 '-- 90915e14-fbfa-56e5-8fcd-04df28f44be4 '-- not reported female '-- '-- '-- '-- white TCGA-29-2425_demographic Alive '-- '-- '-- '-- 22089 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0d0523a7-c86c-5ce8-a0ab-2cc6094af039 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2425_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2425_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 68e6aad7-87f3-4c08-ae44-ef4276129042 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 40635bf3-d8ba-4833-b623-547e55e5d07e Informed Consent 1802 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2425 60 false '-- '-- '-- '-- -22089 '-- 90915e14-fbfa-56e5-8fcd-04df28f44be4 '-- not reported female '-- '-- '-- '-- white TCGA-29-2425_demographic Alive '-- '-- '-- '-- 22089 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0d0523a7-c86c-5ce8-a0ab-2cc6094af039 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2425_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1696 1584 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-2425_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- afe76cb3-785a-5ba4-b647-a3aa0f8b49fb '-- yes '-- '-- Chemotherapy +TCGA-OV 40635bf3-d8ba-4833-b623-547e55e5d07e Informed Consent 1802 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2425 60 false '-- '-- '-- '-- -22089 '-- 90915e14-fbfa-56e5-8fcd-04df28f44be4 '-- not reported female '-- '-- '-- '-- white TCGA-29-2425_demographic Alive '-- '-- '-- '-- 22089 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0d0523a7-c86c-5ce8-a0ab-2cc6094af039 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2425_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 202 119 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-2425_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- b4caaa99-c67b-4c1f-a574-a72d1b58c271 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 40635bf3-d8ba-4833-b623-547e55e5d07e Informed Consent 1802 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2425 60 false '-- '-- '-- '-- -22089 '-- 90915e14-fbfa-56e5-8fcd-04df28f44be4 '-- not reported female '-- '-- '-- '-- white TCGA-29-2425_demographic Alive '-- '-- '-- '-- 22089 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0d0523a7-c86c-5ce8-a0ab-2cc6094af039 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2425_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1696 1584 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2425_treatment4 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 15 '-- mg/m2 '-- '-- '-- '-- c041fe4b-360e-4dd6-88b1-d822774db67f '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 40635bf3-d8ba-4833-b623-547e55e5d07e Informed Consent 1802 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2425 60 false '-- '-- '-- '-- -22089 '-- 90915e14-fbfa-56e5-8fcd-04df28f44be4 '-- not reported female '-- '-- '-- '-- white TCGA-29-2425_demographic Alive '-- '-- '-- '-- 22089 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0d0523a7-c86c-5ce8-a0ab-2cc6094af039 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2425_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1696 1584 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-2425_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- f57e90a8-d355-4263-840d-19e5274db15b '-- yes '-- '-- Chemotherapy +TCGA-OV 40635bf3-d8ba-4833-b623-547e55e5d07e Informed Consent 1802 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2425 60 false '-- '-- '-- '-- -22089 '-- 90915e14-fbfa-56e5-8fcd-04df28f44be4 '-- not reported female '-- '-- '-- '-- white TCGA-29-2425_demographic Alive '-- '-- '-- '-- 23666 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 1577 '-- '-- '-- 3d06548a-698b-440f-b76b-e1ac9749440e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-2425_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-2425_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2425_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b0835873-6eed-4f1c-bc93-dbd325aa0567 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 40635bf3-d8ba-4833-b623-547e55e5d07e Informed Consent 1802 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2425 60 false '-- '-- '-- '-- -22089 '-- 90915e14-fbfa-56e5-8fcd-04df28f44be4 '-- not reported female '-- '-- '-- '-- white TCGA-29-2425_demographic Alive '-- '-- '-- '-- 23666 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 1577 '-- '-- '-- 3d06548a-698b-440f-b76b-e1ac9749440e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-2425_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-2425_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2425_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ef3a797f-51d9-4131-b749-76283c46d337 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 40635bf3-d8ba-4833-b623-547e55e5d07e Informed Consent 1802 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2425 60 false '-- '-- '-- '-- -22089 '-- 90915e14-fbfa-56e5-8fcd-04df28f44be4 '-- not reported female '-- '-- '-- '-- white TCGA-29-2425_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 552b785f-2291-44a3-9312-2940a1ce3781 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-2425_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-2425_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2425_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0a9fcbcb-1957-4395-bbc1-31d5e39a1635 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 40635bf3-d8ba-4833-b623-547e55e5d07e Informed Consent 1802 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2425 60 false '-- '-- '-- '-- -22089 '-- 90915e14-fbfa-56e5-8fcd-04df28f44be4 '-- not reported female '-- '-- '-- '-- white TCGA-29-2425_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 552b785f-2291-44a3-9312-2940a1ce3781 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-2425_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-2425_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1024 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2425_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 254b609f-f6cf-40fc-89d1-49d7c7df35b6 '-- yes '-- '-- Surgery, NOS +TCGA-OV 40635bf3-d8ba-4833-b623-547e55e5d07e Informed Consent 1802 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2425 60 false '-- '-- '-- '-- -22089 '-- 90915e14-fbfa-56e5-8fcd-04df28f44be4 '-- not reported female '-- '-- '-- '-- white TCGA-29-2425_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 552b785f-2291-44a3-9312-2940a1ce3781 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-2425_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-2425_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2425_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7ee5b947-b08d-4931-884f-d3b60a41d841 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 41178cbc-db73-4007-b5d8-febebf7f578d Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2081 49 false '-- '-- '-- '-- -18162 2342 dff24d73-a1fd-59fb-a913-7e99897a2a11 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2081_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 222ce34a-9038-42ea-ab8c-819ceb2c5ab8 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-2081_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-2081_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2081_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 07baba5d-3edf-4896-88a7-1b8ee0d20320 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 41178cbc-db73-4007-b5d8-febebf7f578d Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2081 49 false '-- '-- '-- '-- -18162 2342 dff24d73-a1fd-59fb-a913-7e99897a2a11 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2081_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 222ce34a-9038-42ea-ab8c-819ceb2c5ab8 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-2081_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-2081_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 250 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2081_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1200a710-9586-41bd-aa61-289cb3912a41 '-- yes '-- '-- Surgery, NOS +TCGA-OV 41178cbc-db73-4007-b5d8-febebf7f578d Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2081 49 false '-- '-- '-- '-- -18162 2342 dff24d73-a1fd-59fb-a913-7e99897a2a11 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2081_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 222ce34a-9038-42ea-ab8c-819ceb2c5ab8 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-2081_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-2081_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2081_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c81b9935-5a94-4fcc-a0e9-8ed80ea45c26 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 41178cbc-db73-4007-b5d8-febebf7f578d Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2081 49 false '-- '-- '-- '-- -18162 2342 dff24d73-a1fd-59fb-a913-7e99897a2a11 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2081_demographic Dead '-- '-- '-- '-- 18162 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- efeb03d8-43a5-5452-bb12-ad1e0ff9a541 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2081_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 173 16 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2081_treatment10 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4400 '-- mg '-- '-- '-- '-- 11a40866-4604-4819-8607-92de734aaef1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 41178cbc-db73-4007-b5d8-febebf7f578d Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2081 49 false '-- '-- '-- '-- -18162 2342 dff24d73-a1fd-59fb-a913-7e99897a2a11 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2081_demographic Dead '-- '-- '-- '-- 18162 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- efeb03d8-43a5-5452-bb12-ad1e0ff9a541 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2081_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 960 939 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2081_treatment8 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1400 '-- mg '-- '-- '-- '-- 123df940-bae5-469b-b12f-b7ecae3ad7c0 '-- yes '-- '-- Chemotherapy +TCGA-OV 41178cbc-db73-4007-b5d8-febebf7f578d Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2081 49 false '-- '-- '-- '-- -18162 2342 dff24d73-a1fd-59fb-a913-7e99897a2a11 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2081_demographic Dead '-- '-- '-- '-- 18162 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- efeb03d8-43a5-5452-bb12-ad1e0ff9a541 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2081_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 960 939 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2081_treatment12 Docetaxel '-- '-- '-- '-- '-- '-- '-- 290 '-- mg '-- '-- '-- '-- 35ce40b2-1852-456d-aaf9-58e5784391f6 '-- yes '-- '-- Chemotherapy +TCGA-OV 41178cbc-db73-4007-b5d8-febebf7f578d Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2081 49 false '-- '-- '-- '-- -18162 2342 dff24d73-a1fd-59fb-a913-7e99897a2a11 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2081_demographic Dead '-- '-- '-- '-- 18162 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- efeb03d8-43a5-5452-bb12-ad1e0ff9a541 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2081_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1948 1790 '-- '-- Recurrent Disease '-- '-- '-- '-- 11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2081_treatment2 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 13200 '-- mg '-- '-- '-- '-- 6a8e1bcf-cf50-4219-abb6-f11de4e878f2 '-- yes '-- '-- Chemotherapy +TCGA-OV 41178cbc-db73-4007-b5d8-febebf7f578d Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2081 49 false '-- '-- '-- '-- -18162 2342 dff24d73-a1fd-59fb-a913-7e99897a2a11 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2081_demographic Dead '-- '-- '-- '-- 18162 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- efeb03d8-43a5-5452-bb12-ad1e0ff9a541 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2081_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1154 988 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2081_treatment7 Cisplatin '-- '-- '-- '-- '-- '-- '-- 1020 '-- mg '-- '-- '-- '-- 709fe9e4-2463-409a-b2b5-a20dbf5b4512 '-- yes '-- '-- Chemotherapy +TCGA-OV 41178cbc-db73-4007-b5d8-febebf7f578d Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2081 49 false '-- '-- '-- '-- -18162 2342 dff24d73-a1fd-59fb-a913-7e99897a2a11 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2081_demographic Dead '-- '-- '-- '-- 18162 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- efeb03d8-43a5-5452-bb12-ad1e0ff9a541 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2081_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 418 331 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2081_treatment6 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 280 '-- mg '-- '-- '-- '-- 71e23f0b-63c5-4d95-9804-c90496c7734e '-- yes '-- '-- Chemotherapy +TCGA-OV 41178cbc-db73-4007-b5d8-febebf7f578d Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2081 49 false '-- '-- '-- '-- -18162 2342 dff24d73-a1fd-59fb-a913-7e99897a2a11 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2081_demographic Dead '-- '-- '-- '-- 18162 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- efeb03d8-43a5-5452-bb12-ad1e0ff9a541 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2081_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1948 1790 '-- '-- Recurrent Disease '-- '-- '-- '-- 11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2081_treatment4 Cisplatin '-- '-- '-- '-- '-- '-- '-- 660 '-- mg '-- '-- '-- '-- 982c2968-1a52-4581-8cd6-56d39731112d '-- yes '-- '-- Chemotherapy +TCGA-OV 41178cbc-db73-4007-b5d8-febebf7f578d Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2081 49 false '-- '-- '-- '-- -18162 2342 dff24d73-a1fd-59fb-a913-7e99897a2a11 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2081_demographic Dead '-- '-- '-- '-- 18162 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- efeb03d8-43a5-5452-bb12-ad1e0ff9a541 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2081_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 2173 2070 '-- '-- Recurrent Disease '-- '-- '-- '-- 11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-23-2081_treatment3 Motesanib Diphosphate '-- '-- '-- '-- '-- '-- '-- 1325 '-- mg '-- '-- '-- '-- 9ab4a57e-504f-425b-9faf-4c58a667321a '-- yes '-- '-- Chemotherapy +TCGA-OV 41178cbc-db73-4007-b5d8-febebf7f578d Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2081 49 false '-- '-- '-- '-- -18162 2342 dff24d73-a1fd-59fb-a913-7e99897a2a11 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2081_demographic Dead '-- '-- '-- '-- 18162 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- efeb03d8-43a5-5452-bb12-ad1e0ff9a541 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2081_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2081_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a779c9c5-743c-438e-840c-a2ae5e4ed344 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 41178cbc-db73-4007-b5d8-febebf7f578d Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2081 49 false '-- '-- '-- '-- -18162 2342 dff24d73-a1fd-59fb-a913-7e99897a2a11 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2081_demographic Dead '-- '-- '-- '-- 18162 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- efeb03d8-43a5-5452-bb12-ad1e0ff9a541 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2081_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1154 988 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2081_treatment9 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 20400 '-- mg '-- '-- '-- '-- b0abd8a7-c5bf-4ac0-9925-f1063de23a8e '-- yes '-- '-- Chemotherapy +TCGA-OV 41178cbc-db73-4007-b5d8-febebf7f578d Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2081 49 false '-- '-- '-- '-- -18162 2342 dff24d73-a1fd-59fb-a913-7e99897a2a11 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2081_demographic Dead '-- '-- '-- '-- 18162 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- efeb03d8-43a5-5452-bb12-ad1e0ff9a541 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2081_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 173 16 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2081_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2480 '-- mg '-- '-- '-- '-- c7eb96df-04a4-4fcb-bf89-02abbaa5e930 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 41178cbc-db73-4007-b5d8-febebf7f578d Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2081 49 false '-- '-- '-- '-- -18162 2342 dff24d73-a1fd-59fb-a913-7e99897a2a11 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2081_demographic Dead '-- '-- '-- '-- 18162 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- efeb03d8-43a5-5452-bb12-ad1e0ff9a541 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2081_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- Persistent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2081_treatment Bevacizumab '-- '-- '-- '-- '-- '-- '-- 1750 '-- mg '-- '-- '-- '-- cc127931-50ad-5ffb-bf29-fee0891a156f Not Reported yes '-- '-- Chemotherapy +TCGA-OV 41178cbc-db73-4007-b5d8-febebf7f578d Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2081 49 false '-- '-- '-- '-- -18162 2342 dff24d73-a1fd-59fb-a913-7e99897a2a11 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2081_demographic Dead '-- '-- '-- '-- 18162 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- efeb03d8-43a5-5452-bb12-ad1e0ff9a541 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2081_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- Persistent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2081_treatment11 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 300 '-- mg '-- '-- '-- '-- fe58be9f-c897-4cab-9705-56ca0de2cb34 Not Reported yes '-- '-- Chemotherapy +TCGA-OV 4160e048-f0b0-40f5-805b-e277a5893a3b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1464 70 false '-- '-- '-- '-- -25874 379 12069954-6818-59be-9f0a-bea245e7b149 '-- not reported female '-- '-- '-- '-- white TCGA-24-1464_demographic Dead '-- '-- '-- '-- 25874 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3092467a-bee4-5eb1-bd74-5efa87d5836e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- no No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1464_diagnosis '-- No Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 343 342 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1464_treatment4 Topotecan '-- '-- '-- '-- '-- '-- '-- 8 '-- mg '-- '-- '-- '-- 088cbc72-80b4-46da-b3b6-9440676b6861 '-- yes '-- '-- Chemotherapy +TCGA-OV 4160e048-f0b0-40f5-805b-e277a5893a3b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1464 70 false '-- '-- '-- '-- -25874 379 12069954-6818-59be-9f0a-bea245e7b149 '-- not reported female '-- '-- '-- '-- white TCGA-24-1464_demographic Dead '-- '-- '-- '-- 25874 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3092467a-bee4-5eb1-bd74-5efa87d5836e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- no No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1464_diagnosis '-- No Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 163 28 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1464_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1937 '-- mg '-- '-- '-- '-- 730c9e55-5213-4968-b058-f4af56e25db1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4160e048-f0b0-40f5-805b-e277a5893a3b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1464 70 false '-- '-- '-- '-- -25874 379 12069954-6818-59be-9f0a-bea245e7b149 '-- not reported female '-- '-- '-- '-- white TCGA-24-1464_demographic Dead '-- '-- '-- '-- 25874 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3092467a-bee4-5eb1-bd74-5efa87d5836e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- no No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1464_diagnosis '-- No Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- '-- 353 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1464_treatment '-- '-- '-- '-- '-- '-- Primary Tumor Field '-- '-- '-- '-- '-- '-- '-- '-- ab42f598-17c8-5847-ae16-a068190bd6f0 '-- yes '-- '-- Radiation, External Beam +TCGA-OV 4160e048-f0b0-40f5-805b-e277a5893a3b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1464 70 false '-- '-- '-- '-- -25874 379 12069954-6818-59be-9f0a-bea245e7b149 '-- not reported female '-- '-- '-- '-- white TCGA-24-1464_demographic Dead '-- '-- '-- '-- 25874 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3092467a-bee4-5eb1-bd74-5efa87d5836e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- no No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1464_diagnosis '-- No Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 163 28 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1464_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5555 '-- mg '-- '-- '-- '-- f8cea108-0048-4719-bacf-3d63febd19a5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4160e048-f0b0-40f5-805b-e277a5893a3b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1464 70 false '-- '-- '-- '-- -25874 379 12069954-6818-59be-9f0a-bea245e7b149 '-- not reported female '-- '-- '-- '-- white TCGA-24-1464_demographic Dead '-- '-- '-- '-- 26197 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 323 '-- '-- '-- 5ed9b570-2f63-4dbc-af77-0b0b391f86c6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1464_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1464_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1464_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8c72f479-fc0a-42b2-9d5e-c31a1b1fec45 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 4160e048-f0b0-40f5-805b-e277a5893a3b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1464 70 false '-- '-- '-- '-- -25874 379 12069954-6818-59be-9f0a-bea245e7b149 '-- not reported female '-- '-- '-- '-- white TCGA-24-1464_demographic Dead '-- '-- '-- '-- 26197 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 323 '-- '-- '-- 5ed9b570-2f63-4dbc-af77-0b0b391f86c6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1464_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1464_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1464_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d7b94ff0-97ac-4e0d-bf26-a2810a7bb622 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 73bfbaa5-616b-4dd8-b686-71d50d4919d1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1710_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1710_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1710_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9f3547b1-2a0e-44b1-9fb4-7f890e2e6a39 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 73bfbaa5-616b-4dd8-b686-71d50d4919d1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1710_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1710_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1710_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dac26356-c27c-4cb6-8e41-d62cdca87113 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 73bfbaa5-616b-4dd8-b686-71d50d4919d1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1710_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1710_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 878 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1710_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e5882412-3dc3-4e77-889b-00425c58f4ad '-- yes '-- '-- Surgery, NOS +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- 20284 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 315 '-- '-- '-- c4120ba5-db89-42ef-b1f4-ae863666b979 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1710_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1710_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1710_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3c9b4e03-0ae4-42e3-a95d-88ed54f8db32 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- 20284 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 315 '-- '-- '-- c4120ba5-db89-42ef-b1f4-ae863666b979 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1710_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1710_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1710_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- efe16a81-c621-4213-8693-f9eaec5e9da4 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- 19969 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- fcbce65c-5e58-502e-bbc5-5dce69cd809f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1710_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1710_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0918c0f9-7e62-49eb-8cf7-ecf8984a0d5a Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- 19969 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- fcbce65c-5e58-502e-bbc5-5dce69cd809f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1710_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 542 468 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1710_treatment11 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 1410 '-- mg '-- '-- '-- '-- 18fe54ba-a10d-48a3-bb8f-6e9f1b89de35 '-- yes '-- '-- Chemotherapy +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- 19969 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- fcbce65c-5e58-502e-bbc5-5dce69cd809f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1710_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 52 31 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1710_treatment4 Oxaliplatin '-- '-- '-- '-- '-- '-- '-- 300 '-- mg '-- '-- '-- '-- 1a1fa3ec-9fff-4b87-a5f6-46489fcc243c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- 19969 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- fcbce65c-5e58-502e-bbc5-5dce69cd809f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1710_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 766 682 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1710_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 310 '-- mg '-- '-- '-- '-- 27cc88ca-4f90-4bb7-9b7b-b4725711a685 '-- yes '-- '-- Chemotherapy +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- 19969 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- fcbce65c-5e58-502e-bbc5-5dce69cd809f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1710_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 150 88 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1710_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1200 '-- mg '-- '-- '-- '-- 29cda261-919a-51bc-a091-536c588f2ac4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- 19969 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- fcbce65c-5e58-502e-bbc5-5dce69cd809f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1710_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 437 322 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1710_treatment10 Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 70 '-- mg '-- '-- '-- '-- 385b4ff8-7f4b-4376-814e-111fc6e6f02a '-- yes '-- '-- Chemotherapy +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- 19969 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- fcbce65c-5e58-502e-bbc5-5dce69cd809f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1710_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 580 556 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1710_treatment9 Carboplatin '-- '-- '-- '-- '-- '-- '-- 700 '-- mg '-- '-- '-- '-- 3c97355a-2c61-4b0c-86ac-304e1220d07c '-- yes '-- '-- Chemotherapy +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- 19969 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- fcbce65c-5e58-502e-bbc5-5dce69cd809f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1710_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 150 88 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1710_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2790 '-- mg '-- '-- '-- '-- 6bd239c1-eb01-40cd-ac3b-198510d69a9b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- 19969 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- fcbce65c-5e58-502e-bbc5-5dce69cd809f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1710_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 52 31 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1710_treatment5 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 1870 '-- mg '-- '-- '-- '-- b052256b-d062-4009-bd3f-28b3c0d5397d Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- 19969 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- fcbce65c-5e58-502e-bbc5-5dce69cd809f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1710_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 52 31 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1710_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- 260 '-- mg '-- '-- '-- '-- bd66d308-b6da-4083-976b-a70fbe91103f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- 19969 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- fcbce65c-5e58-502e-bbc5-5dce69cd809f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1710_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 653 619 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1710_treatment8 Pan-VEGFR/TIE2 Tyrosine Kinase Inhibitor CEP-11981 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cf5b8471-82cc-4784-bc63-73f01a778cfd '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- 19969 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- fcbce65c-5e58-502e-bbc5-5dce69cd809f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1710_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 853 780 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1710_treatment7 Topotecan '-- '-- '-- '-- '-- '-- '-- 7 '-- mg '-- '-- '-- '-- e2af0b48-f184-4173-92e5-acb1b760c7bb '-- yes '-- '-- Chemotherapy +TCGA-OV 42b3dfa3-152f-4ab7-ac9f-988c7f473bea '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1530 68 false '-- '-- '-- '-- -25013 3622 1403a8ca-ec97-5425-bb3c-49e4dc50322c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1530_demographic Dead '-- '-- '-- '-- 25013 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3f5e6198-cbee-5262-a733-ce32d75b7057 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1530_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 153 43 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1530_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1218 '-- mg '-- '-- '-- '-- 153f2aef-ee14-5507-8a67-d42e561f5ace Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 42b3dfa3-152f-4ab7-ac9f-988c7f473bea '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1530 68 false '-- '-- '-- '-- -25013 3622 1403a8ca-ec97-5425-bb3c-49e4dc50322c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1530_demographic Dead '-- '-- '-- '-- 25013 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3f5e6198-cbee-5262-a733-ce32d75b7057 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1530_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 550 382 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1530_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2490 '-- mg '-- '-- '-- '-- 2c740855-2322-47dc-a9a2-2208805ddc01 '-- yes '-- '-- Chemotherapy +TCGA-OV 42b3dfa3-152f-4ab7-ac9f-988c7f473bea '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1530 68 false '-- '-- '-- '-- -25013 3622 1403a8ca-ec97-5425-bb3c-49e4dc50322c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1530_demographic Dead '-- '-- '-- '-- 25013 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3f5e6198-cbee-5262-a733-ce32d75b7057 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1530_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 550 382 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1530_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1200 '-- mg '-- '-- '-- '-- bfaa57b9-4981-4a10-863c-7663e568160b '-- yes '-- '-- Chemotherapy +TCGA-OV 42b3dfa3-152f-4ab7-ac9f-988c7f473bea '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1530 68 false '-- '-- '-- '-- -25013 3622 1403a8ca-ec97-5425-bb3c-49e4dc50322c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1530_demographic Dead '-- '-- '-- '-- 25013 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3f5e6198-cbee-5262-a733-ce32d75b7057 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1530_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1530_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ccc617ec-f106-4b76-ab01-434402640ba7 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 42b3dfa3-152f-4ab7-ac9f-988c7f473bea '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1530 68 false '-- '-- '-- '-- -25013 3622 1403a8ca-ec97-5425-bb3c-49e4dc50322c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1530_demographic Dead '-- '-- '-- '-- 25013 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3f5e6198-cbee-5262-a733-ce32d75b7057 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1530_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 153 43 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1530_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 678 '-- mg '-- '-- '-- '-- dcea6857-fbd5-45cc-ad9b-c9afeb8aba2f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 42b3dfa3-152f-4ab7-ac9f-988c7f473bea '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1530 68 false '-- '-- '-- '-- -25013 3622 1403a8ca-ec97-5425-bb3c-49e4dc50322c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1530_demographic Dead '-- '-- '-- '-- 25363 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 350 '-- '-- '-- 6a343d24-2a8c-47ee-b991-dc54a3f5c212 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1530_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1530_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1530_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 379604df-cb6e-45fb-bfd2-9375e44e4768 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 42b3dfa3-152f-4ab7-ac9f-988c7f473bea '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1530 68 false '-- '-- '-- '-- -25013 3622 1403a8ca-ec97-5425-bb3c-49e4dc50322c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1530_demographic Dead '-- '-- '-- '-- 25363 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 350 '-- '-- '-- 6a343d24-2a8c-47ee-b991-dc54a3f5c212 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1530_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1530_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1530_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4f772505-7ad6-476e-8704-94a4fd93eacd '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 42b3dfa3-152f-4ab7-ac9f-988c7f473bea '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1530 68 false '-- '-- '-- '-- -25013 3622 1403a8ca-ec97-5425-bb3c-49e4dc50322c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1530_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7c8a1fcd-72cb-413f-97b8-90e165c2b587 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1530_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1530_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1530_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3aa05285-02d7-48a1-8812-4c64a54b04dd '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 42b3dfa3-152f-4ab7-ac9f-988c7f473bea '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1530 68 false '-- '-- '-- '-- -25013 3622 1403a8ca-ec97-5425-bb3c-49e4dc50322c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1530_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7c8a1fcd-72cb-413f-97b8-90e165c2b587 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1530_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1530_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 350 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1530_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 989a9de2-1878-413e-9b20-0fc1a821ef46 '-- yes '-- '-- Surgery, NOS +TCGA-OV 42b3dfa3-152f-4ab7-ac9f-988c7f473bea '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1530 68 false '-- '-- '-- '-- -25013 3622 1403a8ca-ec97-5425-bb3c-49e4dc50322c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1530_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7c8a1fcd-72cb-413f-97b8-90e165c2b587 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1530_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1530_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1530_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ae9c79a9-bd6b-4752-9d9f-e9f5b840b6aa '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 42ebd30b-175e-4ece-a806-e55cb7e40e96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1697 62 false '-- '-- '-- '-- -22933 949 c1569def-c3d1-50c7-89d8-2a3decd38865 '-- not reported female '-- '-- '-- '-- white TCGA-29-1697_demographic Dead '-- '-- '-- '-- 22933 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0be1c54a-5169-5542-894c-fa5257137496 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1697_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1697_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0093c11b-312f-4836-b4c3-9c3e300dad45 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 42ebd30b-175e-4ece-a806-e55cb7e40e96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1697 62 false '-- '-- '-- '-- -22933 949 c1569def-c3d1-50c7-89d8-2a3decd38865 '-- not reported female '-- '-- '-- '-- white TCGA-29-1697_demographic Dead '-- '-- '-- '-- 22933 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0be1c54a-5169-5542-894c-fa5257137496 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1697_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 934 927 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1697_treatment5 Topotecan Hydrochloride '-- '-- '-- '-- '-- '-- '-- 5 '-- mg '-- '-- '-- '-- 3638e3ea-a207-4bd8-ae99-eef94c600687 '-- yes '-- '-- Chemotherapy +TCGA-OV 42ebd30b-175e-4ece-a806-e55cb7e40e96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1697 62 false '-- '-- '-- '-- -22933 949 c1569def-c3d1-50c7-89d8-2a3decd38865 '-- not reported female '-- '-- '-- '-- white TCGA-29-1697_demographic Dead '-- '-- '-- '-- 22933 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0be1c54a-5169-5542-894c-fa5257137496 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1697_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 182 28 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1697_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4512 '-- mg '-- '-- '-- '-- 4580a2a1-9488-4e7d-b484-60f4e74dc30a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 42ebd30b-175e-4ece-a806-e55cb7e40e96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1697 62 false '-- '-- '-- '-- -22933 949 c1569def-c3d1-50c7-89d8-2a3decd38865 '-- not reported female '-- '-- '-- '-- white TCGA-29-1697_demographic Dead '-- '-- '-- '-- 22933 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0be1c54a-5169-5542-894c-fa5257137496 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1697_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 927 927 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1697_treatment8 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 650 '-- mg '-- '-- '-- '-- 5ec4bb66-ee00-4634-a262-59921e81c2f3 '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 42ebd30b-175e-4ece-a806-e55cb7e40e96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1697 62 false '-- '-- '-- '-- -22933 949 c1569def-c3d1-50c7-89d8-2a3decd38865 '-- not reported female '-- '-- '-- '-- white TCGA-29-1697_demographic Dead '-- '-- '-- '-- 22933 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0be1c54a-5169-5542-894c-fa5257137496 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1697_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 843 780 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1697_treatment9 Doxorubicin '-- '-- '-- '-- '-- '-- '-- 70 '-- mg '-- '-- '-- '-- 6090ef0d-fa17-419b-a228-033f242776bb '-- yes '-- '-- Chemotherapy +TCGA-OV 42ebd30b-175e-4ece-a806-e55cb7e40e96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1697 62 false '-- '-- '-- '-- -22933 949 c1569def-c3d1-50c7-89d8-2a3decd38865 '-- not reported female '-- '-- '-- '-- white TCGA-29-1697_demographic Dead '-- '-- '-- '-- 22933 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0be1c54a-5169-5542-894c-fa5257137496 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1697_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 182 111 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1697_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1246 '-- mg '-- '-- '-- '-- acc4fc59-718a-462e-a20d-b3d66a2bc38b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 42ebd30b-175e-4ece-a806-e55cb7e40e96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1697 62 false '-- '-- '-- '-- -22933 949 c1569def-c3d1-50c7-89d8-2a3decd38865 '-- not reported female '-- '-- '-- '-- white TCGA-29-1697_demographic Dead '-- '-- '-- '-- 22933 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0be1c54a-5169-5542-894c-fa5257137496 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1697_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 664 552 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1697_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 574 '-- mg '-- '-- '-- '-- e7859140-0f37-40cd-9c88-604bd98fc386 '-- yes '-- '-- Chemotherapy +TCGA-OV 42ebd30b-175e-4ece-a806-e55cb7e40e96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1697 62 false '-- '-- '-- '-- -22933 949 c1569def-c3d1-50c7-89d8-2a3decd38865 '-- not reported female '-- '-- '-- '-- white TCGA-29-1697_demographic Dead '-- '-- '-- '-- 22933 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0be1c54a-5169-5542-894c-fa5257137496 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1697_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 535 510 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1697_treatment7 Docetaxel '-- '-- '-- '-- '-- '-- '-- 54 '-- mg '-- '-- '-- '-- ea6096d3-702c-48a8-8a87-de53c8e2c7d8 '-- yes '-- '-- Chemotherapy +TCGA-OV 42ebd30b-175e-4ece-a806-e55cb7e40e96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1697 62 false '-- '-- '-- '-- -22933 949 c1569def-c3d1-50c7-89d8-2a3decd38865 '-- not reported female '-- '-- '-- '-- white TCGA-29-1697_demographic Dead '-- '-- '-- '-- 22933 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0be1c54a-5169-5542-894c-fa5257137496 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1697_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 899 878 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1697_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 574 '-- mg '-- '-- '-- '-- f33119dc-404b-4298-8405-5cf8fcbe0b46 '-- yes '-- '-- Chemotherapy +TCGA-OV 42ebd30b-175e-4ece-a806-e55cb7e40e96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1697 62 false '-- '-- '-- '-- -22933 949 c1569def-c3d1-50c7-89d8-2a3decd38865 '-- not reported female '-- '-- '-- '-- white TCGA-29-1697_demographic Dead '-- '-- '-- '-- 22933 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0be1c54a-5169-5542-894c-fa5257137496 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1697_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 91 28 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1697_treatment Gemcitabine '-- '-- '-- '-- '-- '-- '-- 11184 '-- mg '-- '-- '-- '-- f79e3788-db4d-56a4-994a-eb405d6fccc4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 42ebd30b-175e-4ece-a806-e55cb7e40e96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1697 62 false '-- '-- '-- '-- -22933 949 c1569def-c3d1-50c7-89d8-2a3decd38865 '-- not reported female '-- '-- '-- '-- white TCGA-29-1697_demographic Dead '-- '-- '-- '-- 23433 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 500 '-- '-- '-- ca96c961-89b4-45d3-a32d-ff969094eae9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1697_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1697_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1697_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 310cb32d-7350-4769-892f-6a7a8b3ea202 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 42ebd30b-175e-4ece-a806-e55cb7e40e96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1697 62 false '-- '-- '-- '-- -22933 949 c1569def-c3d1-50c7-89d8-2a3decd38865 '-- not reported female '-- '-- '-- '-- white TCGA-29-1697_demographic Dead '-- '-- '-- '-- 23433 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 500 '-- '-- '-- ca96c961-89b4-45d3-a32d-ff969094eae9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1697_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1697_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1697_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fb93bcd1-76f6-4c62-a2c5-cf62756a49a9 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 446ce2a3-d328-443c-a419-3344baad0e16 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0725 44 false '-- '-- '-- '-- -16086 377 7e7cc471-edf6-5cd4-aee4-062c81eadd47 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-13-0725_demographic Dead '-- '-- '-- '-- 16086 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5f3845f7-ab3b-5c4b-94b1-84a7afef4150 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0725_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 131 15 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0725_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3bae5da7-1f71-4294-ac34-52d8bbda7ba5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 446ce2a3-d328-443c-a419-3344baad0e16 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0725 44 false '-- '-- '-- '-- -16086 377 7e7cc471-edf6-5cd4-aee4-062c81eadd47 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-13-0725_demographic Dead '-- '-- '-- '-- 16086 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5f3845f7-ab3b-5c4b-94b1-84a7afef4150 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0725_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0725_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 59bd4288-9081-4c76-8865-54dd0f37fc0a Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 446ce2a3-d328-443c-a419-3344baad0e16 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0725 44 false '-- '-- '-- '-- -16086 377 7e7cc471-edf6-5cd4-aee4-062c81eadd47 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-13-0725_demographic Dead '-- '-- '-- '-- 16086 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5f3845f7-ab3b-5c4b-94b1-84a7afef4150 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0725_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 131 15 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0725_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- d2a7c89b-5c15-4b20-88bb-4d1ce3b02f68 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 446ce2a3-d328-443c-a419-3344baad0e16 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0725 44 false '-- '-- '-- '-- -16086 377 7e7cc471-edf6-5cd4-aee4-062c81eadd47 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-13-0725_demographic Dead '-- '-- '-- '-- 16086 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5f3845f7-ab3b-5c4b-94b1-84a7afef4150 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0725_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 215 190 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0725_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- f02227b1-3a4c-5751-86f1-a116d2791b03 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 446ce2a3-d328-443c-a419-3344baad0e16 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0725 44 false '-- '-- '-- '-- -16086 377 7e7cc471-edf6-5cd4-aee4-062c81eadd47 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-13-0725_demographic Dead '-- '-- '-- '-- 16276 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 190 '-- '-- '-- dcfa80b8-cd6f-4ee9-946f-5081d0f918db false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0725_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0725_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0725_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 283e45a2-90d4-4cde-92e5-0d1e64a499ca '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 446ce2a3-d328-443c-a419-3344baad0e16 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0725 44 false '-- '-- '-- '-- -16086 377 7e7cc471-edf6-5cd4-aee4-062c81eadd47 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-13-0725_demographic Dead '-- '-- '-- '-- 16276 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 190 '-- '-- '-- dcfa80b8-cd6f-4ee9-946f-5081d0f918db false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0725_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0725_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0725_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 844dd9dd-cc9b-48b2-88c6-2bf53f0633cf '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 44e840c9-ea54-4dba-9b2a-264ef1f2c304 Informed Consent 269 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1778 77 false '-- '-- '-- '-- -28147 '-- c85be1b6-1039-536e-988b-2c193dd334e2 '-- not reported female '-- '-- '-- '-- white TCGA-29-1778_demographic Alive '-- '-- '-- '-- 28147 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 64f96092-ae3e-556c-9c0c-cbba2bdef290 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1778_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 80 17 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1778_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 500 '-- mg '-- '-- '-- '-- 0cad2edd-2f81-4bbb-bb99-953f27c75ef5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 44e840c9-ea54-4dba-9b2a-264ef1f2c304 Informed Consent 269 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1778 77 false '-- '-- '-- '-- -28147 '-- c85be1b6-1039-536e-988b-2c193dd334e2 '-- not reported female '-- '-- '-- '-- white TCGA-29-1778_demographic Alive '-- '-- '-- '-- 28147 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 64f96092-ae3e-556c-9c0c-cbba2bdef290 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1778_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 125 101 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1778_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 410 '-- mg '-- '-- '-- '-- 5f208d34-5ee4-4d51-8e5e-7bea411ca0d0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 44e840c9-ea54-4dba-9b2a-264ef1f2c304 Informed Consent 269 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1778 77 false '-- '-- '-- '-- -28147 '-- c85be1b6-1039-536e-988b-2c193dd334e2 '-- not reported female '-- '-- '-- '-- white TCGA-29-1778_demographic Alive '-- '-- '-- '-- 28147 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 64f96092-ae3e-556c-9c0c-cbba2bdef290 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1778_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1778_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8969e8ec-68aa-4c1f-a8e6-2002058a1999 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 44e840c9-ea54-4dba-9b2a-264ef1f2c304 Informed Consent 269 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1778 77 false '-- '-- '-- '-- -28147 '-- c85be1b6-1039-536e-988b-2c193dd334e2 '-- not reported female '-- '-- '-- '-- white TCGA-29-1778_demographic Alive '-- '-- '-- '-- 28147 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 64f96092-ae3e-556c-9c0c-cbba2bdef290 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1778_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 125 101 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1778_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 110 '-- mg '-- '-- '-- '-- dd84cb40-8d12-49e3-a665-5546ab870857 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 44e840c9-ea54-4dba-9b2a-264ef1f2c304 Informed Consent 269 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1778 77 false '-- '-- '-- '-- -28147 '-- c85be1b6-1039-536e-988b-2c193dd334e2 '-- not reported female '-- '-- '-- '-- white TCGA-29-1778_demographic Alive '-- '-- '-- '-- 28147 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 64f96092-ae3e-556c-9c0c-cbba2bdef290 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1778_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 80 17 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1778_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 325 '-- mg '-- '-- '-- '-- fb421159-b9d1-5a4c-8cbd-1e1b8de351f6 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 45957be6-e4df-4245-acf8-39dfc118ee19 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0919 52 false '-- '-- '-- '-- -19337 '-- fe9c6beb-795a-5dfc-a75b-f7e489b3a0c7 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0919_demographic Alive '-- '-- '-- '-- 19337 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d224cf7c-e190-56a6-bbe1-38e2134e4739 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0919_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0919_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1307f035-868d-422e-bf2c-a12f4cb6b676 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 45957be6-e4df-4245-acf8-39dfc118ee19 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0919 52 false '-- '-- '-- '-- -19337 '-- fe9c6beb-795a-5dfc-a75b-f7e489b3a0c7 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0919_demographic Alive '-- '-- '-- '-- 19337 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d224cf7c-e190-56a6-bbe1-38e2134e4739 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0919_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 160 42 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0919_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- beddb3a2-4b7f-5012-827a-292cb976b5a8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 45957be6-e4df-4245-acf8-39dfc118ee19 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0919 52 false '-- '-- '-- '-- -19337 '-- fe9c6beb-795a-5dfc-a75b-f7e489b3a0c7 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0919_demographic Alive '-- '-- '-- '-- 19337 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d224cf7c-e190-56a6-bbe1-38e2134e4739 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0919_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 160 42 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0919_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- da46507a-35bf-4bca-9097-4be9f9db0f12 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 45baebac-32ae-4093-9eba-488b95c1a58d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1857 64 false '-- '-- '-- '-- -23689 8 053eda72-806d-5ada-932d-fc4e667f34f0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1857_demographic Dead '-- '-- '-- '-- 23689 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d43fe037-2d6d-5cea-b640-8656fb0ccd5c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1857_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1857_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 45ef6db4-4afa-48ed-a7f3-a4b2e7fe900c Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 45baebac-32ae-4093-9eba-488b95c1a58d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1857 64 false '-- '-- '-- '-- -23689 8 053eda72-806d-5ada-932d-fc4e667f34f0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1857_demographic Dead '-- '-- '-- '-- 23689 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d43fe037-2d6d-5cea-b640-8656fb0ccd5c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1857_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1857_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- eda9659e-b534-500a-957b-cc01c9763139 Adjuvant no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 460616ec-f66f-483b-88c1-757edd86261d Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1783 58 false '-- '-- '-- '-- -21284 '-- fd7dbd5b-6da2-5b5c-9857-6f220f063c51 '-- not reported female '-- '-- '-- '-- white TCGA-29-1783_demographic Alive '-- '-- '-- '-- 21284 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 76e57c55-e185-57fb-8980-6ccd1a2ee446 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1783_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1783_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 076a4351-0022-4e5a-9dcb-8769322b4ea2 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 460616ec-f66f-483b-88c1-757edd86261d Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1783 58 false '-- '-- '-- '-- -21284 '-- fd7dbd5b-6da2-5b5c-9857-6f220f063c51 '-- not reported female '-- '-- '-- '-- white TCGA-29-1783_demographic Alive '-- '-- '-- '-- 21284 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 76e57c55-e185-57fb-8980-6ccd1a2ee446 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1783_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 156 30 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1783_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1623 '-- mg '-- '-- '-- '-- 8bb26b30-d110-496a-ac95-ea733e9513e9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 460616ec-f66f-483b-88c1-757edd86261d Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1783 58 false '-- '-- '-- '-- -21284 '-- fd7dbd5b-6da2-5b5c-9857-6f220f063c51 '-- not reported female '-- '-- '-- '-- white TCGA-29-1783_demographic Alive '-- '-- '-- '-- 21284 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 76e57c55-e185-57fb-8980-6ccd1a2ee446 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1783_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 430 52 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1783_treatment2 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 9750 '-- mg '-- '-- '-- '-- 9a548d66-d94b-4360-8c4e-2b4c85808e13 Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV 460616ec-f66f-483b-88c1-757edd86261d Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1783 58 false '-- '-- '-- '-- -21284 '-- fd7dbd5b-6da2-5b5c-9857-6f220f063c51 '-- not reported female '-- '-- '-- '-- white TCGA-29-1783_demographic Alive '-- '-- '-- '-- 21284 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 76e57c55-e185-57fb-8980-6ccd1a2ee446 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1783_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 156 30 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1783_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 4536 '-- mg '-- '-- '-- '-- f66ffc46-9d26-52f7-9fde-2f846ac8beb9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 46395c3d-5e51-477f-946e-e58b87cc7baa Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1320 65 false '-- '-- '-- '-- -24018 1155 1720ccc7-09c1-5f51-9513-6a8de9c133e6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1320_demographic Dead '-- '-- '-- '-- 24018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1786b36d-9344-51a7-bf6a-5abd3ce5549b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1320_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 181 28 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1320_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1f604ffe-d0c1-4e05-b0f4-bb3f9b9443fa Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 46395c3d-5e51-477f-946e-e58b87cc7baa Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1320 65 false '-- '-- '-- '-- -24018 1155 1720ccc7-09c1-5f51-9513-6a8de9c133e6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1320_demographic Dead '-- '-- '-- '-- 24018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1786b36d-9344-51a7-bf6a-5abd3ce5549b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1320_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 181 28 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1320_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 28bb59a9-214d-4e0d-ad4a-da5e3d8ee2f9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 46395c3d-5e51-477f-946e-e58b87cc7baa Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1320 65 false '-- '-- '-- '-- -24018 1155 1720ccc7-09c1-5f51-9513-6a8de9c133e6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1320_demographic Dead '-- '-- '-- '-- 24018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1786b36d-9344-51a7-bf6a-5abd3ce5549b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1320_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 181 28 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1320_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5c815fd4-2587-570d-8b77-cdb0cac1612d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 46395c3d-5e51-477f-946e-e58b87cc7baa Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1320 65 false '-- '-- '-- '-- -24018 1155 1720ccc7-09c1-5f51-9513-6a8de9c133e6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1320_demographic Dead '-- '-- '-- '-- 24018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1786b36d-9344-51a7-bf6a-5abd3ce5549b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1320_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1320_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8fc807bc-08c4-486a-8796-68fde0d08375 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 46395c3d-5e51-477f-946e-e58b87cc7baa Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1320 65 false '-- '-- '-- '-- -24018 1155 1720ccc7-09c1-5f51-9513-6a8de9c133e6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1320_demographic Dead '-- '-- '-- '-- 24018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1786b36d-9344-51a7-bf6a-5abd3ce5549b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1320_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 607 424 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1320_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- df449d18-0780-4ca8-b41a-22ba1c245f34 '-- yes '-- '-- Chemotherapy +TCGA-OV 46395c3d-5e51-477f-946e-e58b87cc7baa Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1320 65 false '-- '-- '-- '-- -24018 1155 1720ccc7-09c1-5f51-9513-6a8de9c133e6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1320_demographic Dead '-- '-- '-- '-- 24442 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 424 '-- '-- '-- f2c769da-5e55-4546-be37-3c5806b21a61 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1320_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1320_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1320_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 39ca3461-4a82-45a2-a4e6-adf9537ea535 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 46395c3d-5e51-477f-946e-e58b87cc7baa Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1320 65 false '-- '-- '-- '-- -24018 1155 1720ccc7-09c1-5f51-9513-6a8de9c133e6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1320_demographic Dead '-- '-- '-- '-- 24442 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 424 '-- '-- '-- f2c769da-5e55-4546-be37-3c5806b21a61 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1320_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1320_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1320_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c42a9f5f-eb45-46e9-9fce-cb81ee393cd7 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 47681e4b-01e8-4779-b966-ce57aff4b712 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2097 71 false '-- '-- '-- '-- -25961 '-- 0cec735d-2aa7-5693-9b29-92c27b94bc05 '-- not reported female '-- '-- '-- '-- white TCGA-61-2097_demographic Alive '-- '-- '-- '-- 25961 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2ebeca9d-6570-5225-9bf4-a8868ccddcef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2097_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 48 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2097_treatment2 Recombinant Interferon Gamma '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 79e0b57b-cd69-46cf-9b77-a4c9571e08a7 Adjuvant yes '-- '-- Immunotherapy (Including Vaccines) +TCGA-OV 47681e4b-01e8-4779-b966-ce57aff4b712 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2097 71 false '-- '-- '-- '-- -25961 '-- 0cec735d-2aa7-5693-9b29-92c27b94bc05 '-- not reported female '-- '-- '-- '-- white TCGA-61-2097_demographic Alive '-- '-- '-- '-- 25961 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2ebeca9d-6570-5225-9bf4-a8868ccddcef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2097_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 167 48 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2097_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 3060 '-- mg '-- '-- '-- '-- a077e56e-400d-5b49-bbed-86e4b3016516 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 47681e4b-01e8-4779-b966-ce57aff4b712 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2097 71 false '-- '-- '-- '-- -25961 '-- 0cec735d-2aa7-5693-9b29-92c27b94bc05 '-- not reported female '-- '-- '-- '-- white TCGA-61-2097_demographic Alive '-- '-- '-- '-- 25961 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2ebeca9d-6570-5225-9bf4-a8868ccddcef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2097_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 167 48 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2097_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1814 '-- mg '-- '-- '-- '-- b0bd1422-1409-4ade-b86c-bef25f4ccdc7 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 47681e4b-01e8-4779-b966-ce57aff4b712 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2097 71 false '-- '-- '-- '-- -25961 '-- 0cec735d-2aa7-5693-9b29-92c27b94bc05 '-- not reported female '-- '-- '-- '-- white TCGA-61-2097_demographic Alive '-- '-- '-- '-- 25961 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2ebeca9d-6570-5225-9bf4-a8868ccddcef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2097_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2097_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ef5a2f73-a263-46fc-bc53-94a5f3d2987e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 48e66676-dbed-48a4-9a7f-a6d247b15c17 Informed Consent 23 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1586 66 false '-- '-- '-- '-- -24304 '-- d42e36ed-2e6e-5b2f-a8eb-51b647fce8a9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1586_demographic Alive '-- '-- '-- '-- 24304 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 09ee5001-6b33-5395-aca0-afdc0186713b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1586_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 553 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1586_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 108a20a1-a196-48cd-b597-4f4dfe859afc '-- yes '-- '-- Chemotherapy +TCGA-OV 48e66676-dbed-48a4-9a7f-a6d247b15c17 Informed Consent 23 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1586 66 false '-- '-- '-- '-- -24304 '-- d42e36ed-2e6e-5b2f-a8eb-51b647fce8a9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1586_demographic Alive '-- '-- '-- '-- 24304 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 09ee5001-6b33-5395-aca0-afdc0186713b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1586_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1586_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 135fd891-848c-4aff-995d-6745e83d34d3 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 48e66676-dbed-48a4-9a7f-a6d247b15c17 Informed Consent 23 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1586 66 false '-- '-- '-- '-- -24304 '-- d42e36ed-2e6e-5b2f-a8eb-51b647fce8a9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1586_demographic Alive '-- '-- '-- '-- 24304 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 09ee5001-6b33-5395-aca0-afdc0186713b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1586_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 542 433 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1586_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 33ea9a1b-2515-43f0-ac81-f7fa64e150e7 '-- yes '-- '-- Chemotherapy +TCGA-OV 48e66676-dbed-48a4-9a7f-a6d247b15c17 Informed Consent 23 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1586 66 false '-- '-- '-- '-- -24304 '-- d42e36ed-2e6e-5b2f-a8eb-51b647fce8a9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1586_demographic Alive '-- '-- '-- '-- 24304 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 09ee5001-6b33-5395-aca0-afdc0186713b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1586_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 259 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1586_treatment2 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 85d94bed-00a7-421a-a8bc-64ff87624641 '-- yes '-- '-- Chemotherapy +TCGA-OV 48e66676-dbed-48a4-9a7f-a6d247b15c17 Informed Consent 23 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1586 66 false '-- '-- '-- '-- -24304 '-- d42e36ed-2e6e-5b2f-a8eb-51b647fce8a9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1586_demographic Alive '-- '-- '-- '-- 24304 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 09ee5001-6b33-5395-aca0-afdc0186713b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1586_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 553 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1586_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 96ce5d11-414e-43ad-bbfc-88e44ff56bd2 '-- yes '-- '-- Chemotherapy +TCGA-OV 48e66676-dbed-48a4-9a7f-a6d247b15c17 Informed Consent 23 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1586 66 false '-- '-- '-- '-- -24304 '-- d42e36ed-2e6e-5b2f-a8eb-51b647fce8a9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1586_demographic Alive '-- '-- '-- '-- 24304 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 09ee5001-6b33-5395-aca0-afdc0186713b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1586_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 259 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1586_treatment6 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ba37a700-7001-4638-b231-305189a12893 '-- yes '-- '-- Chemotherapy +TCGA-OV 48e66676-dbed-48a4-9a7f-a6d247b15c17 Informed Consent 23 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1586 66 false '-- '-- '-- '-- -24304 '-- d42e36ed-2e6e-5b2f-a8eb-51b647fce8a9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1586_demographic Alive '-- '-- '-- '-- 24304 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 09ee5001-6b33-5395-aca0-afdc0186713b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1586_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 163 49 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1586_treatment8 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e865eef8-0b9b-4ef3-8b6b-9993506ccbc0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 48e66676-dbed-48a4-9a7f-a6d247b15c17 Informed Consent 23 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1586 66 false '-- '-- '-- '-- -24304 '-- d42e36ed-2e6e-5b2f-a8eb-51b647fce8a9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1586_demographic Alive '-- '-- '-- '-- 24304 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 09ee5001-6b33-5395-aca0-afdc0186713b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1586_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 406 323 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1586_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ecb7783c-4d82-4535-9724-05a887cdac52 '-- yes '-- '-- Chemotherapy +TCGA-OV 48e66676-dbed-48a4-9a7f-a6d247b15c17 Informed Consent 23 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1586 66 false '-- '-- '-- '-- -24304 '-- d42e36ed-2e6e-5b2f-a8eb-51b647fce8a9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1586_demographic Alive '-- '-- '-- '-- 24304 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 09ee5001-6b33-5395-aca0-afdc0186713b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1586_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 163 49 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1586_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f6788a24-d566-5385-86e1-ee0fcc2fbb64 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 48e66676-dbed-48a4-9a7f-a6d247b15c17 Informed Consent 23 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1586 66 false '-- '-- '-- '-- -24304 '-- d42e36ed-2e6e-5b2f-a8eb-51b647fce8a9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1586_demographic Alive '-- '-- '-- '-- 24563 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 259 '-- '-- '-- 337db49c-e09b-4ca8-9d1a-67d5402e761c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-57-1586_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-57-1586_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1586_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ca54f398-316a-4c1c-8a9c-527fae9b825e '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 48e66676-dbed-48a4-9a7f-a6d247b15c17 Informed Consent 23 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1586 66 false '-- '-- '-- '-- -24304 '-- d42e36ed-2e6e-5b2f-a8eb-51b647fce8a9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1586_demographic Alive '-- '-- '-- '-- 24563 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 259 '-- '-- '-- 337db49c-e09b-4ca8-9d1a-67d5402e761c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-57-1586_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-57-1586_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1586_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e2ba3237-f9b5-44a8-8859-0914c2101d4f '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 48f831b0-5d91-44ae-bc4e-db57ca84fe46 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1417 54 false '-- '-- '-- '-- -19775 '-- f9e14320-3849-5728-8080-595d28eab5c8 '-- not reported female '-- '-- '-- '-- white TCGA-24-1417_demographic Alive '-- '-- '-- '-- 19775 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4b027297-035f-56ce-821c-31213eea6b4c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1417_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 156 25 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1417_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5500 '-- mg '-- '-- '-- '-- 55606813-3cc9-4745-964d-470343421c6f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 48f831b0-5d91-44ae-bc4e-db57ca84fe46 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1417 54 false '-- '-- '-- '-- -19775 '-- f9e14320-3849-5728-8080-595d28eab5c8 '-- not reported female '-- '-- '-- '-- white TCGA-24-1417_demographic Alive '-- '-- '-- '-- 19775 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4b027297-035f-56ce-821c-31213eea6b4c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1417_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 156 25 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1417_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2538 '-- mg '-- '-- '-- '-- 58e34a10-744d-5bc5-9e6f-18ccef94b95d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 48f831b0-5d91-44ae-bc4e-db57ca84fe46 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1417 54 false '-- '-- '-- '-- -19775 '-- f9e14320-3849-5728-8080-595d28eab5c8 '-- not reported female '-- '-- '-- '-- white TCGA-24-1417_demographic Alive '-- '-- '-- '-- 19775 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4b027297-035f-56ce-821c-31213eea6b4c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1417_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1417_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e2ee047e-b2e7-4bd4-ba51-8d7f394ce69c Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 499a9b57-ee1a-4012-bbab-c6ad955b5e0a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1551 53 false '-- '-- '-- '-- -19661 1579 ca38c8a5-7219-5217-8608-05cd8bd450f7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1551_demographic Dead '-- '-- '-- '-- 20425 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 764 '-- '-- '-- 3d4895e1-00ae-44ca-a588-46a16a7e2b88 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1551_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1551_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1551_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2e8f549a-15a4-416c-ade9-43c402f2132a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 499a9b57-ee1a-4012-bbab-c6ad955b5e0a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1551 53 false '-- '-- '-- '-- -19661 1579 ca38c8a5-7219-5217-8608-05cd8bd450f7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1551_demographic Dead '-- '-- '-- '-- 20425 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 764 '-- '-- '-- 3d4895e1-00ae-44ca-a588-46a16a7e2b88 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1551_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1551_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1551_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ec987fa6-69c2-4420-9a04-cbd0649cc049 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 499a9b57-ee1a-4012-bbab-c6ad955b5e0a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1551 53 false '-- '-- '-- '-- -19661 1579 ca38c8a5-7219-5217-8608-05cd8bd450f7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1551_demographic Dead '-- '-- '-- '-- 19661 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d6ee4cbf-9c84-5fef-bb8e-d5df71a1e6f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1551_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1254 1227 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1551_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 160 '-- mg '-- '-- '-- '-- 1a4acd01-6ad0-4e94-9371-92f7c3647656 '-- yes '-- '-- Chemotherapy +TCGA-OV 499a9b57-ee1a-4012-bbab-c6ad955b5e0a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1551 53 false '-- '-- '-- '-- -19661 1579 ca38c8a5-7219-5217-8608-05cd8bd450f7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1551_demographic Dead '-- '-- '-- '-- 19661 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d6ee4cbf-9c84-5fef-bb8e-d5df71a1e6f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1551_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 975 842 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1551_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3600 '-- mg '-- '-- '-- '-- 45472f83-8e69-4667-a314-ff9e420a015f '-- yes '-- '-- Chemotherapy +TCGA-OV 499a9b57-ee1a-4012-bbab-c6ad955b5e0a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1551 53 false '-- '-- '-- '-- -19661 1579 ca38c8a5-7219-5217-8608-05cd8bd450f7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1551_demographic Dead '-- '-- '-- '-- 19661 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d6ee4cbf-9c84-5fef-bb8e-d5df71a1e6f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1551_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1437 1289 '-- '-- Recurrent Disease '-- '-- '-- '-- 19 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1551_treatment7 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 3020 '-- mg '-- '-- '-- '-- 738aaa3c-34b7-44f5-b4d0-c544414cf4ad '-- yes '-- '-- Chemotherapy +TCGA-OV 499a9b57-ee1a-4012-bbab-c6ad955b5e0a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1551 53 false '-- '-- '-- '-- -19661 1579 ca38c8a5-7219-5217-8608-05cd8bd450f7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1551_demographic Dead '-- '-- '-- '-- 19661 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d6ee4cbf-9c84-5fef-bb8e-d5df71a1e6f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1551_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 135 10 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1551_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2080 '-- mg '-- '-- '-- '-- 8522d583-4d5a-41be-922b-49275f537d64 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 499a9b57-ee1a-4012-bbab-c6ad955b5e0a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1551 53 false '-- '-- '-- '-- -19661 1579 ca38c8a5-7219-5217-8608-05cd8bd450f7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1551_demographic Dead '-- '-- '-- '-- 19661 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d6ee4cbf-9c84-5fef-bb8e-d5df71a1e6f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1551_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 790 790 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1551_treatment Topotecan '-- '-- '-- '-- '-- '-- '-- 13 '-- mg '-- '-- '-- '-- 9951e7f0-c6b1-519b-b0ef-0e857cde665b '-- yes '-- '-- Chemotherapy +TCGA-OV 499a9b57-ee1a-4012-bbab-c6ad955b5e0a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1551 53 false '-- '-- '-- '-- -19661 1579 ca38c8a5-7219-5217-8608-05cd8bd450f7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1551_demographic Dead '-- '-- '-- '-- 19661 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d6ee4cbf-9c84-5fef-bb8e-d5df71a1e6f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1551_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1549 1549 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1551_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 80 '-- mg '-- '-- '-- '-- a1a7df60-b346-4de9-81eb-8fda658ddd8b '-- yes '-- '-- Chemotherapy +TCGA-OV 499a9b57-ee1a-4012-bbab-c6ad955b5e0a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1551 53 false '-- '-- '-- '-- -19661 1579 ca38c8a5-7219-5217-8608-05cd8bd450f7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1551_demographic Dead '-- '-- '-- '-- 19661 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d6ee4cbf-9c84-5fef-bb8e-d5df71a1e6f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1551_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 135 10 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1551_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4140 '-- mg '-- '-- '-- '-- a9f49113-cd53-435c-bc3d-deb978a12fe5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 499a9b57-ee1a-4012-bbab-c6ad955b5e0a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1551 53 false '-- '-- '-- '-- -19661 1579 ca38c8a5-7219-5217-8608-05cd8bd450f7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1551_demographic Dead '-- '-- '-- '-- 19661 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d6ee4cbf-9c84-5fef-bb8e-d5df71a1e6f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1551_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1551_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cdf71ad8-6a55-4fc7-a2e0-598119aae116 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 49bfd0fe-48ce-49db-9f76-ce2310410950 Consent by Death 629 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1485 48 false '-- '-- '-- '-- -17642 629 4ad24e85-b885-58a1-a2c0-f1278fae3a4a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1485_demographic Dead '-- '-- '-- '-- 17812 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 170 '-- '-- '-- b162e4e9-2127-49e0-8928-d4bdd875d883 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1485_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1485_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1485_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6ae01c7c-3498-4d04-9cce-726cf212fd13 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 49bfd0fe-48ce-49db-9f76-ce2310410950 Consent by Death 629 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1485 48 false '-- '-- '-- '-- -17642 629 4ad24e85-b885-58a1-a2c0-f1278fae3a4a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1485_demographic Dead '-- '-- '-- '-- 17812 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 170 '-- '-- '-- b162e4e9-2127-49e0-8928-d4bdd875d883 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1485_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1485_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1485_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9f90dfdf-73f7-46ed-9a12-b0fda052c09b '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 49bfd0fe-48ce-49db-9f76-ce2310410950 Consent by Death 629 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1485 48 false '-- '-- '-- '-- -17642 629 4ad24e85-b885-58a1-a2c0-f1278fae3a4a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1485_demographic Dead '-- '-- '-- '-- 17642 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ee7f23f5-f972-5fb6-8afe-1a30f1780e54 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1485_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 149 45 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1485_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 1670b32f-3bb7-4341-8efa-51d1947d92c3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 49bfd0fe-48ce-49db-9f76-ce2310410950 Consent by Death 629 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1485 48 false '-- '-- '-- '-- -17642 629 4ad24e85-b885-58a1-a2c0-f1278fae3a4a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1485_demographic Dead '-- '-- '-- '-- 17642 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ee7f23f5-f972-5fb6-8afe-1a30f1780e54 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1485_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 149 45 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1485_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3671878d-769a-51b6-b78a-2378e342c7b4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 49bfd0fe-48ce-49db-9f76-ce2310410950 Consent by Death 629 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1485 48 false '-- '-- '-- '-- -17642 629 4ad24e85-b885-58a1-a2c0-f1278fae3a4a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1485_demographic Dead '-- '-- '-- '-- 17642 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ee7f23f5-f972-5fb6-8afe-1a30f1780e54 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1485_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1485_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6ccfc718-03a0-4b6b-818d-a1b42519de07 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 49d2c0cf-a3f3-4519-a755-0a5f769df2ea Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1435 57 false '-- '-- '-- '-- -21107 1324 1a799775-3d93-5950-9ea0-0ac519e37476 '-- not reported female '-- '-- '-- '-- white TCGA-24-1435_demographic Dead '-- '-- '-- '-- 21107 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 020510a4-78b5-5290-a377-54a07c066478 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1435_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1189 1140 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1435_treatment5 Cisplatin '-- '-- '-- '-- '-- '-- '-- 263 '-- mg '-- '-- '-- '-- 16d57f7e-ca7d-43c5-9ef1-5b960266dbcd '-- yes '-- '-- Chemotherapy +TCGA-OV 49d2c0cf-a3f3-4519-a755-0a5f769df2ea Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1435 57 false '-- '-- '-- '-- -21107 1324 1a799775-3d93-5950-9ea0-0ac519e37476 '-- not reported female '-- '-- '-- '-- white TCGA-24-1435_demographic Dead '-- '-- '-- '-- 21107 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 020510a4-78b5-5290-a377-54a07c066478 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1435_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 912 814 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1435_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2350 '-- mg '-- '-- '-- '-- 5b769cab-0807-42e9-bb6b-0b69e04b78e6 '-- yes '-- '-- Chemotherapy +TCGA-OV 49d2c0cf-a3f3-4519-a755-0a5f769df2ea Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1435 57 false '-- '-- '-- '-- -21107 1324 1a799775-3d93-5950-9ea0-0ac519e37476 '-- not reported female '-- '-- '-- '-- white TCGA-24-1435_demographic Dead '-- '-- '-- '-- 21107 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 020510a4-78b5-5290-a377-54a07c066478 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1435_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 149 27 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1435_treatment9 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1848 '-- mg '-- '-- '-- '-- 77c9a497-741e-4700-86b2-6ed961da47ad Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 49d2c0cf-a3f3-4519-a755-0a5f769df2ea Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1435 57 false '-- '-- '-- '-- -21107 1324 1a799775-3d93-5950-9ea0-0ac519e37476 '-- not reported female '-- '-- '-- '-- white TCGA-24-1435_demographic Dead '-- '-- '-- '-- 21107 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 020510a4-78b5-5290-a377-54a07c066478 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1435_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1435_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7d4a01fb-5191-41d1-af8b-2dd8881b158c Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 49d2c0cf-a3f3-4519-a755-0a5f769df2ea Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1435 57 false '-- '-- '-- '-- -21107 1324 1a799775-3d93-5950-9ea0-0ac519e37476 '-- not reported female '-- '-- '-- '-- white TCGA-24-1435_demographic Dead '-- '-- '-- '-- 21107 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 020510a4-78b5-5290-a377-54a07c066478 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1435_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 771 511 '-- '-- Recurrent Disease '-- '-- '-- '-- 13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1435_treatment6 Topotecan '-- '-- '-- '-- '-- '-- '-- 136 '-- mg '-- '-- '-- '-- 860856be-14fb-4f16-8f9d-7dd57beb3564 '-- yes '-- '-- Chemotherapy +TCGA-OV 49d2c0cf-a3f3-4519-a755-0a5f769df2ea Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1435 57 false '-- '-- '-- '-- -21107 1324 1a799775-3d93-5950-9ea0-0ac519e37476 '-- not reported female '-- '-- '-- '-- white TCGA-24-1435_demographic Dead '-- '-- '-- '-- 21107 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 020510a4-78b5-5290-a377-54a07c066478 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1435_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1126 1058 '-- '-- Progressive Disease '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1435_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 4500 '-- mg '-- '-- '-- '-- 9504fd23-5eba-5a30-b910-8975b0786281 '-- yes '-- '-- Chemotherapy +TCGA-OV 49d2c0cf-a3f3-4519-a755-0a5f769df2ea Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1435 57 false '-- '-- '-- '-- -21107 1324 1a799775-3d93-5950-9ea0-0ac519e37476 '-- not reported female '-- '-- '-- '-- white TCGA-24-1435_demographic Dead '-- '-- '-- '-- 21107 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 020510a4-78b5-5290-a377-54a07c066478 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1435_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1266 1259 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1435_treatment8 Topotecan '-- '-- '-- '-- '-- '-- '-- 10 '-- mg '-- '-- '-- '-- 9e4c8b10-a60c-47fe-bb5a-daa07fc528c1 '-- yes '-- '-- Chemotherapy +TCGA-OV 49d2c0cf-a3f3-4519-a755-0a5f769df2ea Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1435 57 false '-- '-- '-- '-- -21107 1324 1a799775-3d93-5950-9ea0-0ac519e37476 '-- not reported female '-- '-- '-- '-- white TCGA-24-1435_demographic Dead '-- '-- '-- '-- 21107 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 020510a4-78b5-5290-a377-54a07c066478 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1435_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1028 944 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1435_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 286 '-- mg '-- '-- '-- '-- ed6f872f-33fe-4f89-bf8f-9fee4b97e635 '-- yes '-- '-- Chemotherapy +TCGA-OV 49d2c0cf-a3f3-4519-a755-0a5f769df2ea Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1435 57 false '-- '-- '-- '-- -21107 1324 1a799775-3d93-5950-9ea0-0ac519e37476 '-- not reported female '-- '-- '-- '-- white TCGA-24-1435_demographic Dead '-- '-- '-- '-- 21107 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 020510a4-78b5-5290-a377-54a07c066478 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1435_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 149 27 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1435_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3590 '-- mg '-- '-- '-- '-- fbf5915f-7650-4fbb-9927-88b519f9bf8f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 49d2c0cf-a3f3-4519-a755-0a5f769df2ea Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1435 57 false '-- '-- '-- '-- -21107 1324 1a799775-3d93-5950-9ea0-0ac519e37476 '-- not reported female '-- '-- '-- '-- white TCGA-24-1435_demographic Dead '-- '-- '-- '-- 21107 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 020510a4-78b5-5290-a377-54a07c066478 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1435_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1189 1140 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1435_treatment3 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 6952 '-- mg '-- '-- '-- '-- fd723dd2-1e4b-46c2-97c9-8951ac58dda9 '-- yes '-- '-- Chemotherapy +TCGA-OV 49d2c0cf-a3f3-4519-a755-0a5f769df2ea Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1435 57 false '-- '-- '-- '-- -21107 1324 1a799775-3d93-5950-9ea0-0ac519e37476 '-- not reported female '-- '-- '-- '-- white TCGA-24-1435_demographic Dead '-- '-- '-- '-- 21612 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 505 '-- '-- '-- e7ed2ea1-9ef5-4b7a-a8d1-9176d0f68a58 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1435_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1435_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1435_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8b59d4ce-1cdc-437b-9fff-be59b508c145 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 49d2c0cf-a3f3-4519-a755-0a5f769df2ea Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1435 57 false '-- '-- '-- '-- -21107 1324 1a799775-3d93-5950-9ea0-0ac519e37476 '-- not reported female '-- '-- '-- '-- white TCGA-24-1435_demographic Dead '-- '-- '-- '-- 21612 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 505 '-- '-- '-- e7ed2ea1-9ef5-4b7a-a8d1-9176d0f68a58 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1435_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1435_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1435_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e6f1f16b-79e5-47be-aff6-eef926f91e30 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- 22525 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 181 '-- '-- '-- 3ced4a1f-57da-4da6-8a55-4ded98135aaf false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1891_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1891_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1891_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 105f5bd4-6df5-4c26-9bdb-e378ec91376b '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- 22525 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 181 '-- '-- '-- 3ced4a1f-57da-4da6-8a55-4ded98135aaf false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1891_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1891_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1891_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2b720462-0929-4d60-82c0-96dd541ac986 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 990ded5c-9c58-4bdb-be3d-2398998433b9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1891_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1891_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 536 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1891_treatment18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 34dab85a-764c-42ed-a63f-67e2a6c63220 '-- yes '-- '-- Surgery, NOS +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 990ded5c-9c58-4bdb-be3d-2398998433b9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1891_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1891_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1891_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d5436e61-6a6a-4052-bc0c-1c0a4e0d9629 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 990ded5c-9c58-4bdb-be3d-2398998433b9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1891_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1891_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1891_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e6150d34-8936-4889-bd97-8dff5a988218 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- 22344 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dcbdfdd3-dfe8-51f7-969c-02ea3474bc0a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1891_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 453 400 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1891_treatment10 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 700 '-- mg/m2 '-- '-- '-- '-- 009c92d3-e61c-4306-aad5-66335a71784f '-- yes '-- '-- Chemotherapy +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- 22344 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dcbdfdd3-dfe8-51f7-969c-02ea3474bc0a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1891_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 141 15 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1891_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 03657ced-08b1-4548-9cf6-22bbdd03c415 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- 22344 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dcbdfdd3-dfe8-51f7-969c-02ea3474bc0a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1891_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 386 358 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1891_treatment12 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 10 '-- mg/kg '-- '-- '-- '-- 0e18e6f8-d84d-4437-a22b-e975f02d8e91 '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- 22344 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dcbdfdd3-dfe8-51f7-969c-02ea3474bc0a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1891_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 330 189 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1891_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 40 '-- mg/m2 '-- '-- '-- '-- 149136a7-5786-4467-8ac5-8317a1434b8b '-- yes '-- '-- Chemotherapy +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- 22344 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dcbdfdd3-dfe8-51f7-969c-02ea3474bc0a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1891_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 890 855 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1891_treatment9 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- 25 '-- mg/m2 '-- '-- '-- '-- 24db5202-afa4-4ad9-ab8a-150c774b878d '-- yes '-- '-- Chemotherapy +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- 22344 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dcbdfdd3-dfe8-51f7-969c-02ea3474bc0a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1891_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 890 701 '-- '-- Progressive Disease '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1891_treatment6 Topotecan '-- '-- '-- '-- '-- '-- '-- 3 '-- mg/m2 '-- '-- '-- '-- 6551131f-3935-4c0f-88a1-8fe21171c8ee '-- yes '-- '-- Chemotherapy +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- 22344 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dcbdfdd3-dfe8-51f7-969c-02ea3474bc0a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1891_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1891_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 764dda18-f3e2-4d40-8075-ba78491cd643 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- 22344 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dcbdfdd3-dfe8-51f7-969c-02ea3474bc0a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1891_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 526 460 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1891_treatment2 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 700 '-- mg/m2 '-- '-- '-- '-- 81f6baa3-8771-49b1-884e-e1e129ecb82f '-- yes '-- '-- Chemotherapy +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- 22344 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dcbdfdd3-dfe8-51f7-969c-02ea3474bc0a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1891_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 694 666 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1891_treatment11 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 80 '-- mg/m2 '-- '-- '-- '-- 8ba281c3-0444-467a-a641-c0d8c30e1392 '-- yes '-- '-- Chemotherapy +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- 22344 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dcbdfdd3-dfe8-51f7-969c-02ea3474bc0a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1891_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 141 15 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1891_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- b51582d6-b9b9-50c0-af2a-db58b79a9638 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- 22344 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dcbdfdd3-dfe8-51f7-969c-02ea3474bc0a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1891_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 526 460 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1891_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- cacba9ca-d4cb-4f4e-bb81-9b6190b142e6 '-- yes '-- '-- Chemotherapy +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- 22344 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dcbdfdd3-dfe8-51f7-969c-02ea3474bc0a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1891_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 638 554 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-30-1891_treatment5 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- d9abf83d-f7a5-4183-b353-656ff114b74d '-- yes '-- '-- Chemotherapy +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- 22344 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dcbdfdd3-dfe8-51f7-969c-02ea3474bc0a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1891_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 386 358 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-30-1891_treatment8 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 50 '-- mg '-- '-- '-- '-- ef5b3ccb-4704-4056-9b87-fa2ec35ff237 '-- yes '-- '-- Chemotherapy +TCGA-OV 4c099644-047c-42a3-8187-bfcbfe6662e4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2397 59 false '-- '-- '-- '-- -21581 365 e9fd5616-7956-5538-a35d-f4e76dc57e64 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2397_demographic Dead '-- '-- '-- '-- 21581 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6ebe67e6-e13c-5b7f-b1b0-a64ed14ec771 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2397_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2397_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 127f7a00-acf1-5504-83f2-8ab4651c1be8 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 4c18d9cf-4af4-4a86-8b1c-f78795fbbd7e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1562 67 false '-- '-- '-- '-- -24747 1384 3740a77e-8604-5e34-a9b5-3f155618c3a1 '-- not reported female '-- '-- '-- '-- white TCGA-24-1562_demographic Dead '-- '-- '-- '-- 24976 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 229 '-- '-- '-- 1038d518-c555-403e-9629-07af60627542 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1562_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1562_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1562_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2bdafee2-1e92-4b1f-bca9-42f64ad357f4 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 4c18d9cf-4af4-4a86-8b1c-f78795fbbd7e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1562 67 false '-- '-- '-- '-- -24747 1384 3740a77e-8604-5e34-a9b5-3f155618c3a1 '-- not reported female '-- '-- '-- '-- white TCGA-24-1562_demographic Dead '-- '-- '-- '-- 24976 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 229 '-- '-- '-- 1038d518-c555-403e-9629-07af60627542 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1562_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1562_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1562_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- accadfe5-b236-47f1-8c20-efcf5c53c081 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 4c18d9cf-4af4-4a86-8b1c-f78795fbbd7e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1562 67 false '-- '-- '-- '-- -24747 1384 3740a77e-8604-5e34-a9b5-3f155618c3a1 '-- not reported female '-- '-- '-- '-- white TCGA-24-1562_demographic Dead '-- '-- '-- '-- 24747 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dc319f5b-52f4-5442-b2fd-18f751b79b72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1562_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1157 '-- '-- '-- Progressive Disease '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1562_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 03c7a17b-13d1-4c7b-b3e6-1349e8bf380a '-- yes '-- '-- Chemotherapy +TCGA-OV 4c18d9cf-4af4-4a86-8b1c-f78795fbbd7e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1562 67 false '-- '-- '-- '-- -24747 1384 3740a77e-8604-5e34-a9b5-3f155618c3a1 '-- not reported female '-- '-- '-- '-- white TCGA-24-1562_demographic Dead '-- '-- '-- '-- 24747 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dc319f5b-52f4-5442-b2fd-18f751b79b72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1562_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 848 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1562_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2a193a3f-26e3-5c56-9e56-681f8a714c4b '-- yes '-- '-- Chemotherapy +TCGA-OV 4c18d9cf-4af4-4a86-8b1c-f78795fbbd7e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1562 67 false '-- '-- '-- '-- -24747 1384 3740a77e-8604-5e34-a9b5-3f155618c3a1 '-- not reported female '-- '-- '-- '-- white TCGA-24-1562_demographic Dead '-- '-- '-- '-- 24747 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dc319f5b-52f4-5442-b2fd-18f751b79b72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1562_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 677 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1562_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2bf89866-18ef-459b-b417-9ca907d1eea9 '-- yes '-- '-- Chemotherapy +TCGA-OV 4c18d9cf-4af4-4a86-8b1c-f78795fbbd7e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1562 67 false '-- '-- '-- '-- -24747 1384 3740a77e-8604-5e34-a9b5-3f155618c3a1 '-- not reported female '-- '-- '-- '-- white TCGA-24-1562_demographic Dead '-- '-- '-- '-- 24747 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dc319f5b-52f4-5442-b2fd-18f751b79b72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1562_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 152 21 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1562_treatment8 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 379d0790-7bdd-4b54-b6d7-7eb106d3de79 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4c18d9cf-4af4-4a86-8b1c-f78795fbbd7e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1562 67 false '-- '-- '-- '-- -24747 1384 3740a77e-8604-5e34-a9b5-3f155618c3a1 '-- not reported female '-- '-- '-- '-- white TCGA-24-1562_demographic Dead '-- '-- '-- '-- 24747 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dc319f5b-52f4-5442-b2fd-18f751b79b72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1562_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 642 531 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1562_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 375 '-- mg '-- '-- '-- '-- 4dec6b46-b571-4800-b101-cf74abd98b8d '-- yes '-- '-- Chemotherapy +TCGA-OV 4c18d9cf-4af4-4a86-8b1c-f78795fbbd7e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1562 67 false '-- '-- '-- '-- -24747 1384 3740a77e-8604-5e34-a9b5-3f155618c3a1 '-- not reported female '-- '-- '-- '-- white TCGA-24-1562_demographic Dead '-- '-- '-- '-- 24747 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dc319f5b-52f4-5442-b2fd-18f751b79b72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1562_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 677 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1562_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 70f3c6e6-b2f6-4c3e-ab0e-68e94c47824e '-- yes '-- '-- Chemotherapy +TCGA-OV 4c18d9cf-4af4-4a86-8b1c-f78795fbbd7e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1562 67 false '-- '-- '-- '-- -24747 1384 3740a77e-8604-5e34-a9b5-3f155618c3a1 '-- not reported female '-- '-- '-- '-- white TCGA-24-1562_demographic Dead '-- '-- '-- '-- 24747 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dc319f5b-52f4-5442-b2fd-18f751b79b72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1562_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 405 257 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1562_treatment9 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 956c66a3-0fc0-4ede-947d-f409b60cc515 '-- yes '-- '-- Chemotherapy +TCGA-OV 4c18d9cf-4af4-4a86-8b1c-f78795fbbd7e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1562 67 false '-- '-- '-- '-- -24747 1384 3740a77e-8604-5e34-a9b5-3f155618c3a1 '-- not reported female '-- '-- '-- '-- white TCGA-24-1562_demographic Dead '-- '-- '-- '-- 24747 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dc319f5b-52f4-5442-b2fd-18f751b79b72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1562_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 152 21 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1562_treatment7 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b4ea8c44-2b80-4e4f-a7bf-888f7e6a701f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4c18d9cf-4af4-4a86-8b1c-f78795fbbd7e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1562 67 false '-- '-- '-- '-- -24747 1384 3740a77e-8604-5e34-a9b5-3f155618c3a1 '-- not reported female '-- '-- '-- '-- white TCGA-24-1562_demographic Dead '-- '-- '-- '-- 24747 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dc319f5b-52f4-5442-b2fd-18f751b79b72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1562_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1562_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d3ada5e2-fb1d-4f4f-9360-f1133487f18f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 4c18d9cf-4af4-4a86-8b1c-f78795fbbd7e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1562 67 false '-- '-- '-- '-- -24747 1384 3740a77e-8604-5e34-a9b5-3f155618c3a1 '-- not reported female '-- '-- '-- '-- white TCGA-24-1562_demographic Dead '-- '-- '-- '-- 24747 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dc319f5b-52f4-5442-b2fd-18f751b79b72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1562_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 848 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1562_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- df9971e9-c0d5-443e-8d1f-b962e47331fd '-- yes '-- '-- Chemotherapy +TCGA-OV 4ca9c0e8-75a7-4665-9d88-6dd2bb44b1e1 Informed Consent -10 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1950 76 false '-- '-- '-- '-- -28100 '-- 2e01658c-ae7d-592e-8f7b-a56b8851c913 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1950_demographic Alive '-- '-- '-- '-- 28100 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c87e9e32-50c5-54fd-8808-7ca57c0c7543 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1950_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 571 431 '-- '-- Recurrent Disease '-- '-- '-- '-- 18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1950_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1440 '-- mg '-- '-- '-- '-- 0b4b1ab2-75a9-5a17-aa6e-00429fdae651 '-- yes '-- '-- Chemotherapy +TCGA-OV 4ca9c0e8-75a7-4665-9d88-6dd2bb44b1e1 Informed Consent -10 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1950 76 false '-- '-- '-- '-- -28100 '-- 2e01658c-ae7d-592e-8f7b-a56b8851c913 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1950_demographic Alive '-- '-- '-- '-- 28100 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c87e9e32-50c5-54fd-8808-7ca57c0c7543 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1950_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1950_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5169d1ff-2ee6-4e77-bbc5-fd903710723e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 4ca9c0e8-75a7-4665-9d88-6dd2bb44b1e1 Informed Consent -10 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1950 76 false '-- '-- '-- '-- -28100 '-- 2e01658c-ae7d-592e-8f7b-a56b8851c913 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1950_demographic Alive '-- '-- '-- '-- 28100 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c87e9e32-50c5-54fd-8808-7ca57c0c7543 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1950_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 144 33 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1950_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3300 '-- mg '-- '-- '-- '-- 8d0855eb-5fc6-45f4-a03c-d7deceef8370 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4ca9c0e8-75a7-4665-9d88-6dd2bb44b1e1 Informed Consent -10 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1950 76 false '-- '-- '-- '-- -28100 '-- 2e01658c-ae7d-592e-8f7b-a56b8851c913 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1950_demographic Alive '-- '-- '-- '-- 28449 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 349 '-- '-- '-- f266d1bc-b3ee-48e6-a75c-c6528675fe99 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-31-1950_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-31-1950_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1950_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 58a40638-4e9a-4327-b8cf-0f61ac635f38 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 4ca9c0e8-75a7-4665-9d88-6dd2bb44b1e1 Informed Consent -10 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1950 76 false '-- '-- '-- '-- -28100 '-- 2e01658c-ae7d-592e-8f7b-a56b8851c913 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1950_demographic Alive '-- '-- '-- '-- 28449 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 349 '-- '-- '-- f266d1bc-b3ee-48e6-a75c-c6528675fe99 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-31-1950_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-31-1950_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1950_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c88da270-1031-4962-b511-f2ac639562eb '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 4d71dd15-cd01-4dae-ad70-6dc325140207 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1029 46 false '-- '-- '-- '-- -16889 '-- 47da8915-429e-5f86-a3b6-e4843fb7c2fb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1029_demographic Alive '-- '-- '-- '-- 16889 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d9297888-91e7-5eb6-9a85-03216ab39514 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1029_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 78 30 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-23-1029_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1212 '-- mg '-- '-- '-- '-- 06f0f0d2-b145-53d0-92bf-9bac4e55328c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4d71dd15-cd01-4dae-ad70-6dc325140207 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1029 46 false '-- '-- '-- '-- -16889 '-- 47da8915-429e-5f86-a3b6-e4843fb7c2fb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1029_demographic Alive '-- '-- '-- '-- 16889 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d9297888-91e7-5eb6-9a85-03216ab39514 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1029_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1029_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1a34cb57-ce8a-4d69-8d4f-9210fb502fcf Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 4d71dd15-cd01-4dae-ad70-6dc325140207 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1029 46 false '-- '-- '-- '-- -16889 '-- 47da8915-429e-5f86-a3b6-e4843fb7c2fb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1029_demographic Alive '-- '-- '-- '-- 16889 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d9297888-91e7-5eb6-9a85-03216ab39514 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1029_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 78 30 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-23-1029_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 375 '-- mg '-- '-- '-- '-- 42e7fe3e-7eb0-4301-933a-97d7eb1c7944 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4e6f88de-7624-4719-8234-4c9e5b2e2988 Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1673 50 false '-- '-- '-- '-- -18599 '-- 52ee8dcb-6b70-54da-9a9b-846e68a0b566 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1673_demographic Alive '-- '-- '-- '-- 18599 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 18cf8d27-34a1-592b-b795-f9dd1ad5ee52 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1673_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- 25 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1673_treatment2 Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 21025756-0f6d-4b51-8fdb-fa54631dd241 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4e6f88de-7624-4719-8234-4c9e5b2e2988 Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1673 50 false '-- '-- '-- '-- -18599 '-- 52ee8dcb-6b70-54da-9a9b-846e68a0b566 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1673_demographic Alive '-- '-- '-- '-- 18599 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 18cf8d27-34a1-592b-b795-f9dd1ad5ee52 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1673_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- 25 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1673_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8a696dc3-800d-55d6-ad6e-a0a36d15bc7c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4e6f88de-7624-4719-8234-4c9e5b2e2988 Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1673 50 false '-- '-- '-- '-- -18599 '-- 52ee8dcb-6b70-54da-9a9b-846e68a0b566 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1673_demographic Alive '-- '-- '-- '-- 18599 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 18cf8d27-34a1-592b-b795-f9dd1ad5ee52 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1673_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1673_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ffbe2df7-6b80-471a-975c-c6bce9ff1baf Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 4ea50685-3b63-440a-b037-597ef2529e7d Informed Consent 2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1582 50 false '-- '-- '-- '-- '-- 731 cabdf363-332d-5055-8622-1a81a9a566fc '-- not reported female '-- '-- '-- '-- white TCGA-57-1582_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 46a3eb27-df60-59e2-9770-f710ce3057a5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1582_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 718 597 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1582_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 176080a4-c282-4285-8ad5-004315036ccc '-- yes '-- '-- Chemotherapy +TCGA-OV 4ea50685-3b63-440a-b037-597ef2529e7d Informed Consent 2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1582 50 false '-- '-- '-- '-- '-- 731 cabdf363-332d-5055-8622-1a81a9a566fc '-- not reported female '-- '-- '-- '-- white TCGA-57-1582_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 46a3eb27-df60-59e2-9770-f710ce3057a5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1582_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 597 505 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1582_treatment Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2012c078-f776-54bd-9420-efc9f564bc6f '-- yes '-- '-- Chemotherapy +TCGA-OV 4ea50685-3b63-440a-b037-597ef2529e7d Informed Consent 2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1582 50 false '-- '-- '-- '-- '-- 731 cabdf363-332d-5055-8622-1a81a9a566fc '-- not reported female '-- '-- '-- '-- white TCGA-57-1582_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 46a3eb27-df60-59e2-9770-f710ce3057a5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1582_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1582_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 24b7aaec-18ce-4780-a941-5ae4ed36a271 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 4ea50685-3b63-440a-b037-597ef2529e7d Informed Consent 2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1582 50 false '-- '-- '-- '-- '-- 731 cabdf363-332d-5055-8622-1a81a9a566fc '-- not reported female '-- '-- '-- '-- white TCGA-57-1582_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 46a3eb27-df60-59e2-9770-f710ce3057a5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1582_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 718 597 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1582_treatment3 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 55334b85-51e8-4675-8e0e-4335cf6f92d2 '-- yes '-- '-- Chemotherapy +TCGA-OV 4ea50685-3b63-440a-b037-597ef2529e7d Informed Consent 2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1582 50 false '-- '-- '-- '-- '-- 731 cabdf363-332d-5055-8622-1a81a9a566fc '-- not reported female '-- '-- '-- '-- white TCGA-57-1582_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 46a3eb27-df60-59e2-9770-f710ce3057a5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1582_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 170 17 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-57-1582_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 56bde0e7-c055-43c0-ba18-27faf7390fd8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4ea50685-3b63-440a-b037-597ef2529e7d Informed Consent 2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1582 50 false '-- '-- '-- '-- '-- 731 cabdf363-332d-5055-8622-1a81a9a566fc '-- not reported female '-- '-- '-- '-- white TCGA-57-1582_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 46a3eb27-df60-59e2-9770-f710ce3057a5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1582_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 170 17 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-57-1582_treatment4 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 61f4692a-7268-4461-a871-1b5e02e8c8a8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4ea50685-3b63-440a-b037-597ef2529e7d Informed Consent 2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1582 50 false '-- '-- '-- '-- '-- 731 cabdf363-332d-5055-8622-1a81a9a566fc '-- not reported female '-- '-- '-- '-- white TCGA-57-1582_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 46a3eb27-df60-59e2-9770-f710ce3057a5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1582_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- 260 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1582_treatment7 Patupilone '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9b795355-3b64-4525-bd3e-43069f9c2791 '-- yes '-- '-- Chemotherapy +TCGA-OV 4ea50685-3b63-440a-b037-597ef2529e7d Informed Consent 2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1582 50 false '-- '-- '-- '-- '-- 731 cabdf363-332d-5055-8622-1a81a9a566fc '-- not reported female '-- '-- '-- '-- white TCGA-57-1582_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 46a3eb27-df60-59e2-9770-f710ce3057a5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1582_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 505 444 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-57-1582_treatment6 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a7588e5f-b988-4bf6-a886-c9d7fc49cb93 '-- yes '-- '-- Chemotherapy +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- 21546 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 480 '-- '-- '-- 18444f35-98f2-4fd5-bbc7-ad49d879917c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1666_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1666_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1666_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3855879e-c166-4563-9302-eba37cd48f99 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- 21546 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 480 '-- '-- '-- 18444f35-98f2-4fd5-bbc7-ad49d879917c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1666_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1666_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1666_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b5efa45b-7e48-4802-8a6b-0c0cbf4cb774 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- 21066 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2bb77198-9515-588e-b65c-6ed8cd866bca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1666_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1666_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1e4f6afc-29d8-4278-bec1-c358c60ebe09 '-- yes '-- '-- Chemotherapy +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- 21066 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2bb77198-9515-588e-b65c-6ed8cd866bca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1666_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 1598 1507 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1666_treatment9 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2b35f255-fec7-427d-9098-7edee6a70f43 '-- yes '-- '-- Chemotherapy +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- 21066 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2bb77198-9515-588e-b65c-6ed8cd866bca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1666_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1666_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3ee73cfc-9dac-4c4f-a2d6-3393583c435f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- 21066 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2bb77198-9515-588e-b65c-6ed8cd866bca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1666_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 73 27 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1666_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 620da498-4408-440f-bbe1-29af11c5db51 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- 21066 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2bb77198-9515-588e-b65c-6ed8cd866bca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1666_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 480 256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1666_treatment6 Oregovomab '-- '-- '-- '-- '-- '-- '-- 2 '-- mg '-- '-- '-- '-- 696eecc3-2731-4881-95eb-a1faaf92f14d Adjuvant yes '-- '-- Immunotherapy (Including Vaccines) +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- 21066 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2bb77198-9515-588e-b65c-6ed8cd866bca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1666_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 708 616 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1666_treatment11 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1000 '-- mg/m2 '-- '-- '-- '-- 776cff9a-03b2-471a-8acc-1cfe2cb403c4 '-- yes '-- '-- Chemotherapy +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- 21066 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2bb77198-9515-588e-b65c-6ed8cd866bca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1666_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 1757 1604 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1666_treatment4 Letrozole '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9022c6c4-4ce3-4620-8a18-9b5bce5c4686 '-- yes '-- '-- Hormone Therapy +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- 21066 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2bb77198-9515-588e-b65c-6ed8cd866bca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1666_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1666_treatment8 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 973c3bd0-9c7c-4b0a-927a-cd514dc9baa1 '-- yes '-- '-- Chemotherapy +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- 21066 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2bb77198-9515-588e-b65c-6ed8cd866bca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1666_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 173 101 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1666_treatment10 Docetaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- 9d92a0b6-7a45-4f85-ad21-48631184673c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- 21066 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2bb77198-9515-588e-b65c-6ed8cd866bca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1666_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 708 616 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1666_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- d09f35af-12ca-4db0-a6a5-ac6779ee7c08 '-- yes '-- '-- Chemotherapy +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- 21066 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2bb77198-9515-588e-b65c-6ed8cd866bca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1666_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 73 27 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1666_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- e69dea00-1e6c-5edb-a6f4-8b6eac4085fa Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- 21066 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2bb77198-9515-588e-b65c-6ed8cd866bca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1666_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 173 101 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1666_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- fae6d290-6ea8-43b3-bd20-c4063a9195fe Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e6da324b-8969-42f4-ac69-467a5a86a137 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1666_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1666_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 568 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1666_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 28ea4571-0358-4c7f-ac9a-88ffd123f8a0 '-- yes '-- '-- Surgery, NOS +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e6da324b-8969-42f4-ac69-467a5a86a137 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1666_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1666_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1666_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f15703ad-3ede-4563-9a14-4c2fc91e8f0b '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e6da324b-8969-42f4-ac69-467a5a86a137 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1666_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1666_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1666_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fdd07908-dc4d-4621-b6bf-d32e949e7c48 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 502e8d02-2953-4514-a2e1-6179dd94da73 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1507 77 false '-- '-- '-- '-- -28445 1993 4b3ee618-9be0-5230-9ca5-33cab6e8a02f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1507_demographic Dead '-- '-- '-- '-- 28445 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3b1937d2-acf2-5a70-ac4c-0df7f5e295f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1507_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 166 54 '-- '-- '-- '-- '-- '-- '-- 6 '-- 37.5 mg/m2 '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-1507_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6341084e-dd54-4eca-a294-1a01f2a73bdc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 502e8d02-2953-4514-a2e1-6179dd94da73 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1507 77 false '-- '-- '-- '-- -28445 1993 4b3ee618-9be0-5230-9ca5-33cab6e8a02f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1507_demographic Dead '-- '-- '-- '-- 28445 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3b1937d2-acf2-5a70-ac4c-0df7f5e295f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1507_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1507_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 669fb723-5f51-4ed4-8e65-b040bad08e27 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 502e8d02-2953-4514-a2e1-6179dd94da73 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1507 77 false '-- '-- '-- '-- -28445 1993 4b3ee618-9be0-5230-9ca5-33cab6e8a02f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1507_demographic Dead '-- '-- '-- '-- 28445 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3b1937d2-acf2-5a70-ac4c-0df7f5e295f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1507_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 166 54 '-- '-- '-- '-- '-- '-- '-- 6 '-- 60.0 mg/m2 '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-1507_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 96b1ed58-d60c-4261-ba7b-540dcd8b7cf3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 502e8d02-2953-4514-a2e1-6179dd94da73 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1507 77 false '-- '-- '-- '-- -28445 1993 4b3ee618-9be0-5230-9ca5-33cab6e8a02f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1507_demographic Dead '-- '-- '-- '-- 28445 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3b1937d2-acf2-5a70-ac4c-0df7f5e295f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1507_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 166 54 '-- '-- '-- '-- '-- '-- '-- 6 '-- 135.0 mg/m2 '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1507_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ba370601-81b6-599a-b4bb-9ae81c595161 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 502e8d02-2953-4514-a2e1-6179dd94da73 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1507 77 false '-- '-- '-- '-- -28445 1993 4b3ee618-9be0-5230-9ca5-33cab6e8a02f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1507_demographic Dead '-- '-- '-- '-- 28769 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 324 '-- '-- '-- 658ecc0e-035c-4deb-8781-b2701eb3c031 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1507_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1507_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 512de609-757b-42be-8b30-c414f71af422 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2016 51 false '-- '-- '-- '-- -18788 36 29e38624-fecd-5f04-b88e-09db2f1de386 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2016_demographic Dead '-- '-- '-- '-- 18788 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ff9cb7c9-66ac-5907-9329-78183e6e5040 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2016_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2016_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 70c37684-9f15-5798-9b71-4dcfe6f95f9c Adjuvant yes Progressive Disease '-- Pharmaceutical Therapy, NOS +TCGA-OV 512de609-757b-42be-8b30-c414f71af422 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2016 51 false '-- '-- '-- '-- -18788 36 29e38624-fecd-5f04-b88e-09db2f1de386 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2016_demographic Dead '-- '-- '-- '-- 18788 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ff9cb7c9-66ac-5907-9329-78183e6e5040 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2016_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2016_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e0ab3ec4-ba52-4e73-a25a-7cf964ef338f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5201ee13-2aed-4641-9169-4d5ee07a23da Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2023 54 false '-- '-- '-- '-- -19901 1364 324846aa-8368-59b7-8d95-4373adb15ded '-- not reported female '-- '-- '-- '-- white TCGA-24-2023_demographic Dead '-- '-- '-- '-- 19901 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 04bf3f6d-f3c0-510b-a8eb-a46860525c7f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 214 6 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2023_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2151 '-- mg '-- '-- '-- '-- 13f840e8-656a-5562-86e9-db457e4e02ca Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5201ee13-2aed-4641-9169-4d5ee07a23da Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2023 54 false '-- '-- '-- '-- -19901 1364 324846aa-8368-59b7-8d95-4373adb15ded '-- not reported female '-- '-- '-- '-- white TCGA-24-2023_demographic Dead '-- '-- '-- '-- 19901 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 04bf3f6d-f3c0-510b-a8eb-a46860525c7f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 502 273 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2023_treatment2 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 3000 '-- mg '-- '-- '-- '-- 1c8538da-3a1e-4044-a893-66f03f76884c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5201ee13-2aed-4641-9169-4d5ee07a23da Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2023 54 false '-- '-- '-- '-- -19901 1364 324846aa-8368-59b7-8d95-4373adb15ded '-- not reported female '-- '-- '-- '-- white TCGA-24-2023_demographic Dead '-- '-- '-- '-- 19901 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 04bf3f6d-f3c0-510b-a8eb-a46860525c7f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 214 6 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2023_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5775 '-- mg '-- '-- '-- '-- 4491e28f-2a38-4c61-a85f-7bb63c634a07 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5201ee13-2aed-4641-9169-4d5ee07a23da Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2023 54 false '-- '-- '-- '-- -19901 1364 324846aa-8368-59b7-8d95-4373adb15ded '-- not reported female '-- '-- '-- '-- white TCGA-24-2023_demographic Dead '-- '-- '-- '-- 19901 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 04bf3f6d-f3c0-510b-a8eb-a46860525c7f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2023_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6102e2ad-f893-4bad-b3c9-0960d0ce1d39 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5201ee13-2aed-4641-9169-4d5ee07a23da Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2023 54 false '-- '-- '-- '-- -19901 1364 324846aa-8368-59b7-8d95-4373adb15ded '-- not reported female '-- '-- '-- '-- white TCGA-24-2023_demographic Dead '-- '-- '-- '-- 19901 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 04bf3f6d-f3c0-510b-a8eb-a46860525c7f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 502 273 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2023_treatment4 Cisplatin '-- '-- '-- '-- '-- '-- '-- 450 '-- mg '-- '-- '-- '-- 763ece27-bc88-4020-9783-5100e0bf7441 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5201ee13-2aed-4641-9169-4d5ee07a23da Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2023 54 false '-- '-- '-- '-- -19901 1364 324846aa-8368-59b7-8d95-4373adb15ded '-- not reported female '-- '-- '-- '-- white TCGA-24-2023_demographic Dead '-- '-- '-- '-- 19901 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 04bf3f6d-f3c0-510b-a8eb-a46860525c7f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 1245 1126 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2023_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2100 '-- mg '-- '-- '-- '-- b4df2539-5d11-48fa-841b-ef1061338e2d '-- yes '-- '-- Chemotherapy +TCGA-OV 5201ee13-2aed-4641-9169-4d5ee07a23da Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2023 54 false '-- '-- '-- '-- -19901 1364 324846aa-8368-59b7-8d95-4373adb15ded '-- not reported female '-- '-- '-- '-- white TCGA-24-2023_demographic Dead '-- '-- '-- '-- 19901 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 04bf3f6d-f3c0-510b-a8eb-a46860525c7f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 1245 1126 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2023_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2740 '-- mg '-- '-- '-- '-- be9a9bed-cf10-4274-ac9f-279b3335cded '-- yes '-- '-- Chemotherapy +TCGA-OV 5201ee13-2aed-4641-9169-4d5ee07a23da Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2023 54 false '-- '-- '-- '-- -19901 1364 324846aa-8368-59b7-8d95-4373adb15ded '-- not reported female '-- '-- '-- '-- white TCGA-24-2023_demographic Dead '-- '-- '-- '-- 20970 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1069 '-- '-- '-- f5a29f38-5c09-4a11-95bf-95df2186a010 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2023_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2023_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2023_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7d26a090-dd70-439f-8e14-7c35652afb2b '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 5201ee13-2aed-4641-9169-4d5ee07a23da Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2023 54 false '-- '-- '-- '-- -19901 1364 324846aa-8368-59b7-8d95-4373adb15ded '-- not reported female '-- '-- '-- '-- white TCGA-24-2023_demographic Dead '-- '-- '-- '-- 20970 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1069 '-- '-- '-- f5a29f38-5c09-4a11-95bf-95df2186a010 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2023_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2023_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2023_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a4053662-7528-47fc-a0f1-21e7fe01581f '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 52386f66-2877-4c75-894e-5c1dc03e6ef4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1563 66 false '-- '-- '-- '-- -24274 1451 f6f97e46-62a4-5b7b-bd32-9be8b0952a2c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1563_demographic Dead '-- '-- '-- '-- 24670 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 396 '-- '-- '-- 909e3a6d-61df-4c5e-9078-9de93fd9f40a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1563_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1563_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1563_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b55b83cc-90f7-4fec-b863-cc4b7b677d86 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 52386f66-2877-4c75-894e-5c1dc03e6ef4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1563 66 false '-- '-- '-- '-- -24274 1451 f6f97e46-62a4-5b7b-bd32-9be8b0952a2c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1563_demographic Dead '-- '-- '-- '-- 24670 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 396 '-- '-- '-- 909e3a6d-61df-4c5e-9078-9de93fd9f40a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1563_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1563_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1563_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ec31d48f-a20f-4977-be27-637a3ccef65f '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 52386f66-2877-4c75-894e-5c1dc03e6ef4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1563 66 false '-- '-- '-- '-- -24274 1451 f6f97e46-62a4-5b7b-bd32-9be8b0952a2c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1563_demographic Dead '-- '-- '-- '-- 24274 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c88a4db0-50d4-5c23-969b-c211f9b47565 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1563_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1182 1087 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-1563_treatment3 Tamoxifen '-- '-- '-- '-- '-- '-- '-- 20 '-- mg/day '-- '-- '-- '-- 0818d747-5335-459e-9fc3-93ddefbbc2da '-- yes '-- '-- Hormone Therapy +TCGA-OV 52386f66-2877-4c75-894e-5c1dc03e6ef4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1563 66 false '-- '-- '-- '-- -24274 1451 f6f97e46-62a4-5b7b-bd32-9be8b0952a2c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1563_demographic Dead '-- '-- '-- '-- 24274 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c88a4db0-50d4-5c23-969b-c211f9b47565 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1563_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1402 1402 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1563_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 459 '-- mg '-- '-- '-- '-- 0a0c2312-a94f-4bc2-9891-8f94cd344321 '-- yes '-- '-- Chemotherapy +TCGA-OV 52386f66-2877-4c75-894e-5c1dc03e6ef4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1563 66 false '-- '-- '-- '-- -24274 1451 f6f97e46-62a4-5b7b-bd32-9be8b0952a2c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1563_demographic Dead '-- '-- '-- '-- 24274 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c88a4db0-50d4-5c23-969b-c211f9b47565 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1563_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 868 812 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1563_treatment9 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 2820 '-- mg '-- '-- '-- '-- 19f4300e-e27c-486f-a908-6be29937de1f '-- yes '-- '-- Chemotherapy +TCGA-OV 52386f66-2877-4c75-894e-5c1dc03e6ef4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1563 66 false '-- '-- '-- '-- -24274 1451 f6f97e46-62a4-5b7b-bd32-9be8b0952a2c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1563_demographic Dead '-- '-- '-- '-- 24274 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c88a4db0-50d4-5c23-969b-c211f9b47565 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1563_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 144 22 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1563_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1910 '-- mg '-- '-- '-- '-- 272b1cb9-849f-44df-97a9-ad3cbf7511fe Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 52386f66-2877-4c75-894e-5c1dc03e6ef4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1563 66 false '-- '-- '-- '-- -24274 1451 f6f97e46-62a4-5b7b-bd32-9be8b0952a2c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1563_demographic Dead '-- '-- '-- '-- 24274 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c88a4db0-50d4-5c23-969b-c211f9b47565 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1563_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 805 728 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1563_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1050 '-- mg '-- '-- '-- '-- 27512de5-2152-56f1-9d7a-00e7b5484dbc '-- yes '-- '-- Chemotherapy +TCGA-OV 52386f66-2877-4c75-894e-5c1dc03e6ef4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1563 66 false '-- '-- '-- '-- -24274 1451 f6f97e46-62a4-5b7b-bd32-9be8b0952a2c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1563_demographic Dead '-- '-- '-- '-- 24274 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c88a4db0-50d4-5c23-969b-c211f9b47565 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1563_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1061 889 '-- '-- Progressive Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1563_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3310 '-- mg '-- '-- '-- '-- 2e237671-642f-4ffc-902b-7037478323eb '-- yes '-- '-- Chemotherapy +TCGA-OV 52386f66-2877-4c75-894e-5c1dc03e6ef4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1563 66 false '-- '-- '-- '-- -24274 1451 f6f97e46-62a4-5b7b-bd32-9be8b0952a2c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1563_demographic Dead '-- '-- '-- '-- 24274 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c88a4db0-50d4-5c23-969b-c211f9b47565 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1563_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 676 408 '-- '-- Recurrent Disease '-- '-- '-- '-- 14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1563_treatment7 Topotecan '-- '-- '-- '-- '-- '-- '-- 135 '-- mg '-- '-- '-- '-- 7296c1ff-2cbe-463c-bfbf-a5c4dc32ce8a '-- yes '-- '-- Chemotherapy +TCGA-OV 52386f66-2877-4c75-894e-5c1dc03e6ef4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1563 66 false '-- '-- '-- '-- -24274 1451 f6f97e46-62a4-5b7b-bd32-9be8b0952a2c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1563_demographic Dead '-- '-- '-- '-- 24274 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c88a4db0-50d4-5c23-969b-c211f9b47565 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1563_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1563_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 88da9fa3-0a0f-46b9-abba-5425adbd6a57 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 52386f66-2877-4c75-894e-5c1dc03e6ef4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1563 66 false '-- '-- '-- '-- -24274 1451 f6f97e46-62a4-5b7b-bd32-9be8b0952a2c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1563_demographic Dead '-- '-- '-- '-- 24274 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c88a4db0-50d4-5c23-969b-c211f9b47565 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1563_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1239 1183 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1563_treatment4 Topotecan '-- '-- '-- '-- '-- '-- '-- 25 '-- mg '-- '-- '-- '-- 962c838c-be09-4fc6-be19-a93dfc0f54dd '-- yes '-- '-- Chemotherapy +TCGA-OV 52386f66-2877-4c75-894e-5c1dc03e6ef4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1563 66 false '-- '-- '-- '-- -24274 1451 f6f97e46-62a4-5b7b-bd32-9be8b0952a2c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1563_demographic Dead '-- '-- '-- '-- 24274 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c88a4db0-50d4-5c23-969b-c211f9b47565 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1563_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 868 812 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1563_treatment8 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 181 '-- mg '-- '-- '-- '-- 9c2b4275-edd4-4c59-8c54-fb627c27e099 '-- yes '-- '-- Chemotherapy +TCGA-OV 52386f66-2877-4c75-894e-5c1dc03e6ef4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1563 66 false '-- '-- '-- '-- -24274 1451 f6f97e46-62a4-5b7b-bd32-9be8b0952a2c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1563_demographic Dead '-- '-- '-- '-- 24274 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c88a4db0-50d4-5c23-969b-c211f9b47565 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1563_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 144 22 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1563_treatment10 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3450 '-- mg '-- '-- '-- '-- d54b90f1-95ac-4f66-b85d-8545a5bc7260 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 533f5ff9-466c-4cdb-9c46-b841c2626775 Informed Consent -20 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1580 82 false '-- '-- '-- '-- -29992 737 8a7b50d7-9032-55a0-b9b9-293f589052cc '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1580_demographic Dead '-- '-- '-- '-- 29992 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b6c3e3e6-e354-5dd8-a77d-95a47bd63099 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1580_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 553 454 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1580_treatment2 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 222 '-- mg '-- '-- '-- '-- 17deb49e-ee6d-4fce-a88d-9c01c5d63a53 '-- yes '-- '-- Chemotherapy +TCGA-OV 533f5ff9-466c-4cdb-9c46-b841c2626775 Informed Consent -20 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1580 82 false '-- '-- '-- '-- -29992 737 8a7b50d7-9032-55a0-b9b9-293f589052cc '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1580_demographic Dead '-- '-- '-- '-- 29992 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b6c3e3e6-e354-5dd8-a77d-95a47bd63099 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1580_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1580_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5bd90d18-71b8-4c2e-83bf-5130ae149beb Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 533f5ff9-466c-4cdb-9c46-b841c2626775 Informed Consent -20 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1580 82 false '-- '-- '-- '-- -29992 737 8a7b50d7-9032-55a0-b9b9-293f589052cc '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1580_demographic Dead '-- '-- '-- '-- 29992 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b6c3e3e6-e354-5dd8-a77d-95a47bd63099 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1580_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 348 18 '-- '-- '-- '-- '-- '-- '-- 11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1580_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 4796 '-- mg '-- '-- '-- '-- 66904e0f-853e-5754-88cb-e9402250bd98 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 533f5ff9-466c-4cdb-9c46-b841c2626775 Informed Consent -20 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1580 82 false '-- '-- '-- '-- -29992 737 8a7b50d7-9032-55a0-b9b9-293f589052cc '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1580_demographic Dead '-- '-- '-- '-- 30432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 440 '-- '-- '-- ba1ae469-6a40-4bd2-8ab2-92281e46cebf false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-36-1580_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-36-1580_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1580_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 320f2a3b-58ab-4994-9107-478381b5ea2e '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 533f5ff9-466c-4cdb-9c46-b841c2626775 Informed Consent -20 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1580 82 false '-- '-- '-- '-- -29992 737 8a7b50d7-9032-55a0-b9b9-293f589052cc '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1580_demographic Dead '-- '-- '-- '-- 30432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 440 '-- '-- '-- ba1ae469-6a40-4bd2-8ab2-92281e46cebf false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-36-1580_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-36-1580_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1580_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ed502f8c-6c58-47c1-89d7-4dd03769bf96 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 5495b18a-10ec-427b-83b8-03ef4b587b13 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1762 59 false '-- '-- '-- '-- -21879 2634 5670d6e7-a5d0-5321-9e29-1b6c44e7d0d4 '-- not reported female '-- '-- '-- '-- white TCGA-29-1762_demographic Dead '-- '-- '-- '-- 21879 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0516c666-98fd-5556-b9f5-084913c790dc true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1762_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2488 2439 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1762_treatment Topotecan Hydrochloride '-- '-- '-- '-- '-- '-- '-- 60 '-- mg '-- '-- '-- '-- 166b8b13-30ac-58cb-b940-cfae6060fb58 '-- yes '-- '-- Chemotherapy +TCGA-OV 5495b18a-10ec-427b-83b8-03ef4b587b13 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1762 59 false '-- '-- '-- '-- -21879 2634 5670d6e7-a5d0-5321-9e29-1b6c44e7d0d4 '-- not reported female '-- '-- '-- '-- white TCGA-29-1762_demographic Dead '-- '-- '-- '-- 21879 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0516c666-98fd-5556-b9f5-084913c790dc true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1762_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2555 2509 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1762_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 150 '-- mg '-- '-- '-- '-- 1b7f47b2-c73d-487e-a20d-8f7e706bbd7c '-- yes '-- '-- Chemotherapy +TCGA-OV 5495b18a-10ec-427b-83b8-03ef4b587b13 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1762 59 false '-- '-- '-- '-- -21879 2634 5670d6e7-a5d0-5321-9e29-1b6c44e7d0d4 '-- not reported female '-- '-- '-- '-- white TCGA-29-1762_demographic Dead '-- '-- '-- '-- 21879 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0516c666-98fd-5556-b9f5-084913c790dc true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1762_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 140 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1762_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3fc0ea83-55c4-4a69-999b-5bac0043263b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5495b18a-10ec-427b-83b8-03ef4b587b13 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1762 59 false '-- '-- '-- '-- -21879 2634 5670d6e7-a5d0-5321-9e29-1b6c44e7d0d4 '-- not reported female '-- '-- '-- '-- white TCGA-29-1762_demographic Dead '-- '-- '-- '-- 21879 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0516c666-98fd-5556-b9f5-084913c790dc true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1762_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1762_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 75ab93d6-46eb-4629-ad7d-9f4df5a8893b Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5495b18a-10ec-427b-83b8-03ef4b587b13 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1762 59 false '-- '-- '-- '-- -21879 2634 5670d6e7-a5d0-5321-9e29-1b6c44e7d0d4 '-- not reported female '-- '-- '-- '-- white TCGA-29-1762_demographic Dead '-- '-- '-- '-- 21879 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0516c666-98fd-5556-b9f5-084913c790dc true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1762_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 140 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1762_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 96e784b6-5f0c-4171-8a78-71972f06cf6a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5495b18a-10ec-427b-83b8-03ef4b587b13 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1762 59 false '-- '-- '-- '-- -21879 2634 5670d6e7-a5d0-5321-9e29-1b6c44e7d0d4 '-- not reported female '-- '-- '-- '-- white TCGA-29-1762_demographic Dead '-- '-- '-- '-- 21879 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0516c666-98fd-5556-b9f5-084913c790dc true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1762_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2229 2167 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1762_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 80 '-- mg '-- '-- '-- '-- a01ccccd-a453-4e1f-89b2-65dd6936059f '-- yes '-- '-- Chemotherapy +TCGA-OV 5495b18a-10ec-427b-83b8-03ef4b587b13 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1762 59 false '-- '-- '-- '-- -21879 2634 5670d6e7-a5d0-5321-9e29-1b6c44e7d0d4 '-- not reported female '-- '-- '-- '-- white TCGA-29-1762_demographic Dead '-- '-- '-- '-- 21879 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0516c666-98fd-5556-b9f5-084913c790dc true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1762_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1513 1387 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1762_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a6adc36c-930e-4959-990a-bfd700765a1c '-- yes '-- '-- Chemotherapy +TCGA-OV 5495b18a-10ec-427b-83b8-03ef4b587b13 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1762 59 false '-- '-- '-- '-- -21879 2634 5670d6e7-a5d0-5321-9e29-1b6c44e7d0d4 '-- not reported female '-- '-- '-- '-- white TCGA-29-1762_demographic Dead '-- '-- '-- '-- 21879 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0516c666-98fd-5556-b9f5-084913c790dc true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1762_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2418 2255 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1762_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 400 '-- mg '-- '-- '-- '-- a7d6e11e-28a9-4e88-91ec-098175ede13a '-- yes '-- '-- Chemotherapy +TCGA-OV 5495b18a-10ec-427b-83b8-03ef4b587b13 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1762 59 false '-- '-- '-- '-- -21879 2634 5670d6e7-a5d0-5321-9e29-1b6c44e7d0d4 '-- not reported female '-- '-- '-- '-- white TCGA-29-1762_demographic Dead '-- '-- '-- '-- 23254 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1375 '-- '-- '-- bfae6d63-0208-44fa-a2af-aff6c858a271 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1762_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1762_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1762_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0e2864d7-500d-40b3-89e1-472afe8e8d82 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 5495b18a-10ec-427b-83b8-03ef4b587b13 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1762 59 false '-- '-- '-- '-- -21879 2634 5670d6e7-a5d0-5321-9e29-1b6c44e7d0d4 '-- not reported female '-- '-- '-- '-- white TCGA-29-1762_demographic Dead '-- '-- '-- '-- 23254 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1375 '-- '-- '-- bfae6d63-0208-44fa-a2af-aff6c858a271 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1762_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1762_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1762_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6428ace6-3cf6-4bc9-95d4-c8bcb66f64aa '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 5503b3a1-7d03-41b2-9ec8-e478c5414d67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1434 59 false '-- '-- '-- '-- -21810 568 c792a067-b1c0-5367-8655-db6c055fbd87 '-- not reported female '-- '-- '-- '-- white TCGA-24-1434_demographic Dead '-- '-- '-- '-- 21810 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 13f08258-6176-5a27-8f77-a01958a576b2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1434_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 371 343 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1434_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 160 '-- mg '-- '-- '-- '-- 0d0e3b8a-69b9-4db8-abe8-fd8fd118a0d9 '-- yes '-- '-- Chemotherapy +TCGA-OV 5503b3a1-7d03-41b2-9ec8-e478c5414d67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1434 59 false '-- '-- '-- '-- -21810 568 c792a067-b1c0-5367-8655-db6c055fbd87 '-- not reported female '-- '-- '-- '-- white TCGA-24-1434_demographic Dead '-- '-- '-- '-- 21810 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 13f08258-6176-5a27-8f77-a01958a576b2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1434_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 228 45 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1434_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1890 '-- mg '-- '-- '-- '-- 13a8470e-e4f4-417a-b653-8de9aefa8092 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5503b3a1-7d03-41b2-9ec8-e478c5414d67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1434 59 false '-- '-- '-- '-- -21810 568 c792a067-b1c0-5367-8655-db6c055fbd87 '-- not reported female '-- '-- '-- '-- white TCGA-24-1434_demographic Dead '-- '-- '-- '-- 21810 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 13f08258-6176-5a27-8f77-a01958a576b2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1434_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 228 45 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1434_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 284 '-- mg '-- '-- '-- '-- 4e4f41fc-5ade-4d91-9eeb-e7bea60a2ee5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5503b3a1-7d03-41b2-9ec8-e478c5414d67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1434 59 false '-- '-- '-- '-- -21810 568 c792a067-b1c0-5367-8655-db6c055fbd87 '-- not reported female '-- '-- '-- '-- white TCGA-24-1434_demographic Dead '-- '-- '-- '-- 21810 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 13f08258-6176-5a27-8f77-a01958a576b2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1434_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 535 496 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1434_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 756 '-- mg '-- '-- '-- '-- 8c1f4723-4bcf-5383-a19d-9c115b44b9cd '-- yes '-- '-- Chemotherapy +TCGA-OV 5503b3a1-7d03-41b2-9ec8-e478c5414d67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1434 59 false '-- '-- '-- '-- -21810 568 c792a067-b1c0-5367-8655-db6c055fbd87 '-- not reported female '-- '-- '-- '-- white TCGA-24-1434_demographic Dead '-- '-- '-- '-- 21810 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 13f08258-6176-5a27-8f77-a01958a576b2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1434_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 314 281 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1434_treatment6 Topotecan '-- '-- '-- '-- '-- '-- '-- 24 '-- mg '-- '-- '-- '-- b36476c4-9d80-461b-8fe4-8dafb55c6f97 '-- yes '-- '-- Chemotherapy +TCGA-OV 5503b3a1-7d03-41b2-9ec8-e478c5414d67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1434 59 false '-- '-- '-- '-- -21810 568 c792a067-b1c0-5367-8655-db6c055fbd87 '-- not reported female '-- '-- '-- '-- white TCGA-24-1434_demographic Dead '-- '-- '-- '-- 21810 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 13f08258-6176-5a27-8f77-a01958a576b2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1434_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 426 395 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-1434_treatment7 Etoposide '-- '-- '-- '-- '-- '-- '-- 4200 '-- mg '-- '-- '-- '-- bb80675e-b313-4c5c-a4df-3ff8a176f78c '-- yes '-- '-- Chemotherapy +TCGA-OV 5503b3a1-7d03-41b2-9ec8-e478c5414d67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1434 59 false '-- '-- '-- '-- -21810 568 c792a067-b1c0-5367-8655-db6c055fbd87 '-- not reported female '-- '-- '-- '-- white TCGA-24-1434_demographic Dead '-- '-- '-- '-- 21810 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 13f08258-6176-5a27-8f77-a01958a576b2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1434_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 228 45 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1434_treatment4 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 16000 '-- mg '-- '-- '-- '-- db9fca23-8a89-4724-afbe-d833ee38fdf5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5503b3a1-7d03-41b2-9ec8-e478c5414d67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1434 59 false '-- '-- '-- '-- -21810 568 c792a067-b1c0-5367-8655-db6c055fbd87 '-- not reported female '-- '-- '-- '-- white TCGA-24-1434_demographic Dead '-- '-- '-- '-- 21810 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 13f08258-6176-5a27-8f77-a01958a576b2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1434_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1434_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fb42c0c8-2823-4675-b205-9a59dbcf6fa5 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5503b3a1-7d03-41b2-9ec8-e478c5414d67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1434 59 false '-- '-- '-- '-- -21810 568 c792a067-b1c0-5367-8655-db6c055fbd87 '-- not reported female '-- '-- '-- '-- white TCGA-24-1434_demographic Dead '-- '-- '-- '-- 22147 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 337 '-- '-- '-- 9a8c4759-9737-4304-bb96-565c0bca443b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1434_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1434_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1434_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8c448beb-e513-4dbb-9a47-5953027930be '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 5503b3a1-7d03-41b2-9ec8-e478c5414d67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1434 59 false '-- '-- '-- '-- -21810 568 c792a067-b1c0-5367-8655-db6c055fbd87 '-- not reported female '-- '-- '-- '-- white TCGA-24-1434_demographic Dead '-- '-- '-- '-- 22147 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 337 '-- '-- '-- 9a8c4759-9737-4304-bb96-565c0bca443b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1434_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1434_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1434_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9534d90e-c885-4dba-b5bf-49ebeb79ec7d '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 55153632-1673-487a-85c0-f156377db1fc Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1651 53 false '-- '-- '-- '-- -19628 1102 3b99b3f1-6556-5121-8085-9073925eba9d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1651_demographic Dead '-- '-- '-- '-- 20618 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 990 '-- '-- '-- 5514e5c4-d795-4a5f-ab87-936148ec4ec7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1651_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1651_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1651_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 57dcf1aa-9de3-4396-b484-b59017d377e2 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 55153632-1673-487a-85c0-f156377db1fc Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1651 53 false '-- '-- '-- '-- -19628 1102 3b99b3f1-6556-5121-8085-9073925eba9d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1651_demographic Dead '-- '-- '-- '-- 20618 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 990 '-- '-- '-- 5514e5c4-d795-4a5f-ab87-936148ec4ec7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1651_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1651_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1651_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- da3c9cf1-676c-4e94-b541-5171d70eecda '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 55153632-1673-487a-85c0-f156377db1fc Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1651 53 false '-- '-- '-- '-- -19628 1102 3b99b3f1-6556-5121-8085-9073925eba9d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1651_demographic Dead '-- '-- '-- '-- 19628 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d97f7ad8-0280-573e-a4e4-226d1a92d8fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1651_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 150 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1651_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3228 '-- mg '-- '-- '-- '-- 1f25d82a-747a-40ba-a518-13a894a437c3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 55153632-1673-487a-85c0-f156377db1fc Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1651 53 false '-- '-- '-- '-- -19628 1102 3b99b3f1-6556-5121-8085-9073925eba9d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1651_demographic Dead '-- '-- '-- '-- 19628 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d97f7ad8-0280-573e-a4e4-226d1a92d8fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1651_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1651_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 31cdc88d-6094-4323-9431-8a7ea500577e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 55153632-1673-487a-85c0-f156377db1fc Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1651 53 false '-- '-- '-- '-- -19628 1102 3b99b3f1-6556-5121-8085-9073925eba9d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1651_demographic Dead '-- '-- '-- '-- 19628 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d97f7ad8-0280-573e-a4e4-226d1a92d8fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1651_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 150 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1651_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1869 '-- mg '-- '-- '-- '-- 70576f37-118f-5afe-87eb-148820617bac Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 55153632-1673-487a-85c0-f156377db1fc Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1651 53 false '-- '-- '-- '-- -19628 1102 3b99b3f1-6556-5121-8085-9073925eba9d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1651_demographic Dead '-- '-- '-- '-- 19628 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d97f7ad8-0280-573e-a4e4-226d1a92d8fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1651_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- 994 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1651_treatment5 Gemcitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- af5c71f4-efaf-4ec2-8318-9095abee7918 '-- yes '-- '-- Chemotherapy +TCGA-OV 55153632-1673-487a-85c0-f156377db1fc Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1651 53 false '-- '-- '-- '-- -19628 1102 3b99b3f1-6556-5121-8085-9073925eba9d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1651_demographic Dead '-- '-- '-- '-- 19628 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d97f7ad8-0280-573e-a4e4-226d1a92d8fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1651_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 150 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1651_treatment4 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 4416 '-- mg '-- '-- '-- '-- ed2e6040-a1c0-41f5-9977-9106762894c3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 55153632-1673-487a-85c0-f156377db1fc Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1651 53 false '-- '-- '-- '-- -19628 1102 3b99b3f1-6556-5121-8085-9073925eba9d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1651_demographic Dead '-- '-- '-- '-- 19628 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d97f7ad8-0280-573e-a4e4-226d1a92d8fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1651_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- 638 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1651_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ff6c5ba1-89c7-439f-890b-72931d6dc85f '-- yes '-- '-- Chemotherapy +TCGA-OV 561968ce-da9a-4d69-8bc2-bc87b9550f93 Informed Consent 21 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1501 50 false '-- '-- '-- '-- -18393 1314 e89502e6-68a4-5a1d-a6c1-13aa96457707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1501_demographic Dead '-- '-- '-- '-- 18785 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 392 '-- '-- '-- 4d1851c9-a412-4b26-ad0c-81a11f711b85 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1501_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1501_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 561968ce-da9a-4d69-8bc2-bc87b9550f93 Informed Consent 21 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1501 50 false '-- '-- '-- '-- -18393 1314 e89502e6-68a4-5a1d-a6c1-13aa96457707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1501_demographic Dead '-- '-- '-- '-- 18785 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 392 '-- '-- '-- 50d4c471-8de1-4a9a-8dec-ce0ead27b6a4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1501_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1501_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1501_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 64d65c9d-1175-421a-9627-24c8c664ab91 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 561968ce-da9a-4d69-8bc2-bc87b9550f93 Informed Consent 21 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1501 50 false '-- '-- '-- '-- -18393 1314 e89502e6-68a4-5a1d-a6c1-13aa96457707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1501_demographic Dead '-- '-- '-- '-- 18785 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 392 '-- '-- '-- 50d4c471-8de1-4a9a-8dec-ce0ead27b6a4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1501_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1501_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1501_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 84583b2e-e5fc-4a06-ae1a-da06cf783f06 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 561968ce-da9a-4d69-8bc2-bc87b9550f93 Informed Consent 21 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1501 50 false '-- '-- '-- '-- -18393 1314 e89502e6-68a4-5a1d-a6c1-13aa96457707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1501_demographic Dead '-- '-- '-- '-- 18393 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 834e617b-cd0e-5abb-b039-d8e48e862451 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1501_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1501_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 936548fe-50bb-423f-8e44-6daaf6311412 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 561968ce-da9a-4d69-8bc2-bc87b9550f93 Informed Consent 21 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1501 50 false '-- '-- '-- '-- -18393 1314 e89502e6-68a4-5a1d-a6c1-13aa96457707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1501_demographic Dead '-- '-- '-- '-- 18393 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 834e617b-cd0e-5abb-b039-d8e48e862451 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1501_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 183 78 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1501_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- fd6af9dd-59a5-5c52-82e8-86bcf871cdde Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 561968ce-da9a-4d69-8bc2-bc87b9550f93 Informed Consent 21 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1501 50 false '-- '-- '-- '-- -18393 1314 e89502e6-68a4-5a1d-a6c1-13aa96457707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1501_demographic Dead '-- '-- '-- '-- 18393 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 834e617b-cd0e-5abb-b039-d8e48e862451 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1501_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 183 78 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1501_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fe3ed706-5c5c-40ae-9a15-3652d4596e19 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 563853a2-9ac2-48be-adf3-1e547ee2b274 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1860 58 false '-- '-- '-- '-- -21406 1366 e6e91e72-6dca-5afc-a512-914d653d4a4f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-30-1860_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 24bd1d15-e2f6-40c4-a942-61e7a9532177 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1860_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1860_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1860_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 407b0aa0-9eeb-48a5-986d-da6b5732f78a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 563853a2-9ac2-48be-adf3-1e547ee2b274 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1860 58 false '-- '-- '-- '-- -21406 1366 e6e91e72-6dca-5afc-a512-914d653d4a4f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-30-1860_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 24bd1d15-e2f6-40c4-a942-61e7a9532177 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1860_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1860_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 974 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1860_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 89e9969d-7fb7-4ba3-8972-da40f8b7c8a7 '-- yes '-- '-- Surgery, NOS +TCGA-OV 563853a2-9ac2-48be-adf3-1e547ee2b274 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1860 58 false '-- '-- '-- '-- -21406 1366 e6e91e72-6dca-5afc-a512-914d653d4a4f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-30-1860_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 24bd1d15-e2f6-40c4-a942-61e7a9532177 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1860_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1860_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1860_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e48f98d3-7483-4fb6-b1c6-df8a1f0731c6 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 563853a2-9ac2-48be-adf3-1e547ee2b274 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1860 58 false '-- '-- '-- '-- -21406 1366 e6e91e72-6dca-5afc-a512-914d653d4a4f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-30-1860_demographic Dead '-- '-- '-- '-- 21406 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 770910a1-1949-574d-a201-4d4ada40e373 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1860_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1055 1006 '-- '-- Progressive Disease '-- '-- '-- '-- '-- 25.0 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1860_treatment '-- '-- '-- '-- '-- '-- Primary Tumor Field '-- 4500 '-- cGy '-- '-- '-- '-- 0849482a-d6f8-57ba-94b3-5252b4b71bd2 '-- yes '-- '-- Radiation, External Beam +TCGA-OV 563853a2-9ac2-48be-adf3-1e547ee2b274 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1860 58 false '-- '-- '-- '-- -21406 1366 e6e91e72-6dca-5afc-a512-914d653d4a4f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-30-1860_demographic Dead '-- '-- '-- '-- 21406 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 770910a1-1949-574d-a201-4d4ada40e373 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1860_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1069 994 '-- '-- Progressive Disease '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1860_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 70 '-- mg/m2 '-- '-- '-- '-- 13176bbb-ea6a-4911-9b46-4a8835b6f0ab '-- yes '-- '-- Chemotherapy +TCGA-OV 563853a2-9ac2-48be-adf3-1e547ee2b274 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1860 58 false '-- '-- '-- '-- -21406 1366 e6e91e72-6dca-5afc-a512-914d653d4a4f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-30-1860_demographic Dead '-- '-- '-- '-- 21406 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 770910a1-1949-574d-a201-4d4ada40e373 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1860_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1246 1191 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1860_treatment7 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- 15 '-- mg/m2 '-- '-- '-- '-- 3056e6b1-edd0-4a9a-8b4d-00a0a702570c '-- yes '-- '-- Chemotherapy +TCGA-OV 563853a2-9ac2-48be-adf3-1e547ee2b274 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1860 58 false '-- '-- '-- '-- -21406 1366 e6e91e72-6dca-5afc-a512-914d653d4a4f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-30-1860_demographic Dead '-- '-- '-- '-- 21406 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 770910a1-1949-574d-a201-4d4ada40e373 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1860_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 915 744 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1860_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 391e5db0-979e-4ca6-8445-09dc53c37d4e '-- yes '-- '-- Chemotherapy +TCGA-OV 563853a2-9ac2-48be-adf3-1e547ee2b274 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1860 58 false '-- '-- '-- '-- -21406 1366 e6e91e72-6dca-5afc-a512-914d653d4a4f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-30-1860_demographic Dead '-- '-- '-- '-- 21406 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 770910a1-1949-574d-a201-4d4ada40e373 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1860_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 957 915 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1860_treatment4 Topotecan '-- '-- '-- '-- '-- '-- '-- 4 '-- mg/m2 '-- '-- '-- '-- 61dbeb69-f923-4383-8537-ffab3a2808c2 '-- yes '-- '-- Chemotherapy +TCGA-OV 563853a2-9ac2-48be-adf3-1e547ee2b274 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1860 58 false '-- '-- '-- '-- -21406 1366 e6e91e72-6dca-5afc-a512-914d653d4a4f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-30-1860_demographic Dead '-- '-- '-- '-- 21406 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 770910a1-1949-574d-a201-4d4ada40e373 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1860_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 561 413 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1860_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 40 '-- mg '-- '-- '-- '-- 7d8f3296-279e-473e-af8d-ded9f9f92015 '-- yes '-- '-- Chemotherapy +TCGA-OV 563853a2-9ac2-48be-adf3-1e547ee2b274 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1860 58 false '-- '-- '-- '-- -21406 1366 e6e91e72-6dca-5afc-a512-914d653d4a4f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-30-1860_demographic Dead '-- '-- '-- '-- 21406 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 770910a1-1949-574d-a201-4d4ada40e373 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1860_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 207 22 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1860_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 898e6272-479e-4c0a-b8fe-d6e586a33ed3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 563853a2-9ac2-48be-adf3-1e547ee2b274 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1860 58 false '-- '-- '-- '-- -21406 1366 e6e91e72-6dca-5afc-a512-914d653d4a4f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-30-1860_demographic Dead '-- '-- '-- '-- 21406 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 770910a1-1949-574d-a201-4d4ada40e373 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1860_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 915 744 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1860_treatment8 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 750 '-- mg/m2 '-- '-- '-- '-- a483b92b-6a0e-4239-aa79-32e515ed04fe '-- yes '-- '-- Chemotherapy +TCGA-OV 563853a2-9ac2-48be-adf3-1e547ee2b274 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1860 58 false '-- '-- '-- '-- -21406 1366 e6e91e72-6dca-5afc-a512-914d653d4a4f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-30-1860_demographic Dead '-- '-- '-- '-- 21406 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 770910a1-1949-574d-a201-4d4ada40e373 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1860_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 207 22 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1860_treatment9 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- a64f233a-f3bd-4155-832f-7a4ec8e08aa2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 563853a2-9ac2-48be-adf3-1e547ee2b274 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1860 58 false '-- '-- '-- '-- -21406 1366 e6e91e72-6dca-5afc-a512-914d653d4a4f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-30-1860_demographic Dead '-- '-- '-- '-- 21406 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 770910a1-1949-574d-a201-4d4ada40e373 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1860_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1246 1191 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-30-1860_treatment10 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 10 '-- mg/kg '-- '-- '-- '-- c2d4f971-db3c-41ff-a89d-c735cfcc1831 '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 563853a2-9ac2-48be-adf3-1e547ee2b274 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1860 58 false '-- '-- '-- '-- -21406 1366 e6e91e72-6dca-5afc-a512-914d653d4a4f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-30-1860_demographic Dead '-- '-- '-- '-- 21803 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 397 '-- '-- '-- da50dd49-3786-4cdd-9d8d-11c8122a72ac false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1860_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1860_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1860_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4e624a42-0533-4474-b852-03a98f259bcb '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 563853a2-9ac2-48be-adf3-1e547ee2b274 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1860 58 false '-- '-- '-- '-- -21406 1366 e6e91e72-6dca-5afc-a512-914d653d4a4f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-30-1860_demographic Dead '-- '-- '-- '-- 21803 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 397 '-- '-- '-- da50dd49-3786-4cdd-9d8d-11c8122a72ac false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1860_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1860_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1860_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5aec2a0b-f6bb-490c-9c36-5220b033711d '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 565d06a1-3640-4274-8fb3-8cad7e578876 Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1998 48 false '-- '-- '-- '-- -17855 '-- dcf3372c-5c88-5b4b-96fe-6f38ca251168 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1998_demographic Alive '-- '-- '-- '-- 17855 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 720e8667-af0a-5909-9705-68bab71ed9f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1998_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- 52 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1998_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 62001908-9063-4d71-9d13-79ca02ffce76 Adjuvant yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 565d06a1-3640-4274-8fb3-8cad7e578876 Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1998 48 false '-- '-- '-- '-- -17855 '-- dcf3372c-5c88-5b4b-96fe-6f38ca251168 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1998_demographic Alive '-- '-- '-- '-- 17855 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 720e8667-af0a-5909-9705-68bab71ed9f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1998_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- 52 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1998_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 911145e7-d12b-4215-824f-7cc4eec3c18d Adjuvant yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 565d06a1-3640-4274-8fb3-8cad7e578876 Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1998 48 false '-- '-- '-- '-- -17855 '-- dcf3372c-5c88-5b4b-96fe-6f38ca251168 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1998_demographic Alive '-- '-- '-- '-- 17855 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 720e8667-af0a-5909-9705-68bab71ed9f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1998_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1998_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dcb56e2e-758f-42b3-9f0c-6d34e4cbacb5 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 565d06a1-3640-4274-8fb3-8cad7e578876 Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1998 48 false '-- '-- '-- '-- -17855 '-- dcf3372c-5c88-5b4b-96fe-6f38ca251168 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1998_demographic Alive '-- '-- '-- '-- 17855 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 720e8667-af0a-5909-9705-68bab71ed9f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1998_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 77 10 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1998_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 188 '-- mg '-- '-- '-- '-- e3fafe10-5118-51b1-8db6-d84c45daec73 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 56a30462-2819-4c18-95be-8e73880a4921 Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1498 73 false '-- '-- '-- '-- -26820 2012 28950168-4541-54cc-bdd4-8a03516ad698 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1498_demographic Dead '-- '-- '-- '-- 27354 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 534 '-- '-- '-- 54084f8c-e126-47db-9731-fae1b99f770c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1498_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1498_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 56a30462-2819-4c18-95be-8e73880a4921 Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1498 73 false '-- '-- '-- '-- -26820 2012 28950168-4541-54cc-bdd4-8a03516ad698 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1498_demographic Dead '-- '-- '-- '-- 26820 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7014b3d8-1e77-5bd5-963a-cc54ff5b2d8f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1498_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1498_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 136a80a3-326d-44ad-a068-0bf22a1fba92 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 56a30462-2819-4c18-95be-8e73880a4921 Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1498 73 false '-- '-- '-- '-- -26820 2012 28950168-4541-54cc-bdd4-8a03516ad698 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1498_demographic Dead '-- '-- '-- '-- 26820 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7014b3d8-1e77-5bd5-963a-cc54ff5b2d8f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1498_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 216 7 '-- '-- '-- '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1498_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 41d12a62-4875-42a0-b950-53b6f6b09aa6 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 56a30462-2819-4c18-95be-8e73880a4921 Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1498 73 false '-- '-- '-- '-- -26820 2012 28950168-4541-54cc-bdd4-8a03516ad698 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1498_demographic Dead '-- '-- '-- '-- 26820 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7014b3d8-1e77-5bd5-963a-cc54ff5b2d8f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1498_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 216 7 '-- '-- '-- '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1498_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- c5f54909-dc1a-531f-bce2-b9e66054c35d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 56a30462-2819-4c18-95be-8e73880a4921 Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1498 73 false '-- '-- '-- '-- -26820 2012 28950168-4541-54cc-bdd4-8a03516ad698 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1498_demographic Dead '-- '-- '-- '-- 26820 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7014b3d8-1e77-5bd5-963a-cc54ff5b2d8f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1498_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 632 250 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1498_treatment3 Letrozole '-- '-- '-- '-- '-- '-- '-- 3 '-- mg '-- '-- '-- '-- dec310c6-f8f1-4fcf-ae2e-f119d21778ee Adjuvant yes '-- '-- Hormone Therapy +TCGA-OV 56a30462-2819-4c18-95be-8e73880a4921 Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1498 73 false '-- '-- '-- '-- -26820 2012 28950168-4541-54cc-bdd4-8a03516ad698 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1498_demographic Dead '-- '-- '-- '-- 27354 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 534 '-- '-- '-- ecbbd75b-7002-4572-ac75-4248043e7376 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1498_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1498_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1498_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1140b715-8aff-4573-b807-5d062d0aba23 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 56a30462-2819-4c18-95be-8e73880a4921 Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1498 73 false '-- '-- '-- '-- -26820 2012 28950168-4541-54cc-bdd4-8a03516ad698 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1498_demographic Dead '-- '-- '-- '-- 27354 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 534 '-- '-- '-- ecbbd75b-7002-4572-ac75-4248043e7376 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1498_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1498_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1498_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- de1f757d-a85f-4b21-a3ec-27f37183dccd '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 58427bce-6b81-4083-aeda-25f59e292bbc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1316 55 false '-- '-- '-- '-- -20331 1279 8f0f2afc-3c1a-5e58-bdac-9601041f917b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1316_demographic Dead '-- '-- '-- '-- 20331 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 01932ba3-2753-5aa5-b4bc-15b1972bc184 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1316_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1316_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0b7bb02d-d027-4418-a50c-2ef1228b5095 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 58427bce-6b81-4083-aeda-25f59e292bbc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1316 55 false '-- '-- '-- '-- -20331 1279 8f0f2afc-3c1a-5e58-bdac-9601041f917b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1316_demographic Dead '-- '-- '-- '-- 20331 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 01932ba3-2753-5aa5-b4bc-15b1972bc184 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1316_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 214 61 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1316_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8e28bb3e-4bda-45a1-8344-8eb3fac2c2b5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 58427bce-6b81-4083-aeda-25f59e292bbc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1316 55 false '-- '-- '-- '-- -20331 1279 8f0f2afc-3c1a-5e58-bdac-9601041f917b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1316_demographic Dead '-- '-- '-- '-- 20331 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 01932ba3-2753-5aa5-b4bc-15b1972bc184 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1316_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 214 61 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1316_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9ffd597a-dcc4-59f7-97dc-c7f403419f02 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 58427bce-6b81-4083-aeda-25f59e292bbc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1316 55 false '-- '-- '-- '-- -20331 1279 8f0f2afc-3c1a-5e58-bdac-9601041f917b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1316_demographic Dead '-- '-- '-- '-- 20331 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 01932ba3-2753-5aa5-b4bc-15b1972bc184 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1316_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 406 276 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1316_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f4cfc8c4-51de-4532-9b7b-3a7ea2d6dd0c '-- yes '-- '-- Chemotherapy +TCGA-OV 58427bce-6b81-4083-aeda-25f59e292bbc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1316 55 false '-- '-- '-- '-- -20331 1279 8f0f2afc-3c1a-5e58-bdac-9601041f917b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1316_demographic Dead '-- '-- '-- '-- 20607 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 276 '-- '-- '-- f13c29b6-1341-45ec-ab53-bcf5b6f811b7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1316_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1316_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1316_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 80de5f50-ac0d-4536-a46a-a2133a606b1b '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 58427bce-6b81-4083-aeda-25f59e292bbc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1316 55 false '-- '-- '-- '-- -20331 1279 8f0f2afc-3c1a-5e58-bdac-9601041f917b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1316_demographic Dead '-- '-- '-- '-- 20607 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 276 '-- '-- '-- f13c29b6-1341-45ec-ab53-bcf5b6f811b7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1316_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1316_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1316_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ab3237ec-6ad5-41b9-bbee-29845c8e2695 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 58f5a54e-de50-4cca-afa1-cc331d8b3479 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1862 65 false '-- '-- '-- '-- -23895 186 bf047813-e305-5aa3-a47a-6582e28a88c3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1862_demographic Dead '-- '-- '-- '-- 23895 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 43530a4f-d2b9-5c4b-b4a5-1450b2fa35a4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1862_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1862_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e901e62d-705b-53c7-8bfa-c10e4797f089 Adjuvant no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 58f5a54e-de50-4cca-afa1-cc331d8b3479 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1862 65 false '-- '-- '-- '-- -23895 186 bf047813-e305-5aa3-a47a-6582e28a88c3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1862_demographic Dead '-- '-- '-- '-- 23895 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 43530a4f-d2b9-5c4b-b4a5-1450b2fa35a4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1862_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1862_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- efdcf2b9-b539-432b-baad-bd550adc0fd9 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 59b3fbfe-0b7c-41e5-b756-ee7e23730df5 Informed Consent 1259 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2281 68 false '-- '-- '-- '-- -25019 '-- 31c47fb8-f9c9-5bd3-a2e0-1416b999df2b '-- not reported female '-- '-- '-- '-- white TCGA-24-2281_demographic Alive '-- '-- '-- '-- 25019 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c9b6188c-636e-5f19-9261-7b9a70e42044 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2281_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2281_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1b582411-3b41-47a3-bd49-86596e895f74 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 59b3fbfe-0b7c-41e5-b756-ee7e23730df5 Informed Consent 1259 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2281 68 false '-- '-- '-- '-- -25019 '-- 31c47fb8-f9c9-5bd3-a2e0-1416b999df2b '-- not reported female '-- '-- '-- '-- white TCGA-24-2281_demographic Alive '-- '-- '-- '-- 25019 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c9b6188c-636e-5f19-9261-7b9a70e42044 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2281_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2281_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7f1743f0-eb08-56bc-88cc-14c67bb223f5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 59b3fbfe-0b7c-41e5-b756-ee7e23730df5 Informed Consent 1259 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2281 68 false '-- '-- '-- '-- -25019 '-- 31c47fb8-f9c9-5bd3-a2e0-1416b999df2b '-- not reported female '-- '-- '-- '-- white TCGA-24-2281_demographic Alive '-- '-- '-- '-- 25019 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c9b6188c-636e-5f19-9261-7b9a70e42044 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2281_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2281_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a5b5f1d7-c84c-4818-ad7b-6c2bcac46f7c Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5abb6d80-fc39-49a4-8db5-3db24543feb6 Informed Consent 472 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1770 54 false '-- '-- '-- '-- -20015 '-- 08af8cb4-296c-5a4f-b5fc-951011920166 '-- not reported female '-- '-- '-- '-- white TCGA-29-1770_demographic Alive '-- '-- '-- '-- 20015 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 05b7bdb6-00fc-573b-88b0-3985a0a97199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1770_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 546 384 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1770_treatment6 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1370 '-- mg '-- '-- '-- '-- 443b5df5-23e8-4a13-9de9-278eb64b37dc '-- yes '-- '-- Chemotherapy +TCGA-OV 5abb6d80-fc39-49a4-8db5-3db24543feb6 Informed Consent 472 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1770 54 false '-- '-- '-- '-- -20015 '-- 08af8cb4-296c-5a4f-b5fc-951011920166 '-- not reported female '-- '-- '-- '-- white TCGA-29-1770_demographic Alive '-- '-- '-- '-- 20015 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 05b7bdb6-00fc-573b-88b0-3985a0a97199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1770_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 68 19 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1770_treatment8 Carboplatin '-- '-- '-- '-- '-- '-- '-- 630 '-- mg '-- '-- '-- '-- 6cfc5a11-51df-4ddd-88bc-9632e13ce305 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5abb6d80-fc39-49a4-8db5-3db24543feb6 Informed Consent 472 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1770 54 false '-- '-- '-- '-- -20015 '-- 08af8cb4-296c-5a4f-b5fc-951011920166 '-- not reported female '-- '-- '-- '-- white TCGA-29-1770_demographic Alive '-- '-- '-- '-- 20015 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 05b7bdb6-00fc-573b-88b0-3985a0a97199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1770_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 546 384 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1770_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 650 '-- mg '-- '-- '-- '-- 908b1b35-18d5-4630-96e8-309fc9d1b285 '-- yes '-- '-- Chemotherapy +TCGA-OV 5abb6d80-fc39-49a4-8db5-3db24543feb6 Informed Consent 472 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1770 54 false '-- '-- '-- '-- -20015 '-- 08af8cb4-296c-5a4f-b5fc-951011920166 '-- not reported female '-- '-- '-- '-- white TCGA-29-1770_demographic Alive '-- '-- '-- '-- 20015 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 05b7bdb6-00fc-573b-88b0-3985a0a97199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1770_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1770_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a5231e45-8b6c-41c2-8228-5baa5e0d666f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5abb6d80-fc39-49a4-8db5-3db24543feb6 Informed Consent 472 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1770 54 false '-- '-- '-- '-- -20015 '-- 08af8cb4-296c-5a4f-b5fc-951011920166 '-- not reported female '-- '-- '-- '-- white TCGA-29-1770_demographic Alive '-- '-- '-- '-- 20015 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 05b7bdb6-00fc-573b-88b0-3985a0a97199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1770_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 136 87 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1770_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- 100 '-- mg '-- '-- '-- '-- bafb4da9-41ca-51be-92f7-f757fdb708d4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5abb6d80-fc39-49a4-8db5-3db24543feb6 Informed Consent 472 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1770 54 false '-- '-- '-- '-- -20015 '-- 08af8cb4-296c-5a4f-b5fc-951011920166 '-- not reported female '-- '-- '-- '-- white TCGA-29-1770_demographic Alive '-- '-- '-- '-- 20015 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 05b7bdb6-00fc-573b-88b0-3985a0a97199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1770_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 762 741 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1770_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e9df8ae6-2b65-47a5-8db6-51fe58ecaf17 '-- yes '-- '-- Chemotherapy +TCGA-OV 5abb6d80-fc39-49a4-8db5-3db24543feb6 Informed Consent 472 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1770 54 false '-- '-- '-- '-- -20015 '-- 08af8cb4-296c-5a4f-b5fc-951011920166 '-- not reported female '-- '-- '-- '-- white TCGA-29-1770_demographic Alive '-- '-- '-- '-- 20015 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 05b7bdb6-00fc-573b-88b0-3985a0a97199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1770_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 762 741 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1770_treatment7 Bevacizumab '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f20b6495-e469-49db-82c2-cc0718135776 '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 5abb6d80-fc39-49a4-8db5-3db24543feb6 Informed Consent 472 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1770 54 false '-- '-- '-- '-- -20015 '-- 08af8cb4-296c-5a4f-b5fc-951011920166 '-- not reported female '-- '-- '-- '-- white TCGA-29-1770_demographic Alive '-- '-- '-- '-- 20015 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 05b7bdb6-00fc-573b-88b0-3985a0a97199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1770_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 68 19 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1770_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 300 '-- mg '-- '-- '-- '-- f65e27f0-1b37-4c30-b82e-82cbcdb4488e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5abb6d80-fc39-49a4-8db5-3db24543feb6 Informed Consent 472 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1770 54 false '-- '-- '-- '-- -20015 '-- 08af8cb4-296c-5a4f-b5fc-951011920166 '-- not reported female '-- '-- '-- '-- white TCGA-29-1770_demographic Alive '-- '-- '-- '-- 20015 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 05b7bdb6-00fc-573b-88b0-3985a0a97199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1770_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 136 87 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1770_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 690 '-- mg '-- '-- '-- '-- fe359b27-3817-4434-9e27-8c5b669746bd Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5abb6d80-fc39-49a4-8db5-3db24543feb6 Informed Consent 472 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1770 54 false '-- '-- '-- '-- -20015 '-- 08af8cb4-296c-5a4f-b5fc-951011920166 '-- not reported female '-- '-- '-- '-- white TCGA-29-1770_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8226c65c-a259-4ac0-95be-666861f672c6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1770_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1770_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1770_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a742d93a-9532-4197-9251-a3c459725524 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 5abb6d80-fc39-49a4-8db5-3db24543feb6 Informed Consent 472 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1770 54 false '-- '-- '-- '-- -20015 '-- 08af8cb4-296c-5a4f-b5fc-951011920166 '-- not reported female '-- '-- '-- '-- white TCGA-29-1770_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8226c65c-a259-4ac0-95be-666861f672c6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1770_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1770_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 432 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1770_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cacd68ff-a11d-4c58-8a2e-ec3402dea68e '-- yes '-- '-- Surgery, NOS +TCGA-OV 5abb6d80-fc39-49a4-8db5-3db24543feb6 Informed Consent 472 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1770 54 false '-- '-- '-- '-- -20015 '-- 08af8cb4-296c-5a4f-b5fc-951011920166 '-- not reported female '-- '-- '-- '-- white TCGA-29-1770_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8226c65c-a259-4ac0-95be-666861f672c6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1770_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1770_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1770_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dec8894f-f205-4f68-b101-fce23981d06a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 5abb6d80-fc39-49a4-8db5-3db24543feb6 Informed Consent 472 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1770 54 false '-- '-- '-- '-- -20015 '-- 08af8cb4-296c-5a4f-b5fc-951011920166 '-- not reported female '-- '-- '-- '-- white TCGA-29-1770_demographic Alive '-- '-- '-- '-- 20392 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 377 '-- '-- '-- 97a677fa-900b-4eda-93bb-0e67955b61c9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1770_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1770_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1770_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d3361652-37d3-4817-ab31-2179d9841c76 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 5abb6d80-fc39-49a4-8db5-3db24543feb6 Informed Consent 472 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1770 54 false '-- '-- '-- '-- -20015 '-- 08af8cb4-296c-5a4f-b5fc-951011920166 '-- not reported female '-- '-- '-- '-- white TCGA-29-1770_demographic Alive '-- '-- '-- '-- 20392 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 377 '-- '-- '-- 97a677fa-900b-4eda-93bb-0e67955b61c9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1770_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1770_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1770_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d47e7b27-0d75-40e7-9c73-9831f3c78dcb '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 5c127332-5ca0-45f1-a5ac-4876ad94e491 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2400 76 false '-- '-- '-- '-- -27789 1278 3c33fcef-becb-52f1-8639-ed1171c7abf6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2400_demographic Dead '-- '-- '-- '-- 28366 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 577 '-- '-- '-- 84aace27-28e2-4c2d-bd5f-6d006468d4c4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-2400_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-2400_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2400_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2b769a28-f29a-4a58-bf22-4fb52cc12a21 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 5c127332-5ca0-45f1-a5ac-4876ad94e491 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2400 76 false '-- '-- '-- '-- -27789 1278 3c33fcef-becb-52f1-8639-ed1171c7abf6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2400_demographic Dead '-- '-- '-- '-- 28366 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 577 '-- '-- '-- 84aace27-28e2-4c2d-bd5f-6d006468d4c4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-2400_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-2400_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2400_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 773d32f0-2559-48d7-8ccb-acf9b75024af '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 5c127332-5ca0-45f1-a5ac-4876ad94e491 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2400 76 false '-- '-- '-- '-- -27789 1278 3c33fcef-becb-52f1-8639-ed1171c7abf6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2400_demographic Dead '-- '-- '-- '-- 27789 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f39bd60a-a005-5137-a928-fc58efb4c5d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2400_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 182 61 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2400_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 42214af6-e6c0-52d7-8f63-48cb7d376457 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5c127332-5ca0-45f1-a5ac-4876ad94e491 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2400 76 false '-- '-- '-- '-- -27789 1278 3c33fcef-becb-52f1-8639-ed1171c7abf6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2400_demographic Dead '-- '-- '-- '-- 27789 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f39bd60a-a005-5137-a928-fc58efb4c5d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2400_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 669 577 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2400_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 42eede57-aaac-4755-83a1-4a8500723795 '-- yes '-- '-- Chemotherapy +TCGA-OV 5c127332-5ca0-45f1-a5ac-4876ad94e491 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2400 76 false '-- '-- '-- '-- -27789 1278 3c33fcef-becb-52f1-8639-ed1171c7abf6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2400_demographic Dead '-- '-- '-- '-- 27789 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f39bd60a-a005-5137-a928-fc58efb4c5d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2400_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 182 61 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2400_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5ce7f159-aaed-4362-924c-cde10e9ff207 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5c127332-5ca0-45f1-a5ac-4876ad94e491 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2400 76 false '-- '-- '-- '-- -27789 1278 3c33fcef-becb-52f1-8639-ed1171c7abf6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2400_demographic Dead '-- '-- '-- '-- 27789 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f39bd60a-a005-5137-a928-fc58efb4c5d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2400_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2400_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 66f265ab-5ae1-40ef-aec3-9a7b5d8457fe Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5c127332-5ca0-45f1-a5ac-4876ad94e491 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2400 76 false '-- '-- '-- '-- -27789 1278 3c33fcef-becb-52f1-8639-ed1171c7abf6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2400_demographic Dead '-- '-- '-- '-- 27789 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f39bd60a-a005-5137-a928-fc58efb4c5d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2400_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 669 577 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2400_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f1720cea-df1c-497c-a133-14d98c83ca27 '-- yes '-- '-- Chemotherapy +TCGA-OV 5c159ab5-8475-4d93-89b8-b6befed4a5b3 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0883 61 false '-- '-- '-- '-- -22395 2097 580cfffe-92f6-5401-9167-dac54793bc2e '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0883_demographic Dead '-- '-- '-- '-- 22395 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1ca82c95-b632-5780-9c0b-cc470669922c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0883_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 350 227 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0883_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- 027e878c-a4fd-4bdc-a372-f25f31a487f7 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5c159ab5-8475-4d93-89b8-b6befed4a5b3 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0883 61 false '-- '-- '-- '-- -22395 2097 580cfffe-92f6-5401-9167-dac54793bc2e '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0883_demographic Dead '-- '-- '-- '-- 22395 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1ca82c95-b632-5780-9c0b-cc470669922c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0883_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0883_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 303f2bd5-edf8-4f07-99c9-d30c65cf20fc Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5c159ab5-8475-4d93-89b8-b6befed4a5b3 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0883 61 false '-- '-- '-- '-- -22395 2097 580cfffe-92f6-5401-9167-dac54793bc2e '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0883_demographic Dead '-- '-- '-- '-- 22395 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1ca82c95-b632-5780-9c0b-cc470669922c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0883_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 143 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0883_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aa138e2d-759a-59fa-85ed-c7a2a5d7e157 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5c159ab5-8475-4d93-89b8-b6befed4a5b3 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0883 61 false '-- '-- '-- '-- -22395 2097 580cfffe-92f6-5401-9167-dac54793bc2e '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0883_demographic Dead '-- '-- '-- '-- 22395 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1ca82c95-b632-5780-9c0b-cc470669922c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0883_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 143 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0883_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- e10e56b1-8cf7-4006-b757-b5e7c5dcd901 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5c159ab5-8475-4d93-89b8-b6befed4a5b3 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0883 61 false '-- '-- '-- '-- -22395 2097 580cfffe-92f6-5401-9167-dac54793bc2e '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0883_demographic Dead '-- '-- '-- '-- 23214 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 819 '-- '-- '-- 533e3312-532f-4d12-9a45-2f5dcff94ee2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0883_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0883_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0883_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0a2f2bad-3614-40c2-9df6-c3d567c10af1 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 5c159ab5-8475-4d93-89b8-b6befed4a5b3 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0883 61 false '-- '-- '-- '-- -22395 2097 580cfffe-92f6-5401-9167-dac54793bc2e '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0883_demographic Dead '-- '-- '-- '-- 23214 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 819 '-- '-- '-- 533e3312-532f-4d12-9a45-2f5dcff94ee2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0883_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0883_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0883_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f9d0d82c-2eb0-4ff8-b4fe-03e2c6eaaf8b '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 5c6f3cd4-19c5-418d-b1be-d3fbf63e99db '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0899 60 false '-- '-- '-- '-- -22031 2012 cb83a315-81d1-5941-9ecb-26ee6ebcbe64 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0899_demographic Dead '-- '-- '-- '-- 22031 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 39542801-2152-5d8a-85de-8d641a606424 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0899_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 126 16 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0899_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1050 '-- mg/m2 '-- '-- '-- '-- 2e4dc611-2eae-5df7-8df5-1cb73dce374a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5c6f3cd4-19c5-418d-b1be-d3fbf63e99db '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0899 60 false '-- '-- '-- '-- -22031 2012 cb83a315-81d1-5941-9ecb-26ee6ebcbe64 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0899_demographic Dead '-- '-- '-- '-- 22031 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 39542801-2152-5d8a-85de-8d641a606424 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0899_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 126 16 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0899_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4c4048f0-fde5-4edf-aa69-c1e0be4c4fc5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5c6f3cd4-19c5-418d-b1be-d3fbf63e99db '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0899 60 false '-- '-- '-- '-- -22031 2012 cb83a315-81d1-5941-9ecb-26ee6ebcbe64 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0899_demographic Dead '-- '-- '-- '-- 22031 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 39542801-2152-5d8a-85de-8d641a606424 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0899_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0899_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ac95baaf-2e95-4fe6-b5a1-4957925cbaa4 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5c6f3cd4-19c5-418d-b1be-d3fbf63e99db '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0899 60 false '-- '-- '-- '-- -22031 2012 cb83a315-81d1-5941-9ecb-26ee6ebcbe64 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0899_demographic Dead '-- '-- '-- '-- 22578 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 547 '-- '-- '-- bfd5f40e-c889-4a9a-9ee7-a8b2bc89a64f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0899_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0899_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 5c6f3cd4-19c5-418d-b1be-d3fbf63e99db '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0899 60 false '-- '-- '-- '-- -22031 2012 cb83a315-81d1-5941-9ecb-26ee6ebcbe64 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0899_demographic Dead '-- '-- '-- '-- 22578 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 547 '-- '-- '-- e733a14d-88f5-4d03-804d-7cfa61def598 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0899_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0899_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0899_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3940f055-a9b5-4edf-b33c-4f1c2036e0a1 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 5c6f3cd4-19c5-418d-b1be-d3fbf63e99db '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0899 60 false '-- '-- '-- '-- -22031 2012 cb83a315-81d1-5941-9ecb-26ee6ebcbe64 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0899_demographic Dead '-- '-- '-- '-- 22578 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 547 '-- '-- '-- e733a14d-88f5-4d03-804d-7cfa61def598 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0899_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0899_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0899_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5c2499dc-9ed1-4e27-94c6-78dcb9404aa4 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 5ced5b58-fab4-4bcd-b706-d6e49ce0cfc5 Informed Consent 206 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1777 47 false '-- '-- '-- '-- -17356 '-- 76f43d25-03dd-5e87-a305-baf33d049fbf '-- not reported female '-- '-- '-- '-- white TCGA-29-1777_demographic Alive '-- '-- '-- '-- 17356 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 06faab0f-085d-5399-a16e-833cb5d7e9d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1777_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 346 346 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1777_treatment Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 70 '-- mg '-- '-- '-- '-- 1926b00e-c834-5070-8fe4-063f9171cb7f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5ced5b58-fab4-4bcd-b706-d6e49ce0cfc5 Informed Consent 206 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1777 47 false '-- '-- '-- '-- -17356 '-- 76f43d25-03dd-5e87-a305-baf33d049fbf '-- not reported female '-- '-- '-- '-- white TCGA-29-1777_demographic Alive '-- '-- '-- '-- 17356 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 06faab0f-085d-5399-a16e-833cb5d7e9d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1777_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 303 87 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1777_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 740 '-- mg '-- '-- '-- '-- 336bd139-0954-497b-a453-c6c528b1a12c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5ced5b58-fab4-4bcd-b706-d6e49ce0cfc5 Informed Consent 206 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1777 47 false '-- '-- '-- '-- -17356 '-- 76f43d25-03dd-5e87-a305-baf33d049fbf '-- not reported female '-- '-- '-- '-- white TCGA-29-1777_demographic Alive '-- '-- '-- '-- 17356 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 06faab0f-085d-5399-a16e-833cb5d7e9d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1777_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1777_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3a540b46-fef9-46e4-93f2-39d11faf817a Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5ced5b58-fab4-4bcd-b706-d6e49ce0cfc5 Informed Consent 206 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1777 47 false '-- '-- '-- '-- -17356 '-- 76f43d25-03dd-5e87-a305-baf33d049fbf '-- not reported female '-- '-- '-- '-- white TCGA-29-1777_demographic Alive '-- '-- '-- '-- 17356 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 06faab0f-085d-5399-a16e-833cb5d7e9d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1777_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 325 325 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1777_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 660 '-- mg '-- '-- '-- '-- d6e3536c-05db-4c39-a217-2c9587ca1367 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5d1a54fe-e0df-4c17-b623-b649a136dc82 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2101 55 false '-- '-- '-- '-- -20287 1688 b7c5d9f0-7661-5b83-b542-63db349c7ce3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2101_demographic Dead '-- '-- '-- '-- 20287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- bcf6dd1a-9c55-5d62-950c-9c3e804897d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2101_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 1190 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2101_treatment11 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0dfe3e5d-7fad-415e-bd8c-f2a8439e476e '-- yes '-- '-- Chemotherapy +TCGA-OV 5d1a54fe-e0df-4c17-b623-b649a136dc82 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2101 55 false '-- '-- '-- '-- -20287 1688 b7c5d9f0-7661-5b83-b542-63db349c7ce3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2101_demographic Dead '-- '-- '-- '-- 20287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- bcf6dd1a-9c55-5d62-950c-9c3e804897d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2101_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 1251 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2101_treatment6 Etoposide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1219b49d-3b60-434b-a177-6cf2b44c7be1 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d1a54fe-e0df-4c17-b623-b649a136dc82 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2101 55 false '-- '-- '-- '-- -20287 1688 b7c5d9f0-7661-5b83-b542-63db349c7ce3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2101_demographic Dead '-- '-- '-- '-- 20287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- bcf6dd1a-9c55-5d62-950c-9c3e804897d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2101_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 1129 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-61-2101_treatment13 Recombinant Interleukin-12 '-- '-- '-- '-- '-- '-- '-- 300 '-- mg/kg '-- '-- '-- '-- 12961344-2b40-4122-ae47-25b5bf3705cb '-- yes '-- '-- Immunotherapy (Including Vaccines) +TCGA-OV 5d1a54fe-e0df-4c17-b623-b649a136dc82 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2101 55 false '-- '-- '-- '-- -20287 1688 b7c5d9f0-7661-5b83-b542-63db349c7ce3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2101_demographic Dead '-- '-- '-- '-- 20287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- bcf6dd1a-9c55-5d62-950c-9c3e804897d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2101_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 221 152 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2101_treatment12 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3050 '-- mg '-- '-- '-- '-- 215561ca-48af-4d44-a9ff-7783cd43b3da Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5d1a54fe-e0df-4c17-b623-b649a136dc82 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2101 55 false '-- '-- '-- '-- -20287 1688 b7c5d9f0-7661-5b83-b542-63db349c7ce3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2101_demographic Dead '-- '-- '-- '-- 20287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- bcf6dd1a-9c55-5d62-950c-9c3e804897d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2101_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 117 2 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2101_treatment9 Cisplatin '-- '-- '-- '-- '-- '-- '-- 762 '-- mg '-- '-- '-- '-- 24ae518b-4b79-4688-a044-5c1633c9498f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5d1a54fe-e0df-4c17-b623-b649a136dc82 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2101 55 false '-- '-- '-- '-- -20287 1688 b7c5d9f0-7661-5b83-b542-63db349c7ce3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2101_demographic Dead '-- '-- '-- '-- 20287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- bcf6dd1a-9c55-5d62-950c-9c3e804897d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2101_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 1159 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2101_treatment8 Altretamine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3c269e0a-117f-4ed0-b279-aa33a864f798 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d1a54fe-e0df-4c17-b623-b649a136dc82 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2101 55 false '-- '-- '-- '-- -20287 1688 b7c5d9f0-7661-5b83-b542-63db349c7ce3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2101_demographic Dead '-- '-- '-- '-- 20287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- bcf6dd1a-9c55-5d62-950c-9c3e804897d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2101_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1327 1309 '-- '-- '-- '-- '-- '-- '-- '-- 2.0 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2101_treatment '-- '-- '-- '-- '-- '-- Locoregional Site '-- 600 '-- cGy '-- '-- '-- '-- 420624e8-613c-5017-8e58-2363bfb58d49 Palliative yes '-- '-- Radiation, External Beam +TCGA-OV 5d1a54fe-e0df-4c17-b623-b649a136dc82 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2101 55 false '-- '-- '-- '-- -20287 1688 b7c5d9f0-7661-5b83-b542-63db349c7ce3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2101_demographic Dead '-- '-- '-- '-- 20287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- bcf6dd1a-9c55-5d62-950c-9c3e804897d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2101_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 733 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2101_treatment10 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1420 '-- mg '-- '-- '-- '-- 5ee8d7c9-5a2b-480c-8b74-ae11df4fcf79 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d1a54fe-e0df-4c17-b623-b649a136dc82 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2101 55 false '-- '-- '-- '-- -20287 1688 b7c5d9f0-7661-5b83-b542-63db349c7ce3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2101_demographic Dead '-- '-- '-- '-- 20287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- bcf6dd1a-9c55-5d62-950c-9c3e804897d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2101_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 221 152 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2101_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1200 '-- mg '-- '-- '-- '-- 99545768-a347-4122-9c55-a7c2873ca9ec Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5d1a54fe-e0df-4c17-b623-b649a136dc82 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2101 55 false '-- '-- '-- '-- -20287 1688 b7c5d9f0-7661-5b83-b542-63db349c7ce3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2101_demographic Dead '-- '-- '-- '-- 20287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- bcf6dd1a-9c55-5d62-950c-9c3e804897d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2101_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 1220 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2101_treatment7 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a008b8e8-64e7-4489-bbea-37c1581c8235 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d1a54fe-e0df-4c17-b623-b649a136dc82 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2101 55 false '-- '-- '-- '-- -20287 1688 b7c5d9f0-7661-5b83-b542-63db349c7ce3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2101_demographic Dead '-- '-- '-- '-- 20287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- bcf6dd1a-9c55-5d62-950c-9c3e804897d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2101_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 733 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2101_treatment14 Altretamine '-- '-- '-- '-- '-- '-- '-- 800 '-- mg '-- '-- '-- '-- bd63d595-0f0f-4e7c-8730-c311a2576c1f '-- yes '-- '-- Chemotherapy +TCGA-OV 5d1a54fe-e0df-4c17-b623-b649a136dc82 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2101 55 false '-- '-- '-- '-- -20287 1688 b7c5d9f0-7661-5b83-b542-63db349c7ce3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2101_demographic Dead '-- '-- '-- '-- 20287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- bcf6dd1a-9c55-5d62-950c-9c3e804897d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2101_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 1103 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2101_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- db4cc135-e327-49bc-95b0-5191d894dee2 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d1a54fe-e0df-4c17-b623-b649a136dc82 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2101 55 false '-- '-- '-- '-- -20287 1688 b7c5d9f0-7661-5b83-b542-63db349c7ce3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2101_demographic Dead '-- '-- '-- '-- 20287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- bcf6dd1a-9c55-5d62-950c-9c3e804897d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2101_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 117 2 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2101_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1800 '-- mg '-- '-- '-- '-- ead30eab-4fa4-416d-a8d3-45527707be2c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5d1a54fe-e0df-4c17-b623-b649a136dc82 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2101 55 false '-- '-- '-- '-- -20287 1688 b7c5d9f0-7661-5b83-b542-63db349c7ce3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2101_demographic Dead '-- '-- '-- '-- 20287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- bcf6dd1a-9c55-5d62-950c-9c3e804897d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2101_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1327 1319 '-- '-- '-- '-- '-- '-- '-- '-- 7.0 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2101_treatment2 '-- '-- '-- '-- '-- '-- Primary Tumor Field '-- 1960 '-- cGy '-- '-- '-- '-- f452c737-2355-44b0-8764-b16cdc16aa3c Palliative yes '-- '-- Radiation, External Beam +TCGA-OV 5d36676e-4140-44b5-aa0e-b2af092b7dc0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1555 50 false '-- '-- '-- '-- -18404 2692 c78d7d69-2916-5e30-85d8-5d59a1e088d4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1555_demographic Dead '-- '-- '-- '-- 19981 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1577 '-- '-- '-- 6abd2c15-7ecd-4384-9a78-51e401ec5db1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1555_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1555_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1555_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2bbbfc29-2f2d-4216-9cf1-494ccb8323d5 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 5d36676e-4140-44b5-aa0e-b2af092b7dc0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1555 50 false '-- '-- '-- '-- -18404 2692 c78d7d69-2916-5e30-85d8-5d59a1e088d4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1555_demographic Dead '-- '-- '-- '-- 19981 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1577 '-- '-- '-- 6abd2c15-7ecd-4384-9a78-51e401ec5db1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1555_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1555_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1555_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ec0246d9-0792-4dbf-ad96-7f2199a15abb '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 5d36676e-4140-44b5-aa0e-b2af092b7dc0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1555 50 false '-- '-- '-- '-- -18404 2692 c78d7d69-2916-5e30-85d8-5d59a1e088d4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1555_demographic Dead '-- '-- '-- '-- 18404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b46f42db-5cc4-512f-b5e5-6c173746e090 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1555_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1555_treatment8 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0fb4b848-c1b1-49d8-9f9c-50e08aee739d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5d36676e-4140-44b5-aa0e-b2af092b7dc0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1555 50 false '-- '-- '-- '-- -18404 2692 c78d7d69-2916-5e30-85d8-5d59a1e088d4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1555_demographic Dead '-- '-- '-- '-- 18404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b46f42db-5cc4-512f-b5e5-6c173746e090 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1555_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- 2635 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1555_treatment9 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 26faac52-0b0b-4f10-b426-f4260a7f4523 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d36676e-4140-44b5-aa0e-b2af092b7dc0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1555 50 false '-- '-- '-- '-- -18404 2692 c78d7d69-2916-5e30-85d8-5d59a1e088d4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1555_demographic Dead '-- '-- '-- '-- 18404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b46f42db-5cc4-512f-b5e5-6c173746e090 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1555_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 2415 2262 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1555_treatment7 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3010a2dc-ac30-4fc1-ab7a-aaa8f21ed56b '-- yes '-- '-- Chemotherapy +TCGA-OV 5d36676e-4140-44b5-aa0e-b2af092b7dc0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1555 50 false '-- '-- '-- '-- -18404 2692 c78d7d69-2916-5e30-85d8-5d59a1e088d4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1555_demographic Dead '-- '-- '-- '-- 18404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b46f42db-5cc4-512f-b5e5-6c173746e090 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1555_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- 2635 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1555_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 358a6b06-36fa-41e1-a62f-32becf0c8e92 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d36676e-4140-44b5-aa0e-b2af092b7dc0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1555 50 false '-- '-- '-- '-- -18404 2692 c78d7d69-2916-5e30-85d8-5d59a1e088d4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1555_demographic Dead '-- '-- '-- '-- 18404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b46f42db-5cc4-512f-b5e5-6c173746e090 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1555_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 2628 2506 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1555_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 49eb4760-e35c-4c6e-bbd3-815ce5a830d3 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d36676e-4140-44b5-aa0e-b2af092b7dc0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1555 50 false '-- '-- '-- '-- -18404 2692 c78d7d69-2916-5e30-85d8-5d59a1e088d4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1555_demographic Dead '-- '-- '-- '-- 18404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b46f42db-5cc4-512f-b5e5-6c173746e090 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1555_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1555_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5911c347-f532-4335-af9b-a2af5cb9b851 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5d36676e-4140-44b5-aa0e-b2af092b7dc0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1555 50 false '-- '-- '-- '-- -18404 2692 c78d7d69-2916-5e30-85d8-5d59a1e088d4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1555_demographic Dead '-- '-- '-- '-- 18404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b46f42db-5cc4-512f-b5e5-6c173746e090 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1555_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 2415 2262 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1555_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5e72e0cf-8bd9-4d4c-93b0-ec6f1ccb60f6 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d36676e-4140-44b5-aa0e-b2af092b7dc0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1555 50 false '-- '-- '-- '-- -18404 2692 c78d7d69-2916-5e30-85d8-5d59a1e088d4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1555_demographic Dead '-- '-- '-- '-- 18404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b46f42db-5cc4-512f-b5e5-6c173746e090 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1555_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1555_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 95719a4a-3b93-4436-83d7-ab183aa6dd67 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5d36676e-4140-44b5-aa0e-b2af092b7dc0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1555 50 false '-- '-- '-- '-- -18404 2692 c78d7d69-2916-5e30-85d8-5d59a1e088d4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1555_demographic Dead '-- '-- '-- '-- 18404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b46f42db-5cc4-512f-b5e5-6c173746e090 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1555_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 2050 1959 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1555_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c1a1763f-4eaa-4e70-8b96-6e8b2ec62fb0 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d36676e-4140-44b5-aa0e-b2af092b7dc0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1555 50 false '-- '-- '-- '-- -18404 2692 c78d7d69-2916-5e30-85d8-5d59a1e088d4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1555_demographic Dead '-- '-- '-- '-- 18404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b46f42db-5cc4-512f-b5e5-6c173746e090 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1555_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1928 1563 '-- '-- Recurrent Disease '-- '-- '-- '-- 16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1555_treatment Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e0430018-d232-53b2-aa49-4487cde4b9d9 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d36676e-4140-44b5-aa0e-b2af092b7dc0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1555 50 false '-- '-- '-- '-- -18404 2692 c78d7d69-2916-5e30-85d8-5d59a1e088d4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1555_demographic Dead '-- '-- '-- '-- 18404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b46f42db-5cc4-512f-b5e5-6c173746e090 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1555_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 2628 2506 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1555_treatment11 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ebd98370-7bbc-429c-b978-1c03af85ce7f '-- yes '-- '-- Chemotherapy +TCGA-OV 5d36676e-4140-44b5-aa0e-b2af092b7dc0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1555 50 false '-- '-- '-- '-- -18404 2692 c78d7d69-2916-5e30-85d8-5d59a1e088d4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1555_demographic Dead '-- '-- '-- '-- 18404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b46f42db-5cc4-512f-b5e5-6c173746e090 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1555_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 2050 1959 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1555_treatment10 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- eede01b7-00b9-40da-b9fb-47a7e93ee68b '-- yes '-- '-- Chemotherapy +TCGA-OV 5d603bba-62e6-48fb-b8fc-401109abcaee Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1853 58 false '-- '-- '-- '-- -21404 1103 9649f5ae-33a3-5b79-b29f-c90792bbbc57 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1853_demographic Dead '-- '-- '-- '-- 21404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0de0b75a-d428-5237-ac4d-c3078e11272d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1853_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1011 950 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1853_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 40 '-- mg/m2 '-- '-- '-- '-- 77a013cd-fda7-4fd4-8e2f-8a208c6e7d5d '-- yes '-- '-- Chemotherapy +TCGA-OV 5d603bba-62e6-48fb-b8fc-401109abcaee Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1853 58 false '-- '-- '-- '-- -21404 1103 9649f5ae-33a3-5b79-b29f-c90792bbbc57 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1853_demographic Dead '-- '-- '-- '-- 21404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0de0b75a-d428-5237-ac4d-c3078e11272d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1853_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 126 42 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1853_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 7878b72f-6bb4-41df-ad82-ba3f2f61bb1c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5d603bba-62e6-48fb-b8fc-401109abcaee Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1853 58 false '-- '-- '-- '-- -21404 1103 9649f5ae-33a3-5b79-b29f-c90792bbbc57 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1853_demographic Dead '-- '-- '-- '-- 21404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0de0b75a-d428-5237-ac4d-c3078e11272d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1853_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1853_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 928fb99c-5f7f-471a-930b-0442f1c52af4 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5d603bba-62e6-48fb-b8fc-401109abcaee Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1853 58 false '-- '-- '-- '-- -21404 1103 9649f5ae-33a3-5b79-b29f-c90792bbbc57 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1853_demographic Dead '-- '-- '-- '-- 21404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0de0b75a-d428-5237-ac4d-c3078e11272d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1853_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 778 669 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1853_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 92fcd1cb-811d-50be-9e36-8cfd9f8c6788 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d603bba-62e6-48fb-b8fc-401109abcaee Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1853 58 false '-- '-- '-- '-- -21404 1103 9649f5ae-33a3-5b79-b29f-c90792bbbc57 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1853_demographic Dead '-- '-- '-- '-- 21404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0de0b75a-d428-5237-ac4d-c3078e11272d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1853_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 778 669 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1853_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- bed401e8-ffdf-4581-877e-3795ecb66739 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d603bba-62e6-48fb-b8fc-401109abcaee Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1853 58 false '-- '-- '-- '-- -21404 1103 9649f5ae-33a3-5b79-b29f-c90792bbbc57 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1853_demographic Dead '-- '-- '-- '-- 21404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0de0b75a-d428-5237-ac4d-c3078e11272d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1853_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 126 42 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1853_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- e757d107-ad46-4b01-b70d-968c043f181e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5d603bba-62e6-48fb-b8fc-401109abcaee Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1853 58 false '-- '-- '-- '-- -21404 1103 9649f5ae-33a3-5b79-b29f-c90792bbbc57 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1853_demographic Dead '-- '-- '-- '-- 21404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0de0b75a-d428-5237-ac4d-c3078e11272d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1853_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 932 886 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1853_treatment6 Trabectedin '-- '-- '-- '-- '-- '-- '-- 580 '-- mg/m2 '-- '-- '-- '-- e870d900-784b-4d71-9d16-e7e503cfd563 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d603bba-62e6-48fb-b8fc-401109abcaee Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1853 58 false '-- '-- '-- '-- -21404 1103 9649f5ae-33a3-5b79-b29f-c90792bbbc57 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1853_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0fd2b359-09a3-4556-9cd3-dd17477172ac false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1853_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1853_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1853_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 61f80d6c-e782-4bf8-bb7f-4dbbf1c27aeb '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 5d603bba-62e6-48fb-b8fc-401109abcaee Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1853 58 false '-- '-- '-- '-- -21404 1103 9649f5ae-33a3-5b79-b29f-c90792bbbc57 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1853_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0fd2b359-09a3-4556-9cd3-dd17477172ac false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1853_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1853_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1853_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d890b0e5-373a-4b6f-9c4a-276982e4eef4 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 5d603bba-62e6-48fb-b8fc-401109abcaee Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1853 58 false '-- '-- '-- '-- -21404 1103 9649f5ae-33a3-5b79-b29f-c90792bbbc57 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1853_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0fd2b359-09a3-4556-9cd3-dd17477172ac false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1853_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1853_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 654 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1853_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e5f7541f-53fa-4007-8977-86b479b77ae2 '-- yes '-- '-- Surgery, NOS +TCGA-OV 5d603bba-62e6-48fb-b8fc-401109abcaee Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1853 58 false '-- '-- '-- '-- -21404 1103 9649f5ae-33a3-5b79-b29f-c90792bbbc57 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1853_demographic Dead '-- '-- '-- '-- 22038 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 634 '-- '-- '-- 8e6ad8e0-3446-4e1f-8e29-ce59180bf620 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1853_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1853_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1853_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 28c5f642-e24d-4eb2-9120-8fead16756ca '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 5d603bba-62e6-48fb-b8fc-401109abcaee Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1853 58 false '-- '-- '-- '-- -21404 1103 9649f5ae-33a3-5b79-b29f-c90792bbbc57 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1853_demographic Dead '-- '-- '-- '-- 22038 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 634 '-- '-- '-- 8e6ad8e0-3446-4e1f-8e29-ce59180bf620 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1853_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1853_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1853_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6a54fa17-2525-4dc4-af7e-c25a4e9d41ce '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 5d7027f5-60a0-47ab-a79d-667c9acc0e54 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1616 56 false '-- '-- '-- '-- -20785 1163 b5a2d23a-7e9e-5ce2-bf23-c98e8e04a0a6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1616_demographic Dead '-- '-- '-- '-- 21190 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 405 '-- '-- '-- 13aea83e-f432-4e05-be35-60d24a3228a9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1616_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1616_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1616_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6bce0348-131c-4741-91d0-905eb5ca8720 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 5d7027f5-60a0-47ab-a79d-667c9acc0e54 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1616 56 false '-- '-- '-- '-- -20785 1163 b5a2d23a-7e9e-5ce2-bf23-c98e8e04a0a6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1616_demographic Dead '-- '-- '-- '-- 21190 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 405 '-- '-- '-- 13aea83e-f432-4e05-be35-60d24a3228a9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1616_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1616_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1616_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6c1aaf2a-e72c-4953-8b2c-84c1cd64354b '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 5d7027f5-60a0-47ab-a79d-667c9acc0e54 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1616 56 false '-- '-- '-- '-- -20785 1163 b5a2d23a-7e9e-5ce2-bf23-c98e8e04a0a6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1616_demographic Dead '-- '-- '-- '-- 20785 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 661d13d0-4961-5a39-bd67-d1665dda7bc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1616_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1616_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0d768c44-38a7-4627-8846-ae5a63d4dd31 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5d7027f5-60a0-47ab-a79d-667c9acc0e54 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1616 56 false '-- '-- '-- '-- -20785 1163 b5a2d23a-7e9e-5ce2-bf23-c98e8e04a0a6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1616_demographic Dead '-- '-- '-- '-- 20785 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 661d13d0-4961-5a39-bd67-d1665dda7bc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1616_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1616_treatment7 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2730a219-7650-42e0-bcd1-334ad728e981 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d7027f5-60a0-47ab-a79d-667c9acc0e54 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1616 56 false '-- '-- '-- '-- -20785 1163 b5a2d23a-7e9e-5ce2-bf23-c98e8e04a0a6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1616_demographic Dead '-- '-- '-- '-- 20785 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 661d13d0-4961-5a39-bd67-d1665dda7bc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1616_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 165 18 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1616_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3ba7c5ba-dd01-4d67-b376-261d5a0b252a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5d7027f5-60a0-47ab-a79d-667c9acc0e54 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1616 56 false '-- '-- '-- '-- -20785 1163 b5a2d23a-7e9e-5ce2-bf23-c98e8e04a0a6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1616_demographic Dead '-- '-- '-- '-- 20785 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 661d13d0-4961-5a39-bd67-d1665dda7bc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1616_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1616_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4ef84249-1a91-4bc9-a319-e03e460c7c3f '-- yes '-- '-- Chemotherapy +TCGA-OV 5d7027f5-60a0-47ab-a79d-667c9acc0e54 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1616 56 false '-- '-- '-- '-- -20785 1163 b5a2d23a-7e9e-5ce2-bf23-c98e8e04a0a6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1616_demographic Dead '-- '-- '-- '-- 20785 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 661d13d0-4961-5a39-bd67-d1665dda7bc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1616_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1616_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 66e37796-d934-4591-a2c3-2debcd70a252 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d7027f5-60a0-47ab-a79d-667c9acc0e54 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1616 56 false '-- '-- '-- '-- -20785 1163 b5a2d23a-7e9e-5ce2-bf23-c98e8e04a0a6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1616_demographic Dead '-- '-- '-- '-- 20785 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 661d13d0-4961-5a39-bd67-d1665dda7bc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1616_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1616_treatment6 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aaf5de22-871e-4c8e-8a05-84d29eac47c3 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d7027f5-60a0-47ab-a79d-667c9acc0e54 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1616 56 false '-- '-- '-- '-- -20785 1163 b5a2d23a-7e9e-5ce2-bf23-c98e8e04a0a6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1616_demographic Dead '-- '-- '-- '-- 20785 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 661d13d0-4961-5a39-bd67-d1665dda7bc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1616_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 165 18 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1616_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c4986947-2385-4b8c-9339-5866dc639f0d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5d7027f5-60a0-47ab-a79d-667c9acc0e54 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1616 56 false '-- '-- '-- '-- -20785 1163 b5a2d23a-7e9e-5ce2-bf23-c98e8e04a0a6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1616_demographic Dead '-- '-- '-- '-- 20785 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 661d13d0-4961-5a39-bd67-d1665dda7bc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1616_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1616_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e6ea5986-200c-5661-801e-6fd1cda8c46f '-- yes '-- '-- Chemotherapy +TCGA-OV 5d7027f5-60a0-47ab-a79d-667c9acc0e54 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1616 56 false '-- '-- '-- '-- -20785 1163 b5a2d23a-7e9e-5ce2-bf23-c98e8e04a0a6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1616_demographic Dead '-- '-- '-- '-- 20785 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 661d13d0-4961-5a39-bd67-d1665dda7bc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1616_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1616_treatment8 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ed3fd914-79cd-43fc-ae65-08f0790fbb5b '-- yes '-- '-- Chemotherapy +TCGA-OV 5e18b17d-4626-4b6d-8ac6-e560cee0376c Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1419 62 false '-- '-- '-- '-- -22659 '-- 3f13178e-a4ea-57f8-a075-e6c7d1ca68bd '-- not reported female '-- '-- '-- '-- white TCGA-24-1419_demographic Alive '-- '-- '-- '-- 22659 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0e5dd5f1-3f97-56e1-a043-2c72b348edc7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1419_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 131 17 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1419_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- 806 '-- mg '-- '-- '-- '-- 0f4a1fac-8450-4791-9d6d-bc258fa915d0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5e18b17d-4626-4b6d-8ac6-e560cee0376c Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1419 62 false '-- '-- '-- '-- -22659 '-- 3f13178e-a4ea-57f8-a075-e6c7d1ca68bd '-- not reported female '-- '-- '-- '-- white TCGA-24-1419_demographic Alive '-- '-- '-- '-- 22659 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0e5dd5f1-3f97-56e1-a043-2c72b348edc7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1419_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 121 17 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1419_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3882 '-- mg '-- '-- '-- '-- 38f759a7-11ca-4404-92ff-210fd99eae1d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5e18b17d-4626-4b6d-8ac6-e560cee0376c Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1419 62 false '-- '-- '-- '-- -22659 '-- 3f13178e-a4ea-57f8-a075-e6c7d1ca68bd '-- not reported female '-- '-- '-- '-- white TCGA-24-1419_demographic Alive '-- '-- '-- '-- 22659 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0e5dd5f1-3f97-56e1-a043-2c72b348edc7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1419_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- 197 '-- '-- Not Reported '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1419_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 478 '-- mg '-- '-- '-- '-- 9d51deb3-1711-5307-8b2d-811f88bca941 Consolidation Therapy yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 5e18b17d-4626-4b6d-8ac6-e560cee0376c Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1419 62 false '-- '-- '-- '-- -22659 '-- 3f13178e-a4ea-57f8-a075-e6c7d1ca68bd '-- not reported female '-- '-- '-- '-- white TCGA-24-1419_demographic Alive '-- '-- '-- '-- 22659 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0e5dd5f1-3f97-56e1-a043-2c72b348edc7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1419_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1419_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c9c3c288-be02-47ad-b1d0-32238952d967 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5ed14506-f69a-4da8-9965-72d3270b9f72 Informed Consent 22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1585 57 false '-- '-- '-- '-- -20862 53 2f038007-2450-5b90-830c-b6054faa83c3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1585_demographic Dead '-- '-- '-- '-- 20862 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b2f8b028-ac9c-5bbc-9a49-f4d0e7331f71 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1585_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1585_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5d7f2c53-09d2-43b4-b8fa-1c22db6c04a9 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5ed14506-f69a-4da8-9965-72d3270b9f72 Informed Consent 22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1585 57 false '-- '-- '-- '-- -20862 53 2f038007-2450-5b90-830c-b6054faa83c3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1585_demographic Dead '-- '-- '-- '-- 20862 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b2f8b028-ac9c-5bbc-9a49-f4d0e7331f71 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1585_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 53 18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1585_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f72d699b-9f21-5812-b0e3-9187bf1e3bc9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5ed14506-f69a-4da8-9965-72d3270b9f72 Informed Consent 22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1585 57 false '-- '-- '-- '-- -20862 53 2f038007-2450-5b90-830c-b6054faa83c3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1585_demographic Dead '-- '-- '-- '-- 20862 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b2f8b028-ac9c-5bbc-9a49-f4d0e7331f71 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1585_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 53 18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1585_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fe7ccb83-627e-4311-aa56-b9fa86f51019 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5f60bc2d-738f-43fc-a3fb-61ec6e80e3d4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0916 49 false '-- '-- '-- '-- -18189 '-- eb66def4-8b14-5b5c-9c01-bd60707a8e18 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0916_demographic Alive '-- '-- '-- '-- 18189 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 013ba4e2-f2d0-5a07-a02e-5293a1da0678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0916_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 161 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0916_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- 0f6be681-a693-5dbc-88d9-01ab2afb79d0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5f60bc2d-738f-43fc-a3fb-61ec6e80e3d4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0916 49 false '-- '-- '-- '-- -18189 '-- eb66def4-8b14-5b5c-9c01-bd60707a8e18 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0916_demographic Alive '-- '-- '-- '-- 18189 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 013ba4e2-f2d0-5a07-a02e-5293a1da0678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0916_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0916_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1cce68b8-c2d9-418e-b609-9ac7dc6ae527 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5f60bc2d-738f-43fc-a3fb-61ec6e80e3d4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0916 49 false '-- '-- '-- '-- -18189 '-- eb66def4-8b14-5b5c-9c01-bd60707a8e18 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0916_demographic Alive '-- '-- '-- '-- 18189 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 013ba4e2-f2d0-5a07-a02e-5293a1da0678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0916_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 161 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0916_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- 3e903888-7a29-4c70-9cb1-faec5d4d8d96 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5f60bc2d-738f-43fc-a3fb-61ec6e80e3d4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0916 49 false '-- '-- '-- '-- -18189 '-- eb66def4-8b14-5b5c-9c01-bd60707a8e18 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0916_demographic Alive '-- '-- '-- '-- 18189 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 013ba4e2-f2d0-5a07-a02e-5293a1da0678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0916_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 182 70 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0916_treatment4 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 15 '-- mg/m2 '-- '-- '-- '-- 49ef66b3-42a7-47b1-882a-a35d7254d359 Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV 5f60bc2d-738f-43fc-a3fb-61ec6e80e3d4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0916 49 false '-- '-- '-- '-- -18189 '-- eb66def4-8b14-5b5c-9c01-bd60707a8e18 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0916_demographic Alive '-- '-- '-- '-- 18189 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 013ba4e2-f2d0-5a07-a02e-5293a1da0678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0916_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 161 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0916_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- dc53c6cd-56aa-4b72-91d0-db56fe0d5f64 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 60014a6e-6a13-4f92-bbfd-eeeee9632f98 Informed Consent 36 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1670 57 false '-- '-- '-- '-- -21147 '-- 6b43a657-6688-5c19-a029-98a9960eb782 '-- not reported female '-- '-- '-- '-- white TCGA-09-1670_demographic Alive '-- '-- '-- '-- 21147 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 35db92e7-eaa8-5d22-ba3a-cde96978732d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1670_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1670_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 35d92549-68d0-43ae-8d0a-afbe538b8c39 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 60014a6e-6a13-4f92-bbfd-eeeee9632f98 Informed Consent 36 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1670 57 false '-- '-- '-- '-- -21147 '-- 6b43a657-6688-5c19-a029-98a9960eb782 '-- not reported female '-- '-- '-- '-- white TCGA-09-1670_demographic Alive '-- '-- '-- '-- 21147 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 35db92e7-eaa8-5d22-ba3a-cde96978732d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1670_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 179 74 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1670_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 95da0672-c7d9-4ce2-b2c2-da571d47c56d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 60014a6e-6a13-4f92-bbfd-eeeee9632f98 Informed Consent 36 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1670 57 false '-- '-- '-- '-- -21147 '-- 6b43a657-6688-5c19-a029-98a9960eb782 '-- not reported female '-- '-- '-- '-- white TCGA-09-1670_demographic Alive '-- '-- '-- '-- 21147 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 35db92e7-eaa8-5d22-ba3a-cde96978732d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1670_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 179 74 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1670_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 9d01671a-f866-4718-afd3-6abd6305a976 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 60014a6e-6a13-4f92-bbfd-eeeee9632f98 Informed Consent 36 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1670 57 false '-- '-- '-- '-- -21147 '-- 6b43a657-6688-5c19-a029-98a9960eb782 '-- not reported female '-- '-- '-- '-- white TCGA-09-1670_demographic Alive '-- '-- '-- '-- 21147 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 35db92e7-eaa8-5d22-ba3a-cde96978732d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1670_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1670_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ed415d17-e6ec-504f-a7da-248bb4055e92 '-- yes '-- '-- Chemotherapy +TCGA-OV 60014a6e-6a13-4f92-bbfd-eeeee9632f98 Informed Consent 36 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1670 57 false '-- '-- '-- '-- -21147 '-- 6b43a657-6688-5c19-a029-98a9960eb782 '-- not reported female '-- '-- '-- '-- white TCGA-09-1670_demographic Alive '-- '-- '-- '-- 21694 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 547 '-- '-- '-- 9a58a876-17f5-453c-ba25-a826001b9840 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1670_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1670_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1670_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6deb4fee-b8b1-4dc0-89b1-02409355e49c '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 60014a6e-6a13-4f92-bbfd-eeeee9632f98 Informed Consent 36 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1670 57 false '-- '-- '-- '-- -21147 '-- 6b43a657-6688-5c19-a029-98a9960eb782 '-- not reported female '-- '-- '-- '-- white TCGA-09-1670_demographic Alive '-- '-- '-- '-- 21694 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 547 '-- '-- '-- 9a58a876-17f5-453c-ba25-a826001b9840 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1670_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1670_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1670_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e1f21e7c-a4d3-4629-b8dd-f69b417db94f '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 602e2934-223a-44db-8c33-06eb05d72f94 Informed Consent 4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1994 63 false '-- '-- '-- '-- -23062 '-- bd5457d3-56e5-5b22-9a6c-7e0490fffb31 '-- not reported female '-- '-- '-- '-- white TCGA-57-1994_demographic Alive '-- '-- '-- '-- 23062 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f930091a-6f43-5cce-960e-931dad13eb66 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1994_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1994_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 11b280e8-d263-5ead-afac-b43658b894c3 Adjuvant no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 602e2934-223a-44db-8c33-06eb05d72f94 Informed Consent 4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1994 63 false '-- '-- '-- '-- -23062 '-- bd5457d3-56e5-5b22-9a6c-7e0490fffb31 '-- not reported female '-- '-- '-- '-- white TCGA-57-1994_demographic Alive '-- '-- '-- '-- 23062 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f930091a-6f43-5cce-960e-931dad13eb66 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1994_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1994_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6ccb730d-ebb7-4e4a-aeb8-f22a9dbff266 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 60cce7ac-d27d-44a6-9873-ecf91da5e906 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1123 59 false '-- '-- '-- '-- -21552 1018 ce764708-fee9-5782-b207-acbf274a2c5e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1123_demographic Dead '-- '-- '-- '-- 21552 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 394df501-4b80-527f-91ba-621c945330b6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1123_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1123_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1f0188f3-b8a7-4edf-a8bc-cecf07957327 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 60cce7ac-d27d-44a6-9873-ecf91da5e906 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1123 59 false '-- '-- '-- '-- -21552 1018 ce764708-fee9-5782-b207-acbf274a2c5e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1123_demographic Dead '-- '-- '-- '-- 21552 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 394df501-4b80-527f-91ba-621c945330b6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1123_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 894 812 '-- '-- Persistent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Not Reported TCGA-23-1123_treatment2 Topotecan '-- '-- '-- '-- '-- '-- '-- 40 '-- mg '-- '-- '-- '-- 2c6020bf-b59a-41d4-9c03-b473eae12ce2 Not Reported yes '-- '-- Chemotherapy +TCGA-OV 60cce7ac-d27d-44a6-9873-ecf91da5e906 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1123 59 false '-- '-- '-- '-- -21552 1018 ce764708-fee9-5782-b207-acbf274a2c5e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1123_demographic Dead '-- '-- '-- '-- 21552 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 394df501-4b80-527f-91ba-621c945330b6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1123_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 250 7 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Not Reported TCGA-23-1123_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4800 '-- mg '-- '-- '-- '-- 3dab401e-37f6-4d3c-9130-a7e57b8942e2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 60cce7ac-d27d-44a6-9873-ecf91da5e906 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1123 59 false '-- '-- '-- '-- -21552 1018 ce764708-fee9-5782-b207-acbf274a2c5e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1123_demographic Dead '-- '-- '-- '-- 21552 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 394df501-4b80-527f-91ba-621c945330b6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1123_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 599 452 '-- '-- Persistent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1123_treatment3 Doxorubicin '-- '-- '-- '-- '-- '-- '-- 456 '-- mg '-- '-- '-- '-- bd510df9-8aa0-482a-a620-f943fe9ef3f5 Not Reported yes '-- '-- Chemotherapy +TCGA-OV 60cce7ac-d27d-44a6-9873-ecf91da5e906 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1123 59 false '-- '-- '-- '-- -21552 1018 ce764708-fee9-5782-b207-acbf274a2c5e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1123_demographic Dead '-- '-- '-- '-- 21552 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 394df501-4b80-527f-91ba-621c945330b6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1123_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 250 7 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Not Reported TCGA-23-1123_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2000 '-- mg '-- '-- '-- '-- fdde878a-f1e1-5022-90a0-86319fee955a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 611600a6-43ec-4029-9682-cd6d6a3312ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1483 61 false '-- '-- '-- '-- -22342 895 1b6e413d-3075-5578-96e1-c7441bed86cd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1483_demographic Dead '-- '-- '-- '-- 22639 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 297 '-- '-- '-- 117df4e6-fe1e-40b0-abd0-de7cbf783e0e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1483_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1483_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1483_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5226d610-e8cf-48bd-a6f3-8891693388c3 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 611600a6-43ec-4029-9682-cd6d6a3312ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1483 61 false '-- '-- '-- '-- -22342 895 1b6e413d-3075-5578-96e1-c7441bed86cd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1483_demographic Dead '-- '-- '-- '-- 22639 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 297 '-- '-- '-- 117df4e6-fe1e-40b0-abd0-de7cbf783e0e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1483_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1483_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1483_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f1757f9d-7ec5-4b4d-a0e5-1b7b7c700553 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 611600a6-43ec-4029-9682-cd6d6a3312ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1483 61 false '-- '-- '-- '-- -22342 895 1b6e413d-3075-5578-96e1-c7441bed86cd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1483_demographic Dead '-- '-- '-- '-- 22342 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7c0462b7-dd23-5dc0-855f-2377dab52877 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1483_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 176 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1483_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 174 '-- mg/m2 '-- '-- '-- '-- 08e9d0d3-78e5-40fa-857e-6961f9464a7e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 611600a6-43ec-4029-9682-cd6d6a3312ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1483 61 false '-- '-- '-- '-- -22342 895 1b6e413d-3075-5578-96e1-c7441bed86cd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1483_demographic Dead '-- '-- '-- '-- 22342 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7c0462b7-dd23-5dc0-855f-2377dab52877 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1483_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 176 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1483_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9e5807f8-483a-484b-bf87-796964f190f4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 611600a6-43ec-4029-9682-cd6d6a3312ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1483 61 false '-- '-- '-- '-- -22342 895 1b6e413d-3075-5578-96e1-c7441bed86cd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1483_demographic Dead '-- '-- '-- '-- 22342 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7c0462b7-dd23-5dc0-855f-2377dab52877 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1483_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1483_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b7818810-dc40-4907-bd02-6b42fd429668 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 611600a6-43ec-4029-9682-cd6d6a3312ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1483 61 false '-- '-- '-- '-- -22342 895 1b6e413d-3075-5578-96e1-c7441bed86cd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1483_demographic Dead '-- '-- '-- '-- 22342 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7c0462b7-dd23-5dc0-855f-2377dab52877 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1483_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 239 219 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-1483_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- d1b07c9f-3521-5664-b0e8-f9a4cb10a15f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 619b14f3-b8cc-4c0a-8304-6719853d592a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0968 59 false '-- '-- '-- '-- -21664 '-- df7b1d1e-430e-5b44-b7fe-e7cadded22e0 '-- not reported female '-- '-- '-- '-- white TCGA-24-0968_demographic Dead '-- '-- '-- '-- 21664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 87361581-dac1-527d-bb58-01c4d69a5e91 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0968_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- Persistent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0968_treatment8 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0a5693ff-ef6f-46c6-9e98-4018c1bcbec1 Not Reported yes '-- '-- Chemotherapy +TCGA-OV 619b14f3-b8cc-4c0a-8304-6719853d592a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0968 59 false '-- '-- '-- '-- -21664 '-- df7b1d1e-430e-5b44-b7fe-e7cadded22e0 '-- not reported female '-- '-- '-- '-- white TCGA-24-0968_demographic Dead '-- '-- '-- '-- 21664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 87361581-dac1-527d-bb58-01c4d69a5e91 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0968_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-0968_treatment5 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 50 '-- mg/day '-- '-- '-- '-- 259e6b96-e880-450d-8bd2-b46b4bea39e2 '-- yes '-- '-- Chemotherapy +TCGA-OV 619b14f3-b8cc-4c0a-8304-6719853d592a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0968 59 false '-- '-- '-- '-- -21664 '-- df7b1d1e-430e-5b44-b7fe-e7cadded22e0 '-- not reported female '-- '-- '-- '-- white TCGA-24-0968_demographic Dead '-- '-- '-- '-- 21664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 87361581-dac1-527d-bb58-01c4d69a5e91 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0968_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 119 35 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0968_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2790 '-- mg '-- '-- '-- '-- 448a8278-2bd2-4e2e-bbcb-a6cf4200aaef Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 619b14f3-b8cc-4c0a-8304-6719853d592a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0968 59 false '-- '-- '-- '-- -21664 '-- df7b1d1e-430e-5b44-b7fe-e7cadded22e0 '-- not reported female '-- '-- '-- '-- white TCGA-24-0968_demographic Dead '-- '-- '-- '-- 21664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 87361581-dac1-527d-bb58-01c4d69a5e91 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0968_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-0968_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 61e1d46c-c869-4063-8b1b-efc2ce293e23 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 619b14f3-b8cc-4c0a-8304-6719853d592a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0968 59 false '-- '-- '-- '-- -21664 '-- df7b1d1e-430e-5b44-b7fe-e7cadded22e0 '-- not reported female '-- '-- '-- '-- white TCGA-24-0968_demographic Dead '-- '-- '-- '-- 21664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 87361581-dac1-527d-bb58-01c4d69a5e91 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0968_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 119 35 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0968_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1378 '-- mg '-- '-- '-- '-- 77444232-b616-4fdc-9dfb-76251663f28f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 619b14f3-b8cc-4c0a-8304-6719853d592a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0968 59 false '-- '-- '-- '-- -21664 '-- df7b1d1e-430e-5b44-b7fe-e7cadded22e0 '-- not reported female '-- '-- '-- '-- white TCGA-24-0968_demographic Dead '-- '-- '-- '-- 21664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 87361581-dac1-527d-bb58-01c4d69a5e91 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0968_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0968_treatment7 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7df4f6c6-efca-4440-b81f-e56ab7cf87d8 '-- yes '-- '-- Chemotherapy +TCGA-OV 619b14f3-b8cc-4c0a-8304-6719853d592a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0968 59 false '-- '-- '-- '-- -21664 '-- df7b1d1e-430e-5b44-b7fe-e7cadded22e0 '-- not reported female '-- '-- '-- '-- white TCGA-24-0968_demographic Dead '-- '-- '-- '-- 21664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 87361581-dac1-527d-bb58-01c4d69a5e91 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0968_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- Persistent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0968_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 83813074-0fee-4ab1-983d-73030b6c54f7 Not Reported yes '-- '-- Chemotherapy +TCGA-OV 619b14f3-b8cc-4c0a-8304-6719853d592a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0968 59 false '-- '-- '-- '-- -21664 '-- df7b1d1e-430e-5b44-b7fe-e7cadded22e0 '-- not reported female '-- '-- '-- '-- white TCGA-24-0968_demographic Dead '-- '-- '-- '-- 21664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 87361581-dac1-527d-bb58-01c4d69a5e91 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0968_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0968_treatment Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8d2c6479-f37b-5d93-b863-876e8fa63988 '-- yes '-- '-- Chemotherapy +TCGA-OV 619b14f3-b8cc-4c0a-8304-6719853d592a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0968 59 false '-- '-- '-- '-- -21664 '-- df7b1d1e-430e-5b44-b7fe-e7cadded22e0 '-- not reported female '-- '-- '-- '-- white TCGA-24-0968_demographic Dead '-- '-- '-- '-- 21664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 87361581-dac1-527d-bb58-01c4d69a5e91 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0968_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- Persistent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0968_treatment4 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fb8ff040-0242-46c3-8f72-5e1d0ac657e2 Not Reported yes '-- '-- Chemotherapy +TCGA-OV 61feee94-3ac9-42fe-aaa3-dc6a3efe563c Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1953 52 false '-- '-- '-- '-- -19064 '-- 3bd53964-0f52-57a9-8645-6b78d6e3b5ce '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-31-1953_demographic Alive '-- '-- '-- '-- 19064 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- afe49009-fc98-5b1d-9903-ccc3d9c5d4fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1953_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 65 23 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1953_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 840 '-- mg '-- '-- '-- '-- 17c4216b-0dbb-576d-bec5-8806fd89f076 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 61feee94-3ac9-42fe-aaa3-dc6a3efe563c Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1953 52 false '-- '-- '-- '-- -19064 '-- 3bd53964-0f52-57a9-8645-6b78d6e3b5ce '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-31-1953_demographic Alive '-- '-- '-- '-- 19064 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- afe49009-fc98-5b1d-9903-ccc3d9c5d4fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1953_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1953_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4aa4dd2b-f2c9-4b6b-940c-a8ea32114ebf Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 61feee94-3ac9-42fe-aaa3-dc6a3efe563c Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1953 52 false '-- '-- '-- '-- -19064 '-- 3bd53964-0f52-57a9-8645-6b78d6e3b5ce '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-31-1953_demographic Alive '-- '-- '-- '-- 19064 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- afe49009-fc98-5b1d-9903-ccc3d9c5d4fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1953_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- 100 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1953_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 69499c5b-e264-4b39-8d85-a5c63b50b778 '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 61feee94-3ac9-42fe-aaa3-dc6a3efe563c Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1953 52 false '-- '-- '-- '-- -19064 '-- 3bd53964-0f52-57a9-8645-6b78d6e3b5ce '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-31-1953_demographic Alive '-- '-- '-- '-- 19064 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- afe49009-fc98-5b1d-9903-ccc3d9c5d4fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1953_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- 100 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1953_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a7ef8d30-76d5-4de3-b2df-9907511a9612 '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 61feee94-3ac9-42fe-aaa3-dc6a3efe563c Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1953 52 false '-- '-- '-- '-- -19064 '-- 3bd53964-0f52-57a9-8645-6b78d6e3b5ce '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-31-1953_demographic Alive '-- '-- '-- '-- 19064 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- afe49009-fc98-5b1d-9903-ccc3d9c5d4fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1953_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 65 23 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1953_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1350 '-- mg '-- '-- '-- '-- f89419f4-2685-485f-8384-1e3e99a9bd4d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 61feee94-3ac9-42fe-aaa3-dc6a3efe563c Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1953 52 false '-- '-- '-- '-- -19064 '-- 3bd53964-0f52-57a9-8645-6b78d6e3b5ce '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-31-1953_demographic Alive '-- '-- '-- '-- 19134 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 70 '-- '-- '-- c3d3c345-82ea-47a6-9545-39911db0edcd false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-31-1953_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-31-1953_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1953_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 14c21034-dcff-4b26-be36-9ca3200d00a6 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 61feee94-3ac9-42fe-aaa3-dc6a3efe563c Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1953 52 false '-- '-- '-- '-- -19064 '-- 3bd53964-0f52-57a9-8645-6b78d6e3b5ce '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-31-1953_demographic Alive '-- '-- '-- '-- 19134 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 70 '-- '-- '-- c3d3c345-82ea-47a6-9545-39911db0edcd false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-31-1953_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-31-1953_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1953_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b09d6e66-e1ba-4026-aebf-ed2743378fde '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 6209e80d-a115-4f8e-bf0d-18461401a1c6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1113 48 false '-- '-- '-- '-- -17791 949 5a2431ef-c08f-54a7-8154-48b049a5370f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1113_demographic Dead '-- '-- '-- '-- 17791 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b23cc40b-3cda-5ccc-9089-804096c70d8b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1113_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 253 225 '-- '-- Progressive Disease '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1113_treatment6 Doxorubicin '-- '-- '-- '-- '-- '-- '-- 816 '-- mg '-- '-- '-- '-- 32f898c8-4620-435a-b7ff-97ec6d428a7c '-- yes '-- '-- Chemotherapy +TCGA-OV 6209e80d-a115-4f8e-bf0d-18461401a1c6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1113 48 false '-- '-- '-- '-- -17791 949 5a2431ef-c08f-54a7-8154-48b049a5370f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1113_demographic Dead '-- '-- '-- '-- 17791 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b23cc40b-3cda-5ccc-9089-804096c70d8b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1113_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1113_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 35a39fc8-8c5b-4d17-85e9-48723b75e55b Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 6209e80d-a115-4f8e-bf0d-18461401a1c6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1113 48 false '-- '-- '-- '-- -17791 949 5a2431ef-c08f-54a7-8154-48b049a5370f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1113_demographic Dead '-- '-- '-- '-- 17791 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b23cc40b-3cda-5ccc-9089-804096c70d8b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1113_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 187 102 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1113_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 528 '-- mg '-- '-- '-- '-- 363c63d0-9f36-44e3-8e72-c7e9161507be Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6209e80d-a115-4f8e-bf0d-18461401a1c6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1113 48 false '-- '-- '-- '-- -17791 949 5a2431ef-c08f-54a7-8154-48b049a5370f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1113_demographic Dead '-- '-- '-- '-- 17791 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b23cc40b-3cda-5ccc-9089-804096c70d8b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1113_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 187 102 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1113_treatment5 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 11282 '-- mg '-- '-- '-- '-- 52839a35-4a29-4765-a394-d03fbd764e08 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6209e80d-a115-4f8e-bf0d-18461401a1c6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1113 48 false '-- '-- '-- '-- -17791 949 5a2431ef-c08f-54a7-8154-48b049a5370f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1113_demographic Dead '-- '-- '-- '-- 17791 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b23cc40b-3cda-5ccc-9089-804096c70d8b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1113_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 74 27 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1113_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 870 '-- mg '-- '-- '-- '-- 69678175-b7f5-4f79-aa5a-254bb7760144 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6209e80d-a115-4f8e-bf0d-18461401a1c6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1113 48 false '-- '-- '-- '-- -17791 949 5a2431ef-c08f-54a7-8154-48b049a5370f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1113_demographic Dead '-- '-- '-- '-- 17791 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b23cc40b-3cda-5ccc-9089-804096c70d8b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1113_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 873 253 '-- '-- Progressive Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1113_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- 910 '-- mg '-- '-- '-- '-- f57886e0-cdf6-41bc-aca9-b0874f64d401 '-- yes '-- '-- Chemotherapy +TCGA-OV 6209e80d-a115-4f8e-bf0d-18461401a1c6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1113 48 false '-- '-- '-- '-- -17791 949 5a2431ef-c08f-54a7-8154-48b049a5370f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1113_demographic Dead '-- '-- '-- '-- 17791 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b23cc40b-3cda-5ccc-9089-804096c70d8b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1113_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 74 27 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1113_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 1650 '-- mg '-- '-- '-- '-- f9bad516-36e1-5939-aae3-a947ec9eb0b2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 62379be5-13f0-474b-94d3-6f944ec4ee96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1552 77 false '-- '-- '-- '-- -28129 1259 74a423cc-a9ec-5dd0-b5aa-5054a39621ef '-- not reported female '-- '-- '-- '-- white TCGA-24-1552_demographic Dead '-- '-- '-- '-- 28532 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 403 '-- '-- '-- 1e8560cd-2985-47f8-85ba-8e9dfba445ac false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1552_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1552_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1552_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 622ae3e2-fa6d-4034-8758-79fb89f621ad '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 62379be5-13f0-474b-94d3-6f944ec4ee96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1552 77 false '-- '-- '-- '-- -28129 1259 74a423cc-a9ec-5dd0-b5aa-5054a39621ef '-- not reported female '-- '-- '-- '-- white TCGA-24-1552_demographic Dead '-- '-- '-- '-- 28532 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 403 '-- '-- '-- 1e8560cd-2985-47f8-85ba-8e9dfba445ac false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1552_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1552_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1552_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8099f11a-0bdf-4c18-8633-f594065d0364 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 62379be5-13f0-474b-94d3-6f944ec4ee96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1552 77 false '-- '-- '-- '-- -28129 1259 74a423cc-a9ec-5dd0-b5aa-5054a39621ef '-- not reported female '-- '-- '-- '-- white TCGA-24-1552_demographic Dead '-- '-- '-- '-- 28129 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 88f98d56-7d93-59ed-92e9-0c71546a7a92 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1552_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1552_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 069a6687-2fa5-4293-8b81-e1bcf38d221c Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 62379be5-13f0-474b-94d3-6f944ec4ee96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1552 77 false '-- '-- '-- '-- -28129 1259 74a423cc-a9ec-5dd0-b5aa-5054a39621ef '-- not reported female '-- '-- '-- '-- white TCGA-24-1552_demographic Dead '-- '-- '-- '-- 28129 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 88f98d56-7d93-59ed-92e9-0c71546a7a92 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1552_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 587 479 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1552_treatment5 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 08fd8b81-af11-4a9b-bf27-3401db18e36c '-- yes '-- '-- Chemotherapy +TCGA-OV 62379be5-13f0-474b-94d3-6f944ec4ee96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1552 77 false '-- '-- '-- '-- -28129 1259 74a423cc-a9ec-5dd0-b5aa-5054a39621ef '-- not reported female '-- '-- '-- '-- white TCGA-24-1552_demographic Dead '-- '-- '-- '-- 28129 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 88f98d56-7d93-59ed-92e9-0c71546a7a92 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1552_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1030 876 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1552_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 822 '-- mg '-- '-- '-- '-- 1a8ffe0f-0a15-41a1-aaff-a9f7f371b95e '-- yes '-- '-- Chemotherapy +TCGA-OV 62379be5-13f0-474b-94d3-6f944ec4ee96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1552 77 false '-- '-- '-- '-- -28129 1259 74a423cc-a9ec-5dd0-b5aa-5054a39621ef '-- not reported female '-- '-- '-- '-- white TCGA-24-1552_demographic Dead '-- '-- '-- '-- 28129 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 88f98d56-7d93-59ed-92e9-0c71546a7a92 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1552_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1170 1044 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1552_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1925 '-- mg '-- '-- '-- '-- 411e11e0-4917-4c5a-87f9-55697a63c0d2 '-- yes '-- '-- Chemotherapy +TCGA-OV 62379be5-13f0-474b-94d3-6f944ec4ee96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1552 77 false '-- '-- '-- '-- -28129 1259 74a423cc-a9ec-5dd0-b5aa-5054a39621ef '-- not reported female '-- '-- '-- '-- white TCGA-24-1552_demographic Dead '-- '-- '-- '-- 28129 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 88f98d56-7d93-59ed-92e9-0c71546a7a92 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1552_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 851 728 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1552_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 350 '-- mg '-- '-- '-- '-- 62027927-1ec3-44d3-ab73-3ef1ba5e0927 '-- yes '-- '-- Chemotherapy +TCGA-OV 62379be5-13f0-474b-94d3-6f944ec4ee96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1552 77 false '-- '-- '-- '-- -28129 1259 74a423cc-a9ec-5dd0-b5aa-5054a39621ef '-- not reported female '-- '-- '-- '-- white TCGA-24-1552_demographic Dead '-- '-- '-- '-- 28129 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 88f98d56-7d93-59ed-92e9-0c71546a7a92 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1552_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1030 876 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1552_treatment4 Amifostine '-- '-- '-- '-- '-- '-- '-- 4325 '-- mg '-- '-- '-- '-- 68beb98a-56f2-40f6-b63b-fb1905ad846a '-- yes '-- '-- Chemotherapy +TCGA-OV 62379be5-13f0-474b-94d3-6f944ec4ee96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1552 77 false '-- '-- '-- '-- -28129 1259 74a423cc-a9ec-5dd0-b5aa-5054a39621ef '-- not reported female '-- '-- '-- '-- white TCGA-24-1552_demographic Dead '-- '-- '-- '-- 28129 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 88f98d56-7d93-59ed-92e9-0c71546a7a92 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1552_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 265 53 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1552_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b46cd276-b012-5291-9186-339e1ef23cd4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 62379be5-13f0-474b-94d3-6f944ec4ee96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1552 77 false '-- '-- '-- '-- -28129 1259 74a423cc-a9ec-5dd0-b5aa-5054a39621ef '-- not reported female '-- '-- '-- '-- white TCGA-24-1552_demographic Dead '-- '-- '-- '-- 28129 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 88f98d56-7d93-59ed-92e9-0c71546a7a92 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1552_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 265 53 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1552_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e1c20eff-5240-44f6-b646-dd9cd4c86f97 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6264e699-d40b-4ebc-b443-0a0edcb220dc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2396 71 false '-- '-- '-- '-- -26145 92 abae41c1-1b5e-5262-b644-b8d7fc00fabd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2396_demographic Dead '-- '-- '-- '-- 26145 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 962f2f69-2e79-50fc-ba72-03bf96cc0d4b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2396_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2396_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8f8e49d6-d0fd-5c94-8001-0861b70d6517 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 274 14 '-- '-- '-- '-- '-- '-- '-- 13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1930_treatment15 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2286 '-- mg '-- '-- '-- '-- 047eebda-6513-4237-a7a2-f8a73d3d1941 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1083 726 '-- '-- Progressive Disease '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1930_treatment13 Topotecan '-- '-- '-- '-- '-- '-- '-- 95 '-- mg '-- '-- '-- '-- 12cad609-75b0-40b4-8fe1-54ef2403e049 '-- yes '-- '-- Chemotherapy +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1475 1422 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1930_treatment4 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 11435 '-- mg '-- '-- '-- '-- 1ff4bd51-5307-49e4-a256-e8d1af716974 '-- yes '-- '-- Chemotherapy +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 707 684 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1930_treatment '-- '-- '-- '-- '-- '-- Distant Site '-- 3750 '-- cGy '-- '-- '-- '-- 2262a9a9-e859-55d3-90bd-5074c52ee546 '-- yes '-- '-- Radiation, External Beam +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2144 2052 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1930_treatment16 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- 448 '-- mg '-- '-- '-- '-- 51b8d087-6924-4272-a876-17977be5a577 '-- yes '-- '-- Chemotherapy +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2325 2164 '-- '-- Progressive Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1930_treatment14 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 23008 '-- mg '-- '-- '-- '-- 5a6a2113-df3a-4475-8dcf-67516caaba59 '-- yes '-- '-- Chemotherapy +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1112 1112 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1930_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 450 '-- mg '-- '-- '-- '-- 66abb5e3-a94e-467a-8a2b-8463fa4ba9cd '-- yes '-- '-- Chemotherapy +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2325 2164 '-- '-- Progressive Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1930_treatment10 Cisplatin '-- '-- '-- '-- '-- '-- '-- 896 '-- mg '-- '-- '-- '-- aa9d2944-ee13-45b6-8312-57271561c014 '-- yes '-- '-- Chemotherapy +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1389 1331 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1930_treatment11 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 218 '-- mg '-- '-- '-- '-- c4fa067f-625e-47cc-9e25-b4a138145fcd '-- yes '-- '-- Chemotherapy +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 274 14 '-- '-- '-- '-- '-- '-- '-- 13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1930_treatment8 Cisplatin '-- '-- '-- '-- '-- '-- '-- 518 '-- mg '-- '-- '-- '-- c6990d1d-f680-4ffe-83b7-4d5b1365fcc8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 631 547 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1930_treatment2 Clinical Trial '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c8705249-ffde-4560-8e26-ef12d33efb67 '-- yes '-- '-- Chemotherapy +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1112 1112 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1930_treatment9 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 305 '-- mg '-- '-- '-- '-- d74be33b-dd21-48c9-bc7b-bbd6f720ca9b '-- yes '-- '-- Chemotherapy +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1275 1135 '-- '-- Progressive Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1930_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3170 '-- mg '-- '-- '-- '-- dcb95037-b962-4a8e-9bb1-3f36ed1b8db5 '-- yes '-- '-- Chemotherapy +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1684 1492 '-- '-- Progressive Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-1930_treatment17 Altretamine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e294c6a1-52e2-4cac-982c-4d74e3bdb60e '-- yes '-- '-- Chemotherapy +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2144 2052 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1930_treatment12 Topotecan '-- '-- '-- '-- '-- '-- '-- 45 '-- mg '-- '-- '-- '-- edd33c7f-ce6d-4608-ac0d-303f996ba61e '-- yes '-- '-- Chemotherapy +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 274 14 '-- '-- '-- '-- '-- '-- '-- 13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1930_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4020 '-- mg '-- '-- '-- '-- fe4f72c0-e2b6-4fc4-af3a-0b475a6035db Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 274 14 '-- '-- '-- '-- '-- '-- '-- 13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1930_treatment3 Amifostine '-- '-- '-- '-- '-- '-- '-- 1960 '-- mg '-- '-- '-- '-- ff93a496-efcd-4185-a8b2-7f91e3832360 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7bcb095f-1d9f-41e7-8670-50e1c8ae3ab4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1930_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1930_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1930_treatment20 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 27619fc6-40b8-4a2c-9a74-5961fa996296 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7bcb095f-1d9f-41e7-8670-50e1c8ae3ab4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1930_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1930_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1930_treatment21 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 960acd99-1cee-4cfe-96b0-05b0007c9283 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7bcb095f-1d9f-41e7-8670-50e1c8ae3ab4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1930_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1930_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1923 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1930_treatment22 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ac8ed2dd-b78d-459d-8e76-5319d9bfc22f '-- yes '-- '-- Surgery, NOS +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19931 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 544 '-- '-- '-- 958f71e1-e29e-4872-b4e6-8b66be32e1cd false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1930_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1930_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1930_treatment19 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 709f0a03-3fc7-4ec9-821c-343cb65f2899 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19931 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 544 '-- '-- '-- 958f71e1-e29e-4872-b4e6-8b66be32e1cd false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1930_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1930_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1930_treatment18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8b9ef7c8-6d4e-4397-9ecb-663e1f77a1c3 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c4395ef6-2b41-4e6c-9cfb-ac632ac25ef6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1930_diagnosis4 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1930_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 670 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1930_treatment25 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0925041f-aebb-40fc-8c28-20d65deffa7d '-- yes '-- '-- Surgery, NOS +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c4395ef6-2b41-4e6c-9cfb-ac632ac25ef6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1930_diagnosis4 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1930_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1930_treatment24 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e58b3e1b-ea69-4b31-a6be-956ece1d9f87 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c4395ef6-2b41-4e6c-9cfb-ac632ac25ef6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1930_diagnosis4 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1930_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1930_treatment23 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fd4e2ca9-c89f-4b5b-b8bd-afb025c7d679 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 635f5335-b008-428e-b005-615776a6643f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1315 50 false '-- '-- '-- '-- -18263 1583 37be6983-075c-55d9-a482-fc41dcc71bb0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1315_demographic Dead '-- '-- '-- '-- 18416 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 153 '-- '-- '-- 75df72c7-b68d-422d-a9b9-3279740d361d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1315_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1315_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1315_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f1c0091f-937c-4e74-94ea-d8bc737cfba0 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 635f5335-b008-428e-b005-615776a6643f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1315 50 false '-- '-- '-- '-- -18263 1583 37be6983-075c-55d9-a482-fc41dcc71bb0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1315_demographic Dead '-- '-- '-- '-- 18416 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 153 '-- '-- '-- 75df72c7-b68d-422d-a9b9-3279740d361d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1315_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1315_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1315_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fc90eab3-63b2-4273-aab4-b629bf09671c '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 635f5335-b008-428e-b005-615776a6643f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1315 50 false '-- '-- '-- '-- -18263 1583 37be6983-075c-55d9-a482-fc41dcc71bb0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1315_demographic Dead '-- '-- '-- '-- 18263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b068f29c-7d2b-5d20-8748-67a56d85ac72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1315_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 153 30 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1315_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 39b7317a-ce7e-4ab2-8606-f26537ee802b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 635f5335-b008-428e-b005-615776a6643f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1315 50 false '-- '-- '-- '-- -18263 1583 37be6983-075c-55d9-a482-fc41dcc71bb0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1315_demographic Dead '-- '-- '-- '-- 18263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b068f29c-7d2b-5d20-8748-67a56d85ac72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1315_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1315_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4d45dfe4-bc87-4ab6-82c0-b27d3906f5ed Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 635f5335-b008-428e-b005-615776a6643f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1315 50 false '-- '-- '-- '-- -18263 1583 37be6983-075c-55d9-a482-fc41dcc71bb0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1315_demographic Dead '-- '-- '-- '-- 18263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b068f29c-7d2b-5d20-8748-67a56d85ac72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1315_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 334 153 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1315_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 86a51112-d4a8-4657-b68f-3a142224edba '-- yes '-- '-- Chemotherapy +TCGA-OV 635f5335-b008-428e-b005-615776a6643f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1315 50 false '-- '-- '-- '-- -18263 1583 37be6983-075c-55d9-a482-fc41dcc71bb0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1315_demographic Dead '-- '-- '-- '-- 18263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b068f29c-7d2b-5d20-8748-67a56d85ac72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1315_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 334 143 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1315_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c24c2473-d7c3-4abe-8e9c-ced9f73c4680 '-- yes '-- '-- Chemotherapy +TCGA-OV 635f5335-b008-428e-b005-615776a6643f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1315 50 false '-- '-- '-- '-- -18263 1583 37be6983-075c-55d9-a482-fc41dcc71bb0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1315_demographic Dead '-- '-- '-- '-- 18263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b068f29c-7d2b-5d20-8748-67a56d85ac72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1315_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 153 30 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1315_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f487fba4-2ea2-4178-9977-ca6f7c1f1b41 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 635f5335-b008-428e-b005-615776a6643f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1315 50 false '-- '-- '-- '-- -18263 1583 37be6983-075c-55d9-a482-fc41dcc71bb0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1315_demographic Dead '-- '-- '-- '-- 18263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b068f29c-7d2b-5d20-8748-67a56d85ac72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1315_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 334 153 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1315_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- faca2e40-1fb3-5d24-81c3-6a26cd0dd2d5 '-- yes '-- '-- Chemotherapy +TCGA-OV 635f5335-b008-428e-b005-615776a6643f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1315 50 false '-- '-- '-- '-- -18263 1583 37be6983-075c-55d9-a482-fc41dcc71bb0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1315_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ef73457f-7fda-4f4d-9e79-9cfe2907ea4d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1315_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1315_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 153 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1315_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 059e1a2f-66c3-4091-aedd-ec8d129d00f1 '-- yes '-- '-- Surgery, NOS +TCGA-OV 635f5335-b008-428e-b005-615776a6643f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1315 50 false '-- '-- '-- '-- -18263 1583 37be6983-075c-55d9-a482-fc41dcc71bb0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1315_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ef73457f-7fda-4f4d-9e79-9cfe2907ea4d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1315_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1315_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1315_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 339ea202-7402-4c78-a144-85e708496f29 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 635f5335-b008-428e-b005-615776a6643f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1315 50 false '-- '-- '-- '-- -18263 1583 37be6983-075c-55d9-a482-fc41dcc71bb0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1315_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ef73457f-7fda-4f4d-9e79-9cfe2907ea4d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1315_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1315_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1315_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ee5a9b52-0bd1-4acc-ba23-81f591816f62 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 63a75e0b-9241-4f0e-9236-01a2e2c05b7e '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0884 39 false '-- '-- '-- '-- -14538 3260 ae611d16-8057-5154-9ece-95a2375c0d0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0884_demographic Dead '-- '-- '-- '-- 14538 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e48908e4-4f4e-59d5-a1a0-2344695aed5f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0884_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0884_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4956cbbb-8c5c-4090-b8ad-6b485dd2e7e8 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 63a75e0b-9241-4f0e-9236-01a2e2c05b7e '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0884 39 false '-- '-- '-- '-- -14538 3260 ae611d16-8057-5154-9ece-95a2375c0d0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0884_demographic Dead '-- '-- '-- '-- 14538 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e48908e4-4f4e-59d5-a1a0-2344695aed5f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0884_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 191 55 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0884_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 58eba621-1e8a-4db2-9689-31d6963bab81 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 63a75e0b-9241-4f0e-9236-01a2e2c05b7e '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0884 39 false '-- '-- '-- '-- -14538 3260 ae611d16-8057-5154-9ece-95a2375c0d0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0884_demographic Dead '-- '-- '-- '-- 14538 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e48908e4-4f4e-59d5-a1a0-2344695aed5f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0884_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 191 55 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0884_treatment2 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 800 '-- mg/m2 '-- '-- '-- '-- 70d9bf0c-cc4a-4e10-8273-9bec846908cb Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 63a75e0b-9241-4f0e-9236-01a2e2c05b7e '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0884 39 false '-- '-- '-- '-- -14538 3260 ae611d16-8057-5154-9ece-95a2375c0d0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0884_demographic Dead '-- '-- '-- '-- 14538 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e48908e4-4f4e-59d5-a1a0-2344695aed5f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0884_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 191 55 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0884_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- 7867df2e-1008-525a-80a2-a852709f7689 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 63a75e0b-9241-4f0e-9236-01a2e2c05b7e '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0884 39 false '-- '-- '-- '-- -14538 3260 ae611d16-8057-5154-9ece-95a2375c0d0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0884_demographic Dead '-- '-- '-- '-- 14538 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e48908e4-4f4e-59d5-a1a0-2344695aed5f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0884_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 307 240 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-13-0884_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 74 '-- mg/m2 '-- '-- '-- '-- 7a07b127-0693-4ed2-afe0-42909955cd56 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 63a75e0b-9241-4f0e-9236-01a2e2c05b7e '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0884 39 false '-- '-- '-- '-- -14538 3260 ae611d16-8057-5154-9ece-95a2375c0d0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0884_demographic Dead '-- '-- '-- '-- 14538 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e48908e4-4f4e-59d5-a1a0-2344695aed5f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0884_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 307 240 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-13-0884_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 133 '-- mg/m2 '-- '-- '-- '-- acc55fc4-07a3-4225-ac1e-66057a165d6d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 63a75e0b-9241-4f0e-9236-01a2e2c05b7e '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0884 39 false '-- '-- '-- '-- -14538 3260 ae611d16-8057-5154-9ece-95a2375c0d0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0884_demographic Dead '-- '-- '-- '-- 15789 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1251 '-- '-- '-- ee29289a-1151-461c-8172-6c1c366093d5 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0884_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0884_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0884_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- acac1f70-8881-4491-841b-73ca81056854 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 63a75e0b-9241-4f0e-9236-01a2e2c05b7e '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0884 39 false '-- '-- '-- '-- -14538 3260 ae611d16-8057-5154-9ece-95a2375c0d0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0884_demographic Dead '-- '-- '-- '-- 15789 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1251 '-- '-- '-- ee29289a-1151-461c-8172-6c1c366093d5 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0884_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0884_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0884_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cf1acd5f-e6ad-467c-8db5-c47a03cd0bd7 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 63c6a89b-b28c-434a-a632-5de6545db731 Informed Consent 10 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1492 66 false '-- '-- '-- '-- -24332 3819 71d375c1-b32a-5221-950d-48517ae1bf94 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1492_demographic Dead '-- '-- '-- '-- 24332 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a182868e-521c-5039-8b4e-1c047fbbfd11 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1492_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1492_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6ba210eb-987a-4e54-8093-270066aed6c2 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 63c6a89b-b28c-434a-a632-5de6545db731 Informed Consent 10 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1492 66 false '-- '-- '-- '-- -24332 3819 71d375c1-b32a-5221-950d-48517ae1bf94 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1492_demographic Dead '-- '-- '-- '-- 24332 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a182868e-521c-5039-8b4e-1c047fbbfd11 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1492_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 247 48 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1492_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bc3d82c5-b314-50ed-802b-3b50c6bdf997 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 63c6a89b-b28c-434a-a632-5de6545db731 Informed Consent 10 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1492 66 false '-- '-- '-- '-- -24332 3819 71d375c1-b32a-5221-950d-48517ae1bf94 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1492_demographic Dead '-- '-- '-- '-- 24332 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a182868e-521c-5039-8b4e-1c047fbbfd11 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1492_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 247 48 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1492_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- c0ea6284-466e-4a19-b3a7-596c5efe88bb Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 644a88a7-dc56-468a-af5c-60278aab7642 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1659 51 false '-- '-- '-- '-- -18733 304 a5962b77-641c-5dd7-8efa-361ca8a34954 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1659_demographic Dead '-- '-- '-- '-- 18733 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0f558703-06e8-564a-b36a-1cec509b1429 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1659_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 137 16 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1659_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- 24f276db-8ea8-48d9-8d9d-47238cc5c9c1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 644a88a7-dc56-468a-af5c-60278aab7642 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1659 51 false '-- '-- '-- '-- -18733 304 a5962b77-641c-5dd7-8efa-361ca8a34954 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1659_demographic Dead '-- '-- '-- '-- 18733 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0f558703-06e8-564a-b36a-1cec509b1429 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1659_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 137 16 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1659_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 41d0d5a4-19a7-54b1-8a5b-6025e3d5dc59 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 644a88a7-dc56-468a-af5c-60278aab7642 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1659 51 false '-- '-- '-- '-- -18733 304 a5962b77-641c-5dd7-8efa-361ca8a34954 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1659_demographic Dead '-- '-- '-- '-- 18733 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0f558703-06e8-564a-b36a-1cec509b1429 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1659_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 137 37 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1659_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 110 '-- mg/m2 '-- '-- '-- '-- 538e914e-4a2a-45c2-8d54-406156ac5fb8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 644a88a7-dc56-468a-af5c-60278aab7642 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1659 51 false '-- '-- '-- '-- -18733 304 a5962b77-641c-5dd7-8efa-361ca8a34954 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1659_demographic Dead '-- '-- '-- '-- 18733 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0f558703-06e8-564a-b36a-1cec509b1429 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1659_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 176 176 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-09-1659_treatment4 Altretamine '-- '-- '-- '-- '-- '-- '-- 50 '-- mg/m2 '-- '-- '-- '-- 6f346a32-693e-4558-91fb-e42b7a0875b8 '-- yes '-- '-- Chemotherapy +TCGA-OV 644a88a7-dc56-468a-af5c-60278aab7642 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1659 51 false '-- '-- '-- '-- -18733 304 a5962b77-641c-5dd7-8efa-361ca8a34954 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1659_demographic Dead '-- '-- '-- '-- 18733 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0f558703-06e8-564a-b36a-1cec509b1429 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1659_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1659_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e725f4a0-480c-48d1-b91f-f69221a5777d Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 6485b68f-caa7-45cd-9bc5-78c2add8191d '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0762 65 false '-- '-- '-- '-- -23960 '-- 35416893-69c6-54f9-881e-2201d801d116 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0762_demographic Alive '-- '-- '-- '-- 23960 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 814eacd3-27a0-5c0c-b4f7-18f4355ab3c4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0762_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 141 28 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0762_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- 07cfc00a-4e59-4313-b2b8-6ee20ebcca2d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6485b68f-caa7-45cd-9bc5-78c2add8191d '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0762 65 false '-- '-- '-- '-- -23960 '-- 35416893-69c6-54f9-881e-2201d801d116 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0762_demographic Alive '-- '-- '-- '-- 23960 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 814eacd3-27a0-5c0c-b4f7-18f4355ab3c4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0762_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0762_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0fa14d2a-9a14-4f1c-990f-95c65e40508e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 6485b68f-caa7-45cd-9bc5-78c2add8191d '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0762 65 false '-- '-- '-- '-- -23960 '-- 35416893-69c6-54f9-881e-2201d801d116 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0762_demographic Alive '-- '-- '-- '-- 23960 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 814eacd3-27a0-5c0c-b4f7-18f4355ab3c4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0762_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 141 28 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0762_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- bca2d4a7-9197-54e5-977c-c66c5ac81669 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6485b68f-caa7-45cd-9bc5-78c2add8191d '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0762 65 false '-- '-- '-- '-- -23960 '-- 35416893-69c6-54f9-881e-2201d801d116 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0762_demographic Alive '-- '-- '-- '-- 23960 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 814eacd3-27a0-5c0c-b4f7-18f4355ab3c4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0762_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 141 28 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0762_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- dfe09f97-1c99-424c-a632-43dfd1eec2a0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6485b68f-caa7-45cd-9bc5-78c2add8191d '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0762 65 false '-- '-- '-- '-- -23960 '-- 35416893-69c6-54f9-881e-2201d801d116 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0762_demographic Alive '-- '-- '-- '-- 24963 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 1003 '-- '-- '-- c8d3e926-9ba9-4c54-87d0-9410b5303a6b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0762_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0762_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 65435f50-a35d-49e3-a36e-b95d9e274ca0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1604 66 false '-- '-- '-- '-- -24471 2688 88b4acdd-e3e8-5e2a-9820-0fd2ed174d45 '-- not reported female '-- '-- '-- '-- white TCGA-24-1604_demographic Dead '-- '-- '-- '-- 24471 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d92abbe4-d3f0-57cb-84bb-a07a6746bd3f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1604_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1604_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 19bd2972-6bee-46f5-a7b5-98745db2e70a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 65435f50-a35d-49e3-a36e-b95d9e274ca0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1604 66 false '-- '-- '-- '-- -24471 2688 88b4acdd-e3e8-5e2a-9820-0fd2ed174d45 '-- not reported female '-- '-- '-- '-- white TCGA-24-1604_demographic Dead '-- '-- '-- '-- 24471 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d92abbe4-d3f0-57cb-84bb-a07a6746bd3f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1604_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1604_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2ea30412-aa92-4501-bad6-4ab289609af3 '-- yes '-- '-- Chemotherapy +TCGA-OV 65435f50-a35d-49e3-a36e-b95d9e274ca0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1604 66 false '-- '-- '-- '-- -24471 2688 88b4acdd-e3e8-5e2a-9820-0fd2ed174d45 '-- not reported female '-- '-- '-- '-- white TCGA-24-1604_demographic Dead '-- '-- '-- '-- 24471 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d92abbe4-d3f0-57cb-84bb-a07a6746bd3f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1604_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1604_treatment '-- '-- '-- '-- '-- '-- Distant Site '-- '-- '-- '-- '-- '-- '-- '-- 7678f010-6e8d-582c-8bf7-40cdc871a1f8 '-- yes '-- '-- Radiation, External Beam +TCGA-OV 65435f50-a35d-49e3-a36e-b95d9e274ca0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1604 66 false '-- '-- '-- '-- -24471 2688 88b4acdd-e3e8-5e2a-9820-0fd2ed174d45 '-- not reported female '-- '-- '-- '-- white TCGA-24-1604_demographic Dead '-- '-- '-- '-- 24471 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d92abbe4-d3f0-57cb-84bb-a07a6746bd3f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1604_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1604_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e6801996-f389-4d5d-9c6e-5537b1324d06 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 65435f50-a35d-49e3-a36e-b95d9e274ca0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1604 66 false '-- '-- '-- '-- -24471 2688 88b4acdd-e3e8-5e2a-9820-0fd2ed174d45 '-- not reported female '-- '-- '-- '-- white TCGA-24-1604_demographic Dead '-- '-- '-- '-- 24471 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d92abbe4-d3f0-57cb-84bb-a07a6746bd3f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1604_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1604_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ff4cb4dd-55e9-4a2e-92bf-62ea15e2d006 '-- yes '-- '-- Chemotherapy +TCGA-OV 65ddccd2-70a7-48b3-88e1-9d6fd1dcd11b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0934 50 false '-- '-- '-- '-- -18602 204 bebf0413-27c1-5758-8bfb-0168b5a20b99 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-10-0934_demographic Dead '-- '-- '-- '-- 18713 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 111 '-- '-- '-- 5a326266-0b05-4139-a976-80f38b7148ef false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0934_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0934_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0934_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4944116f-84f9-42e7-a5e0-3c2266b1f286 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 65ddccd2-70a7-48b3-88e1-9d6fd1dcd11b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0934 50 false '-- '-- '-- '-- -18602 204 bebf0413-27c1-5758-8bfb-0168b5a20b99 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-10-0934_demographic Dead '-- '-- '-- '-- 18713 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 111 '-- '-- '-- 5a326266-0b05-4139-a976-80f38b7148ef false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0934_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0934_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0934_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8cfae8a1-af22-4599-bf46-751a8e793e7d '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 65ddccd2-70a7-48b3-88e1-9d6fd1dcd11b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0934 50 false '-- '-- '-- '-- -18602 204 bebf0413-27c1-5758-8bfb-0168b5a20b99 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-10-0934_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 89a8ea87-e809-4724-9c3b-3912962de923 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0934_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0934_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0934_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 642f4f58-f7f2-42cf-8c47-7042b6ca37be '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 65ddccd2-70a7-48b3-88e1-9d6fd1dcd11b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0934 50 false '-- '-- '-- '-- -18602 204 bebf0413-27c1-5758-8bfb-0168b5a20b99 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-10-0934_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 89a8ea87-e809-4724-9c3b-3912962de923 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0934_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0934_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0934_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 84443176-5711-4e91-ae2a-9e3422e09240 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 65ddccd2-70a7-48b3-88e1-9d6fd1dcd11b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0934 50 false '-- '-- '-- '-- -18602 204 bebf0413-27c1-5758-8bfb-0168b5a20b99 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-10-0934_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 89a8ea87-e809-4724-9c3b-3912962de923 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0934_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0934_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 75 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0934_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dfeb2322-d275-44b2-b21d-2f7851328f64 '-- yes '-- '-- Surgery, NOS +TCGA-OV 65ddccd2-70a7-48b3-88e1-9d6fd1dcd11b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0934 50 false '-- '-- '-- '-- -18602 204 bebf0413-27c1-5758-8bfb-0168b5a20b99 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-10-0934_demographic Dead '-- '-- '-- '-- 18602 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b67a50b0-1627-587d-b7eb-dfc734a74286 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0934_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 56 40 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0934_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 525 '-- mg/m2 '-- '-- '-- '-- 12c8e62c-13ae-552e-a731-1f1c36e5c149 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 65ddccd2-70a7-48b3-88e1-9d6fd1dcd11b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0934 50 false '-- '-- '-- '-- -18602 204 bebf0413-27c1-5758-8bfb-0168b5a20b99 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-10-0934_demographic Dead '-- '-- '-- '-- 18602 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b67a50b0-1627-587d-b7eb-dfc734a74286 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0934_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 56 40 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0934_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5ddeaaa2-ac0d-4bbf-a878-f522825f3054 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 65ddccd2-70a7-48b3-88e1-9d6fd1dcd11b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0934 50 false '-- '-- '-- '-- -18602 204 bebf0413-27c1-5758-8bfb-0168b5a20b99 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-10-0934_demographic Dead '-- '-- '-- '-- 18602 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b67a50b0-1627-587d-b7eb-dfc734a74286 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0934_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0934_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c9a357e3-54f6-40b1-b6fe-45e3722bad8f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 662d77d1-1a43-427a-813b-e11edd30868e Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1626 65 false '-- '-- '-- '-- -23932 518 7a6939c1-85fa-5b74-b9c5-60e18347c35a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1626_demographic Dead '-- '-- '-- '-- 24250 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 318 '-- '-- '-- 1254dff9-5886-45a2-b812-2b8d435d21b0 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1626_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1626_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1626_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0d21c667-3bb5-4b64-9c04-08c97904c6c4 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 662d77d1-1a43-427a-813b-e11edd30868e Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1626 65 false '-- '-- '-- '-- -23932 518 7a6939c1-85fa-5b74-b9c5-60e18347c35a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1626_demographic Dead '-- '-- '-- '-- 24250 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 318 '-- '-- '-- 1254dff9-5886-45a2-b812-2b8d435d21b0 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1626_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1626_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1626_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f05f08b3-aa92-43a2-a991-06241180517e '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 662d77d1-1a43-427a-813b-e11edd30868e Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1626 65 false '-- '-- '-- '-- -23932 518 7a6939c1-85fa-5b74-b9c5-60e18347c35a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1626_demographic Dead '-- '-- '-- '-- 23932 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f5f5f800-6d60-522d-a538-95bf6adaa275 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1626_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1626_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0ca716a2-b891-4631-b86a-260eb1106748 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 662d77d1-1a43-427a-813b-e11edd30868e Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1626 65 false '-- '-- '-- '-- -23932 518 7a6939c1-85fa-5b74-b9c5-60e18347c35a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1626_demographic Dead '-- '-- '-- '-- 23932 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f5f5f800-6d60-522d-a538-95bf6adaa275 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1626_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 319 319 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1626_treatment Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2a73c773-6a90-5db2-b0d0-3a7ef3e20122 '-- yes '-- '-- Chemotherapy +TCGA-OV 662d77d1-1a43-427a-813b-e11edd30868e Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1626 65 false '-- '-- '-- '-- -23932 518 7a6939c1-85fa-5b74-b9c5-60e18347c35a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1626_demographic Dead '-- '-- '-- '-- 23932 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f5f5f800-6d60-522d-a538-95bf6adaa275 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1626_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 208 21 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1626_treatment4 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8a27ced1-affd-4ba9-98a0-a9a7df21f3ba Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 662d77d1-1a43-427a-813b-e11edd30868e Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1626 65 false '-- '-- '-- '-- -23932 518 7a6939c1-85fa-5b74-b9c5-60e18347c35a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1626_demographic Dead '-- '-- '-- '-- 23932 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f5f5f800-6d60-522d-a538-95bf6adaa275 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1626_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 208 21 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1626_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c34a3c06-6102-400e-876e-0f6e09936eb5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 662d77d1-1a43-427a-813b-e11edd30868e Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1626 65 false '-- '-- '-- '-- -23932 518 7a6939c1-85fa-5b74-b9c5-60e18347c35a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1626_demographic Dead '-- '-- '-- '-- 23932 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f5f5f800-6d60-522d-a538-95bf6adaa275 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1626_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 208 21 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1626_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e77492a7-d51d-431c-95d7-8d0bfa76f6b6 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 66c92b9e-de3c-4d1a-bb69-46ffbc6caf33 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1548 57 false '-- '-- '-- '-- -20945 493 31a687e4-6949-5697-b241-1ff704021006 '-- not reported female '-- '-- '-- '-- white TCGA-24-1548_demographic Dead '-- '-- '-- '-- 20945 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8eaff24a-deb4-59b6-9bec-4fdf16ac70bf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1548_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1548_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 28750eb4-dddc-4994-9b08-6180fa9c787e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 66c92b9e-de3c-4d1a-bb69-46ffbc6caf33 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1548 57 false '-- '-- '-- '-- -20945 493 31a687e4-6949-5697-b241-1ff704021006 '-- not reported female '-- '-- '-- '-- white TCGA-24-1548_demographic Dead '-- '-- '-- '-- 20945 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8eaff24a-deb4-59b6-9bec-4fdf16ac70bf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1548_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 488 475 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1548_treatment8 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 360 '-- mg '-- '-- '-- '-- 403b5c7f-9192-4e1a-a3c1-3d20f097bb65 '-- yes '-- '-- Chemotherapy +TCGA-OV 66c92b9e-de3c-4d1a-bb69-46ffbc6caf33 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1548 57 false '-- '-- '-- '-- -20945 493 31a687e4-6949-5697-b241-1ff704021006 '-- not reported female '-- '-- '-- '-- white TCGA-24-1548_demographic Dead '-- '-- '-- '-- 20945 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8eaff24a-deb4-59b6-9bec-4fdf16ac70bf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1548_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 123 6 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1548_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 4790 '-- mg '-- '-- '-- '-- 43227535-0173-536d-954d-34a51afbada3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 66c92b9e-de3c-4d1a-bb69-46ffbc6caf33 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1548 57 false '-- '-- '-- '-- -20945 493 31a687e4-6949-5697-b241-1ff704021006 '-- not reported female '-- '-- '-- '-- white TCGA-24-1548_demographic Dead '-- '-- '-- '-- 20945 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8eaff24a-deb4-59b6-9bec-4fdf16ac70bf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1548_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 242 221 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1548_treatment7 Cisplatin '-- '-- '-- '-- '-- '-- '-- 250 '-- mg '-- '-- '-- '-- 60d6e3ae-23cc-4d79-ae90-19d9d311d5bf '-- yes '-- '-- Chemotherapy +TCGA-OV 66c92b9e-de3c-4d1a-bb69-46ffbc6caf33 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1548 57 false '-- '-- '-- '-- -20945 493 31a687e4-6949-5697-b241-1ff704021006 '-- not reported female '-- '-- '-- '-- white TCGA-24-1548_demographic Dead '-- '-- '-- '-- 20945 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8eaff24a-deb4-59b6-9bec-4fdf16ac70bf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1548_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 327 272 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1548_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 197 '-- mg '-- '-- '-- '-- 6d3db560-8702-40b9-826f-0e74c892312d '-- yes '-- '-- Chemotherapy +TCGA-OV 66c92b9e-de3c-4d1a-bb69-46ffbc6caf33 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1548 57 false '-- '-- '-- '-- -20945 493 31a687e4-6949-5697-b241-1ff704021006 '-- not reported female '-- '-- '-- '-- white TCGA-24-1548_demographic Dead '-- '-- '-- '-- 20945 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8eaff24a-deb4-59b6-9bec-4fdf16ac70bf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1548_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 242 221 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1548_treatment4 Topotecan '-- '-- '-- '-- '-- '-- '-- 10 '-- mg '-- '-- '-- '-- ac6b0094-3ff4-40f3-a266-ee041eadfc94 '-- yes '-- '-- Chemotherapy +TCGA-OV 66c92b9e-de3c-4d1a-bb69-46ffbc6caf33 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1548 57 false '-- '-- '-- '-- -20945 493 31a687e4-6949-5697-b241-1ff704021006 '-- not reported female '-- '-- '-- '-- white TCGA-24-1548_demographic Dead '-- '-- '-- '-- 20945 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8eaff24a-deb4-59b6-9bec-4fdf16ac70bf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1548_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 443 351 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1548_treatment5 Gemcitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c6c03b97-e1bf-4445-963f-86cfab17b1e3 '-- yes '-- '-- Chemotherapy +TCGA-OV 66c92b9e-de3c-4d1a-bb69-46ffbc6caf33 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1548 57 false '-- '-- '-- '-- -20945 493 31a687e4-6949-5697-b241-1ff704021006 '-- not reported female '-- '-- '-- '-- white TCGA-24-1548_demographic Dead '-- '-- '-- '-- 20945 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8eaff24a-deb4-59b6-9bec-4fdf16ac70bf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1548_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 443 351 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1548_treatment2 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c8e5dc72-654f-4193-a720-b283edff1a36 '-- yes '-- '-- Chemotherapy +TCGA-OV 66c92b9e-de3c-4d1a-bb69-46ffbc6caf33 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1548 57 false '-- '-- '-- '-- -20945 493 31a687e4-6949-5697-b241-1ff704021006 '-- not reported female '-- '-- '-- '-- white TCGA-24-1548_demographic Dead '-- '-- '-- '-- 20945 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8eaff24a-deb4-59b6-9bec-4fdf16ac70bf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1548_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 123 6 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1548_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1750 '-- mg '-- '-- '-- '-- d1109875-6874-4dfc-9a91-96352c62acd5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 66c92b9e-de3c-4d1a-bb69-46ffbc6caf33 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1548 57 false '-- '-- '-- '-- -20945 493 31a687e4-6949-5697-b241-1ff704021006 '-- not reported female '-- '-- '-- '-- white TCGA-24-1548_demographic Dead '-- '-- '-- '-- 21152 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 207 '-- '-- '-- c6f45526-f20b-4efa-b27c-100b8d7d67c7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1548_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1548_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1548_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 80a66e64-cba2-4386-ac51-6a2e461b82bc '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 66c92b9e-de3c-4d1a-bb69-46ffbc6caf33 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1548 57 false '-- '-- '-- '-- -20945 493 31a687e4-6949-5697-b241-1ff704021006 '-- not reported female '-- '-- '-- '-- white TCGA-24-1548_demographic Dead '-- '-- '-- '-- 21152 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 207 '-- '-- '-- c6f45526-f20b-4efa-b27c-100b8d7d67c7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1548_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1548_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1548_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 944cee4b-eced-4ce0-a927-3549713caf21 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 66face4a-f35c-4364-90e5-8f28e6372606 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1312 69 false '-- '-- '-- '-- -25537 31 3eec1dc1-4d6d-5b73-bbde-6688b95c256a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1312_demographic Dead '-- '-- '-- '-- 25537 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7c0d838a-d4ca-5f23-85c8-672a6ef301b9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1312_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1312_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 46926ff0-1c00-56ad-a1f3-e60215b191eb Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 6746533a-8d0b-4ebc-87ec-49c8738121a8 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0364 80 false '-- '-- '-- '-- -29262 887 96fdbdf8-56b5-569a-b4f2-a155e1ed249d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0364_demographic Dead '-- '-- '-- '-- 29262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 42b4a2fe-7c3d-5839-b189-e22b4b061c28 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-0364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 188 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-0364_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 17124546-d814-416e-86bd-5cc2fa98d27f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6746533a-8d0b-4ebc-87ec-49c8738121a8 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0364 80 false '-- '-- '-- '-- -29262 887 96fdbdf8-56b5-569a-b4f2-a155e1ed249d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0364_demographic Dead '-- '-- '-- '-- 29262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 42b4a2fe-7c3d-5839-b189-e22b4b061c28 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-0364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 188 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-0364_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 125 '-- mg/m2 '-- '-- '-- '-- d6d8179e-734f-4b94-98f1-7e9afd49d174 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6746533a-8d0b-4ebc-87ec-49c8738121a8 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0364 80 false '-- '-- '-- '-- -29262 887 96fdbdf8-56b5-569a-b4f2-a155e1ed249d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0364_demographic Dead '-- '-- '-- '-- 29262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 42b4a2fe-7c3d-5839-b189-e22b4b061c28 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-0364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 538 502 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-0364_treatment '-- '-- '-- '-- '-- '-- Locoregional Site '-- 4400 '-- cGy '-- '-- '-- '-- dabdbfb4-d19e-5d16-b464-b9a38486eafd '-- yes '-- '-- Radiation, External Beam +TCGA-OV 6746533a-8d0b-4ebc-87ec-49c8738121a8 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0364 80 false '-- '-- '-- '-- -29262 887 96fdbdf8-56b5-569a-b4f2-a155e1ed249d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0364_demographic Dead '-- '-- '-- '-- 29657 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 395 '-- '-- '-- 972d5e72-bda8-4185-84c5-787c8bc28bf5 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-0364_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-0364_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-0364_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2e922622-c70a-4107-968d-5fe013a0e242 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 6746533a-8d0b-4ebc-87ec-49c8738121a8 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0364 80 false '-- '-- '-- '-- -29262 887 96fdbdf8-56b5-569a-b4f2-a155e1ed249d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0364_demographic Dead '-- '-- '-- '-- 29657 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 395 '-- '-- '-- 972d5e72-bda8-4185-84c5-787c8bc28bf5 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-0364_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-0364_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-0364_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7930b973-2d27-4f1e-9d89-a87b788b433a '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 67f526f1-def5-43b4-bc89-154baae190fc Informed Consent 11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1846 45 false '-- '-- '-- '-- -16534 '-- c265a8c5-231d-5f56-bea9-1444d77aeceb '-- not reported female '-- '-- '-- '-- not reported TCGA-24-1846_demographic Alive '-- '-- '-- '-- 16534 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- cc622c11-e77b-5fd6-b673-baeb226d3ce6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1846_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 175 43 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1846_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1173 '-- mg '-- '-- '-- '-- 0e907242-92a0-4153-ae95-35984d0ea412 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 67f526f1-def5-43b4-bc89-154baae190fc Informed Consent 11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1846 45 false '-- '-- '-- '-- -16534 '-- c265a8c5-231d-5f56-bea9-1444d77aeceb '-- not reported female '-- '-- '-- '-- not reported TCGA-24-1846_demographic Alive '-- '-- '-- '-- 16534 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- cc622c11-e77b-5fd6-b673-baeb226d3ce6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1846_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1846_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 52341a90-92d3-4fb3-a4ba-f39dbce25a49 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 67f526f1-def5-43b4-bc89-154baae190fc Informed Consent 11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1846 45 false '-- '-- '-- '-- -16534 '-- c265a8c5-231d-5f56-bea9-1444d77aeceb '-- not reported female '-- '-- '-- '-- not reported TCGA-24-1846_demographic Alive '-- '-- '-- '-- 16534 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- cc622c11-e77b-5fd6-b673-baeb226d3ce6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1846_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 175 43 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1846_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 3800 '-- mg '-- '-- '-- '-- d13984a8-7135-5021-a2f0-7bc08c643fbe Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6a1be87b-c4e0-4fd4-b050-50a245b22038 Informed Consent -13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1631 73 false '-- '-- '-- '-- -26687 9 add82ac4-19b9-5d45-a879-a9ca0d73962b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1631_demographic Dead '-- '-- '-- '-- 26687 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 407c0da4-f263-5ceb-abd5-c62004aaf0b5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1631_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1631_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c93a722b-2a1e-412c-b725-2232968dc6c1 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 6a1be87b-c4e0-4fd4-b050-50a245b22038 Informed Consent -13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1631 73 false '-- '-- '-- '-- -26687 9 add82ac4-19b9-5d45-a879-a9ca0d73962b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1631_demographic Dead '-- '-- '-- '-- 26687 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 407c0da4-f263-5ceb-abd5-c62004aaf0b5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1631_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1631_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d5a84b53-ef3f-574a-b25e-9ca3b214e0c4 Adjuvant no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 6a57948c-0dc5-4ea2-8043-380f26763752 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0975 58 false '-- '-- '-- '-- -21417 663 7ce08a4a-f076-5e4d-bbe0-a5ed3392d0a2 '-- not reported female '-- '-- '-- '-- white TCGA-24-0975_demographic Dead '-- '-- '-- '-- 21417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 76d84c00-0eb7-5a28-bb2c-e6fb683fecb8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0975_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- 22 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0975_treatment2 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 02188573-ad8c-4a2d-b87c-40d7bb0862ff '-- yes '-- '-- Chemotherapy +TCGA-OV 6a57948c-0dc5-4ea2-8043-380f26763752 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0975 58 false '-- '-- '-- '-- -21417 663 7ce08a4a-f076-5e4d-bbe0-a5ed3392d0a2 '-- not reported female '-- '-- '-- '-- white TCGA-24-0975_demographic Dead '-- '-- '-- '-- 21417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 76d84c00-0eb7-5a28-bb2c-e6fb683fecb8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0975_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 611 '-- '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0975_treatment5 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0246d614-352a-48c4-995f-6f0c05ce1dee '-- yes '-- '-- Chemotherapy +TCGA-OV 6a57948c-0dc5-4ea2-8043-380f26763752 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0975 58 false '-- '-- '-- '-- -21417 663 7ce08a4a-f076-5e4d-bbe0-a5ed3392d0a2 '-- not reported female '-- '-- '-- '-- white TCGA-24-0975_demographic Dead '-- '-- '-- '-- 21417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 76d84c00-0eb7-5a28-bb2c-e6fb683fecb8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0975_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- 22 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0975_treatment7 Gemcitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0be86bba-9865-4aff-8b2c-cb70beafe532 '-- yes '-- '-- Chemotherapy +TCGA-OV 6a57948c-0dc5-4ea2-8043-380f26763752 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0975 58 false '-- '-- '-- '-- -21417 663 7ce08a4a-f076-5e4d-bbe0-a5ed3392d0a2 '-- not reported female '-- '-- '-- '-- white TCGA-24-0975_demographic Dead '-- '-- '-- '-- 21417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 76d84c00-0eb7-5a28-bb2c-e6fb683fecb8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0975_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 576 564 '-- '-- Progressive Disease '-- '-- '-- '-- '-- 10.0 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-0975_treatment '-- '-- '-- '-- '-- '-- Distant Site '-- 3000 '-- cGy '-- '-- '-- '-- 2c412943-9ae2-58df-8030-170df09b3888 '-- yes '-- '-- Radiation, External Beam +TCGA-OV 6a57948c-0dc5-4ea2-8043-380f26763752 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0975 58 false '-- '-- '-- '-- -21417 663 7ce08a4a-f076-5e4d-bbe0-a5ed3392d0a2 '-- not reported female '-- '-- '-- '-- white TCGA-24-0975_demographic Dead '-- '-- '-- '-- 21417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 76d84c00-0eb7-5a28-bb2c-e6fb683fecb8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0975_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- 22 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0975_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3c7b0072-f24b-4189-ab8c-092881f4afe4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6a57948c-0dc5-4ea2-8043-380f26763752 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0975 58 false '-- '-- '-- '-- -21417 663 7ce08a4a-f076-5e4d-bbe0-a5ed3392d0a2 '-- not reported female '-- '-- '-- '-- white TCGA-24-0975_demographic Dead '-- '-- '-- '-- 21417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 76d84c00-0eb7-5a28-bb2c-e6fb683fecb8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0975_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 611 '-- '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0975_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8d7c1b3a-4aaa-4289-b07e-9b41abcbc0bb '-- yes '-- '-- Chemotherapy +TCGA-OV 6a57948c-0dc5-4ea2-8043-380f26763752 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0975 58 false '-- '-- '-- '-- -21417 663 7ce08a4a-f076-5e4d-bbe0-a5ed3392d0a2 '-- not reported female '-- '-- '-- '-- white TCGA-24-0975_demographic Dead '-- '-- '-- '-- 21417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 76d84c00-0eb7-5a28-bb2c-e6fb683fecb8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0975_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- 22 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0975_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 94791315-dbd3-43b1-b19d-0c36d7bd3de6 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6ad8bc89-d8e9-48c2-bc25-c8e51f972b4d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1321 65 false '-- '-- '-- '-- -23987 1033 90f4c061-f159-5a33-9711-19ed94507147 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1321_demographic Dead '-- '-- '-- '-- 23987 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 75f56478-bab2-51ee-821d-9db5567f6b98 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1321_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 181 28 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1321_treatment Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0210d1cd-b459-5acf-95bd-bd0e38b825be Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6ad8bc89-d8e9-48c2-bc25-c8e51f972b4d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1321 65 false '-- '-- '-- '-- -23987 1033 90f4c061-f159-5a33-9711-19ed94507147 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1321_demographic Dead '-- '-- '-- '-- 23987 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 75f56478-bab2-51ee-821d-9db5567f6b98 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1321_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 181 28 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1321_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 48dbd078-85b5-4c38-8e87-e2d79721a694 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6ad8bc89-d8e9-48c2-bc25-c8e51f972b4d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1321 65 false '-- '-- '-- '-- -23987 1033 90f4c061-f159-5a33-9711-19ed94507147 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1321_demographic Dead '-- '-- '-- '-- 23987 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 75f56478-bab2-51ee-821d-9db5567f6b98 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1321_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 498 454 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1321_treatment2 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7604a6ef-1ef0-4804-bd19-401a9501276f '-- yes '-- '-- Chemotherapy +TCGA-OV 6ad8bc89-d8e9-48c2-bc25-c8e51f972b4d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1321 65 false '-- '-- '-- '-- -23987 1033 90f4c061-f159-5a33-9711-19ed94507147 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1321_demographic Dead '-- '-- '-- '-- 23987 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 75f56478-bab2-51ee-821d-9db5567f6b98 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1321_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 181 28 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1321_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b342ccc0-64a0-45e3-922d-8b72ec012c0f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6ad8bc89-d8e9-48c2-bc25-c8e51f972b4d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1321 65 false '-- '-- '-- '-- -23987 1033 90f4c061-f159-5a33-9711-19ed94507147 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1321_demographic Dead '-- '-- '-- '-- 23987 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 75f56478-bab2-51ee-821d-9db5567f6b98 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1321_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1321_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e8f1e952-9bdf-4af7-9bae-e9811eded30f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 6ad8bc89-d8e9-48c2-bc25-c8e51f972b4d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1321 65 false '-- '-- '-- '-- -23987 1033 90f4c061-f159-5a33-9711-19ed94507147 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1321_demographic Dead '-- '-- '-- '-- 24441 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 454 '-- '-- '-- de500cc4-6715-4a34-826e-14f05435e921 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1321_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1321_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1321_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5a3b1f37-1c69-44c9-a4e7-8c89e9534e1b '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 6ad8bc89-d8e9-48c2-bc25-c8e51f972b4d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1321 65 false '-- '-- '-- '-- -23987 1033 90f4c061-f159-5a33-9711-19ed94507147 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1321_demographic Dead '-- '-- '-- '-- 24441 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 454 '-- '-- '-- de500cc4-6715-4a34-826e-14f05435e921 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1321_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1321_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1321_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9d0de300-8ecc-4c32-ab31-ff02972fc5a7 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 6ad8bc89-d8e9-48c2-bc25-c8e51f972b4d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1321 65 false '-- '-- '-- '-- -23987 1033 90f4c061-f159-5a33-9711-19ed94507147 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1321_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f45999d7-5ac3-4ac5-8948-302f5ba094b7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1321_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1321_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1321_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6eaf4a03-b8dc-4200-ac50-4d425101e5f9 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 6ad8bc89-d8e9-48c2-bc25-c8e51f972b4d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1321 65 false '-- '-- '-- '-- -23987 1033 90f4c061-f159-5a33-9711-19ed94507147 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1321_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f45999d7-5ac3-4ac5-8948-302f5ba094b7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1321_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1321_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1321_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d6ab2ac4-a131-4665-b85f-a3649c655ccc '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 6b06281b-d3a9-440e-a86c-ee7db003352a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1690 66 false '-- '-- '-- '-- -24319 1448 bcfa97b6-fdd7-5b5f-8943-3e2bb1b2f8a1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1690_demographic Dead '-- '-- '-- '-- 24319 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dd1b849b-25d5-5b61-8c30-9bdbb0ea6514 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1690_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1690_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3462407f-36ea-4dd0-9b1d-5e4f8295fb8d Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 6b06281b-d3a9-440e-a86c-ee7db003352a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1690 66 false '-- '-- '-- '-- -24319 1448 bcfa97b6-fdd7-5b5f-8943-3e2bb1b2f8a1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1690_demographic Dead '-- '-- '-- '-- 24319 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dd1b849b-25d5-5b61-8c30-9bdbb0ea6514 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1690_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1690_treatment4 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 500 '-- mg/m2 '-- '-- '-- '-- 39935a53-a498-467c-a864-bb9bd5baea7b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6b06281b-d3a9-440e-a86c-ee7db003352a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1690 66 false '-- '-- '-- '-- -24319 1448 bcfa97b6-fdd7-5b5f-8943-3e2bb1b2f8a1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1690_demographic Dead '-- '-- '-- '-- 24319 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dd1b849b-25d5-5b61-8c30-9bdbb0ea6514 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1690_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1690_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 350 '-- mg/m2 '-- '-- '-- '-- 4aed44cf-2a25-43e2-8189-800efbd12ca0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6b06281b-d3a9-440e-a86c-ee7db003352a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1690 66 false '-- '-- '-- '-- -24319 1448 bcfa97b6-fdd7-5b5f-8943-3e2bb1b2f8a1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1690_demographic Dead '-- '-- '-- '-- 24319 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dd1b849b-25d5-5b61-8c30-9bdbb0ea6514 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1690_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- 91 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1690_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- e35001a9-1f76-427e-86ba-434ad53a5b65 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6b06281b-d3a9-440e-a86c-ee7db003352a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1690 66 false '-- '-- '-- '-- -24319 1448 bcfa97b6-fdd7-5b5f-8943-3e2bb1b2f8a1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1690_demographic Dead '-- '-- '-- '-- 24319 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dd1b849b-25d5-5b61-8c30-9bdbb0ea6514 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1690_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- 91 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1690_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- e83411da-55fb-57c5-b623-4e184c181a72 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6b2a9f9a-fe96-4311-a330-925c4ad36fe7 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1111 63 false '-- '-- '-- '-- -23171 '-- c6a9c1d3-b55e-5ef9-a771-a2a379aa9539 '-- not reported female '-- '-- '-- '-- white TCGA-23-1111_demographic Alive '-- '-- '-- '-- 23171 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b706f41e-b852-562e-b355-bba9f964e38a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1111_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 129 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1111_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3389 '-- mg '-- '-- '-- '-- 71a3b9da-1e31-48e1-abb2-226f2078d43c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6b2a9f9a-fe96-4311-a330-925c4ad36fe7 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1111 63 false '-- '-- '-- '-- -23171 '-- c6a9c1d3-b55e-5ef9-a771-a2a379aa9539 '-- not reported female '-- '-- '-- '-- white TCGA-23-1111_demographic Alive '-- '-- '-- '-- 23171 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b706f41e-b852-562e-b355-bba9f964e38a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1111_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 129 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1111_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1860 '-- mg '-- '-- '-- '-- 7a566f90-5991-4211-b22b-e31ed5e0f6f9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6b2a9f9a-fe96-4311-a330-925c4ad36fe7 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1111 63 false '-- '-- '-- '-- -23171 '-- c6a9c1d3-b55e-5ef9-a771-a2a379aa9539 '-- not reported female '-- '-- '-- '-- white TCGA-23-1111_demographic Alive '-- '-- '-- '-- 23171 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b706f41e-b852-562e-b355-bba9f964e38a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1111_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 129 45 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1111_treatment Bevacizumab '-- '-- '-- '-- '-- '-- '-- 5850 '-- mg '-- '-- '-- '-- a3567e3c-4b84-5146-9bd0-d18a0d6f2496 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6b2a9f9a-fe96-4311-a330-925c4ad36fe7 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1111 63 false '-- '-- '-- '-- -23171 '-- c6a9c1d3-b55e-5ef9-a771-a2a379aa9539 '-- not reported female '-- '-- '-- '-- white TCGA-23-1111_demographic Alive '-- '-- '-- '-- 23171 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b706f41e-b852-562e-b355-bba9f964e38a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1111_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1111_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bd795e1b-9997-42d4-b908-b95dc992ad45 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 6cf9f872-2e59-45cf-bb5e-ebd7fa1b3caf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0888 78 false '-- '-- '-- '-- -28498 2811 352a0590-c7a1-5b86-8a71-0f34b1ff6d0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0888_demographic Dead '-- '-- '-- '-- 28498 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 83afec30-398a-5fbb-87e1-c57d34a7da26 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0888_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 232 54 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0888_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2708db92-2815-586a-94ce-9660f24951e3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6cf9f872-2e59-45cf-bb5e-ebd7fa1b3caf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0888 78 false '-- '-- '-- '-- -28498 2811 352a0590-c7a1-5b86-8a71-0f34b1ff6d0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0888_demographic Dead '-- '-- '-- '-- 28498 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 83afec30-398a-5fbb-87e1-c57d34a7da26 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0888_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 232 54 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0888_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4c07bb21-e956-43d2-b9d6-e9190b52e02a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6cf9f872-2e59-45cf-bb5e-ebd7fa1b3caf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0888 78 false '-- '-- '-- '-- -28498 2811 352a0590-c7a1-5b86-8a71-0f34b1ff6d0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0888_demographic Dead '-- '-- '-- '-- 28498 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 83afec30-398a-5fbb-87e1-c57d34a7da26 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0888_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 253 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0888_treatment2 Letrozole '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 76df10d1-8fc6-431a-b143-ccd4ef0bd3da Adjuvant yes Treatment Ongoing '-- Hormone Therapy +TCGA-OV 6cf9f872-2e59-45cf-bb5e-ebd7fa1b3caf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0888 78 false '-- '-- '-- '-- -28498 2811 352a0590-c7a1-5b86-8a71-0f34b1ff6d0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0888_demographic Dead '-- '-- '-- '-- 28498 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 83afec30-398a-5fbb-87e1-c57d34a7da26 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0888_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0888_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d2e9ed07-f2a6-4d50-af15-57cc934a254a Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 6d10d4ee-6331-4bba-93bc-a7b64cc0b22a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1331 78 false '-- '-- '-- '-- -28848 1336 484bfbce-553b-5967-b6b1-2db46d395d5d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1331_demographic Dead '-- '-- '-- '-- 28848 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a5055ee4-957a-58aa-9f8d-4ee8c627de20 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1331_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 169 36 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1331_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 455 '-- mg '-- '-- '-- '-- 605bf3f2-5b65-4de8-bdd2-613d7bf919ec Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6d10d4ee-6331-4bba-93bc-a7b64cc0b22a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1331 78 false '-- '-- '-- '-- -28848 1336 484bfbce-553b-5967-b6b1-2db46d395d5d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1331_demographic Dead '-- '-- '-- '-- 28848 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a5055ee4-957a-58aa-9f8d-4ee8c627de20 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1331_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1331_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6bda952f-8c70-4f44-9d25-89fff9523805 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 6d10d4ee-6331-4bba-93bc-a7b64cc0b22a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1331 78 false '-- '-- '-- '-- -28848 1336 484bfbce-553b-5967-b6b1-2db46d395d5d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1331_demographic Dead '-- '-- '-- '-- 28848 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a5055ee4-957a-58aa-9f8d-4ee8c627de20 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1331_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 169 36 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1331_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1650 '-- mg '-- '-- '-- '-- ccb64579-fa43-532e-9f4f-97223d2e70ff Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6d10d4ee-6331-4bba-93bc-a7b64cc0b22a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1331 78 false '-- '-- '-- '-- -28848 1336 484bfbce-553b-5967-b6b1-2db46d395d5d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1331_demographic Dead '-- '-- '-- '-- 28848 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a5055ee4-957a-58aa-9f8d-4ee8c627de20 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1331_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 498 481 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1331_treatment2 Bortezomib '-- '-- '-- '-- '-- '-- '-- 4 '-- mg '-- '-- '-- '-- e7f109b0-3fea-4980-9373-3ca05967daec '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 6d10d4ee-6331-4bba-93bc-a7b64cc0b22a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1331 78 false '-- '-- '-- '-- -28848 1336 484bfbce-553b-5967-b6b1-2db46d395d5d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1331_demographic Dead '-- '-- '-- '-- 29307 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 459 '-- '-- '-- f1f437ba-ff5b-4114-8da8-7872472782a4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1331_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1331_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1331_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 00316b57-2356-4a6f-b0f5-aea5c3f8b861 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 6d10d4ee-6331-4bba-93bc-a7b64cc0b22a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1331 78 false '-- '-- '-- '-- -28848 1336 484bfbce-553b-5967-b6b1-2db46d395d5d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1331_demographic Dead '-- '-- '-- '-- 29307 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 459 '-- '-- '-- f1f437ba-ff5b-4114-8da8-7872472782a4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1331_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1331_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1331_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 04347034-0516-41ad-b55b-b5de47ac1bb8 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 6e84e89d-4f35-43b8-b47d-b1343b8c1ab9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1436 57 false '-- '-- '-- '-- -20881 260 a0107c28-a218-5aa9-a28b-c327f9ff8509 '-- not reported female '-- '-- '-- '-- white TCGA-24-1436_demographic Dead '-- '-- '-- '-- 20881 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c1b7821e-d547-564e-bd56-2021a2829cce true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1436_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 223 157 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1436_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- 28 '-- mg '-- '-- '-- '-- 0050cb2b-28bb-4645-a16e-2ee1752e53bc '-- yes '-- '-- Chemotherapy +TCGA-OV 6e84e89d-4f35-43b8-b47d-b1343b8c1ab9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1436 57 false '-- '-- '-- '-- -20881 260 a0107c28-a218-5aa9-a28b-c327f9ff8509 '-- not reported female '-- '-- '-- '-- white TCGA-24-1436_demographic Dead '-- '-- '-- '-- 20881 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c1b7821e-d547-564e-bd56-2021a2829cce true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1436_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 135 24 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1436_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1282 '-- mg '-- '-- '-- '-- 4cca1b40-400e-579f-8430-9ad31c25a430 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6e84e89d-4f35-43b8-b47d-b1343b8c1ab9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1436 57 false '-- '-- '-- '-- -20881 260 a0107c28-a218-5aa9-a28b-c327f9ff8509 '-- not reported female '-- '-- '-- '-- white TCGA-24-1436_demographic Dead '-- '-- '-- '-- 20881 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c1b7821e-d547-564e-bd56-2021a2829cce true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1436_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 135 24 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1436_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2730 '-- mg '-- '-- '-- '-- 6590b155-1b6a-4a7e-82bd-c910ce78277b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6e84e89d-4f35-43b8-b47d-b1343b8c1ab9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1436 57 false '-- '-- '-- '-- -20881 260 a0107c28-a218-5aa9-a28b-c327f9ff8509 '-- not reported female '-- '-- '-- '-- white TCGA-24-1436_demographic Dead '-- '-- '-- '-- 20881 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c1b7821e-d547-564e-bd56-2021a2829cce true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1436_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1436_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b9ee71ac-5e7c-4de6-9682-02fffd3d7e40 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 6ea9877f-eb8d-4ee9-af4c-32a78474d9a6 Informed Consent -47 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1575 83 false '-- '-- '-- '-- -30592 '-- dd3e8198-e1e2-5976-a248-79485941dd2d '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1575_demographic Alive '-- '-- '-- '-- 30592 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e7428b28-df7a-5573-8867-a864e51c6a92 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1575_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1575_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 31d18e73-e380-478d-bccd-f36e8952b0c3 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 6ea9877f-eb8d-4ee9-af4c-32a78474d9a6 Informed Consent -47 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1575 83 false '-- '-- '-- '-- -30592 '-- dd3e8198-e1e2-5976-a248-79485941dd2d '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1575_demographic Alive '-- '-- '-- '-- 30592 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e7428b28-df7a-5573-8867-a864e51c6a92 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1575_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1575_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d67ba0e7-920f-53a6-a76e-c8a76ed42d7e Adjuvant yes Not Reported '-- Pharmaceutical Therapy, NOS +TCGA-OV 6f25001a-f890-4fd0-a994-e62a9ea5c6f3 Informed Consent 1606 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2427 60 false '-- '-- '-- '-- -21940 '-- 4444344c-f573-5cad-9e24-348cf054c8ca '-- not reported female '-- '-- '-- '-- white TCGA-29-2427_demographic Alive '-- '-- '-- '-- 23522 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1582 '-- '-- '-- d9519259-0396-4b46-984a-95d3dfe606f6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-2427_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-2427_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2427_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4d1fe40b-8c0e-473e-8bed-93476d9b7f99 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 6f25001a-f890-4fd0-a994-e62a9ea5c6f3 Informed Consent 1606 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2427 60 false '-- '-- '-- '-- -21940 '-- 4444344c-f573-5cad-9e24-348cf054c8ca '-- not reported female '-- '-- '-- '-- white TCGA-29-2427_demographic Alive '-- '-- '-- '-- 23522 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1582 '-- '-- '-- d9519259-0396-4b46-984a-95d3dfe606f6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-2427_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-2427_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2427_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- faaf835c-197b-4473-bc27-38ba06d63f78 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 6f25001a-f890-4fd0-a994-e62a9ea5c6f3 Informed Consent 1606 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2427 60 false '-- '-- '-- '-- -21940 '-- 4444344c-f573-5cad-9e24-348cf054c8ca '-- not reported female '-- '-- '-- '-- white TCGA-29-2427_demographic Alive '-- '-- '-- '-- 21940 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- da1f114e-7c5a-51fc-9d84-66d67b4f7676 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2427_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 49 7 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-2427_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 252184f3-65c1-51c2-bfbf-33ef83c9971a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6f25001a-f890-4fd0-a994-e62a9ea5c6f3 Informed Consent 1606 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2427 60 false '-- '-- '-- '-- -21940 '-- 4444344c-f573-5cad-9e24-348cf054c8ca '-- not reported female '-- '-- '-- '-- white TCGA-29-2427_demographic Alive '-- '-- '-- '-- 21940 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- da1f114e-7c5a-51fc-9d84-66d67b4f7676 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2427_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 49 7 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-2427_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 3d4fce0d-9151-49c8-9da7-cdd336f5b399 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6f25001a-f890-4fd0-a994-e62a9ea5c6f3 Informed Consent 1606 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2427 60 false '-- '-- '-- '-- -21940 '-- 4444344c-f573-5cad-9e24-348cf054c8ca '-- not reported female '-- '-- '-- '-- white TCGA-29-2427_demographic Alive '-- '-- '-- '-- 21940 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- da1f114e-7c5a-51fc-9d84-66d67b4f7676 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2427_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1900 1816 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-2427_treatment4 Nab-paclitaxel '-- '-- '-- '-- '-- '-- '-- 510 '-- mg '-- '-- '-- '-- af855634-09ab-42e4-9e98-7a2b80f5bb29 '-- yes '-- '-- Chemotherapy +TCGA-OV 6f25001a-f890-4fd0-a994-e62a9ea5c6f3 Informed Consent 1606 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2427 60 false '-- '-- '-- '-- -21940 '-- 4444344c-f573-5cad-9e24-348cf054c8ca '-- not reported female '-- '-- '-- '-- white TCGA-29-2427_demographic Alive '-- '-- '-- '-- 21940 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- da1f114e-7c5a-51fc-9d84-66d67b4f7676 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2427_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 157 73 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- 110.0 mg '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-2427_treatment6 Cisplatin '-- '-- '-- '-- '-- '-- '-- 660 '-- mg '-- '-- '-- '-- d1470afe-5afc-4eb2-ac5b-040077085d55 '-- yes '-- '-- Chemotherapy +TCGA-OV 6f25001a-f890-4fd0-a994-e62a9ea5c6f3 Informed Consent 1606 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2427 60 false '-- '-- '-- '-- -21940 '-- 4444344c-f573-5cad-9e24-348cf054c8ca '-- not reported female '-- '-- '-- '-- white TCGA-29-2427_demographic Alive '-- '-- '-- '-- 21940 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- da1f114e-7c5a-51fc-9d84-66d67b4f7676 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2427_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2427_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e0ece8ca-f92d-49f5-a0e7-95f097d955ac Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 6f25001a-f890-4fd0-a994-e62a9ea5c6f3 Informed Consent 1606 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2427 60 false '-- '-- '-- '-- -21940 '-- 4444344c-f573-5cad-9e24-348cf054c8ca '-- not reported female '-- '-- '-- '-- white TCGA-29-2427_demographic Alive '-- '-- '-- '-- 21940 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- da1f114e-7c5a-51fc-9d84-66d67b4f7676 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2427_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 157 73 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- 940.0 mg '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-2427_treatment5 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 5640 '-- mg '-- '-- '-- '-- e4ff42ee-bdf7-4986-93db-9c9e9b9da486 '-- yes '-- '-- Chemotherapy +TCGA-OV 6f25001a-f890-4fd0-a994-e62a9ea5c6f3 Informed Consent 1606 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2427 60 false '-- '-- '-- '-- -21940 '-- 4444344c-f573-5cad-9e24-348cf054c8ca '-- not reported female '-- '-- '-- '-- white TCGA-29-2427_demographic Alive '-- '-- '-- '-- 21940 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- da1f114e-7c5a-51fc-9d84-66d67b4f7676 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2427_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1690 1584 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-2427_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- f62080ff-0e0b-4408-ac0d-1eef7653fb96 '-- yes '-- '-- Chemotherapy +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26994 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 694 '-- '-- '-- 657d1f02-4f97-466e-b3f4-266e614a648a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1693_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1693_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1693_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4e8d4a77-b68b-42bc-be59-6f9019c67885 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26994 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 694 '-- '-- '-- 657d1f02-4f97-466e-b3f4-266e614a648a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1693_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1693_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1693_treatment18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b871865b-9442-4d67-a3fe-785238f6d626 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 89abaf41-5b8e-4e2e-a9b0-90498ce3093e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1693_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1693_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2050 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1693_treatment21 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 090a9b98-2ded-4ee3-b389-0c917ab75406 '-- yes '-- '-- Surgery, NOS +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 89abaf41-5b8e-4e2e-a9b0-90498ce3093e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1693_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1693_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1693_treatment19 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e62459de-91d8-4093-b8f5-214f71a61722 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 89abaf41-5b8e-4e2e-a9b0-90498ce3093e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1693_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1693_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1693_treatment20 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ebce814a-3518-4602-9994-72872bbeddae '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ebc68b2a-3891-5bad-92aa-ae5e37033678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1693_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2058 2027 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1693_treatment8 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 06730ab9-be62-4a51-9c85-ff41dc82be8e '-- yes '-- '-- Chemotherapy +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ebc68b2a-3891-5bad-92aa-ae5e37033678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1693_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2331 2270 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1693_treatment '-- '-- '-- '-- '-- '-- Primary Tumor Field '-- '-- '-- '-- '-- '-- '-- '-- 07f20521-78b1-5110-a0ef-d60bc53f10a8 Palliative yes '-- '-- Radiation, External Beam +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ebc68b2a-3891-5bad-92aa-ae5e37033678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1693_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2239 2232 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1693_treatment15 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 08100170-1c62-4cb0-b89e-6cabb7561b2a '-- yes '-- '-- Chemotherapy +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ebc68b2a-3891-5bad-92aa-ae5e37033678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1693_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- 1300 '-- '-- Progressive Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1693_treatment16 Carboplatin '-- '-- '-- '-- '-- '-- '-- 345 '-- mg '-- '-- '-- '-- 1b79d812-9081-427f-86b9-89a870843a3f '-- yes '-- '-- Chemotherapy +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ebc68b2a-3891-5bad-92aa-ae5e37033678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1693_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 191 19 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1693_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3430 '-- mg '-- '-- '-- '-- 1cc1519f-80a5-4acd-806c-79f6b5cb4f72 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ebc68b2a-3891-5bad-92aa-ae5e37033678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1693_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- 3124 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-29-1693_treatment7 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 50 '-- mg '-- '-- '-- '-- 28d5c3ce-e9e6-45d7-b401-a5a39ba7bf8b '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ebc68b2a-3891-5bad-92aa-ae5e37033678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1693_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1724 1668 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1693_treatment13 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 1375 '-- mg '-- '-- '-- '-- 2ed70ee2-940f-4393-8db7-649bb942658e '-- yes '-- '-- Chemotherapy +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ebc68b2a-3891-5bad-92aa-ae5e37033678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1693_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2669 2627 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1693_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 44491a0f-b72b-4b92-8e05-d60bf9897ddb '-- yes '-- '-- Chemotherapy +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ebc68b2a-3891-5bad-92aa-ae5e37033678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1693_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 191 19 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1693_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2240 '-- mg '-- '-- '-- '-- 69fed3fd-6901-406c-9f5c-2041f6e2eba9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ebc68b2a-3891-5bad-92aa-ae5e37033678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1693_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 3018 2788 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1693_treatment11 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 71d8d1e6-28ee-4c1c-a2a8-219a4f21d8d9 '-- yes '-- '-- Chemotherapy +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ebc68b2a-3891-5bad-92aa-ae5e37033678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1693_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 814 717 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1693_treatment14 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 91e6e65d-5da0-4b3e-bf7b-991e4cf51fc8 '-- yes '-- '-- Chemotherapy +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ebc68b2a-3891-5bad-92aa-ae5e37033678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1693_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1157 1069 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1693_treatment4 Paclitaxel Poliglumex '-- '-- '-- '-- '-- '-- '-- 300 '-- mg '-- '-- '-- '-- 97fb91f2-6fd5-495b-a6f8-a80eddf44208 '-- yes '-- '-- Chemotherapy +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ebc68b2a-3891-5bad-92aa-ae5e37033678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1693_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 814 717 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1693_treatment9 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- be981a65-aaf4-4306-8801-4c8ef2f80bc6 '-- yes '-- '-- Chemotherapy +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ebc68b2a-3891-5bad-92aa-ae5e37033678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1693_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1724 1668 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1693_treatment10 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 740 '-- mg '-- '-- '-- '-- c6d1a024-557f-4ca0-b358-0076e79e40fc '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ebc68b2a-3891-5bad-92aa-ae5e37033678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1693_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1892 1780 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1693_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 70 '-- mg '-- '-- '-- '-- e5a73016-f4cc-4b5a-8f5b-1c63a97fd748 '-- yes '-- '-- Chemotherapy +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ebc68b2a-3891-5bad-92aa-ae5e37033678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1693_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- 3124 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1693_treatment12 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 600 '-- mg '-- '-- '-- '-- ebfbf25d-a432-4be9-8a0d-52c0934b57c4 '-- yes Treatment Ongoing '-- Targeted Molecular Therapy +TCGA-OV 6fee41dc-b8a9-4347-8085-b7e05f813ad0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1944 47 false '-- '-- '-- '-- -17207 '-- 1846915b-b3b0-5629-bb73-f78bf2081edf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1944_demographic Alive '-- '-- '-- '-- 17885 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 678 '-- '-- '-- 7ee5a686-dc85-4bf8-8561-7fe214f21100 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-31-1944_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-31-1944_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1944_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 428a0372-28cf-4300-bb59-c773796a7408 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 6fee41dc-b8a9-4347-8085-b7e05f813ad0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1944 47 false '-- '-- '-- '-- -17207 '-- 1846915b-b3b0-5629-bb73-f78bf2081edf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1944_demographic Alive '-- '-- '-- '-- 17885 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 678 '-- '-- '-- 7ee5a686-dc85-4bf8-8561-7fe214f21100 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-31-1944_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-31-1944_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1944_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5903f4f0-8bdb-465f-8d3e-a71667101674 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 6fee41dc-b8a9-4347-8085-b7e05f813ad0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1944 47 false '-- '-- '-- '-- -17207 '-- 1846915b-b3b0-5629-bb73-f78bf2081edf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1944_demographic Alive '-- '-- '-- '-- 17207 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b0da2290-ee62-5e0f-a177-72bc672062ec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1944_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 223 153 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-31-1944_treatment9 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 835 '-- mg '-- '-- '-- '-- 2ec697e2-1690-4ca0-8a50-ce0c6760e49e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6fee41dc-b8a9-4347-8085-b7e05f813ad0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1944 47 false '-- '-- '-- '-- -17207 '-- 1846915b-b3b0-5629-bb73-f78bf2081edf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1944_demographic Alive '-- '-- '-- '-- 17207 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b0da2290-ee62-5e0f-a177-72bc672062ec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1944_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1944_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2fafb1f7-616a-47d4-a51c-6b76654785c7 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 6fee41dc-b8a9-4347-8085-b7e05f813ad0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1944 47 false '-- '-- '-- '-- -17207 '-- 1846915b-b3b0-5629-bb73-f78bf2081edf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1944_demographic Alive '-- '-- '-- '-- 17207 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b0da2290-ee62-5e0f-a177-72bc672062ec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1944_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 841 721 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1944_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3300 '-- mg '-- '-- '-- '-- 4a293448-642f-4287-8ee1-5cf3df537fb7 '-- yes '-- '-- Chemotherapy +TCGA-OV 6fee41dc-b8a9-4347-8085-b7e05f813ad0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1944 47 false '-- '-- '-- '-- -17207 '-- 1846915b-b3b0-5629-bb73-f78bf2081edf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1944_demographic Alive '-- '-- '-- '-- 17207 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b0da2290-ee62-5e0f-a177-72bc672062ec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1944_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- 1032 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-31-1944_treatment4 Olaparib '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 742566b5-34e3-40b6-8c99-132a0cf7f3ce '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 6fee41dc-b8a9-4347-8085-b7e05f813ad0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1944 47 false '-- '-- '-- '-- -17207 '-- 1846915b-b3b0-5629-bb73-f78bf2081edf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1944_demographic Alive '-- '-- '-- '-- 17207 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b0da2290-ee62-5e0f-a177-72bc672062ec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1944_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 223 153 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-31-1944_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 345 '-- mg '-- '-- '-- '-- af77367c-9795-421a-9531-8b047b654090 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6fee41dc-b8a9-4347-8085-b7e05f813ad0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1944 47 false '-- '-- '-- '-- -17207 '-- 1846915b-b3b0-5629-bb73-f78bf2081edf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1944_demographic Alive '-- '-- '-- '-- 17207 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b0da2290-ee62-5e0f-a177-72bc672062ec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1944_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 944 479 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1944_treatment8 Tamoxifen '-- '-- '-- '-- '-- '-- '-- 9140 '-- mg '-- '-- '-- '-- afc576ae-1f1d-43e1-9287-523ba34d30aa '-- yes '-- '-- Hormone Therapy +TCGA-OV 6fee41dc-b8a9-4347-8085-b7e05f813ad0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1944 47 false '-- '-- '-- '-- -17207 '-- 1846915b-b3b0-5629-bb73-f78bf2081edf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1944_demographic Alive '-- '-- '-- '-- 17207 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b0da2290-ee62-5e0f-a177-72bc672062ec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1944_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 126 7 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1944_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4200 '-- mg '-- '-- '-- '-- b4b6a455-43d7-4c6b-95e8-407c9243221d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6fee41dc-b8a9-4347-8085-b7e05f813ad0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1944 47 false '-- '-- '-- '-- -17207 '-- 1846915b-b3b0-5629-bb73-f78bf2081edf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1944_demographic Alive '-- '-- '-- '-- 17207 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b0da2290-ee62-5e0f-a177-72bc672062ec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1944_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 1099 944 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-31-1944_treatment Megestrol Acetate '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b53485cf-2228-50ab-a344-6deb35087b3f Not Reported yes '-- '-- Chemotherapy +TCGA-OV 6fee41dc-b8a9-4347-8085-b7e05f813ad0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1944 47 false '-- '-- '-- '-- -17207 '-- 1846915b-b3b0-5629-bb73-f78bf2081edf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1944_demographic Alive '-- '-- '-- '-- 17207 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b0da2290-ee62-5e0f-a177-72bc672062ec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1944_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 841 721 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1944_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1650 '-- mg '-- '-- '-- '-- d9d08884-2b28-4ac1-ab35-ecf2a6a39520 '-- yes '-- '-- Chemotherapy +TCGA-OV 6fee41dc-b8a9-4347-8085-b7e05f813ad0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1944 47 false '-- '-- '-- '-- -17207 '-- 1846915b-b3b0-5629-bb73-f78bf2081edf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1944_demographic Alive '-- '-- '-- '-- 17207 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b0da2290-ee62-5e0f-a177-72bc672062ec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1944_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 126 7 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1944_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1650 '-- mg '-- '-- '-- '-- f2fdebc0-6ca8-424d-bc5e-aa6c44bfbf7a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6fee41dc-b8a9-4347-8085-b7e05f813ad0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1944 47 false '-- '-- '-- '-- -17207 '-- 1846915b-b3b0-5629-bb73-f78bf2081edf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1944_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bac9bba2-b0d4-41da-b6a9-09f783847b56 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-31-1944_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-31-1944_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1944_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dc135752-22b6-4ea0-8a43-e6f62472e6fa '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 6fee41dc-b8a9-4347-8085-b7e05f813ad0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1944 47 false '-- '-- '-- '-- -17207 '-- 1846915b-b3b0-5629-bb73-f78bf2081edf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1944_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bac9bba2-b0d4-41da-b6a9-09f783847b56 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-31-1944_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-31-1944_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1944_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e60fc630-2315-4d87-89e7-0f991cc40833 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 6fee41dc-b8a9-4347-8085-b7e05f813ad0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1944 47 false '-- '-- '-- '-- -17207 '-- 1846915b-b3b0-5629-bb73-f78bf2081edf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1944_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bac9bba2-b0d4-41da-b6a9-09f783847b56 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-31-1944_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-31-1944_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 701 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1944_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ea7c5df7-e12a-4142-9d8e-c33326eff24a '-- yes '-- '-- Surgery, NOS +TCGA-OV 700e91bb-d675-41b2-bbbd-935767c7b447 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1118 45 false '-- '-- '-- '-- -16471 '-- 9365e233-5048-5e21-8118-2106e29f75eb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1118_demographic Alive '-- '-- '-- '-- 16471 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3e654e05-d3e9-57f4-9bda-b31211ca6a22 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1118_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1118_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 00a2cf45-7811-4d00-9acf-7c896bc7c2af Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 700e91bb-d675-41b2-bbbd-935767c7b447 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1118 45 false '-- '-- '-- '-- -16471 '-- 9365e233-5048-5e21-8118-2106e29f75eb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1118_demographic Alive '-- '-- '-- '-- 16471 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3e654e05-d3e9-57f4-9bda-b31211ca6a22 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1118_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 196 56 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-23-1118_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 300 '-- mg '-- '-- '-- '-- 85cb3d17-bf01-575b-b9f6-6a789b2f494f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7016714b-6af8-45dd-8341-1493927e5515 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0936 69 false '-- '-- '-- '-- -25454 1123 014b5a3f-ce4b-5e1b-bb9f-caa0d307e19f '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-10-0936_demographic Dead '-- '-- '-- '-- 25454 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 68108d81-543a-5c73-a998-dd9bd6fdcd9e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0936_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0936_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 21b448ee-c075-4f27-a05e-bbf65290d152 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 7016714b-6af8-45dd-8341-1493927e5515 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0936 69 false '-- '-- '-- '-- -25454 1123 014b5a3f-ce4b-5e1b-bb9f-caa0d307e19f '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-10-0936_demographic Dead '-- '-- '-- '-- 25454 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 68108d81-543a-5c73-a998-dd9bd6fdcd9e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0936_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 936 810 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0936_treatment8 Docetaxel '-- '-- '-- '-- '-- '-- '-- 750 '-- mg/m2 '-- '-- '-- '-- 4187d75a-cf75-466e-8290-9b30ae1bd317 '-- yes '-- '-- Chemotherapy +TCGA-OV 7016714b-6af8-45dd-8341-1493927e5515 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0936 69 false '-- '-- '-- '-- -25454 1123 014b5a3f-ce4b-5e1b-bb9f-caa0d307e19f '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-10-0936_demographic Dead '-- '-- '-- '-- 25454 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 68108d81-543a-5c73-a998-dd9bd6fdcd9e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0936_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 800 678 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0936_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 225 '-- mg/m2 '-- '-- '-- '-- 49df81ca-e27f-46e0-9bb7-dd46346681e9 '-- yes '-- '-- Chemotherapy +TCGA-OV 7016714b-6af8-45dd-8341-1493927e5515 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0936 69 false '-- '-- '-- '-- -25454 1123 014b5a3f-ce4b-5e1b-bb9f-caa0d307e19f '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-10-0936_demographic Dead '-- '-- '-- '-- 25454 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 68108d81-543a-5c73-a998-dd9bd6fdcd9e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0936_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 678 621 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0936_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1035 '-- mg/m2 '-- '-- '-- '-- 5b25cd96-198d-4a30-9b20-1a649cd44343 '-- yes '-- '-- Chemotherapy +TCGA-OV 7016714b-6af8-45dd-8341-1493927e5515 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0936 69 false '-- '-- '-- '-- -25454 1123 014b5a3f-ce4b-5e1b-bb9f-caa0d307e19f '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-10-0936_demographic Dead '-- '-- '-- '-- 25454 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 68108d81-543a-5c73-a998-dd9bd6fdcd9e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0936_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 1007 939 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0936_treatment Gemcitabine '-- '-- '-- '-- '-- '-- '-- 11200 '-- mg/m2 '-- '-- '-- '-- 7402965a-bc8e-5082-b49c-5c5fa25f5a84 '-- yes '-- '-- Chemotherapy +TCGA-OV 7016714b-6af8-45dd-8341-1493927e5515 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0936 69 false '-- '-- '-- '-- -25454 1123 014b5a3f-ce4b-5e1b-bb9f-caa0d307e19f '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-10-0936_demographic Dead '-- '-- '-- '-- 25454 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 68108d81-543a-5c73-a998-dd9bd6fdcd9e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0936_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 194 89 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0936_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1800 '-- mg/m2 '-- '-- '-- '-- 9cc20bf0-70d4-47d7-8ee6-e1347b4ca761 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7016714b-6af8-45dd-8341-1493927e5515 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0936 69 false '-- '-- '-- '-- -25454 1123 014b5a3f-ce4b-5e1b-bb9f-caa0d307e19f '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-10-0936_demographic Dead '-- '-- '-- '-- 25454 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 68108d81-543a-5c73-a998-dd9bd6fdcd9e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0936_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 62 20 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0936_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1615 '-- mg/m2 '-- '-- '-- '-- b4fb5d2d-e65e-403c-9f45-ca07e0b32e17 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7016714b-6af8-45dd-8341-1493927e5515 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0936 69 false '-- '-- '-- '-- -25454 1123 014b5a3f-ce4b-5e1b-bb9f-caa0d307e19f '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-10-0936_demographic Dead '-- '-- '-- '-- 25454 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 68108d81-543a-5c73-a998-dd9bd6fdcd9e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0936_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 615 237 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0936_treatment7 Letrozole '-- '-- '-- '-- '-- '-- '-- 3 '-- mg/day '-- '-- '-- '-- c945120d-6fdf-42fc-860e-cd416ffdd1c7 '-- yes '-- '-- Hormone Therapy +TCGA-OV 7016714b-6af8-45dd-8341-1493927e5515 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0936 69 false '-- '-- '-- '-- -25454 1123 014b5a3f-ce4b-5e1b-bb9f-caa0d307e19f '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-10-0936_demographic Dead '-- '-- '-- '-- 25454 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 68108d81-543a-5c73-a998-dd9bd6fdcd9e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0936_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 194 89 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0936_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2280 '-- mg/m2 '-- '-- '-- '-- db655d89-937e-44e5-896d-02941ad37508 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 708eec28-2348-4e15-b98c-8c6f9d057b1e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2355 58 false '-- '-- '-- '-- '-- 65 ea0a2db7-aa6f-51d6-b99f-2e20666781ef '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-59-2355_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 399bd74f-6959-50b6-9977-29d7ab3b4588 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-59-2355_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-2355_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 53746f06-6b6e-4fe2-b720-ebe5c21ae792 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 708eec28-2348-4e15-b98c-8c6f9d057b1e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2355 58 false '-- '-- '-- '-- '-- 65 ea0a2db7-aa6f-51d6-b99f-2e20666781ef '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-59-2355_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 399bd74f-6959-50b6-9977-29d7ab3b4588 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-59-2355_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-2355_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c74b03d1-9ee4-5d0f-a5d0-39b066358ffd Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 70fe08bd-a0b4-4a88-b82e-813b176f8e40 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-23-1116 83 false '-- '-- '-- '-- -30464 592 4b9f2013-cf47-571e-8a15-8f1207cd8a5a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1116_demographic Dead '-- '-- '-- '-- 30750 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 286 '-- '-- '-- 02ff8b29-727c-4cb9-b974-9af95c0775ba false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1116_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1116_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1116_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 134306c5-e9d4-4e80-a108-dadd26d8de61 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 70fe08bd-a0b4-4a88-b82e-813b176f8e40 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-23-1116 83 false '-- '-- '-- '-- -30464 592 4b9f2013-cf47-571e-8a15-8f1207cd8a5a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1116_demographic Dead '-- '-- '-- '-- 30750 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 286 '-- '-- '-- 02ff8b29-727c-4cb9-b974-9af95c0775ba false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1116_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1116_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1116_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 968d130a-b182-417b-ae15-e2a791eace9d '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 70fe08bd-a0b4-4a88-b82e-813b176f8e40 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-23-1116 83 false '-- '-- '-- '-- -30464 592 4b9f2013-cf47-571e-8a15-8f1207cd8a5a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1116_demographic Dead '-- '-- '-- '-- 30750 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 286 '-- '-- '-- 76041e85-e64e-46d3-a72d-5e36c781c829 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1116_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1116_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1116_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2fca8207-b846-494c-96fe-a4d3e48db341 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 70fe08bd-a0b4-4a88-b82e-813b176f8e40 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-23-1116 83 false '-- '-- '-- '-- -30464 592 4b9f2013-cf47-571e-8a15-8f1207cd8a5a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1116_demographic Dead '-- '-- '-- '-- 30750 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 286 '-- '-- '-- 76041e85-e64e-46d3-a72d-5e36c781c829 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1116_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1116_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1116_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 854cb202-f2fd-41c9-915f-a6a00d6cd61a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 70fe08bd-a0b4-4a88-b82e-813b176f8e40 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-23-1116 83 false '-- '-- '-- '-- -30464 592 4b9f2013-cf47-571e-8a15-8f1207cd8a5a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1116_demographic Dead '-- '-- '-- '-- 30464 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d0a829b8-ce2d-5f29-8ac9-e83d900af073 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1116_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 187 19 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-23-1116_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2100 '-- mg '-- '-- '-- '-- 05a932e0-1f72-458e-aaaf-a1b8c7d52b8d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 70fe08bd-a0b4-4a88-b82e-813b176f8e40 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-23-1116 83 false '-- '-- '-- '-- -30464 592 4b9f2013-cf47-571e-8a15-8f1207cd8a5a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1116_demographic Dead '-- '-- '-- '-- 30464 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d0a829b8-ce2d-5f29-8ac9-e83d900af073 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1116_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1116_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0f3d758b-3d45-467c-8cb3-d5d6f3431330 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 70fe08bd-a0b4-4a88-b82e-813b176f8e40 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-23-1116 83 false '-- '-- '-- '-- -30464 592 4b9f2013-cf47-571e-8a15-8f1207cd8a5a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1116_demographic Dead '-- '-- '-- '-- 30464 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d0a829b8-ce2d-5f29-8ac9-e83d900af073 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1116_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 418 306 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1116_treatment4 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 11028 '-- mg '-- '-- '-- '-- 1690dd07-d671-4251-bf8c-ea3b122a4b42 '-- yes '-- '-- Chemotherapy +TCGA-OV 70fe08bd-a0b4-4a88-b82e-813b176f8e40 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-23-1116 83 false '-- '-- '-- '-- -30464 592 4b9f2013-cf47-571e-8a15-8f1207cd8a5a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1116_demographic Dead '-- '-- '-- '-- 30464 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d0a829b8-ce2d-5f29-8ac9-e83d900af073 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1116_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 187 19 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-23-1116_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1746 '-- mg '-- '-- '-- '-- 2841e495-9897-5d46-ae74-44b8a692f808 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 70fe08bd-a0b4-4a88-b82e-813b176f8e40 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-23-1116 83 false '-- '-- '-- '-- -30464 592 4b9f2013-cf47-571e-8a15-8f1207cd8a5a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1116_demographic Dead '-- '-- '-- '-- 30464 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d0a829b8-ce2d-5f29-8ac9-e83d900af073 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1116_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 418 306 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1116_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1530 '-- mg '-- '-- '-- '-- 6b2070ab-8677-498e-8f54-daff342aa54b '-- yes '-- '-- Chemotherapy +TCGA-OV 71faa2c1-0d5b-4dcc-bdf9-f2405f29907c Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2113 53 false '-- '-- '-- '-- -19722 676 74216962-1bf9-5e6b-8285-3865c6655eac '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2113_demographic Dead '-- '-- '-- '-- 20013 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 291 '-- '-- '-- 5207d1ec-7edf-4f0c-88d3-128b8f193353 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2113_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2113_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2113_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 37b0adbb-686e-44da-8c83-38910836aee6 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 71faa2c1-0d5b-4dcc-bdf9-f2405f29907c Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2113 53 false '-- '-- '-- '-- -19722 676 74216962-1bf9-5e6b-8285-3865c6655eac '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2113_demographic Dead '-- '-- '-- '-- 20013 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 291 '-- '-- '-- 5207d1ec-7edf-4f0c-88d3-128b8f193353 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2113_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2113_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2113_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3999740a-8498-424a-9bee-deeb4ebd66ef '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 71faa2c1-0d5b-4dcc-bdf9-f2405f29907c Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2113 53 false '-- '-- '-- '-- -19722 676 74216962-1bf9-5e6b-8285-3865c6655eac '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2113_demographic Dead '-- '-- '-- '-- 19722 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6b483d36-30fc-5513-8cba-f768ad1d62e3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2113_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 143 49 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2113_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4026 '-- mg '-- '-- '-- '-- 7d12c689-2f92-4b42-aae7-9395aa2cde89 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 71faa2c1-0d5b-4dcc-bdf9-f2405f29907c Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2113 53 false '-- '-- '-- '-- -19722 676 74216962-1bf9-5e6b-8285-3865c6655eac '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2113_demographic Dead '-- '-- '-- '-- 19722 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6b483d36-30fc-5513-8cba-f768ad1d62e3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2113_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2113_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d284c80a-fc0f-44ce-8ee9-4c63abcf1ec7 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 71faa2c1-0d5b-4dcc-bdf9-f2405f29907c Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2113 53 false '-- '-- '-- '-- -19722 676 74216962-1bf9-5e6b-8285-3865c6655eac '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2113_demographic Dead '-- '-- '-- '-- 19722 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6b483d36-30fc-5513-8cba-f768ad1d62e3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2113_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 392 336 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-2113_treatment2 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 418 '-- mg/m2 '-- '-- '-- '-- e421154f-3386-458f-bcf5-e01398f6d950 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 71faa2c1-0d5b-4dcc-bdf9-f2405f29907c Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2113 53 false '-- '-- '-- '-- -19722 676 74216962-1bf9-5e6b-8285-3865c6655eac '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2113_demographic Dead '-- '-- '-- '-- 19722 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6b483d36-30fc-5513-8cba-f768ad1d62e3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2113_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 143 49 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2113_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1480 '-- mg/m2 '-- '-- '-- '-- f215980e-01ac-56cb-906b-bf98d6d20a30 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7248cd60-be22-44bc-bc58-f644db0940a2 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1489 70 false '-- '-- '-- '-- -25768 2553 39bca6ab-f7fe-59fd-b376-b16f300c341d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1489_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 18019ed5-8e39-416a-9f1a-d82eab745478 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1489_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1489_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 833 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1489_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 194bb7f1-f5a5-444a-8fc6-e2ef1b3e2397 '-- yes '-- '-- Surgery, NOS +TCGA-OV 7248cd60-be22-44bc-bc58-f644db0940a2 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1489 70 false '-- '-- '-- '-- -25768 2553 39bca6ab-f7fe-59fd-b376-b16f300c341d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1489_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 18019ed5-8e39-416a-9f1a-d82eab745478 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1489_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1489_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1489_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 24623334-22f3-429b-ad25-6e485766f467 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 7248cd60-be22-44bc-bc58-f644db0940a2 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1489 70 false '-- '-- '-- '-- -25768 2553 39bca6ab-f7fe-59fd-b376-b16f300c341d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1489_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 18019ed5-8e39-416a-9f1a-d82eab745478 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1489_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1489_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1489_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 63a1427d-732c-45b9-885c-24fe7162f353 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7248cd60-be22-44bc-bc58-f644db0940a2 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1489 70 false '-- '-- '-- '-- -25768 2553 39bca6ab-f7fe-59fd-b376-b16f300c341d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1489_demographic Dead '-- '-- '-- '-- 26574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 806 '-- '-- '-- 82d0599d-6479-4f88-9483-90f96e21a1d8 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1489_diagnosis4 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1489_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 7248cd60-be22-44bc-bc58-f644db0940a2 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1489 70 false '-- '-- '-- '-- -25768 2553 39bca6ab-f7fe-59fd-b376-b16f300c341d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1489_demographic Dead '-- '-- '-- '-- 26574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 806 '-- '-- '-- e6cf6304-c127-4ea2-b90e-df911bb3f4a9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1489_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1489_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1489_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6e48f2ec-5e8b-41a2-bcbe-5128053b645d '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 7248cd60-be22-44bc-bc58-f644db0940a2 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1489 70 false '-- '-- '-- '-- -25768 2553 39bca6ab-f7fe-59fd-b376-b16f300c341d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1489_demographic Dead '-- '-- '-- '-- 26574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 806 '-- '-- '-- e6cf6304-c127-4ea2-b90e-df911bb3f4a9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1489_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1489_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1489_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bc55a2ee-f280-4248-b585-57b834b81f45 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7248cd60-be22-44bc-bc58-f644db0940a2 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1489 70 false '-- '-- '-- '-- -25768 2553 39bca6ab-f7fe-59fd-b376-b16f300c341d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1489_demographic Dead '-- '-- '-- '-- 25768 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f903544f-b690-54a3-b3e5-faa412f474d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1489_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 868 867 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1489_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 61c1513c-00c9-47b3-95a0-2488fbed53e1 '-- yes '-- '-- Chemotherapy +TCGA-OV 7248cd60-be22-44bc-bc58-f644db0940a2 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1489 70 false '-- '-- '-- '-- -25768 2553 39bca6ab-f7fe-59fd-b376-b16f300c341d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1489_demographic Dead '-- '-- '-- '-- 25768 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f903544f-b690-54a3-b3e5-faa412f474d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1489_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1489_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 98027d90-2aa8-4085-bb5b-306c3878fe7e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 7248cd60-be22-44bc-bc58-f644db0940a2 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1489 70 false '-- '-- '-- '-- -25768 2553 39bca6ab-f7fe-59fd-b376-b16f300c341d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1489_demographic Dead '-- '-- '-- '-- 25768 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f903544f-b690-54a3-b3e5-faa412f474d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1489_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1012 '-- '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1489_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- a718bb81-ae6e-40b8-9cc9-77aa94436d7f '-- yes '-- '-- Chemotherapy +TCGA-OV 7248cd60-be22-44bc-bc58-f644db0940a2 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1489 70 false '-- '-- '-- '-- -25768 2553 39bca6ab-f7fe-59fd-b376-b16f300c341d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1489_demographic Dead '-- '-- '-- '-- 25768 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f903544f-b690-54a3-b3e5-faa412f474d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1489_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1012 '-- '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- 60.0 mg/m2 '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1489_treatment6 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a853ca71-365b-4b60-bb4a-1d99ed911365 '-- yes '-- '-- Chemotherapy +TCGA-OV 7248cd60-be22-44bc-bc58-f644db0940a2 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1489 70 false '-- '-- '-- '-- -25768 2553 39bca6ab-f7fe-59fd-b376-b16f300c341d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1489_demographic Dead '-- '-- '-- '-- 25768 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f903544f-b690-54a3-b3e5-faa412f474d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1489_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 868 867 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1489_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aa34f453-e474-49bc-ad3e-38d493b0b34b '-- yes '-- '-- Chemotherapy +TCGA-OV 7248cd60-be22-44bc-bc58-f644db0940a2 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1489 70 false '-- '-- '-- '-- -25768 2553 39bca6ab-f7fe-59fd-b376-b16f300c341d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1489_demographic Dead '-- '-- '-- '-- 25768 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f903544f-b690-54a3-b3e5-faa412f474d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1489_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 181 41 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1489_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- ad9e7582-766f-591a-8ef5-78df3f6d07be Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7248cd60-be22-44bc-bc58-f644db0940a2 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1489 70 false '-- '-- '-- '-- -25768 2553 39bca6ab-f7fe-59fd-b376-b16f300c341d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1489_demographic Dead '-- '-- '-- '-- 25768 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f903544f-b690-54a3-b3e5-faa412f474d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1489_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 272 272 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-1489_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- b9f3aed0-8d2a-49bd-afa6-a5159688edf2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7248cd60-be22-44bc-bc58-f644db0940a2 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1489 70 false '-- '-- '-- '-- -25768 2553 39bca6ab-f7fe-59fd-b376-b16f300c341d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1489_demographic Dead '-- '-- '-- '-- 25768 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f903544f-b690-54a3-b3e5-faa412f474d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1489_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 181 41 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1489_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bb8b9bad-e27f-48a0-b43e-db3b867a790f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 72c40fba-f502-489b-ad87-843f52655894 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1738 60 false '-- '-- '-- '-- -21965 1089 b3cb6309-cf5e-5396-ad1d-840561b1e2ed '-- not reported female '-- '-- '-- '-- black or african american TCGA-61-1738_demographic Dead '-- '-- '-- '-- 21965 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5ab9e1b0-8ef3-58e0-9d0d-da2727fd5dc1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1738_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 338 287 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1738_treatment Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 210 '-- mg '-- '-- '-- '-- 1eaf6e5c-6627-55fb-8f09-f6de63ab34d8 '-- yes '-- '-- Chemotherapy +TCGA-OV 72c40fba-f502-489b-ad87-843f52655894 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1738 60 false '-- '-- '-- '-- -21965 1089 b3cb6309-cf5e-5396-ad1d-840561b1e2ed '-- not reported female '-- '-- '-- '-- black or african american TCGA-61-1738_demographic Dead '-- '-- '-- '-- 21965 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5ab9e1b0-8ef3-58e0-9d0d-da2727fd5dc1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1738_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 658 422 '-- '-- Recurrent Disease '-- '-- '-- '-- 29 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1738_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- 191 '-- mg '-- '-- '-- '-- 2f154cd8-20bb-47b8-9ab2-8da6e916fc49 '-- yes '-- '-- Chemotherapy +TCGA-OV 72c40fba-f502-489b-ad87-843f52655894 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1738 60 false '-- '-- '-- '-- -21965 1089 b3cb6309-cf5e-5396-ad1d-840561b1e2ed '-- not reported female '-- '-- '-- '-- black or african american TCGA-61-1738_demographic Dead '-- '-- '-- '-- 21965 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5ab9e1b0-8ef3-58e0-9d0d-da2727fd5dc1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1738_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 135 21 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1738_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2376 '-- mg '-- '-- '-- '-- 39c98bee-dbb0-4507-ba04-30016aa477d2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 72c40fba-f502-489b-ad87-843f52655894 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1738 60 false '-- '-- '-- '-- -21965 1089 b3cb6309-cf5e-5396-ad1d-840561b1e2ed '-- not reported female '-- '-- '-- '-- black or african american TCGA-61-1738_demographic Dead '-- '-- '-- '-- 21965 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5ab9e1b0-8ef3-58e0-9d0d-da2727fd5dc1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1738_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 843 709 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1738_treatment2 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 6200 '-- mg/m2 '-- '-- '-- '-- 50d70d6a-8dfa-48a2-afff-0fe8ed742999 '-- yes '-- '-- Chemotherapy +TCGA-OV 72c40fba-f502-489b-ad87-843f52655894 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1738 60 false '-- '-- '-- '-- -21965 1089 b3cb6309-cf5e-5396-ad1d-840561b1e2ed '-- not reported female '-- '-- '-- '-- black or african american TCGA-61-1738_demographic Dead '-- '-- '-- '-- 21965 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5ab9e1b0-8ef3-58e0-9d0d-da2727fd5dc1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1738_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 135 21 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1738_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 517230c2-9700-472a-bd87-7b1513a42428 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 72c40fba-f502-489b-ad87-843f52655894 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1738 60 false '-- '-- '-- '-- -21965 1089 b3cb6309-cf5e-5396-ad1d-840561b1e2ed '-- not reported female '-- '-- '-- '-- black or african american TCGA-61-1738_demographic Dead '-- '-- '-- '-- 21965 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5ab9e1b0-8ef3-58e0-9d0d-da2727fd5dc1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1738_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 276 198 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-61-1738_treatment4 Cisplatin '-- '-- '-- '-- '-- '-- '-- 364 '-- mg '-- '-- '-- '-- 67076a1e-6405-43b8-a413-023cf1f7a7cb Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 72c40fba-f502-489b-ad87-843f52655894 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1738 60 false '-- '-- '-- '-- -21965 1089 b3cb6309-cf5e-5396-ad1d-840561b1e2ed '-- not reported female '-- '-- '-- '-- black or african american TCGA-61-1738_demographic Dead '-- '-- '-- '-- 21965 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5ab9e1b0-8ef3-58e0-9d0d-da2727fd5dc1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1738_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1738_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d73ef7e9-7729-4ba3-a534-4bc645fb97fd Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 72c40fba-f502-489b-ad87-843f52655894 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1738 60 false '-- '-- '-- '-- -21965 1089 b3cb6309-cf5e-5396-ad1d-840561b1e2ed '-- not reported female '-- '-- '-- '-- black or african american TCGA-61-1738_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8c70bf54-ecb2-4f01-ae93-c49e63b8d2f2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1738_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1738_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1738_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 055bdff6-77d1-405b-a47f-9f544fdd4c9c '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 72c40fba-f502-489b-ad87-843f52655894 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1738 60 false '-- '-- '-- '-- -21965 1089 b3cb6309-cf5e-5396-ad1d-840561b1e2ed '-- not reported female '-- '-- '-- '-- black or african american TCGA-61-1738_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8c70bf54-ecb2-4f01-ae93-c49e63b8d2f2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1738_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1738_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1738_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 32f8d6a2-90ba-44bf-9bed-d235d0c50732 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 72c40fba-f502-489b-ad87-843f52655894 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1738 60 false '-- '-- '-- '-- -21965 1089 b3cb6309-cf5e-5396-ad1d-840561b1e2ed '-- not reported female '-- '-- '-- '-- black or african american TCGA-61-1738_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8c70bf54-ecb2-4f01-ae93-c49e63b8d2f2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1738_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1738_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 907 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1738_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 76f55602-c354-4f6c-a346-0b53b3151486 '-- yes '-- '-- Surgery, NOS +TCGA-OV 72c40fba-f502-489b-ad87-843f52655894 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1738 60 false '-- '-- '-- '-- -21965 1089 b3cb6309-cf5e-5396-ad1d-840561b1e2ed '-- not reported female '-- '-- '-- '-- black or african american TCGA-61-1738_demographic Dead '-- '-- '-- '-- 22241 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 276 '-- '-- '-- e4501c72-9953-4ae3-8760-c941dec715fb false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1738_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1738_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1738_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 177eef00-a12b-4704-ae61-a7894bd44acb '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 72c40fba-f502-489b-ad87-843f52655894 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1738 60 false '-- '-- '-- '-- -21965 1089 b3cb6309-cf5e-5396-ad1d-840561b1e2ed '-- not reported female '-- '-- '-- '-- black or african american TCGA-61-1738_demographic Dead '-- '-- '-- '-- 22241 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 276 '-- '-- '-- e4501c72-9953-4ae3-8760-c941dec715fb false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1738_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1738_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1738_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3ee7a912-61d1-4e74-a623-e16ccbcc850f '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 7413c891-f74e-456f-bc70-69c83fb53c70 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2392 75 false '-- '-- '-- '-- -27667 31 0239e132-69ad-584f-a099-4a1b626fdc4d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2392_demographic Dead '-- '-- '-- '-- 27667 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 99ca4e5c-3912-5835-8d01-9492e0b5074f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2392_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2392_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 484210e4-fc40-40be-960b-93734ea5f051 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 7413c891-f74e-456f-bc70-69c83fb53c70 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2392 75 false '-- '-- '-- '-- -27667 31 0239e132-69ad-584f-a099-4a1b626fdc4d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2392_demographic Dead '-- '-- '-- '-- 27667 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 99ca4e5c-3912-5835-8d01-9492e0b5074f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2392_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2392_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f156e02a-a3e2-5333-8eb7-3ad870a73902 Adjuvant no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7472b3ba-9b15-4d97-8708-a2dd82ca0f45 Informed Consent 175 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1776 63 false '-- '-- '-- '-- -23016 '-- ab7de0f2-baa5-58ec-bd27-60f24523a32a '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1776_demographic Alive '-- '-- '-- '-- 23016 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0716ed12-2ffb-546f-a3c1-8a2cefdfaab5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1776_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 592 522 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1776_treatment2 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 2184 '-- mg '-- '-- '-- '-- 1528564f-24c2-4211-a96b-1334159f4534 '-- yes Treatment Ongoing '-- Targeted Molecular Therapy +TCGA-OV 7472b3ba-9b15-4d97-8708-a2dd82ca0f45 Informed Consent 175 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1776 63 false '-- '-- '-- '-- -23016 '-- ab7de0f2-baa5-58ec-bd27-60f24523a32a '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1776_demographic Alive '-- '-- '-- '-- 23016 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0716ed12-2ffb-546f-a3c1-8a2cefdfaab5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1776_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 592 522 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1776_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- 88 '-- mg '-- '-- '-- '-- 731d2b98-8572-43c4-baf1-4e226761729f '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 7472b3ba-9b15-4d97-8708-a2dd82ca0f45 Informed Consent 175 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1776 63 false '-- '-- '-- '-- -23016 '-- ab7de0f2-baa5-58ec-bd27-60f24523a32a '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1776_demographic Alive '-- '-- '-- '-- 23016 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0716ed12-2ffb-546f-a3c1-8a2cefdfaab5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1776_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 154 32 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1776_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- cccdf89e-7a68-5630-b208-ecb71e11900a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7472b3ba-9b15-4d97-8708-a2dd82ca0f45 Informed Consent 175 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1776 63 false '-- '-- '-- '-- -23016 '-- ab7de0f2-baa5-58ec-bd27-60f24523a32a '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1776_demographic Alive '-- '-- '-- '-- 23016 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0716ed12-2ffb-546f-a3c1-8a2cefdfaab5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1776_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1776_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cd7c02c6-f2d7-46f7-af40-b1dc5ec47f1e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 7472b3ba-9b15-4d97-8708-a2dd82ca0f45 Informed Consent 175 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1776 63 false '-- '-- '-- '-- -23016 '-- ab7de0f2-baa5-58ec-bd27-60f24523a32a '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1776_demographic Alive '-- '-- '-- '-- 23016 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0716ed12-2ffb-546f-a3c1-8a2cefdfaab5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1776_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 154 32 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1776_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- e26498e9-5f55-4e26-a040-f8c50b9d0930 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 74dcdfb4-a637-4111-9a22-4b4bc7bbc8f7 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1495 60 false '-- '-- '-- '-- -22046 2749 1cb753ba-3ecc-572a-8d29-c4ed3c9a35f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1495_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1524c79d-3af4-406e-867a-c4ea3d573f3b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1495_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1495_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 984 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1495_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5e52ddcb-b9e7-4da5-8587-e3855399de01 '-- yes '-- '-- Surgery, NOS +TCGA-OV 74dcdfb4-a637-4111-9a22-4b4bc7bbc8f7 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1495 60 false '-- '-- '-- '-- -22046 2749 1cb753ba-3ecc-572a-8d29-c4ed3c9a35f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1495_demographic Dead '-- '-- '-- '-- 22046 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4f419b0f-ece4-5df0-9ea1-9d12e5078189 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1495_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 119 21 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1495_treatment2 Cetuximab '-- '-- '-- '-- '-- '-- '-- 250 '-- mg/m2 '-- '-- '-- '-- 51bc07f5-9722-432e-ad15-d5c3d3e1dec0 Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV 74dcdfb4-a637-4111-9a22-4b4bc7bbc8f7 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1495 60 false '-- '-- '-- '-- -22046 2749 1cb753ba-3ecc-572a-8d29-c4ed3c9a35f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1495_demographic Dead '-- '-- '-- '-- 22046 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4f419b0f-ece4-5df0-9ea1-9d12e5078189 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1495_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 224 147 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1495_treatment5 Cetuximab '-- '-- '-- '-- '-- '-- '-- 250 '-- mg/m2 '-- '-- '-- '-- 6e3f308d-7afd-4c82-81aa-3b65c2884217 Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV 74dcdfb4-a637-4111-9a22-4b4bc7bbc8f7 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1495 60 false '-- '-- '-- '-- -22046 2749 1cb753ba-3ecc-572a-8d29-c4ed3c9a35f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1495_demographic Dead '-- '-- '-- '-- 22046 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4f419b0f-ece4-5df0-9ea1-9d12e5078189 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1495_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 140 21 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1495_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- cf47d22a-a147-5264-9647-4afc0f4be049 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 74dcdfb4-a637-4111-9a22-4b4bc7bbc8f7 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1495 60 false '-- '-- '-- '-- -22046 2749 1cb753ba-3ecc-572a-8d29-c4ed3c9a35f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1495_demographic Dead '-- '-- '-- '-- 22046 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4f419b0f-ece4-5df0-9ea1-9d12e5078189 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1495_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 548 231 '-- '-- '-- '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1495_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- e1f3482f-4bcc-497d-bdff-943cfcf57e67 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 74dcdfb4-a637-4111-9a22-4b4bc7bbc8f7 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1495 60 false '-- '-- '-- '-- -22046 2749 1cb753ba-3ecc-572a-8d29-c4ed3c9a35f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1495_demographic Dead '-- '-- '-- '-- 22046 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4f419b0f-ece4-5df0-9ea1-9d12e5078189 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1495_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 140 21 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1495_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e9966f79-e7ce-4cdc-921a-e913422d937e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 74dcdfb4-a637-4111-9a22-4b4bc7bbc8f7 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1495 60 false '-- '-- '-- '-- -22046 2749 1cb753ba-3ecc-572a-8d29-c4ed3c9a35f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1495_demographic Dead '-- '-- '-- '-- 22046 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4f419b0f-ece4-5df0-9ea1-9d12e5078189 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1495_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1495_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f6002da4-057b-42d9-befe-aee71a7141de Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 74dcdfb4-a637-4111-9a22-4b4bc7bbc8f7 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1495 60 false '-- '-- '-- '-- -22046 2749 1cb753ba-3ecc-572a-8d29-c4ed3c9a35f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1495_demographic Dead '-- '-- '-- '-- 23023 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 977 '-- '-- '-- 981c4085-bec5-4290-8ea2-d5fcd4839e8b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1495_diagnosis4 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1495_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 74dcdfb4-a637-4111-9a22-4b4bc7bbc8f7 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1495 60 false '-- '-- '-- '-- -22046 2749 1cb753ba-3ecc-572a-8d29-c4ed3c9a35f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1495_demographic Dead '-- '-- '-- '-- 23023 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 977 '-- '-- '-- abee9555-cde5-4dd8-ade1-a31fed8027da false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1495_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1495_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 756f6768-e69a-4fe9-aa41-7c58aabe4577 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1511 52 false '-- '-- '-- '-- -19258 1650 e28453c8-ec26-52b0-ab4d-a347b02c3a2f '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-1511_demographic Dead '-- '-- '-- '-- 19258 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 46631da2-f6dd-5b78-8999-4f18d5131f9c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1511_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1511_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 005224eb-a7ef-4611-b6c2-c198667993c9 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 756f6768-e69a-4fe9-aa41-7c58aabe4577 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1511 52 false '-- '-- '-- '-- -19258 1650 e28453c8-ec26-52b0-ab4d-a347b02c3a2f '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-1511_demographic Dead '-- '-- '-- '-- 19258 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 46631da2-f6dd-5b78-8999-4f18d5131f9c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1511_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 186 67 '-- '-- '-- '-- '-- '-- '-- 6 '-- 800.0 mg/m2 '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1511_treatment2 Gemcitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a02dd2a3-bd70-456c-8b2f-b2eaa2c736dc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 756f6768-e69a-4fe9-aa41-7c58aabe4577 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1511 52 false '-- '-- '-- '-- -19258 1650 e28453c8-ec26-52b0-ab4d-a347b02c3a2f '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-1511_demographic Dead '-- '-- '-- '-- 19258 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 46631da2-f6dd-5b78-8999-4f18d5131f9c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1511_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 46 21 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1511_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d7c83c4a-d7b2-5205-8dc3-85c3c56af640 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 756f6768-e69a-4fe9-aa41-7c58aabe4577 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1511 52 false '-- '-- '-- '-- -19258 1650 e28453c8-ec26-52b0-ab4d-a347b02c3a2f '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-1511_demographic Dead '-- '-- '-- '-- 19258 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 46631da2-f6dd-5b78-8999-4f18d5131f9c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1511_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 186 67 '-- '-- '-- '-- '-- '-- '-- 6 '-- 600.0 mg '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1511_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f6fce6d9-a59c-4de2-a7fa-6ca5fefa7130 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 756f6768-e69a-4fe9-aa41-7c58aabe4577 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1511 52 false '-- '-- '-- '-- -19258 1650 e28453c8-ec26-52b0-ab4d-a347b02c3a2f '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-1511_demographic Dead '-- '-- '-- '-- 19717 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 459 '-- '-- '-- 7907d583-c8e2-492d-acfc-a62e82901366 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1511_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1511_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 758e6b52-062e-4ca0-84d1-ea38477414ac Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2352 78 false '-- '-- '-- '-- '-- 286 ea4eb7f5-e69a-5300-8b57-2b53ea2b245f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-59-2352_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ea0ad7ed-ad39-564d-80bc-d7365bdeeff0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-59-2352_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 7592a659-7175-486f-a16e-24a4b4365a36 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1556 50 false '-- '-- '-- '-- -18517 2148 2dcec934-ec62-5a81-9bbc-8582f8129183 '-- not reported female '-- '-- '-- '-- white TCGA-24-1556_demographic Dead '-- '-- '-- '-- 18517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 21fca019-acce-5868-9629-eaf16a9567a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1556_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1832 1724 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1556_treatment7 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2e361170-37ac-4712-8d75-c89d4bf5aeca '-- yes '-- '-- Chemotherapy +TCGA-OV 7592a659-7175-486f-a16e-24a4b4365a36 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1556 50 false '-- '-- '-- '-- -18517 2148 2dcec934-ec62-5a81-9bbc-8582f8129183 '-- not reported female '-- '-- '-- '-- white TCGA-24-1556_demographic Dead '-- '-- '-- '-- 18517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 21fca019-acce-5868-9629-eaf16a9567a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1556_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1556_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 35c981f6-005c-4d50-937c-c5b3bdb959d8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7592a659-7175-486f-a16e-24a4b4365a36 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1556 50 false '-- '-- '-- '-- -18517 2148 2dcec934-ec62-5a81-9bbc-8582f8129183 '-- not reported female '-- '-- '-- '-- white TCGA-24-1556_demographic Dead '-- '-- '-- '-- 18517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 21fca019-acce-5868-9629-eaf16a9567a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1556_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1556_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3856ad30-2cf9-4121-aa6c-bca6402a01eb Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7592a659-7175-486f-a16e-24a4b4365a36 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1556 50 false '-- '-- '-- '-- -18517 2148 2dcec934-ec62-5a81-9bbc-8582f8129183 '-- not reported female '-- '-- '-- '-- white TCGA-24-1556_demographic Dead '-- '-- '-- '-- 18517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 21fca019-acce-5868-9629-eaf16a9567a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1556_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 628 539 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1556_treatment8 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5b53dc68-f599-4ca8-8156-f512e0e68ce5 '-- yes '-- '-- Chemotherapy +TCGA-OV 7592a659-7175-486f-a16e-24a4b4365a36 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1556 50 false '-- '-- '-- '-- -18517 2148 2dcec934-ec62-5a81-9bbc-8582f8129183 '-- not reported female '-- '-- '-- '-- white TCGA-24-1556_demographic Dead '-- '-- '-- '-- 18517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 21fca019-acce-5868-9629-eaf16a9567a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1556_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1832 1724 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1556_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ae790b5a-fccc-4645-986f-296cc0711535 '-- yes '-- '-- Chemotherapy +TCGA-OV 7592a659-7175-486f-a16e-24a4b4365a36 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1556 50 false '-- '-- '-- '-- -18517 2148 2dcec934-ec62-5a81-9bbc-8582f8129183 '-- not reported female '-- '-- '-- '-- white TCGA-24-1556_demographic Dead '-- '-- '-- '-- 18517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 21fca019-acce-5868-9629-eaf16a9567a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1556_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1556_treatment2 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ddd91f37-694f-45eb-a840-0f0fb2dff9a9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7592a659-7175-486f-a16e-24a4b4365a36 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1556 50 false '-- '-- '-- '-- -18517 2148 2dcec934-ec62-5a81-9bbc-8582f8129183 '-- not reported female '-- '-- '-- '-- white TCGA-24-1556_demographic Dead '-- '-- '-- '-- 18517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 21fca019-acce-5868-9629-eaf16a9567a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1556_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1556_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ec057975-9541-47de-b43f-71a556baf349 '-- yes '-- '-- Chemotherapy +TCGA-OV 7592a659-7175-486f-a16e-24a4b4365a36 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1556 50 false '-- '-- '-- '-- -18517 2148 2dcec934-ec62-5a81-9bbc-8582f8129183 '-- not reported female '-- '-- '-- '-- white TCGA-24-1556_demographic Dead '-- '-- '-- '-- 18517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 21fca019-acce-5868-9629-eaf16a9567a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1556_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- 1298 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1556_treatment '-- '-- '-- '-- '-- '-- Locoregional Site '-- '-- '-- '-- '-- '-- '-- '-- fc7d1943-885f-55f8-8dc6-fbc6b5f3f66d '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 7592a659-7175-486f-a16e-24a4b4365a36 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1556 50 false '-- '-- '-- '-- -18517 2148 2dcec934-ec62-5a81-9bbc-8582f8129183 '-- not reported female '-- '-- '-- '-- white TCGA-24-1556_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9569a3a0-97a6-4bef-abce-05bc944652ef false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1556_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1556_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 762 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1556_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 037b72fb-b1ed-4e1b-8af5-9234cb383b71 '-- yes '-- '-- Surgery, NOS +TCGA-OV 7592a659-7175-486f-a16e-24a4b4365a36 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1556 50 false '-- '-- '-- '-- -18517 2148 2dcec934-ec62-5a81-9bbc-8582f8129183 '-- not reported female '-- '-- '-- '-- white TCGA-24-1556_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9569a3a0-97a6-4bef-abce-05bc944652ef false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1556_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1556_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1556_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a05be915-e565-4ece-b1b7-9da05abf627c '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 7592a659-7175-486f-a16e-24a4b4365a36 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1556 50 false '-- '-- '-- '-- -18517 2148 2dcec934-ec62-5a81-9bbc-8582f8129183 '-- not reported female '-- '-- '-- '-- white TCGA-24-1556_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9569a3a0-97a6-4bef-abce-05bc944652ef false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1556_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1556_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1556_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c45d4954-753b-43a1-80e5-26812f049dd8 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7592a659-7175-486f-a16e-24a4b4365a36 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1556 50 false '-- '-- '-- '-- -18517 2148 2dcec934-ec62-5a81-9bbc-8582f8129183 '-- not reported female '-- '-- '-- '-- white TCGA-24-1556_demographic Dead '-- '-- '-- '-- 19056 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 539 '-- '-- '-- f4a3f0e1-c763-45b6-a3af-6cdf3c18df3d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1556_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1556_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1556_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 220b683b-fa86-4576-9d3c-159d6ac66e55 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7592a659-7175-486f-a16e-24a4b4365a36 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1556 50 false '-- '-- '-- '-- -18517 2148 2dcec934-ec62-5a81-9bbc-8582f8129183 '-- not reported female '-- '-- '-- '-- white TCGA-24-1556_demographic Dead '-- '-- '-- '-- 19056 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 539 '-- '-- '-- f4a3f0e1-c763-45b6-a3af-6cdf3c18df3d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1556_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1556_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1556_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dbc21983-4b2c-4355-a959-96980123b14d '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 75f2d97a-b96c-403f-8055-5c5c8083e856 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1910 56 false '-- '-- '-- '-- -20779 '-- e31f8f34-ab84-5c8c-b48d-12a9d06a7117 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1910_demographic Alive '-- '-- '-- '-- 20779 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f94bab54-9a7b-555b-899c-90c46cb49a3f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1910_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 161 56 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1910_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 756 '-- mg '-- '-- '-- '-- 1e99555d-daab-4a30-8a35-fd0305dbfc65 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 75f2d97a-b96c-403f-8055-5c5c8083e856 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1910 56 false '-- '-- '-- '-- -20779 '-- e31f8f34-ab84-5c8c-b48d-12a9d06a7117 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1910_demographic Alive '-- '-- '-- '-- 20779 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f94bab54-9a7b-555b-899c-90c46cb49a3f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1910_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1910_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 507ab98b-e39c-47e5-853e-f0c257db08bf Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 75f2d97a-b96c-403f-8055-5c5c8083e856 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1910 56 false '-- '-- '-- '-- -20779 '-- e31f8f34-ab84-5c8c-b48d-12a9d06a7117 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1910_demographic Alive '-- '-- '-- '-- 20779 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f94bab54-9a7b-555b-899c-90c46cb49a3f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1910_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 161 56 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1910_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 4550 '-- mg '-- '-- '-- '-- 80d6ae6b-b047-592e-9704-2f282ea6c50c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 76cc2d21-eebc-4f09-9bc7-dbf7af0aafa8 Informed Consent -363 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1583 57 false '-- '-- '-- '-- -21167 346 65d45d68-52f7-5bf9-83b6-a053ab03eef7 '-- not reported female '-- '-- '-- '-- black or african american TCGA-57-1583_demographic Dead '-- '-- '-- '-- 21167 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 03a569c0-4d70-554f-9b61-b414ecfffa8e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1583_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- 37 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-57-1583_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 34e4a5f6-22af-59c9-9dd1-e4c91dff74c6 Adjuvant yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 76cc2d21-eebc-4f09-9bc7-dbf7af0aafa8 Informed Consent -363 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1583 57 false '-- '-- '-- '-- -21167 346 65d45d68-52f7-5bf9-83b6-a053ab03eef7 '-- not reported female '-- '-- '-- '-- black or african american TCGA-57-1583_demographic Dead '-- '-- '-- '-- 21167 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 03a569c0-4d70-554f-9b61-b414ecfffa8e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1583_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- 37 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-57-1583_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6886f7d0-619c-469b-9871-96b61b228619 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 76cc2d21-eebc-4f09-9bc7-dbf7af0aafa8 Informed Consent -363 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1583 57 false '-- '-- '-- '-- -21167 346 65d45d68-52f7-5bf9-83b6-a053ab03eef7 '-- not reported female '-- '-- '-- '-- black or african american TCGA-57-1583_demographic Dead '-- '-- '-- '-- 21167 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 03a569c0-4d70-554f-9b61-b414ecfffa8e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1583_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1583_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e11a92f7-cc6f-4e0b-90cd-d33b89ed985c Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 774ce281-96b2-467a-9170-079797ee10f7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0765 50 false '-- '-- '-- '-- -18574 1389 7d9699a9-4ea0-5b30-bcda-46dac07eac0a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0765_demographic Dead '-- '-- '-- '-- 18574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 15b1a19f-09af-5637-a630-135ff926fb81 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0765_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0765_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 55840c75-65af-4aea-85e8-2d04fba942ff Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 774ce281-96b2-467a-9170-079797ee10f7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0765 50 false '-- '-- '-- '-- -18574 1389 7d9699a9-4ea0-5b30-bcda-46dac07eac0a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0765_demographic Dead '-- '-- '-- '-- 18574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 15b1a19f-09af-5637-a630-135ff926fb81 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0765_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 654 589 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0765_treatment2 Tamoxifen '-- '-- '-- '-- '-- '-- '-- 20 '-- mg '-- '-- '-- '-- 7afd731f-e97c-4c12-a543-19ceb2a13f6a Adjuvant yes '-- '-- Hormone Therapy +TCGA-OV 774ce281-96b2-467a-9170-079797ee10f7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0765 50 false '-- '-- '-- '-- -18574 1389 7d9699a9-4ea0-5b30-bcda-46dac07eac0a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0765_demographic Dead '-- '-- '-- '-- 18574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 15b1a19f-09af-5637-a630-135ff926fb81 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0765_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 519 176 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0765_treatment3 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 15 '-- mg/kg '-- '-- '-- '-- 7b096bb7-3d19-410b-a137-7650bd54baf8 Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV 774ce281-96b2-467a-9170-079797ee10f7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0765 50 false '-- '-- '-- '-- -18574 1389 7d9699a9-4ea0-5b30-bcda-46dac07eac0a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0765_demographic Dead '-- '-- '-- '-- 18574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 15b1a19f-09af-5637-a630-135ff926fb81 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0765_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 163 50 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0765_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- 893778bb-7b11-4052-b7d3-b9a8ded3a78d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 774ce281-96b2-467a-9170-079797ee10f7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0765 50 false '-- '-- '-- '-- -18574 1389 7d9699a9-4ea0-5b30-bcda-46dac07eac0a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0765_demographic Dead '-- '-- '-- '-- 18574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 15b1a19f-09af-5637-a630-135ff926fb81 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0765_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 155 71 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0765_treatment4 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 15 '-- mg/m2 '-- '-- '-- '-- bdcd4c6c-3ede-41a7-8f6a-0fcb99881cb2 Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV 774ce281-96b2-467a-9170-079797ee10f7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0765 50 false '-- '-- '-- '-- -18574 1389 7d9699a9-4ea0-5b30-bcda-46dac07eac0a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0765_demographic Dead '-- '-- '-- '-- 18574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 15b1a19f-09af-5637-a630-135ff926fb81 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0765_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 163 50 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0765_treatment6 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- e488c716-cfcb-4459-b9e4-b73156b73dfe Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 774ce281-96b2-467a-9170-079797ee10f7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0765 50 false '-- '-- '-- '-- -18574 1389 7d9699a9-4ea0-5b30-bcda-46dac07eac0a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0765_demographic Dead '-- '-- '-- '-- 18574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 15b1a19f-09af-5637-a630-135ff926fb81 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0765_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 163 50 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0765_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- e85c2b74-e4ec-55fd-b9e6-2edf90f5a946 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 774ce281-96b2-467a-9170-079797ee10f7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0765 50 false '-- '-- '-- '-- -18574 1389 7d9699a9-4ea0-5b30-bcda-46dac07eac0a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0765_demographic Dead '-- '-- '-- '-- 19242 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 668 '-- '-- '-- 2958afd2-53ba-4dfc-953e-5556e7bc1c8d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0765_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0765_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 774ce281-96b2-467a-9170-079797ee10f7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0765 50 false '-- '-- '-- '-- -18574 1389 7d9699a9-4ea0-5b30-bcda-46dac07eac0a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0765_demographic Dead '-- '-- '-- '-- 19242 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 668 '-- '-- '-- a358b69e-bd20-4a16-81ce-70104840abb1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0765_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0765_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0765_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 76c6087f-fb44-41a8-9d55-e8616237feb0 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 774ce281-96b2-467a-9170-079797ee10f7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0765 50 false '-- '-- '-- '-- -18574 1389 7d9699a9-4ea0-5b30-bcda-46dac07eac0a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0765_demographic Dead '-- '-- '-- '-- 19242 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 668 '-- '-- '-- a358b69e-bd20-4a16-81ce-70104840abb1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0765_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0765_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0765_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cb304c28-79bd-4c0c-bb6f-e55ecfcfddd1 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 778ce436-a825-4689-81c1-b7c965404163 Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2095 54 false '-- '-- '-- '-- -19797 1875 f4e599b6-8cb0-5ad4-9f8a-a704e2149024 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2095_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5d2a39ed-a690-481a-884c-e1ce263f28a6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2095_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2095_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2095_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1429dad6-9d92-4c8a-911b-17db81c46cb4 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 778ce436-a825-4689-81c1-b7c965404163 Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2095 54 false '-- '-- '-- '-- -19797 1875 f4e599b6-8cb0-5ad4-9f8a-a704e2149024 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2095_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5d2a39ed-a690-481a-884c-e1ce263f28a6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2095_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2095_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2095_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 61e1eae0-8540-4ee1-831e-52da42e864a7 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 778ce436-a825-4689-81c1-b7c965404163 Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2095 54 false '-- '-- '-- '-- -19797 1875 f4e599b6-8cb0-5ad4-9f8a-a704e2149024 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2095_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5d2a39ed-a690-481a-884c-e1ce263f28a6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2095_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2095_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 452 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2095_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6c05915f-5976-41e7-9c02-3cfdd4ec3312 '-- yes '-- '-- Surgery, NOS +TCGA-OV 778ce436-a825-4689-81c1-b7c965404163 Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2095 54 false '-- '-- '-- '-- -19797 1875 f4e599b6-8cb0-5ad4-9f8a-a704e2149024 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2095_demographic Dead '-- '-- '-- '-- 19797 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8ce0f291-c03c-56b4-aeba-38388907fd38 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2095_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 602 59 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2095_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 24d03782-161d-4b41-9907-71c4a07d05b0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 778ce436-a825-4689-81c1-b7c965404163 Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2095 54 false '-- '-- '-- '-- -19797 1875 f4e599b6-8cb0-5ad4-9f8a-a704e2149024 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2095_demographic Dead '-- '-- '-- '-- 19797 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8ce0f291-c03c-56b4-aeba-38388907fd38 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2095_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 1389 1360 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2095_treatment2 Oxaliplatin '-- '-- '-- '-- '-- '-- '-- 468 '-- mg '-- '-- '-- '-- 2eeedcf4-2f95-4cd7-82af-1b1ea92693b4 '-- yes '-- '-- Chemotherapy +TCGA-OV 778ce436-a825-4689-81c1-b7c965404163 Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2095 54 false '-- '-- '-- '-- -19797 1875 f4e599b6-8cb0-5ad4-9f8a-a704e2149024 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2095_demographic Dead '-- '-- '-- '-- 19797 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8ce0f291-c03c-56b4-aeba-38388907fd38 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2095_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 602 59 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2095_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5f723dba-7e84-46a1-a71a-0ac7fbefd73a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 778ce436-a825-4689-81c1-b7c965404163 Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2095 54 false '-- '-- '-- '-- -19797 1875 f4e599b6-8cb0-5ad4-9f8a-a704e2149024 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2095_demographic Dead '-- '-- '-- '-- 19797 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8ce0f291-c03c-56b4-aeba-38388907fd38 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2095_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 447 210 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2095_treatment4 Oregovomab '-- '-- '-- '-- '-- '-- '-- 12 '-- mg '-- '-- '-- '-- 7f9d114f-8da7-47ce-96c0-10c6f94af462 Adjuvant yes '-- '-- Immunotherapy (Including Vaccines) +TCGA-OV 778ce436-a825-4689-81c1-b7c965404163 Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2095 54 false '-- '-- '-- '-- -19797 1875 f4e599b6-8cb0-5ad4-9f8a-a704e2149024 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2095_demographic Dead '-- '-- '-- '-- 19797 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8ce0f291-c03c-56b4-aeba-38388907fd38 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2095_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 1188 783 '-- '-- Recurrent Disease '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2095_treatment Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8c453945-df19-57fd-94d0-49bd2bf6ade1 '-- yes '-- '-- Chemotherapy +TCGA-OV 778ce436-a825-4689-81c1-b7c965404163 Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2095 54 false '-- '-- '-- '-- -19797 1875 f4e599b6-8cb0-5ad4-9f8a-a704e2149024 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2095_demographic Dead '-- '-- '-- '-- 19797 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8ce0f291-c03c-56b4-aeba-38388907fd38 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2095_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 1264 1193 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2095_treatment7 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aadc3c67-09f4-4843-95ab-d6e161c921af '-- yes '-- '-- Chemotherapy +TCGA-OV 778ce436-a825-4689-81c1-b7c965404163 Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2095 54 false '-- '-- '-- '-- -19797 1875 f4e599b6-8cb0-5ad4-9f8a-a704e2149024 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2095_demographic Dead '-- '-- '-- '-- 19797 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8ce0f291-c03c-56b4-aeba-38388907fd38 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2095_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2095_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b29309e8-998e-4a75-aed3-afee9e2864c6 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 778ce436-a825-4689-81c1-b7c965404163 Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2095 54 false '-- '-- '-- '-- -19797 1875 f4e599b6-8cb0-5ad4-9f8a-a704e2149024 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2095_demographic Dead '-- '-- '-- '-- 19797 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8ce0f291-c03c-56b4-aeba-38388907fd38 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2095_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 1474 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2095_treatment3 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b7b3c18c-57d0-45a6-9017-d321278ce55d '-- yes '-- '-- Chemotherapy +TCGA-OV 778ce436-a825-4689-81c1-b7c965404163 Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2095 54 false '-- '-- '-- '-- -19797 1875 f4e599b6-8cb0-5ad4-9f8a-a704e2149024 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2095_demographic Dead '-- '-- '-- '-- 20242 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 445 '-- '-- '-- 9431a342-d661-40cf-b520-cc715e983040 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2095_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2095_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2095_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 125f6581-efee-4e73-a869-59dedac737ca '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 778ce436-a825-4689-81c1-b7c965404163 Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2095 54 false '-- '-- '-- '-- -19797 1875 f4e599b6-8cb0-5ad4-9f8a-a704e2149024 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2095_demographic Dead '-- '-- '-- '-- 20242 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 445 '-- '-- '-- 9431a342-d661-40cf-b520-cc715e983040 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2095_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2095_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2095_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ee11db11-b27d-48a7-9c52-c2dda005e27e '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 78777a80-cc6c-46c9-a14a-837ac7943719 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1317 66 false '-- '-- '-- '-- -24199 61 f8742fb7-df55-59c6-9428-0487f950eb36 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1317_demographic Dead '-- '-- '-- '-- 24199 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 34c73698-1092-5f12-b670-e84b1ca08e3a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1317_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1317_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3adc1bbe-f24a-4644-9877-5b188529f5dc Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 78777a80-cc6c-46c9-a14a-837ac7943719 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1317 66 false '-- '-- '-- '-- -24199 61 f8742fb7-df55-59c6-9428-0487f950eb36 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1317_demographic Dead '-- '-- '-- '-- 24199 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 34c73698-1092-5f12-b670-e84b1ca08e3a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1317_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 31 0 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1317_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e67c125b-2201-4a1b-a20d-5ab2921a4dfc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 78777a80-cc6c-46c9-a14a-837ac7943719 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1317 66 false '-- '-- '-- '-- -24199 61 f8742fb7-df55-59c6-9428-0487f950eb36 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1317_demographic Dead '-- '-- '-- '-- 24199 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 34c73698-1092-5f12-b670-e84b1ca08e3a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1317_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 31 0 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1317_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f4c86966-2794-5f8d-9798-9e283cacfe2c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 79e6e31c-22a1-481c-903b-ab5499cbd450 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0897 54 false '-- '-- '-- '-- -19894 2182 98f76dc4-21fd-5024-915b-f6c36aa533ae '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0897_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 10a61e90-a19e-466e-baf1-8b3af1a7ff7a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0897_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0897_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0897_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 419e6fe4-8965-4f48-9654-c6f88f55aa77 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 79e6e31c-22a1-481c-903b-ab5499cbd450 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0897 54 false '-- '-- '-- '-- -19894 2182 98f76dc4-21fd-5024-915b-f6c36aa533ae '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0897_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 10a61e90-a19e-466e-baf1-8b3af1a7ff7a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0897_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0897_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0897_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b6ff30d8-eeec-465f-9f91-e2c600036bfd '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 79e6e31c-22a1-481c-903b-ab5499cbd450 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0897 54 false '-- '-- '-- '-- -19894 2182 98f76dc4-21fd-5024-915b-f6c36aa533ae '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0897_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 10a61e90-a19e-466e-baf1-8b3af1a7ff7a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0897_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0897_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 568 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0897_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e68d17d1-0609-48e5-9c38-d84686b7f671 '-- yes '-- '-- Surgery, NOS +TCGA-OV 79e6e31c-22a1-481c-903b-ab5499cbd450 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0897 54 false '-- '-- '-- '-- -19894 2182 98f76dc4-21fd-5024-915b-f6c36aa533ae '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0897_demographic Dead '-- '-- '-- '-- 19894 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2867623c-36a9-589a-b65a-25518a378ba0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0897_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 140 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0897_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 475ca925-44a3-4755-ba73-d8f4ea79bfa5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 79e6e31c-22a1-481c-903b-ab5499cbd450 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0897 54 false '-- '-- '-- '-- -19894 2182 98f76dc4-21fd-5024-915b-f6c36aa533ae '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0897_demographic Dead '-- '-- '-- '-- 19894 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2867623c-36a9-589a-b65a-25518a378ba0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0897_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0897_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5f77f82e-d467-4119-b081-d503a12e3131 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 79e6e31c-22a1-481c-903b-ab5499cbd450 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0897 54 false '-- '-- '-- '-- -19894 2182 98f76dc4-21fd-5024-915b-f6c36aa533ae '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0897_demographic Dead '-- '-- '-- '-- 19894 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2867623c-36a9-589a-b65a-25518a378ba0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0897_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 140 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0897_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1050 '-- mg/m2 '-- '-- '-- '-- ffb36efb-aef4-5ef0-9837-15590806facc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 79e6e31c-22a1-481c-903b-ab5499cbd450 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0897 54 false '-- '-- '-- '-- -19894 2182 98f76dc4-21fd-5024-915b-f6c36aa533ae '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0897_demographic Dead '-- '-- '-- '-- 20448 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 554 '-- '-- '-- 61dd81ed-1c0d-4455-9521-70ae4fd6ce33 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0897_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0897_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0897_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e4628ac6-34bd-4003-82fa-63cde0b902e1 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 79e6e31c-22a1-481c-903b-ab5499cbd450 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0897 54 false '-- '-- '-- '-- -19894 2182 98f76dc4-21fd-5024-915b-f6c36aa533ae '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0897_demographic Dead '-- '-- '-- '-- 20448 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 554 '-- '-- '-- 61dd81ed-1c0d-4455-9521-70ae4fd6ce33 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0897_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0897_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0897_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f4cf2625-6e02-4c62-a42a-3b069bc23c48 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 79e6e31c-22a1-481c-903b-ab5499cbd450 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0897 54 false '-- '-- '-- '-- -19894 2182 98f76dc4-21fd-5024-915b-f6c36aa533ae '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0897_demographic Dead '-- '-- '-- '-- 20448 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 554 '-- '-- '-- 632ea3fd-a6e5-419d-be29-02315b8a6dc4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0897_diagnosis4 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0897_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 79fd602b-3e8e-4353-aa78-4f5f170b607d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1328 38 false '-- '-- '-- '-- -13911 2009 04824ef8-fadb-546a-bfc0-957cf62e574e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1328_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6a07eef1-02f2-4c27-8eb3-78849e7b2e79 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1328_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1328_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 244 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1328_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3a14544b-66f9-41b6-94a0-d8d12bb4555c '-- yes '-- '-- Surgery, NOS +TCGA-OV 79fd602b-3e8e-4353-aa78-4f5f170b607d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1328 38 false '-- '-- '-- '-- -13911 2009 04824ef8-fadb-546a-bfc0-957cf62e574e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1328_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6a07eef1-02f2-4c27-8eb3-78849e7b2e79 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1328_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1328_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1328_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e7841ccd-1532-40aa-9f22-2eabbf4e7de2 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 79fd602b-3e8e-4353-aa78-4f5f170b607d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1328 38 false '-- '-- '-- '-- -13911 2009 04824ef8-fadb-546a-bfc0-957cf62e574e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1328_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6a07eef1-02f2-4c27-8eb3-78849e7b2e79 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1328_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1328_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1328_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f9a5a575-cd5e-4978-a73e-587910b05fb2 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 79fd602b-3e8e-4353-aa78-4f5f170b607d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1328 38 false '-- '-- '-- '-- -13911 2009 04824ef8-fadb-546a-bfc0-957cf62e574e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1328_demographic Dead '-- '-- '-- '-- 13911 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b7fddc9e-b9ea-58bc-8db5-3e808b1953a1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1328_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1328_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1e16f938-326b-4d26-9f87-0c7e6a6f9506 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 79fd602b-3e8e-4353-aa78-4f5f170b607d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1328 38 false '-- '-- '-- '-- -13911 2009 04824ef8-fadb-546a-bfc0-957cf62e574e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1328_demographic Dead '-- '-- '-- '-- 13911 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b7fddc9e-b9ea-58bc-8db5-3e808b1953a1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1328_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 214 30 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1328_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2f91255a-7455-4391-83ea-a432d871e9d3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 79fd602b-3e8e-4353-aa78-4f5f170b607d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1328 38 false '-- '-- '-- '-- -13911 2009 04824ef8-fadb-546a-bfc0-957cf62e574e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1328_demographic Dead '-- '-- '-- '-- 13911 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b7fddc9e-b9ea-58bc-8db5-3e808b1953a1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1328_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 395 275 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1328_treatment Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 53a24073-31e5-5429-81ae-5e46520bfad4 '-- yes '-- '-- Chemotherapy +TCGA-OV 79fd602b-3e8e-4353-aa78-4f5f170b607d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1328 38 false '-- '-- '-- '-- -13911 2009 04824ef8-fadb-546a-bfc0-957cf62e574e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1328_demographic Dead '-- '-- '-- '-- 13911 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b7fddc9e-b9ea-58bc-8db5-3e808b1953a1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1328_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 214 30 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1328_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 66b75103-c17a-45c0-8d1a-2a67fd5ec0a7 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 79fd602b-3e8e-4353-aa78-4f5f170b607d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1328 38 false '-- '-- '-- '-- -13911 2009 04824ef8-fadb-546a-bfc0-957cf62e574e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1328_demographic Dead '-- '-- '-- '-- 13911 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b7fddc9e-b9ea-58bc-8db5-3e808b1953a1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1328_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 395 275 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1328_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7f22b61f-4a6c-4053-9c49-908e5a51fed5 '-- yes '-- '-- Chemotherapy +TCGA-OV 79fd602b-3e8e-4353-aa78-4f5f170b607d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1328 38 false '-- '-- '-- '-- -13911 2009 04824ef8-fadb-546a-bfc0-957cf62e574e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1328_demographic Dead '-- '-- '-- '-- 13911 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b7fddc9e-b9ea-58bc-8db5-3e808b1953a1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1328_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 395 275 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1328_treatment3 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cf9732b0-7c11-4ff9-8322-d854674ab2db '-- yes '-- '-- Chemotherapy +TCGA-OV 79fd602b-3e8e-4353-aa78-4f5f170b607d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1328 38 false '-- '-- '-- '-- -13911 2009 04824ef8-fadb-546a-bfc0-957cf62e574e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1328_demographic Dead '-- '-- '-- '-- 14155 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 244 '-- '-- '-- f0872431-44ce-49fa-bf2f-bb8fc3309d66 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1328_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1328_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1328_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0ad0c26c-a7c3-4974-a31a-5487f4180277 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 79fd602b-3e8e-4353-aa78-4f5f170b607d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1328 38 false '-- '-- '-- '-- -13911 2009 04824ef8-fadb-546a-bfc0-957cf62e574e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1328_demographic Dead '-- '-- '-- '-- 14155 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 244 '-- '-- '-- f0872431-44ce-49fa-bf2f-bb8fc3309d66 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1328_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1328_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1328_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e0376fa9-a502-44f2-9088-2bf959c506c2 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7a08efd0-f984-430e-a8eb-1881047214b6 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2102 74 false '-- '-- '-- '-- -27256 197 59f2314e-8e36-5351-b82e-da8dc14da71e '-- not reported female '-- '-- '-- '-- white TCGA-61-2102_demographic Dead '-- '-- '-- '-- 27256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 84670ab1-8300-5eb8-b801-8c98bdb6bb25 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2102_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2102_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 549486da-c014-49a4-a9c9-2f3432dbf42c Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 7a08efd0-f984-430e-a8eb-1881047214b6 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2102 74 false '-- '-- '-- '-- -27256 197 59f2314e-8e36-5351-b82e-da8dc14da71e '-- not reported female '-- '-- '-- '-- white TCGA-61-2102_demographic Dead '-- '-- '-- '-- 27256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 84670ab1-8300-5eb8-b801-8c98bdb6bb25 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2102_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2102_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cd51846a-5d75-4bb0-8e07-f8d7ae61e9af Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7a08efd0-f984-430e-a8eb-1881047214b6 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2102 74 false '-- '-- '-- '-- -27256 197 59f2314e-8e36-5351-b82e-da8dc14da71e '-- not reported female '-- '-- '-- '-- white TCGA-61-2102_demographic Dead '-- '-- '-- '-- 27256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 84670ab1-8300-5eb8-b801-8c98bdb6bb25 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2102_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2102_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fb9a5e5e-2e41-553f-884d-4c76f7b94700 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7ab3765f-910a-41c9-86cc-08534d2a4e4b Informed Consent 35 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1907 63 false '-- '-- '-- '-- -23204 '-- 6bdcf0d2-e322-541f-990b-836a67d89453 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1907_demographic Alive '-- '-- '-- '-- 23947 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 743 '-- '-- '-- f16b6307-d859-488f-8eed-f42a9f6115b1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1907_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1907_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1907_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ac13bacd-d807-4fd0-aed0-cb88443daae6 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 7ab3765f-910a-41c9-86cc-08534d2a4e4b Informed Consent 35 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1907 63 false '-- '-- '-- '-- -23204 '-- 6bdcf0d2-e322-541f-990b-836a67d89453 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1907_demographic Alive '-- '-- '-- '-- 23947 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 743 '-- '-- '-- f16b6307-d859-488f-8eed-f42a9f6115b1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1907_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1907_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1907_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e429d8e4-acbc-4173-9c1a-a3049bc3cbaf '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7ab3765f-910a-41c9-86cc-08534d2a4e4b Informed Consent 35 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1907 63 false '-- '-- '-- '-- -23204 '-- 6bdcf0d2-e322-541f-990b-836a67d89453 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1907_demographic Alive '-- '-- '-- '-- 23204 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f1a0d46b-6431-59c0-a037-7730f9269b42 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1907_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1907_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 02272d8f-5e39-4794-a45e-2e50b7fc1394 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 7ab3765f-910a-41c9-86cc-08534d2a4e4b Informed Consent 35 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1907 63 false '-- '-- '-- '-- -23204 '-- 6bdcf0d2-e322-541f-990b-836a67d89453 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1907_demographic Alive '-- '-- '-- '-- 23204 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f1a0d46b-6431-59c0-a037-7730f9269b42 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1907_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 927 774 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1907_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 36c20df2-3f64-4152-8f68-96d9d94db43e '-- yes '-- '-- Chemotherapy +TCGA-OV 7ab3765f-910a-41c9-86cc-08534d2a4e4b Informed Consent 35 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1907 63 false '-- '-- '-- '-- -23204 '-- 6bdcf0d2-e322-541f-990b-836a67d89453 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1907_demographic Alive '-- '-- '-- '-- 23204 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f1a0d46b-6431-59c0-a037-7730f9269b42 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1907_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 163 37 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1907_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- 678 '-- mg '-- '-- '-- '-- 62db8a82-b200-451a-a6d4-bb86aa603223 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7ab3765f-910a-41c9-86cc-08534d2a4e4b Informed Consent 35 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1907 63 false '-- '-- '-- '-- -23204 '-- 6bdcf0d2-e322-541f-990b-836a67d89453 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1907_demographic Alive '-- '-- '-- '-- 23204 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f1a0d46b-6431-59c0-a037-7730f9269b42 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1907_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 357 37 '-- '-- '-- '-- '-- '-- '-- 17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1907_treatment4 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 14280 '-- mg '-- '-- '-- '-- 64b8ba73-b831-4b22-89a2-bc43eb2ee0fa Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7ab3765f-910a-41c9-86cc-08534d2a4e4b Informed Consent 35 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1907 63 false '-- '-- '-- '-- -23204 '-- 6bdcf0d2-e322-541f-990b-836a67d89453 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1907_demographic Alive '-- '-- '-- '-- 23204 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f1a0d46b-6431-59c0-a037-7730f9269b42 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1907_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 163 37 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1907_treatment Oxaliplatin '-- '-- '-- '-- '-- '-- '-- 768 '-- mg '-- '-- '-- '-- e2cf157b-2a68-59de-a307-1262ad857b1b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7c466a5f-a6b4-4d1a-a0f5-ddcd7ef90ff1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1109 62 false '-- '-- '-- '-- -23002 1562 51854744-93b7-5026-a52b-398fdc2b8ec0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1109_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 17b3c06c-0835-45e9-9a03-f2cccb955abe false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1109_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1109_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1109_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0561e859-c9f3-47fd-92f3-60c66a782ea4 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7c466a5f-a6b4-4d1a-a0f5-ddcd7ef90ff1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1109 62 false '-- '-- '-- '-- -23002 1562 51854744-93b7-5026-a52b-398fdc2b8ec0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1109_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 17b3c06c-0835-45e9-9a03-f2cccb955abe false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1109_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1109_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 987 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1109_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6656f489-4e40-4f2d-a371-06d759f165c5 '-- yes '-- '-- Surgery, NOS +TCGA-OV 7c466a5f-a6b4-4d1a-a0f5-ddcd7ef90ff1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1109 62 false '-- '-- '-- '-- -23002 1562 51854744-93b7-5026-a52b-398fdc2b8ec0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1109_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 17b3c06c-0835-45e9-9a03-f2cccb955abe false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1109_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1109_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1109_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cf32e575-aed9-4c88-b1b5-7892c18eb053 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 7c466a5f-a6b4-4d1a-a0f5-ddcd7ef90ff1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1109 62 false '-- '-- '-- '-- -23002 1562 51854744-93b7-5026-a52b-398fdc2b8ec0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1109_demographic Dead '-- '-- '-- '-- 23002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 412e8ae0-f962-5ef4-8fa1-0cb072d378af true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1109_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1433 1392 '-- '-- Progressive Disease '-- '-- '-- '-- '-- 30.0 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1109_treatment '-- '-- '-- '-- '-- '-- Locoregional Site '-- 5500 '-- cGy '-- '-- '-- '-- 5ad1d6e4-f119-548e-994c-585e7119e113 '-- yes '-- '-- Radiation, External Beam +TCGA-OV 7c466a5f-a6b4-4d1a-a0f5-ddcd7ef90ff1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1109 62 false '-- '-- '-- '-- -23002 1562 51854744-93b7-5026-a52b-398fdc2b8ec0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1109_demographic Dead '-- '-- '-- '-- 23002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 412e8ae0-f962-5ef4-8fa1-0cb072d378af true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1109_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1109_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a992f8ff-7033-41e0-9969-de374e03d539 Adjuvant yes Partial Response '-- Pharmaceutical Therapy, NOS +TCGA-OV 7c466a5f-a6b4-4d1a-a0f5-ddcd7ef90ff1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1109 62 false '-- '-- '-- '-- -23002 1562 51854744-93b7-5026-a52b-398fdc2b8ec0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1109_demographic Dead '-- '-- '-- '-- 23989 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 987 '-- '-- '-- c11f3845-abcd-4e88-bf5a-3fe2a65eda2c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1109_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1109_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1109_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 59117b0e-5b82-495d-833d-27b4f7e9e2db '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7c466a5f-a6b4-4d1a-a0f5-ddcd7ef90ff1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1109 62 false '-- '-- '-- '-- -23002 1562 51854744-93b7-5026-a52b-398fdc2b8ec0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1109_demographic Dead '-- '-- '-- '-- 23989 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 987 '-- '-- '-- c11f3845-abcd-4e88-bf5a-3fe2a65eda2c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1109_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1109_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1109_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7c4c601b-21a3-48ef-bbd4-5f9748450d1c '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 7ca97692-0bf5-4bbd-81ce-10a051d04bd5 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0938 80 false '-- '-- '-- '-- -29558 636 6b9e14b1-a534-5fd8-9147-5a6e1b068be7 '-- not reported female '-- '-- '-- '-- white TCGA-10-0938_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0484e57b-65bb-41b1-ae50-fae60efec2b2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0938_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0938_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 362 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0938_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b33c1221-87f7-48d9-9f28-e0acf23f1dab '-- yes '-- '-- Surgery, NOS +TCGA-OV 7ca97692-0bf5-4bbd-81ce-10a051d04bd5 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0938 80 false '-- '-- '-- '-- -29558 636 6b9e14b1-a534-5fd8-9147-5a6e1b068be7 '-- not reported female '-- '-- '-- '-- white TCGA-10-0938_demographic Dead '-- '-- '-- '-- 29920 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 362 '-- '-- '-- 77c0cadc-f0f7-42fd-a2f8-8c84a0e3560c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0938_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0938_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 7ca97692-0bf5-4bbd-81ce-10a051d04bd5 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0938 80 false '-- '-- '-- '-- -29558 636 6b9e14b1-a534-5fd8-9147-5a6e1b068be7 '-- not reported female '-- '-- '-- '-- white TCGA-10-0938_demographic Dead '-- '-- '-- '-- 29558 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 95b0caf3-50a8-5bc7-ac12-e0b9f543e36e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0938_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 188 41 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0938_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- 960 '-- mg/m2 '-- '-- '-- '-- 2dd294e0-b71b-49b8-a9e9-a22c672871dc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7ca97692-0bf5-4bbd-81ce-10a051d04bd5 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0938 80 false '-- '-- '-- '-- -29558 636 6b9e14b1-a534-5fd8-9147-5a6e1b068be7 '-- not reported female '-- '-- '-- '-- white TCGA-10-0938_demographic Dead '-- '-- '-- '-- 29558 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 95b0caf3-50a8-5bc7-ac12-e0b9f543e36e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0938_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 148 30 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0938_treatment2 Letrozole '-- '-- '-- '-- '-- '-- '-- 225 '-- mg/m2 '-- '-- '-- '-- 536edb6f-e968-4c8b-bffc-dd02d3f17647 Adjuvant yes '-- '-- Hormone Therapy +TCGA-OV 7ca97692-0bf5-4bbd-81ce-10a051d04bd5 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0938 80 false '-- '-- '-- '-- -29558 636 6b9e14b1-a534-5fd8-9147-5a6e1b068be7 '-- not reported female '-- '-- '-- '-- white TCGA-10-0938_demographic Dead '-- '-- '-- '-- 29558 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 95b0caf3-50a8-5bc7-ac12-e0b9f543e36e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0938_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 153 30 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0938_treatment Leuprolide Acetate '-- '-- '-- '-- '-- '-- '-- 4 '-- mg/m2 '-- '-- '-- '-- 897d1bc2-1b39-5451-96fa-c762361d9bce Adjuvant yes '-- '-- Hormone Therapy +TCGA-OV 7ca97692-0bf5-4bbd-81ce-10a051d04bd5 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0938 80 false '-- '-- '-- '-- -29558 636 6b9e14b1-a534-5fd8-9147-5a6e1b068be7 '-- not reported female '-- '-- '-- '-- white TCGA-10-0938_demographic Dead '-- '-- '-- '-- 29558 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 95b0caf3-50a8-5bc7-ac12-e0b9f543e36e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0938_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 188 41 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0938_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3150 '-- mg/m2 '-- '-- '-- '-- dda9c3a7-47cb-4b3a-bf81-a37bf87d8864 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7ca97692-0bf5-4bbd-81ce-10a051d04bd5 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0938 80 false '-- '-- '-- '-- -29558 636 6b9e14b1-a534-5fd8-9147-5a6e1b068be7 '-- not reported female '-- '-- '-- '-- white TCGA-10-0938_demographic Dead '-- '-- '-- '-- 29558 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 95b0caf3-50a8-5bc7-ac12-e0b9f543e36e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0938_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0938_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e29b7231-f8f2-482a-b7d8-16dcac75aca0 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 7d03ddb6-f3fe-4b50-8bba-514aa65e7d0e Informed Consent 11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2044 77 false '-- '-- '-- '-- -28231 '-- 1d738d5b-91e3-54ea-8834-4818e8cc11ed '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2044_demographic Alive '-- '-- '-- '-- 28231 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 44bb6d41-522c-5051-b9a5-d0fb8e4f3d93 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2044_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 151 32 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2044_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 154fbe2f-d112-5bb8-8427-fb209bdab068 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7d03ddb6-f3fe-4b50-8bba-514aa65e7d0e Informed Consent 11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2044 77 false '-- '-- '-- '-- -28231 '-- 1d738d5b-91e3-54ea-8834-4818e8cc11ed '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2044_demographic Alive '-- '-- '-- '-- 28231 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 44bb6d41-522c-5051-b9a5-d0fb8e4f3d93 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2044_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 151 32 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2044_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1849a009-4c73-4e95-b81a-908e567d0c29 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7d03ddb6-f3fe-4b50-8bba-514aa65e7d0e Informed Consent 11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2044 77 false '-- '-- '-- '-- -28231 '-- 1d738d5b-91e3-54ea-8834-4818e8cc11ed '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2044_demographic Alive '-- '-- '-- '-- 28231 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 44bb6d41-522c-5051-b9a5-d0fb8e4f3d93 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2044_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2044_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c2262968-6643-46a6-8c31-dcf3291add40 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 7d1e9451-7a6a-4086-af7f-3ed57505daf0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1855 61 false '-- '-- '-- '-- -22394 75 d4ad8143-9fc3-5b79-9367-651779374b19 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1855_demographic Dead '-- '-- '-- '-- 22394 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2db40c1c-301c-58b3-8fd4-4144f4d41779 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1855_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1855_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f20478d8-cb2b-420d-bb2a-eb1840a030d3 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 7d1e9451-7a6a-4086-af7f-3ed57505daf0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1855 61 false '-- '-- '-- '-- -22394 75 d4ad8143-9fc3-5b79-9367-651779374b19 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1855_demographic Dead '-- '-- '-- '-- 22394 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2db40c1c-301c-58b3-8fd4-4144f4d41779 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1855_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1855_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fcb0a9f1-f52d-52c1-a814-5d5107a211c2 Adjuvant no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7d82ce56-32eb-4107-aa5c-c568764805c9 Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1569 52 false '-- '-- '-- '-- -19151 '-- ccfa0a00-6da8-544e-b65d-fcaddc7d839a '-- not reported female '-- '-- '-- '-- white TCGA-36-1569_demographic Alive '-- '-- '-- '-- 19151 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e53d6502-63a5-5b12-b41d-ff5effc62a8e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1569_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1569_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 499ee2db-64c0-5acc-8b37-9c55a09eea9c Adjuvant yes Partial Response '-- Pharmaceutical Therapy, NOS +TCGA-OV 7d82ce56-32eb-4107-aa5c-c568764805c9 Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1569 52 false '-- '-- '-- '-- -19151 '-- ccfa0a00-6da8-544e-b65d-fcaddc7d839a '-- not reported female '-- '-- '-- '-- white TCGA-36-1569_demographic Alive '-- '-- '-- '-- 19151 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e53d6502-63a5-5b12-b41d-ff5effc62a8e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1569_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1569_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6e1a89ac-2108-4153-a2be-80fed2099326 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 281 27 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1557_treatment7 Topotecan '-- '-- '-- '-- '-- '-- '-- 15 '-- mg '-- '-- '-- '-- 041ea42f-e22d-4236-9e28-cecfd3ae57a8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 281 27 '-- '-- '-- '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1557_treatment12 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6250 '-- mg '-- '-- '-- '-- 1d43c33f-4595-4ed4-b882-725ddea0ff9e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1008 875 '-- '-- Progressive Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1557_treatment6 Cisplatin '-- '-- '-- '-- '-- '-- '-- 670 '-- mg '-- '-- '-- '-- 34b06176-290b-4955-8799-48b75e4e4edb '-- yes '-- '-- Chemotherapy +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 281 27 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1557_treatment13 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 3392 '-- mg '-- '-- '-- '-- 41b30e73-70ea-4b9e-9558-1769b3e51e9d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 445 368 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1557_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 175 '-- mg '-- '-- '-- '-- 4bf3f0b1-e365-44a2-a163-98b16144a0a2 '-- yes '-- '-- Chemotherapy +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 623 462 '-- '-- Progressive Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1557_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5350 '-- mg '-- '-- '-- '-- 59434b69-199c-460a-8d30-d34805079144 '-- yes '-- '-- Chemotherapy +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 873 765 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1557_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5a21b3a0-01ca-450b-9479-56d11fee6d52 Palliative yes '-- '-- Hormone Therapy +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 727 644 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1557_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1300 '-- mg '-- '-- '-- '-- 5fadaf9b-fb11-4b08-8bf8-cb50347917ab '-- yes '-- '-- Chemotherapy +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 445 368 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1557_treatment8 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 10980 '-- mg '-- '-- '-- '-- 6d2e6777-c225-48d0-b979-29b5620d707b '-- yes '-- '-- Chemotherapy +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1557_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7d362024-51a3-4dc6-9a7e-041b81d5b4fd Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 798 754 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1557_treatment15 Topotecan '-- '-- '-- '-- '-- '-- '-- 46 '-- mg '-- '-- '-- '-- 9d74b695-0355-48ff-809d-d8021d4976d4 '-- yes '-- '-- Chemotherapy +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1154 1090 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1557_treatment10 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1300 '-- mg '-- '-- '-- '-- bb69ede5-707f-45b8-a4c5-ea3919ba95b2 '-- yes '-- '-- Chemotherapy +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1069 1027 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1557_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 424 '-- mg '-- '-- '-- '-- ce397c25-8282-47da-bf5f-869afc59a4de '-- yes '-- '-- Chemotherapy +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1154 1090 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1557_treatment16 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2315 '-- mg '-- '-- '-- '-- dec89cb2-34d7-4cbd-baac-ac8a2391c899 '-- yes '-- '-- Chemotherapy +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 347 300 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1557_treatment Topotecan '-- '-- '-- '-- '-- '-- '-- 32 '-- mg '-- '-- '-- '-- e67a217f-812e-5248-be04-40dd2c35c244 '-- yes '-- '-- Chemotherapy +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1008 875 '-- '-- Progressive Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1557_treatment9 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 12240 '-- mg '-- '-- '-- '-- e7cfd7e4-2969-41d5-ba75-cb00a30c8f68 '-- yes '-- '-- Chemotherapy +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 623 462 '-- '-- Progressive Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1557_treatment14 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2600 '-- mg '-- '-- '-- '-- eb4075c3-aa15-436b-81cd-03eda69bee80 '-- yes '-- '-- Chemotherapy +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 18390 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 447 '-- '-- '-- 4ced9b9f-e189-4939-a142-3799ac2bc49a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1557_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1557_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1557_treatment18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 87efef48-c7f2-46d4-acf3-4d94a3d70956 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 18390 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 447 '-- '-- '-- 4ced9b9f-e189-4939-a142-3799ac2bc49a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1557_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1557_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1557_treatment19 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d97a80df-a4df-4b15-a1f7-503d23e461c7 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13657 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 470 '-- '-- '-- 8e692e6f-0c8f-438b-8d44-2e189906cd0a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1105_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1105_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1105_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7dd7dfa9-30e1-46b1-ae5d-e22f09e3dbdd '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13657 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 470 '-- '-- '-- 8e692e6f-0c8f-438b-8d44-2e189906cd0a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1105_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1105_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1105_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d794b4ee-4b25-4058-9313-383c2003e1c6 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13187 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- fe611014-c242-5d62-9a13-f3b96ce70bc3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1105_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 584 486 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1105_treatment15 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3360 '-- mg '-- '-- '-- '-- 12fab687-dea2-417d-8704-61904e6f54c2 '-- yes '-- '-- Chemotherapy +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13187 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- fe611014-c242-5d62-9a13-f3b96ce70bc3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1105_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 178 25 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1105_treatment9 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1400 '-- mg '-- '-- '-- '-- 40a07d99-366d-4500-8fdd-413075ef718a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13187 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- fe611014-c242-5d62-9a13-f3b96ce70bc3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1105_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1116 1004 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1105_treatment10 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 19320 '-- mg '-- '-- '-- '-- 4e728f78-e5e7-404c-ba24-053a18574bd4 '-- yes '-- '-- Chemotherapy +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13187 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- fe611014-c242-5d62-9a13-f3b96ce70bc3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1105_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1298 1228 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1105_treatment6 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 2001 '-- mg '-- '-- '-- '-- 5d5bd019-5550-4041-a055-6be8f49be1f3 '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13187 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- fe611014-c242-5d62-9a13-f3b96ce70bc3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1105_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1340 1313 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1105_treatment11 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 975 '-- mg '-- '-- '-- '-- 5e688ab9-6e16-483a-b389-fcda38e32743 '-- yes '-- '-- Chemotherapy +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13187 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- fe611014-c242-5d62-9a13-f3b96ce70bc3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1105_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1285 1263 '-- '-- Progressive Disease '-- '-- '-- '-- '-- 28.0 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1105_treatment '-- '-- '-- '-- '-- '-- Distant Site '-- 7000 '-- cGy '-- '-- '-- '-- 6193e8fc-9c24-5bb3-8826-fda7e5d90222 '-- yes '-- '-- Radiation, External Beam +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13187 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- fe611014-c242-5d62-9a13-f3b96ce70bc3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1105_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 860 724 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1105_treatment2 Topotecan '-- '-- '-- '-- '-- '-- '-- 48 '-- mg '-- '-- '-- '-- 7583156f-3be6-45bd-9a6c-cbacb90787f1 '-- yes '-- '-- Chemotherapy +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13187 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- fe611014-c242-5d62-9a13-f3b96ce70bc3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1105_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 860 724 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1105_treatment8 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- 486 '-- mg '-- '-- '-- '-- 861bfa94-5c65-4ddf-a304-d53a9be78776 '-- yes '-- '-- Chemotherapy +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13187 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- fe611014-c242-5d62-9a13-f3b96ce70bc3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1105_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 584 486 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1105_treatment14 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1725 '-- mg '-- '-- '-- '-- 9642a5d9-28f5-48f3-be2c-889d2fe8cd71 '-- yes '-- '-- Chemotherapy +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13187 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- fe611014-c242-5d62-9a13-f3b96ce70bc3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1105_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 178 25 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1105_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3410 '-- mg '-- '-- '-- '-- ac7e3d5d-5f40-45b3-820b-72f868eb0c1b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13187 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- fe611014-c242-5d62-9a13-f3b96ce70bc3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1105_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1116 1004 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1105_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 258 '-- mg '-- '-- '-- '-- b5e21829-d1bf-4c1b-9f99-46a46133079f '-- yes '-- '-- Chemotherapy +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13187 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- fe611014-c242-5d62-9a13-f3b96ce70bc3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1105_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1375 1368 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1105_treatment4 Cisplatin '-- '-- '-- '-- '-- '-- '-- 92 '-- mg '-- '-- '-- '-- b966aae6-97fd-41e5-9022-aedec4cbe112 '-- yes '-- '-- Chemotherapy +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13187 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- fe611014-c242-5d62-9a13-f3b96ce70bc3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1105_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1375 1368 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1105_treatment12 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 1826 '-- mg '-- '-- '-- '-- d3a923c8-cd7e-45e3-b4a5-bcddf5b6fb27 '-- yes '-- '-- Chemotherapy +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13187 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- fe611014-c242-5d62-9a13-f3b96ce70bc3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1105_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1298 1228 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-1105_treatment5 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 4500 '-- mg '-- '-- '-- '-- d7e523bd-da3b-4d5d-85aa-ed16380eb9ec '-- yes '-- '-- Chemotherapy +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13187 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- fe611014-c242-5d62-9a13-f3b96ce70bc3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1105_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1200 1130 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-24-1105_treatment13 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2275 '-- mg '-- '-- '-- '-- ef3d481d-6a86-4417-8163-efbea79599ee '-- yes '-- '-- Chemotherapy +TCGA-OV 7e34d3c1-1fab-4326-9a69-4260d2bac558 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0804 73 false '-- '-- '-- '-- -27021 1073 8b22ed63-d399-5745-b49d-e471cc2b44b8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0804_demographic Dead '-- '-- '-- '-- 27350 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 329 '-- '-- '-- e8754a9c-733b-40f4-a5e7-26e59825d876 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0804_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0804_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0804_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- deec39ca-0e24-47b9-8101-142d5f7955e0 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 7e34d3c1-1fab-4326-9a69-4260d2bac558 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0804 73 false '-- '-- '-- '-- -27021 1073 8b22ed63-d399-5745-b49d-e471cc2b44b8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0804_demographic Dead '-- '-- '-- '-- 27350 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 329 '-- '-- '-- e8754a9c-733b-40f4-a5e7-26e59825d876 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0804_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0804_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0804_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ebcc39e8-f757-42ca-b49c-0a9354db5558 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7e34d3c1-1fab-4326-9a69-4260d2bac558 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0804 73 false '-- '-- '-- '-- -27021 1073 8b22ed63-d399-5745-b49d-e471cc2b44b8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0804_demographic Dead '-- '-- '-- '-- 27021 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f43741dc-837f-5308-a339-6bfc823b87e7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0804_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0804_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 03f3affc-326c-4f00-aa9b-74a19bd3a077 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 7e34d3c1-1fab-4326-9a69-4260d2bac558 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0804 73 false '-- '-- '-- '-- -27021 1073 8b22ed63-d399-5745-b49d-e471cc2b44b8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0804_demographic Dead '-- '-- '-- '-- 27021 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f43741dc-837f-5308-a339-6bfc823b87e7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0804_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 161 26 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0804_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 275af04f-ee9a-5d95-94a0-05805c337d99 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7e34d3c1-1fab-4326-9a69-4260d2bac558 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0804 73 false '-- '-- '-- '-- -27021 1073 8b22ed63-d399-5745-b49d-e471cc2b44b8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0804_demographic Dead '-- '-- '-- '-- 27021 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f43741dc-837f-5308-a339-6bfc823b87e7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0804_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 161 26 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0804_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e2378559-3201-40a6-93b9-0e6fb7e35d13 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7e34d3c1-1fab-4326-9a69-4260d2bac558 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0804 73 false '-- '-- '-- '-- -27021 1073 8b22ed63-d399-5745-b49d-e471cc2b44b8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0804_demographic Dead '-- '-- '-- '-- 27021 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f43741dc-837f-5308-a339-6bfc823b87e7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0804_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 270 270 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0804_treatment2 Monoclonal Antibody Hu3S193 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ee41898d-fbcc-49d7-b011-d9f74152023b Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV 7e4e7914-ec23-4c55-98d6-3c5eecffa8e4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2298 55 false '-- '-- '-- '-- -20453 1620 38d463fa-52e1-5bde-ba99-892ae69ef237 '-- not reported female '-- '-- '-- '-- white TCGA-24-2298_demographic Dead '-- '-- '-- '-- 20453 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 13e8bf35-e57d-57bc-a649-ba968b92dd9d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2298_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 726 474 '-- '-- Recurrent Disease '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2298_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2477 '-- mg '-- '-- '-- '-- 42a31c9b-aa8c-4740-ad09-7d54a8693204 '-- yes '-- '-- Chemotherapy +TCGA-OV 7e4e7914-ec23-4c55-98d6-3c5eecffa8e4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2298 55 false '-- '-- '-- '-- -20453 1620 38d463fa-52e1-5bde-ba99-892ae69ef237 '-- not reported female '-- '-- '-- '-- white TCGA-24-2298_demographic Dead '-- '-- '-- '-- 20453 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 13e8bf35-e57d-57bc-a649-ba968b92dd9d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2298_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- 474 '-- '-- Recurrent Disease '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2298_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1984 '-- mg '-- '-- '-- '-- 436a72ca-b298-41fc-ae25-73dd201a114c '-- yes '-- '-- Chemotherapy +TCGA-OV 7e4e7914-ec23-4c55-98d6-3c5eecffa8e4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2298 55 false '-- '-- '-- '-- -20453 1620 38d463fa-52e1-5bde-ba99-892ae69ef237 '-- not reported female '-- '-- '-- '-- white TCGA-24-2298_demographic Dead '-- '-- '-- '-- 20453 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 13e8bf35-e57d-57bc-a649-ba968b92dd9d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2298_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 1568 1454 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2298_treatment Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 308 '-- mg '-- '-- '-- '-- 5d8058bd-49e3-5610-b7f5-2c424cb4966d '-- yes '-- '-- Chemotherapy +TCGA-OV 7e4e7914-ec23-4c55-98d6-3c5eecffa8e4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2298 55 false '-- '-- '-- '-- -20453 1620 38d463fa-52e1-5bde-ba99-892ae69ef237 '-- not reported female '-- '-- '-- '-- white TCGA-24-2298_demographic Dead '-- '-- '-- '-- 20453 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 13e8bf35-e57d-57bc-a649-ba968b92dd9d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2298_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 218 12 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2298_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3605 '-- mg '-- '-- '-- '-- 6497f7ec-d39d-4ce6-813b-a8c635d7914a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7e4e7914-ec23-4c55-98d6-3c5eecffa8e4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2298 55 false '-- '-- '-- '-- -20453 1620 38d463fa-52e1-5bde-ba99-892ae69ef237 '-- not reported female '-- '-- '-- '-- white TCGA-24-2298_demographic Dead '-- '-- '-- '-- 20453 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 13e8bf35-e57d-57bc-a649-ba968b92dd9d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2298_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 1328 986 '-- '-- Progressive Disease '-- '-- '-- '-- 13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2298_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 424 '-- mg '-- '-- '-- '-- 80b9d9a8-1c97-4178-b6e6-71d5278440b5 '-- yes '-- '-- Chemotherapy +TCGA-OV 7e4e7914-ec23-4c55-98d6-3c5eecffa8e4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2298 55 false '-- '-- '-- '-- -20453 1620 38d463fa-52e1-5bde-ba99-892ae69ef237 '-- not reported female '-- '-- '-- '-- white TCGA-24-2298_demographic Dead '-- '-- '-- '-- 20453 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 13e8bf35-e57d-57bc-a649-ba968b92dd9d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2298_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2298_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cf236c87-eb93-4a3e-910e-81baf3c29039 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 7e4e7914-ec23-4c55-98d6-3c5eecffa8e4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2298 55 false '-- '-- '-- '-- -20453 1620 38d463fa-52e1-5bde-ba99-892ae69ef237 '-- not reported female '-- '-- '-- '-- white TCGA-24-2298_demographic Dead '-- '-- '-- '-- 20453 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 13e8bf35-e57d-57bc-a649-ba968b92dd9d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2298_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 1328 986 '-- '-- Progressive Disease '-- '-- '-- '-- 13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2298_treatment8 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- 731 '-- mg '-- '-- '-- '-- d72f638e-da70-4e7f-ba5e-bb2dba723b46 '-- yes '-- '-- Chemotherapy +TCGA-OV 7e4e7914-ec23-4c55-98d6-3c5eecffa8e4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2298 55 false '-- '-- '-- '-- -20453 1620 38d463fa-52e1-5bde-ba99-892ae69ef237 '-- not reported female '-- '-- '-- '-- white TCGA-24-2298_demographic Dead '-- '-- '-- '-- 20453 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 13e8bf35-e57d-57bc-a649-ba968b92dd9d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2298_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 218 12 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2298_treatment4 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 5830 '-- mg '-- '-- '-- '-- eda1397a-c156-4585-8dea-db41fa3df541 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7e4e7914-ec23-4c55-98d6-3c5eecffa8e4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2298 55 false '-- '-- '-- '-- -20453 1620 38d463fa-52e1-5bde-ba99-892ae69ef237 '-- not reported female '-- '-- '-- '-- white TCGA-24-2298_demographic Dead '-- '-- '-- '-- 20453 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 13e8bf35-e57d-57bc-a649-ba968b92dd9d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2298_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 817 762 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2298_treatment7 Topotecan '-- '-- '-- '-- '-- '-- '-- 28 '-- mg '-- '-- '-- '-- fc5e42ac-3a4a-4347-91eb-e9733890bb88 '-- yes '-- '-- Chemotherapy +TCGA-OV 7e4e7914-ec23-4c55-98d6-3c5eecffa8e4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2298 55 false '-- '-- '-- '-- -20453 1620 38d463fa-52e1-5bde-ba99-892ae69ef237 '-- not reported female '-- '-- '-- '-- white TCGA-24-2298_demographic Dead '-- '-- '-- '-- 20922 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 469 '-- '-- '-- b0d5a5b8-05c7-4037-ac75-8096d0ab87e3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2298_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2298_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2298_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 47be254c-b5bc-4724-b497-dad00a2641fb '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 7e4e7914-ec23-4c55-98d6-3c5eecffa8e4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2298 55 false '-- '-- '-- '-- -20453 1620 38d463fa-52e1-5bde-ba99-892ae69ef237 '-- not reported female '-- '-- '-- '-- white TCGA-24-2298_demographic Dead '-- '-- '-- '-- 20922 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 469 '-- '-- '-- b0d5a5b8-05c7-4037-ac75-8096d0ab87e3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2298_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2298_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2298_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bf2527c9-1be1-4929-a245-a72488f5b640 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7ebc776e-bde1-4563-adb1-8bd441872733 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-A5PD 55 false '-- '-- '-- United States -20263 624 84b549ae-9aa7-5dd3-aaef-b55ad5f6eb0d '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-59-A5PD_demographic Dead '-- '-- '-- '-- 20263 '-- '-- '-- '-- MX N0 '-- T1c '-- 7th '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Synchronous primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0ec071ce-05ed-4755-815b-68662ad23d8c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- '-- '-- '-- '-- '-- Not Reported '-- '-- TCGA-59-A5PD_diagnosis4 '-- '-- Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-A5PD_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0f531cca-34af-4b59-b04a-54de813753df '-- no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7ebc776e-bde1-4563-adb1-8bd441872733 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-A5PD 55 false '-- '-- '-- United States -20263 624 84b549ae-9aa7-5dd3-aaef-b55ad5f6eb0d '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-59-A5PD_demographic Dead '-- '-- '-- '-- 20263 '-- '-- '-- '-- MX N0 '-- T1c '-- 7th '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Synchronous primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0ec071ce-05ed-4755-815b-68662ad23d8c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- '-- '-- '-- '-- '-- Not Reported '-- '-- TCGA-59-A5PD_diagnosis4 '-- '-- Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-A5PD_treatment5 '-- '-- '-- '-- '-- '-- Not Reported '-- '-- '-- '-- '-- '-- '-- '-- 6b80f06f-f159-44a9-89d6-c7ab78bc28db '-- yes '-- '-- Surgery, NOS +TCGA-OV 7ebc776e-bde1-4563-adb1-8bd441872733 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-A5PD 55 false '-- '-- '-- United States -20263 624 84b549ae-9aa7-5dd3-aaef-b55ad5f6eb0d '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-59-A5PD_demographic Dead '-- '-- '-- '-- 20263 '-- '-- '-- '-- MX N0 '-- T1c '-- 7th '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Synchronous primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0ec071ce-05ed-4755-815b-68662ad23d8c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- '-- '-- '-- '-- '-- Not Reported '-- '-- TCGA-59-A5PD_diagnosis4 '-- '-- Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-A5PD_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7b50f3f5-4146-4992-8431-67bf02afe8e8 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 7ebc776e-bde1-4563-adb1-8bd441872733 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-A5PD 55 false '-- '-- '-- United States -20263 624 84b549ae-9aa7-5dd3-aaef-b55ad5f6eb0d '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-59-A5PD_demographic Dead '-- '-- '-- '-- 20408 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 145 '-- '-- '-- 4adadd83-2a72-4b30-b3b9-547ad32bbcd4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-59-A5PD_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-59-A5PD_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-A5PD_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 38e939dd-aa1f-4189-8680-b7c9cd06903f '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7ebc776e-bde1-4563-adb1-8bd441872733 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-A5PD 55 false '-- '-- '-- United States -20263 624 84b549ae-9aa7-5dd3-aaef-b55ad5f6eb0d '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-59-A5PD_demographic Dead '-- '-- '-- '-- 20408 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 145 '-- '-- '-- 4adadd83-2a72-4b30-b3b9-547ad32bbcd4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-59-A5PD_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-59-A5PD_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-A5PD_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9cc393e7-bacc-4389-8b6d-46a35a5ec42d '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 7ebc776e-bde1-4563-adb1-8bd441872733 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-A5PD 55 false '-- '-- '-- United States -20263 624 84b549ae-9aa7-5dd3-aaef-b55ad5f6eb0d '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-59-A5PD_demographic Dead '-- '-- '-- '-- 20263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5ed98837-320c-5c31-8af9-e461980aa32f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- no No '-- '-- '-- '-- Ovary '-- '-- TCGA-59-A5PD_diagnosis '-- Yes Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2011 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-A5PD_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bc577759-b3e4-5129-808e-a75df0eeb960 Adjuvant no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7ebc776e-bde1-4563-adb1-8bd441872733 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-A5PD 55 false '-- '-- '-- United States -20263 624 84b549ae-9aa7-5dd3-aaef-b55ad5f6eb0d '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-59-A5PD_demographic Dead '-- '-- '-- '-- 20263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5ed98837-320c-5c31-8af9-e461980aa32f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- no No '-- '-- '-- '-- Ovary '-- '-- TCGA-59-A5PD_diagnosis '-- Yes Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2011 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-A5PD_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ce6193f6-5f82-4dac-985a-be4e048405f5 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 7ebc776e-bde1-4563-adb1-8bd441872733 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-A5PD 55 false '-- '-- '-- United States -20263 624 84b549ae-9aa7-5dd3-aaef-b55ad5f6eb0d '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-59-A5PD_demographic Dead '-- '-- '-- '-- 20408 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 145 '-- '-- '-- c4f691c5-684d-4763-bedd-907eac428052 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-59-A5PD_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-59-A5PD_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-A5PD_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8d066186-8228-4897-b2b3-b8cd529ee527 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7ebc776e-bde1-4563-adb1-8bd441872733 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-A5PD 55 false '-- '-- '-- United States -20263 624 84b549ae-9aa7-5dd3-aaef-b55ad5f6eb0d '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-59-A5PD_demographic Dead '-- '-- '-- '-- 20408 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 145 '-- '-- '-- c4f691c5-684d-4763-bedd-907eac428052 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-59-A5PD_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-59-A5PD_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-A5PD_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d51eb893-c5af-4806-825b-def2967f3c35 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 7fd6ab8a-201e-431d-a886-6ab553b6ca36 Informed Consent 1067 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1707 41 false '-- '-- '-- '-- -15017 '-- fe01d20e-05e0-5be5-89e4-ddd1074b6831 '-- not reported female '-- '-- '-- '-- white TCGA-29-1707_demographic Alive '-- '-- '-- '-- 16218 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1201 '-- '-- '-- 22aa2e60-6af6-41ef-9b2d-7590ce932c9a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1707_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1707_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1707_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bb8fb14b-9ce5-4850-902d-fa8725b41fb6 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 7fd6ab8a-201e-431d-a886-6ab553b6ca36 Informed Consent 1067 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1707 41 false '-- '-- '-- '-- -15017 '-- fe01d20e-05e0-5be5-89e4-ddd1074b6831 '-- not reported female '-- '-- '-- '-- white TCGA-29-1707_demographic Alive '-- '-- '-- '-- 16218 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1201 '-- '-- '-- 22aa2e60-6af6-41ef-9b2d-7590ce932c9a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1707_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1707_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1707_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- eb151d49-880d-4578-adf4-431c00ddad19 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7fd6ab8a-201e-431d-a886-6ab553b6ca36 Informed Consent 1067 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1707 41 false '-- '-- '-- '-- -15017 '-- fe01d20e-05e0-5be5-89e4-ddd1074b6831 '-- not reported female '-- '-- '-- '-- white TCGA-29-1707_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2a7708e0-81bb-4983-b1d1-079f042a0c1c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1707_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1707_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1707_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4c8cb7f7-5323-46cc-8ce2-9ceca7ab30d8 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7fd6ab8a-201e-431d-a886-6ab553b6ca36 Informed Consent 1067 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1707 41 false '-- '-- '-- '-- -15017 '-- fe01d20e-05e0-5be5-89e4-ddd1074b6831 '-- not reported female '-- '-- '-- '-- white TCGA-29-1707_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2a7708e0-81bb-4983-b1d1-079f042a0c1c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1707_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1707_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1707_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 64d16a1b-8f88-4be8-8434-c6892a730093 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 7fd6ab8a-201e-431d-a886-6ab553b6ca36 Informed Consent 1067 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1707 41 false '-- '-- '-- '-- -15017 '-- fe01d20e-05e0-5be5-89e4-ddd1074b6831 '-- not reported female '-- '-- '-- '-- white TCGA-29-1707_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2a7708e0-81bb-4983-b1d1-079f042a0c1c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1707_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1707_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1248 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1707_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9146baf0-396f-41e4-8bf9-06377552cb32 '-- yes '-- '-- Surgery, NOS +TCGA-OV 7fd6ab8a-201e-431d-a886-6ab553b6ca36 Informed Consent 1067 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1707 41 false '-- '-- '-- '-- -15017 '-- fe01d20e-05e0-5be5-89e4-ddd1074b6831 '-- not reported female '-- '-- '-- '-- white TCGA-29-1707_demographic Alive '-- '-- '-- '-- 15017 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4c54de9f-0492-581d-9ba1-398bd16c52c8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1707_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 1375 1277 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1707_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 570 '-- mg '-- '-- '-- '-- 20f7dad4-950a-4f77-9f93-0c5e3a46fe31 '-- yes '-- '-- Chemotherapy +TCGA-OV 7fd6ab8a-201e-431d-a886-6ab553b6ca36 Informed Consent 1067 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1707 41 false '-- '-- '-- '-- -15017 '-- fe01d20e-05e0-5be5-89e4-ddd1074b6831 '-- not reported female '-- '-- '-- '-- white TCGA-29-1707_demographic Alive '-- '-- '-- '-- 15017 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4c54de9f-0492-581d-9ba1-398bd16c52c8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1707_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 143 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1707_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1789 '-- mg '-- '-- '-- '-- 3ee7869e-aa30-46ed-9bd3-f3f7c307a0b1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7fd6ab8a-201e-431d-a886-6ab553b6ca36 Informed Consent 1067 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1707 41 false '-- '-- '-- '-- -15017 '-- fe01d20e-05e0-5be5-89e4-ddd1074b6831 '-- not reported female '-- '-- '-- '-- white TCGA-29-1707_demographic Alive '-- '-- '-- '-- 15017 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4c54de9f-0492-581d-9ba1-398bd16c52c8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1707_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 143 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1707_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 3840 '-- mg '-- '-- '-- '-- 49206d4a-5ccc-5b1d-99ac-32b9bfa5c296 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7fd6ab8a-201e-431d-a886-6ab553b6ca36 Informed Consent 1067 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1707 41 false '-- '-- '-- '-- -15017 '-- fe01d20e-05e0-5be5-89e4-ddd1074b6831 '-- not reported female '-- '-- '-- '-- white TCGA-29-1707_demographic Alive '-- '-- '-- '-- 15017 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4c54de9f-0492-581d-9ba1-398bd16c52c8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1707_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 1326 1277 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1707_treatment4 Doxorubicin '-- '-- '-- '-- '-- '-- '-- 50 '-- mg '-- '-- '-- '-- c3d80384-9b66-45da-b468-f9ac6c9b72d3 '-- yes '-- '-- Chemotherapy +TCGA-OV 7fd6ab8a-201e-431d-a886-6ab553b6ca36 Informed Consent 1067 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1707 41 false '-- '-- '-- '-- -15017 '-- fe01d20e-05e0-5be5-89e4-ddd1074b6831 '-- not reported female '-- '-- '-- '-- white TCGA-29-1707_demographic Alive '-- '-- '-- '-- 15017 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4c54de9f-0492-581d-9ba1-398bd16c52c8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1707_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1707_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d3785bae-b415-48ac-9f07-d09820740117 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 808eb134-9c7d-43bb-b86c-2f3259193954 Informed Consent 3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1623 71 false '-- '-- '-- '-- -26060 565 23ac0f67-276c-5d57-b52e-1764a643b863 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1623_demographic Dead '-- '-- '-- '-- 26402 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 342 '-- '-- '-- 8ecf1562-42dc-4403-bd2e-0f2ec8be6394 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1623_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1623_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1623_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0f1d6b7a-e5bc-47b0-b54a-e0e026d95dc3 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 808eb134-9c7d-43bb-b86c-2f3259193954 Informed Consent 3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1623 71 false '-- '-- '-- '-- -26060 565 23ac0f67-276c-5d57-b52e-1764a643b863 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1623_demographic Dead '-- '-- '-- '-- 26402 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 342 '-- '-- '-- 8ecf1562-42dc-4403-bd2e-0f2ec8be6394 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1623_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1623_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1623_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 43d72dca-7006-4ce9-a406-468853b1b977 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 808eb134-9c7d-43bb-b86c-2f3259193954 Informed Consent 3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1623 71 false '-- '-- '-- '-- -26060 565 23ac0f67-276c-5d57-b52e-1764a643b863 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1623_demographic Dead '-- '-- '-- '-- 26060 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c76423fa-47c5-5e83-9344-ce0ca6c75063 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1623_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 138 16 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1623_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0e34a67f-e60a-5054-bc19-16e8b492c914 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 808eb134-9c7d-43bb-b86c-2f3259193954 Informed Consent 3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1623 71 false '-- '-- '-- '-- -26060 565 23ac0f67-276c-5d57-b52e-1764a643b863 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1623_demographic Dead '-- '-- '-- '-- 26060 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c76423fa-47c5-5e83-9344-ce0ca6c75063 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1623_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1623_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 590a643f-ec8c-49bf-91c5-7d843371e0bc Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 808eb134-9c7d-43bb-b86c-2f3259193954 Informed Consent 3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1623 71 false '-- '-- '-- '-- -26060 565 23ac0f67-276c-5d57-b52e-1764a643b863 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1623_demographic Dead '-- '-- '-- '-- 26060 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c76423fa-47c5-5e83-9344-ce0ca6c75063 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1623_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1623_treatment3 Not Reported '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6a4eb944-9a9a-4a4e-8187-32f8a3cff4d0 '-- yes '-- '-- Chemotherapy +TCGA-OV 808eb134-9c7d-43bb-b86c-2f3259193954 Informed Consent 3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1623 71 false '-- '-- '-- '-- -26060 565 23ac0f67-276c-5d57-b52e-1764a643b863 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1623_demographic Dead '-- '-- '-- '-- 26060 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c76423fa-47c5-5e83-9344-ce0ca6c75063 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1623_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 138 16 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1623_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ba3b62a4-e828-443e-92c0-d061ee66543b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 288 '-- '-- '-- 32b347a2-bbe0-4853-9425-2b47d066f293 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1364_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1364_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1364_treatment18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bb170bda-9299-4fc4-b4d1-79ecaf73fdb8 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 288 '-- '-- '-- 32b347a2-bbe0-4853-9425-2b47d066f293 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1364_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1364_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1364_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dc44c5a3-f410-406c-94fb-a61feda36160 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22294 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6b68d896-594c-5763-b893-8203984ca9c1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 949 919 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1364_treatment13 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 0cea8522-c2c5-4a73-aa16-7ddf56a6dd87 '-- yes '-- '-- Chemotherapy +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22294 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6b68d896-594c-5763-b893-8203984ca9c1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 827 615 '-- '-- Recurrent Disease '-- '-- '-- '-- 14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1364_treatment5 Leucovorin '-- '-- '-- '-- '-- '-- '-- 7000 '-- mg '-- '-- '-- '-- 2a090b7e-f843-4758-879a-d6f2ff68dce8 '-- yes '-- '-- Chemotherapy +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22294 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6b68d896-594c-5763-b893-8203984ca9c1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 462 401 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1364_treatment10 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 6400 '-- mg '-- '-- '-- '-- 57b9b892-fba7-4049-be28-292c69ddada2 '-- yes '-- '-- Chemotherapy +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22294 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6b68d896-594c-5763-b893-8203984ca9c1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 827 615 '-- '-- Recurrent Disease '-- '-- '-- '-- 14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1364_treatment6 Fluorouracil '-- '-- '-- '-- '-- '-- '-- 7000 '-- mg '-- '-- '-- '-- 65a42605-c459-4969-aa82-ce0a5d363f55 '-- yes '-- '-- Chemotherapy +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22294 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6b68d896-594c-5763-b893-8203984ca9c1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 188 35 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1364_treatment Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 235 '-- mg '-- '-- '-- '-- 6cec0a76-dfae-5167-8402-ce169f777321 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22294 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6b68d896-594c-5763-b893-8203984ca9c1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 949 919 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1364_treatment4 Docetaxel '-- '-- '-- '-- '-- '-- '-- 260 '-- mg '-- '-- '-- '-- 74123b24-107d-4e44-8d8e-67d821187a81 '-- yes '-- '-- Chemotherapy +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22294 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6b68d896-594c-5763-b893-8203984ca9c1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 584 462 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1364_treatment8 Etoposide '-- '-- '-- '-- '-- '-- '-- 10500 '-- mg '-- '-- '-- '-- 9df4a553-1b02-499f-9cfe-2f2bca9010a7 '-- yes '-- '-- Chemotherapy +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22294 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6b68d896-594c-5763-b893-8203984ca9c1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 188 35 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1364_treatment12 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2408 '-- mg '-- '-- '-- '-- a96bb548-9275-4cf2-8b6d-9c533446eef6 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22294 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6b68d896-594c-5763-b893-8203984ca9c1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 188 35 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1364_treatment14 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- b4a6b98a-2b44-446c-a5d4-8889c7017e20 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22294 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6b68d896-594c-5763-b893-8203984ca9c1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 310 279 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1364_treatment11 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- 198 '-- mg '-- '-- '-- '-- bb133a0f-a3a4-4277-b020-d33fd454aece '-- yes '-- '-- Chemotherapy +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22294 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6b68d896-594c-5763-b893-8203984ca9c1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 310 279 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1364_treatment15 Topotecan '-- '-- '-- '-- '-- '-- '-- 20 '-- mg '-- '-- '-- '-- c6c79803-da98-4d61-8421-110c96280a9b '-- yes '-- '-- Chemotherapy +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22294 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6b68d896-594c-5763-b893-8203984ca9c1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 370 341 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1364_treatment9 Altretamine '-- '-- '-- '-- '-- '-- '-- 1400 '-- mg '-- '-- '-- '-- c6deb2cb-89b6-4ba3-90f3-a5e6cb685c82 '-- yes '-- '-- Chemotherapy +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22294 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6b68d896-594c-5763-b893-8203984ca9c1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 462 401 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1364_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 240 '-- mg '-- '-- '-- '-- d46752fa-7dc5-42c7-8b46-5ed04ac54e00 '-- yes '-- '-- Chemotherapy +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22294 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6b68d896-594c-5763-b893-8203984ca9c1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 827 615 '-- '-- Recurrent Disease '-- '-- '-- '-- 14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1364_treatment2 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 1860 '-- mg '-- '-- '-- '-- e9ba936c-99ed-4d46-b213-df384ab01e7a '-- yes '-- '-- Chemotherapy +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22294 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6b68d896-594c-5763-b893-8203984ca9c1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 857 857 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1364_treatment7 Innate Immunostimulator rBBX-01 '-- '-- '-- '-- '-- '-- '-- 9 '-- mg '-- '-- '-- '-- eb9625e9-1509-4893-b2cd-36574e6df55e '-- yes '-- '-- Chemotherapy +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22294 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6b68d896-594c-5763-b893-8203984ca9c1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1364_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ff501014-6d1e-457d-9b83-9e11aaedee32 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 818dc159-aba4-46bc-a4ed-68ee0f8c4461 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2042 60 false '-- '-- '-- '-- -22127 396 6b47a6c1-f0cd-5fa9-9205-69c8f3ec37e7 '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2042_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0359e54b-74dc-4817-a4ff-28f28482678b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-2042_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-2042_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2042_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 51c04297-1166-4597-9394-952ebf000670 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 818dc159-aba4-46bc-a4ed-68ee0f8c4461 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2042 60 false '-- '-- '-- '-- -22127 396 6b47a6c1-f0cd-5fa9-9205-69c8f3ec37e7 '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2042_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0359e54b-74dc-4817-a4ff-28f28482678b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-2042_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-2042_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 123 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2042_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a70e8014-1485-4c4c-8f56-9311082ed4a7 '-- yes '-- '-- Surgery, NOS +TCGA-OV 818dc159-aba4-46bc-a4ed-68ee0f8c4461 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2042 60 false '-- '-- '-- '-- -22127 396 6b47a6c1-f0cd-5fa9-9205-69c8f3ec37e7 '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2042_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0359e54b-74dc-4817-a4ff-28f28482678b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-2042_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-2042_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2042_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bc1a8fea-ed6a-49f8-b6d7-230b3b86ab56 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 818dc159-aba4-46bc-a4ed-68ee0f8c4461 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2042 60 false '-- '-- '-- '-- -22127 396 6b47a6c1-f0cd-5fa9-9205-69c8f3ec37e7 '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2042_demographic Dead '-- '-- '-- '-- 22127 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2a402414-8c80-5260-9406-443e0dadda66 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2042_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 123 0 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2042_treatment7 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 151eba10-2f06-4411-80bb-35b565790d89 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 818dc159-aba4-46bc-a4ed-68ee0f8c4461 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2042 60 false '-- '-- '-- '-- -22127 396 6b47a6c1-f0cd-5fa9-9205-69c8f3ec37e7 '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2042_demographic Dead '-- '-- '-- '-- 22127 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2a402414-8c80-5260-9406-443e0dadda66 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2042_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2042_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 18cd2f39-f271-4e6b-91f8-4eec1d3e6421 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 818dc159-aba4-46bc-a4ed-68ee0f8c4461 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2042 60 false '-- '-- '-- '-- -22127 396 6b47a6c1-f0cd-5fa9-9205-69c8f3ec37e7 '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2042_demographic Dead '-- '-- '-- '-- 22127 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2a402414-8c80-5260-9406-443e0dadda66 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2042_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- 184 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2042_treatment5 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1df75136-eb92-4fb4-9e56-ff48fcbe3f04 '-- yes '-- '-- Chemotherapy +TCGA-OV 818dc159-aba4-46bc-a4ed-68ee0f8c4461 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2042 60 false '-- '-- '-- '-- -22127 396 6b47a6c1-f0cd-5fa9-9205-69c8f3ec37e7 '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2042_demographic Dead '-- '-- '-- '-- 22127 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2a402414-8c80-5260-9406-443e0dadda66 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2042_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- 184 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2042_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 28816e81-b046-4e54-86e3-c33803ce79ef '-- yes '-- '-- Chemotherapy +TCGA-OV 818dc159-aba4-46bc-a4ed-68ee0f8c4461 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2042 60 false '-- '-- '-- '-- -22127 396 6b47a6c1-f0cd-5fa9-9205-69c8f3ec37e7 '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2042_demographic Dead '-- '-- '-- '-- 22127 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2a402414-8c80-5260-9406-443e0dadda66 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2042_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 123 0 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2042_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4ec56ce0-0b9b-4867-b68e-96c0208d3fae Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 818dc159-aba4-46bc-a4ed-68ee0f8c4461 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2042 60 false '-- '-- '-- '-- -22127 396 6b47a6c1-f0cd-5fa9-9205-69c8f3ec37e7 '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2042_demographic Dead '-- '-- '-- '-- 22127 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2a402414-8c80-5260-9406-443e0dadda66 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2042_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- 184 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2042_treatment2 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9e3a1e0c-f0d3-4257-862a-1f7093585082 '-- yes '-- '-- Chemotherapy +TCGA-OV 818dc159-aba4-46bc-a4ed-68ee0f8c4461 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2042 60 false '-- '-- '-- '-- -22127 396 6b47a6c1-f0cd-5fa9-9205-69c8f3ec37e7 '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2042_demographic Dead '-- '-- '-- '-- 22127 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2a402414-8c80-5260-9406-443e0dadda66 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2042_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- 184 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2042_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b7bd5ac5-edf3-48d9-9720-c4675289a2a2 '-- yes '-- '-- Chemotherapy +TCGA-OV 818dc159-aba4-46bc-a4ed-68ee0f8c4461 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2042 60 false '-- '-- '-- '-- -22127 396 6b47a6c1-f0cd-5fa9-9205-69c8f3ec37e7 '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2042_demographic Dead '-- '-- '-- '-- 22127 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2a402414-8c80-5260-9406-443e0dadda66 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2042_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- 184 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2042_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cd4c75d9-43a1-5f3a-bf7d-81632cf8e2a7 '-- yes '-- '-- Chemotherapy +TCGA-OV 82093ed9-a3c8-4e34-931f-4ec7ae745711 Informed Consent 10 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1512 49 false '-- '-- '-- '-- -18134 '-- 605e97f3-8618-5b7b-8c23-0e82f639a1f0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1512_demographic Alive '-- '-- '-- '-- 18561 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 427 '-- '-- '-- dd38c8ad-ee58-4619-8fd7-ac90964e1475 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1512_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1512_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 82093ed9-a3c8-4e34-931f-4ec7ae745711 Informed Consent 10 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1512 49 false '-- '-- '-- '-- -18134 '-- 605e97f3-8618-5b7b-8c23-0e82f639a1f0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1512_demographic Alive '-- '-- '-- '-- 18134 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f8565836-3634-5b5c-8823-e193d83d3527 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1512_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 94 73 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1512_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 4097ce7e-d213-575d-8b16-c7b485005a51 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 82093ed9-a3c8-4e34-931f-4ec7ae745711 Informed Consent 10 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1512 49 false '-- '-- '-- '-- -18134 '-- 605e97f3-8618-5b7b-8c23-0e82f639a1f0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1512_demographic Alive '-- '-- '-- '-- 18134 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f8565836-3634-5b5c-8823-e193d83d3527 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1512_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1512_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ace19b63-094a-4162-a778-0043e2880beb Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 82093ed9-a3c8-4e34-931f-4ec7ae745711 Informed Consent 10 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1512 49 false '-- '-- '-- '-- -18134 '-- 605e97f3-8618-5b7b-8c23-0e82f639a1f0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1512_demographic Alive '-- '-- '-- '-- 18134 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f8565836-3634-5b5c-8823-e193d83d3527 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1512_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 94 73 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1512_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 700 '-- mg '-- '-- '-- '-- d6df784b-5356-4eec-9633-e0ccf1240402 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 838693d5-1ae0-4d75-834b-e1b89b96b0ed Informed Consent 915 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1768 50 false '-- '-- '-- '-- -18396 952 b5de4fa5-1048-53ef-a848-07a9f6060389 '-- not reported female '-- '-- '-- '-- white TCGA-29-1768_demographic Dead '-- '-- '-- '-- 18396 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 302790a0-c173-5320-8b25-111b75f0f6eb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1768_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1768_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 191af10d-d92a-461f-8637-ea4ba242aeb9 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 838693d5-1ae0-4d75-834b-e1b89b96b0ed Informed Consent 915 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1768 50 false '-- '-- '-- '-- -18396 952 b5de4fa5-1048-53ef-a848-07a9f6060389 '-- not reported female '-- '-- '-- '-- white TCGA-29-1768_demographic Dead '-- '-- '-- '-- 18396 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 302790a0-c173-5320-8b25-111b75f0f6eb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1768_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 124 19 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1768_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 348 '-- mg '-- '-- '-- '-- 4f251ebd-6d1c-552c-b671-fdc13d5ad0b6 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 838693d5-1ae0-4d75-834b-e1b89b96b0ed Informed Consent 915 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1768 50 false '-- '-- '-- '-- -18396 952 b5de4fa5-1048-53ef-a848-07a9f6060389 '-- not reported female '-- '-- '-- '-- white TCGA-29-1768_demographic Dead '-- '-- '-- '-- 18396 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 302790a0-c173-5320-8b25-111b75f0f6eb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1768_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 719 551 '-- '-- Recurrent Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1768_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 675 '-- mg '-- '-- '-- '-- 5b43ad1c-8fc3-4398-ba52-60ef3179bb07 '-- yes '-- '-- Chemotherapy +TCGA-OV 838693d5-1ae0-4d75-834b-e1b89b96b0ed Informed Consent 915 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1768 50 false '-- '-- '-- '-- -18396 952 b5de4fa5-1048-53ef-a848-07a9f6060389 '-- not reported female '-- '-- '-- '-- white TCGA-29-1768_demographic Dead '-- '-- '-- '-- 18396 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 302790a0-c173-5320-8b25-111b75f0f6eb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1768_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 252 40 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1768_treatment3 Clinical Trial '-- '-- '-- '-- '-- '-- '-- 1493 '-- mg '-- '-- '-- '-- 8ecac2ea-3398-413d-a9b3-6d8a725867c3 Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV 838693d5-1ae0-4d75-834b-e1b89b96b0ed Informed Consent 915 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1768 50 false '-- '-- '-- '-- -18396 952 b5de4fa5-1048-53ef-a848-07a9f6060389 '-- not reported female '-- '-- '-- '-- white TCGA-29-1768_demographic Dead '-- '-- '-- '-- 18396 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 302790a0-c173-5320-8b25-111b75f0f6eb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1768_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 103 19 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1768_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 816 '-- mg '-- '-- '-- '-- c64f2f49-5e30-4df5-afee-71c5685dc965 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 838693d5-1ae0-4d75-834b-e1b89b96b0ed Informed Consent 915 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1768 50 false '-- '-- '-- '-- -18396 952 b5de4fa5-1048-53ef-a848-07a9f6060389 '-- not reported female '-- '-- '-- '-- white TCGA-29-1768_demographic Dead '-- '-- '-- '-- 18396 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 302790a0-c173-5320-8b25-111b75f0f6eb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1768_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 719 551 '-- '-- Recurrent Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1768_treatment5 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1200 '-- mg '-- '-- '-- '-- ee03c54b-ba34-4691-9a1c-b8d86f7c9af0 '-- yes '-- '-- Chemotherapy +TCGA-OV 838693d5-1ae0-4d75-834b-e1b89b96b0ed Informed Consent 915 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1768 50 false '-- '-- '-- '-- -18396 952 b5de4fa5-1048-53ef-a848-07a9f6060389 '-- not reported female '-- '-- '-- '-- white TCGA-29-1768_demographic Dead '-- '-- '-- '-- 18396 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 302790a0-c173-5320-8b25-111b75f0f6eb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1768_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 915 827 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1768_treatment2 Doxorubicin '-- '-- '-- '-- '-- '-- '-- 80 '-- mg '-- '-- '-- '-- f751b4ec-3560-477b-b8af-dd22f9c13755 '-- yes '-- '-- Chemotherapy +TCGA-OV 838693d5-1ae0-4d75-834b-e1b89b96b0ed Informed Consent 915 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1768 50 false '-- '-- '-- '-- -18396 952 b5de4fa5-1048-53ef-a848-07a9f6060389 '-- not reported female '-- '-- '-- '-- white TCGA-29-1768_demographic Dead '-- '-- '-- '-- 18943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 547 '-- '-- '-- 91ce4400-ce32-4b84-ba32-c9a3d449ee2f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1768_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1768_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1768_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 18492ff8-33f4-4938-a931-0192d85c1268 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 838693d5-1ae0-4d75-834b-e1b89b96b0ed Informed Consent 915 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1768 50 false '-- '-- '-- '-- -18396 952 b5de4fa5-1048-53ef-a848-07a9f6060389 '-- not reported female '-- '-- '-- '-- white TCGA-29-1768_demographic Dead '-- '-- '-- '-- 18943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 547 '-- '-- '-- 91ce4400-ce32-4b84-ba32-c9a3d449ee2f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1768_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1768_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1768_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a82cae9f-6b6b-4ad0-aa49-76b3a26fb902 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 8449955f-42d9-46f6-919a-5cc5d59e6284 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1923 51 false '-- '-- '-- '-- -18628 690 96d5e3f2-4a30-5a3a-ba6f-eecd943d1046 '-- not reported female '-- '-- '-- '-- white TCGA-24-1923_demographic Dead '-- '-- '-- '-- 18971 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 343 '-- '-- '-- 347a4fdb-c1fa-4a5c-8bff-612ce2d7ddb3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1923_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1923_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1923_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0a032f64-d73c-48fe-bb64-f0cd7ea8eb6c '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 8449955f-42d9-46f6-919a-5cc5d59e6284 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1923 51 false '-- '-- '-- '-- -18628 690 96d5e3f2-4a30-5a3a-ba6f-eecd943d1046 '-- not reported female '-- '-- '-- '-- white TCGA-24-1923_demographic Dead '-- '-- '-- '-- 18971 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 343 '-- '-- '-- 347a4fdb-c1fa-4a5c-8bff-612ce2d7ddb3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1923_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1923_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1923_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 97c68816-da6a-4352-8ba6-a3f0e0619f04 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 8449955f-42d9-46f6-919a-5cc5d59e6284 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1923 51 false '-- '-- '-- '-- -18628 690 96d5e3f2-4a30-5a3a-ba6f-eecd943d1046 '-- not reported female '-- '-- '-- '-- white TCGA-24-1923_demographic Dead '-- '-- '-- '-- 18628 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ee2e4650-934a-5367-946a-baa0ebb000e2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1923_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 233 35 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1923_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 205a9660-48d1-4001-95f5-e3cf19e966a0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8449955f-42d9-46f6-919a-5cc5d59e6284 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1923 51 false '-- '-- '-- '-- -18628 690 96d5e3f2-4a30-5a3a-ba6f-eecd943d1046 '-- not reported female '-- '-- '-- '-- white TCGA-24-1923_demographic Dead '-- '-- '-- '-- 18628 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ee2e4650-934a-5367-946a-baa0ebb000e2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1923_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1923_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4c435cd2-70af-4a02-b4b5-ec01de7eb70b Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 8449955f-42d9-46f6-919a-5cc5d59e6284 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1923 51 false '-- '-- '-- '-- -18628 690 96d5e3f2-4a30-5a3a-ba6f-eecd943d1046 '-- not reported female '-- '-- '-- '-- white TCGA-24-1923_demographic Dead '-- '-- '-- '-- 18628 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ee2e4650-934a-5367-946a-baa0ebb000e2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1923_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- 383 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1923_treatment2 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4d46dd52-6c5a-4a3b-a103-c10ebe52d1cd '-- yes '-- '-- Chemotherapy +TCGA-OV 8449955f-42d9-46f6-919a-5cc5d59e6284 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1923 51 false '-- '-- '-- '-- -18628 690 96d5e3f2-4a30-5a3a-ba6f-eecd943d1046 '-- not reported female '-- '-- '-- '-- white TCGA-24-1923_demographic Dead '-- '-- '-- '-- 18628 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ee2e4650-934a-5367-946a-baa0ebb000e2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1923_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 233 35 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1923_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5bdc7123-ec5f-421f-874b-e4b47b5e1b5b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8449955f-42d9-46f6-919a-5cc5d59e6284 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1923 51 false '-- '-- '-- '-- -18628 690 96d5e3f2-4a30-5a3a-ba6f-eecd943d1046 '-- not reported female '-- '-- '-- '-- white TCGA-24-1923_demographic Dead '-- '-- '-- '-- 18628 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ee2e4650-934a-5367-946a-baa0ebb000e2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1923_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 233 35 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1923_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aa018f9d-8c45-57dd-9697-3f2fe2e0e89d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8449955f-42d9-46f6-919a-5cc5d59e6284 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1923 51 false '-- '-- '-- '-- -18628 690 96d5e3f2-4a30-5a3a-ba6f-eecd943d1046 '-- not reported female '-- '-- '-- '-- white TCGA-24-1923_demographic Dead '-- '-- '-- '-- 18628 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ee2e4650-934a-5367-946a-baa0ebb000e2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1923_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1923_treatment5 Clinical Trial '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fd073219-3277-42f5-8b0e-2de40dbf7884 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 85a85a11-7200-4e96-97af-6ba26d680d59 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0920 65 false '-- '-- '-- '-- -24064 1484 4d9e60db-29bf-55a5-b771-45b205a0536b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0920_demographic Dead '-- '-- '-- '-- 24361 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 297 '-- '-- '-- 9065505c-8b4d-4bd1-8c24-61efcec769f0 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0920_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0920_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0920_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b7553d4f-8588-4842-8f9d-2f420a7ec1e9 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 85a85a11-7200-4e96-97af-6ba26d680d59 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0920 65 false '-- '-- '-- '-- -24064 1484 4d9e60db-29bf-55a5-b771-45b205a0536b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0920_demographic Dead '-- '-- '-- '-- 24361 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 297 '-- '-- '-- 9065505c-8b4d-4bd1-8c24-61efcec769f0 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0920_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0920_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0920_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c627b724-7601-4b26-8d2e-5d619c089f1b '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 85a85a11-7200-4e96-97af-6ba26d680d59 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0920 65 false '-- '-- '-- '-- -24064 1484 4d9e60db-29bf-55a5-b771-45b205a0536b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0920_demographic Dead '-- '-- '-- '-- 24361 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 297 '-- '-- '-- 964c7cda-91bc-4b32-951a-f732e56ed85b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0920_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0920_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 85a85a11-7200-4e96-97af-6ba26d680d59 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0920 65 false '-- '-- '-- '-- -24064 1484 4d9e60db-29bf-55a5-b771-45b205a0536b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0920_demographic Dead '-- '-- '-- '-- 24064 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- aa92074b-b296-596b-a4d9-ceb3ab1e0160 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0920_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 151 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0920_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2ef54a76-92fa-5238-a468-e54efb2cf108 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 85a85a11-7200-4e96-97af-6ba26d680d59 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0920 65 false '-- '-- '-- '-- -24064 1484 4d9e60db-29bf-55a5-b771-45b205a0536b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0920_demographic Dead '-- '-- '-- '-- 24064 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- aa92074b-b296-596b-a4d9-ceb3ab1e0160 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0920_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0920_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 822a7b15-2b22-4029-84f7-18786d74e05f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 85bb4987-51e7-40fe-ad59-2aa56754eca9 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2002 46 false '-- '-- '-- '-- -17115 '-- eaf6457d-9150-5a07-a240-9aabc2e07928 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2002_demographic Alive '-- '-- '-- '-- 17115 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 578ddcf5-2778-5527-9652-d17bc06c620c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2002_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 558 400 '-- '-- Progressive Disease '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2002_treatment3 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 6600 '-- mg '-- '-- '-- '-- 27bc5369-25f4-42a4-959b-11735c1da79a '-- yes '-- '-- Chemotherapy +TCGA-OV 85bb4987-51e7-40fe-ad59-2aa56754eca9 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2002 46 false '-- '-- '-- '-- -17115 '-- eaf6457d-9150-5a07-a240-9aabc2e07928 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2002_demographic Alive '-- '-- '-- '-- 17115 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 578ddcf5-2778-5527-9652-d17bc06c620c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2002_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2002_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3a1b776c-3054-43dc-a13b-1e73e4a69d1d Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 85bb4987-51e7-40fe-ad59-2aa56754eca9 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2002 46 false '-- '-- '-- '-- -17115 '-- eaf6457d-9150-5a07-a240-9aabc2e07928 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2002_demographic Alive '-- '-- '-- '-- 17115 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 578ddcf5-2778-5527-9652-d17bc06c620c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2002_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 129 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2002_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4800 '-- mg '-- '-- '-- '-- 534ebbb8-601a-4fa0-87cc-d920e1db5600 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 85bb4987-51e7-40fe-ad59-2aa56754eca9 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2002 46 false '-- '-- '-- '-- -17115 '-- eaf6457d-9150-5a07-a240-9aabc2e07928 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2002_demographic Alive '-- '-- '-- '-- 17115 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 578ddcf5-2778-5527-9652-d17bc06c620c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2002_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 129 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2002_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1668 '-- mg '-- '-- '-- '-- 77095dda-43e6-5a0a-bcb5-fb3ab57e2fec Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 85bb4987-51e7-40fe-ad59-2aa56754eca9 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2002 46 false '-- '-- '-- '-- -17115 '-- eaf6457d-9150-5a07-a240-9aabc2e07928 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2002_demographic Alive '-- '-- '-- '-- 17115 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 578ddcf5-2778-5527-9652-d17bc06c620c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2002_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 563 157 '-- '-- Progressive Disease '-- '-- '-- '-- 14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2002_treatment2 Doxorubicin '-- '-- '-- '-- '-- '-- '-- 924 '-- mg '-- '-- '-- '-- abb02569-9219-4bf4-a4a8-fb18f7bc01d2 '-- yes '-- '-- Chemotherapy +TCGA-OV 8628f1b2-3763-4ba9-a375-083874bb18f2 Informed Consent -13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-VG-A8LO 55 false '-- '-- '-- Nigeria -20274 24 bd84ae7e-b25d-59f9-9161-7cc10e02bf9f '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-VG-A8LO_demographic Dead '-- '-- '-- '-- 20274 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- aaaed386-e2f5-53c2-bdc4-6508fdec1123 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8460/3 '-- '-- '-- '-- '-- '-- Papillary serous cystadenocarcinoma '-- '-- no No '-- R2 '-- '-- Ovary '-- '-- TCGA-VG-A8LO_diagnosis '-- No Ovary '-- '-- '-- '-- GB '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2013 '-- No '-- 8 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-VG-A8LO_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 24e3a3e4-fea0-54a7-81de-f636e54333f7 '-- yes Unknown '-- Chemotherapy +TCGA-OV 8628f1b2-3763-4ba9-a375-083874bb18f2 Informed Consent -13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-VG-A8LO 55 false '-- '-- '-- Nigeria -20274 24 bd84ae7e-b25d-59f9-9161-7cc10e02bf9f '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-VG-A8LO_demographic Dead '-- '-- '-- '-- 20274 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- aaaed386-e2f5-53c2-bdc4-6508fdec1123 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8460/3 '-- '-- '-- '-- '-- '-- Papillary serous cystadenocarcinoma '-- '-- no No '-- R2 '-- '-- Ovary '-- '-- TCGA-VG-A8LO_diagnosis '-- No Ovary '-- '-- '-- '-- GB '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2013 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-VG-A8LO_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2a9eba0e-c481-4c95-bfa5-6a171a52e28e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 8628f1b2-3763-4ba9-a375-083874bb18f2 Informed Consent -13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-VG-A8LO 55 false '-- '-- '-- Nigeria -20274 24 bd84ae7e-b25d-59f9-9161-7cc10e02bf9f '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-VG-A8LO_demographic Dead '-- '-- '-- '-- 20274 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- aaaed386-e2f5-53c2-bdc4-6508fdec1123 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8460/3 '-- '-- '-- '-- '-- '-- Papillary serous cystadenocarcinoma '-- '-- no No '-- R2 '-- '-- Ovary '-- '-- TCGA-VG-A8LO_diagnosis '-- No Ovary '-- '-- '-- '-- GB '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2013 '-- No '-- 8 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-VG-A8LO_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f3226fa4-69d4-4744-8144-1414d436abbd '-- yes Unknown '-- Chemotherapy +TCGA-OV 8652ddee-98f4-4584-b450-e6f2f5c9d7ec Informed Consent 14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1356 62 false '-- '-- '-- '-- -22855 1499 6f4e3146-4cfe-55b8-8427-ff6397b2269e '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1356_demographic Dead '-- '-- '-- '-- 23011 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 156 '-- '-- '-- 0376f311-efe5-41f3-b975-4104015c228e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1356_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1356_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1356_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 51ecdd4d-ccb3-4819-bba4-9999d3cf23a0 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 8652ddee-98f4-4584-b450-e6f2f5c9d7ec Informed Consent 14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1356 62 false '-- '-- '-- '-- -22855 1499 6f4e3146-4cfe-55b8-8427-ff6397b2269e '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1356_demographic Dead '-- '-- '-- '-- 23011 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 156 '-- '-- '-- 0376f311-efe5-41f3-b975-4104015c228e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1356_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1356_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1356_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b16ea8e8-a1ef-4373-8d40-7097babe520d '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 8652ddee-98f4-4584-b450-e6f2f5c9d7ec Informed Consent 14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1356 62 false '-- '-- '-- '-- -22855 1499 6f4e3146-4cfe-55b8-8427-ff6397b2269e '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1356_demographic Dead '-- '-- '-- '-- 22855 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9c12fc68-20a6-5db7-aa57-9cc51005f642 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1356_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 312 161 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1356_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4531 '-- mg '-- '-- '-- '-- 691466b6-0e9b-4e60-9f1b-1c52adcb3fb5 '-- yes '-- '-- Chemotherapy +TCGA-OV 8652ddee-98f4-4584-b450-e6f2f5c9d7ec Informed Consent 14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1356 62 false '-- '-- '-- '-- -22855 1499 6f4e3146-4cfe-55b8-8427-ff6397b2269e '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1356_demographic Dead '-- '-- '-- '-- 22855 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9c12fc68-20a6-5db7-aa57-9cc51005f642 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1356_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1356_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 729c2131-5539-4664-b7a0-21d5cc80d9c5 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 8652ddee-98f4-4584-b450-e6f2f5c9d7ec Informed Consent 14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1356 62 false '-- '-- '-- '-- -22855 1499 6f4e3146-4cfe-55b8-8427-ff6397b2269e '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1356_demographic Dead '-- '-- '-- '-- 22855 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9c12fc68-20a6-5db7-aa57-9cc51005f642 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1356_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 312 161 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1356_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1825 '-- mg '-- '-- '-- '-- dee40d08-8480-526a-a9d8-342a0fd44479 '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 25388e78-4b52-4fe3-8399-ffc15b9a9ceb false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1662_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1662_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1081 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1662_treatment29 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 59871f55-feb1-445e-83d2-ad238863078e '-- yes '-- '-- Surgery, NOS +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 25388e78-4b52-4fe3-8399-ffc15b9a9ceb false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1662_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1662_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1662_treatment27 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- af1c79bb-9e9b-497d-bda9-785e82476a4a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 25388e78-4b52-4fe3-8399-ffc15b9a9ceb false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1662_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1662_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1662_treatment28 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c5b86b57-46c2-41ec-8cb3-bb9c7d2217f8 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2517 2503 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1662_treatment18 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 10 '-- mg/kg '-- '-- '-- '-- 016d4b95-9952-42dc-90ce-62c273664fe7 '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2461 2457 '-- '-- Progressive Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment Topotecan '-- '-- '-- '-- '-- '-- '-- 3 '-- mg/m2 '-- '-- '-- '-- 081f9cc1-d2cf-528e-8029-566cc8be67e1 '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1233 1128 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 10d0be7b-ee29-4314-abc7-443815a06ea5 '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2052 1989 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment22 Docetaxel '-- '-- '-- '-- '-- '-- '-- 100 '-- mg '-- '-- '-- '-- 1489ada4-2070-438d-b17d-26a698ef2af7 '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2697 2684 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment15 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 954 '-- mg '-- '-- '-- '-- 1f3e66b9-6cfe-4e6c-9773-abcb90c476c3 '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1233 1128 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment6 Docetaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- 27bacc95-17a3-45f2-a70f-2408f4149143 '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1968 1947 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment4 Docetaxel '-- '-- '-- '-- '-- '-- '-- 98 '-- mg/m2 '-- '-- '-- '-- 287a3951-30b3-4e60-90b1-669c006456df '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2650 2623 '-- '-- Progressive Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment9 Topotecan '-- '-- '-- '-- '-- '-- '-- 4 '-- mg/m2 '-- '-- '-- '-- 34a59619-e5f8-4cbc-8757-51ee8dddeae3 '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 15 15 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment20 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 40b9b890-927b-4880-b102-0e6fb121d65d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2697 2684 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment21 Cisplatin '-- '-- '-- '-- '-- '-- '-- 47 '-- mg '-- '-- '-- '-- 4522dba3-d4f6-4aab-b29a-e87a026d6403 '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2650 2566 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1662_treatment16 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 10 '-- mg/kg '-- '-- '-- '-- 46aa5be1-fdd3-4f21-b198-99cc3a5f396e '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1968 1947 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 390 '-- mg '-- '-- '-- '-- 4cba3d30-1809-4d1c-9550-961191511801 '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2537 2530 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment10 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 84ddfff0-837c-4966-a2bb-56e866271fce '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 141 32 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment13 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 600 '-- mg/m2 '-- '-- '-- '-- 84fd3ff5-f194-4ad7-bb89-2758fb6a4872 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2623 2608 '-- '-- Progressive Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment14 Topotecan '-- '-- '-- '-- '-- '-- '-- 2 '-- mg/m2 '-- '-- '-- '-- 85803e5e-c77d-442e-9db8-19759614ccb8 '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2399 2073 '-- '-- Recurrent Disease '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment2 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 40 '-- mg/m2 '-- '-- '-- '-- 9d157599-867d-43f2-a163-67df4a3a445a '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 141 32 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment23 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- aaa3601b-c43f-410c-a2d0-1fee76e6e019 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1732 1590 '-- '-- Recurrent Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment12 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b40cf83d-72f0-4ca3-bf60-f8a99a9aeab8 '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1732 1590 '-- '-- Recurrent Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment8 Docetaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- bbc32442-4b0c-4a52-95c8-8138910881bc '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2602 2482 '-- '-- Progressive Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment5 Topotecan '-- '-- '-- '-- '-- '-- '-- 4 '-- mg/m2 '-- '-- '-- '-- bef4a973-936f-4d16-b43f-30b631023cd6 '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2650 2426 '-- '-- Progressive Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment19 Topotecan '-- '-- '-- '-- '-- '-- '-- 2 '-- mg/m2 '-- '-- '-- '-- c362782a-039f-4c8b-b91b-1c4034b35014 '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1662_treatment24 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d43e105f-0694-4266-9d21-b056a3298165 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- 1926 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1662_treatment17 Anastrozole '-- '-- '-- '-- '-- '-- '-- 1 '-- mg '-- '-- '-- '-- dd7d466a-7924-4d8e-91af-50218b34c1cf '-- yes '-- '-- Hormone Therapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 15 15 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment11 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e81be105-73e4-4836-8a76-2f142c705fa8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 22292 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1046 '-- '-- '-- 9d390796-521b-4e09-b734-54ebe3ad21a2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1662_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1662_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1662_treatment25 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1a5c87a3-b920-4813-a2ce-411ddf61e57f '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 22292 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1046 '-- '-- '-- 9d390796-521b-4e09-b734-54ebe3ad21a2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1662_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1662_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1662_treatment26 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 58e609d4-5074-485c-8992-97a7f51cd526 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 86b513ba-df09-485d-92d4-fb9e888f7350 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1701 56 false '-- '-- '-- '-- -20737 515 5a7b3dcd-6dc2-5969-88a3-e6623cb00004 '-- not reported female '-- '-- '-- '-- white TCGA-29-1701_demographic Dead '-- '-- '-- '-- 20737 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7970b8af-897d-58cd-9c10-f467a239f1d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1701_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1701_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 086b997f-2f87-4649-9e8f-94cb05dd8519 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 86b513ba-df09-485d-92d4-fb9e888f7350 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1701 56 false '-- '-- '-- '-- -20737 515 5a7b3dcd-6dc2-5969-88a3-e6623cb00004 '-- not reported female '-- '-- '-- '-- white TCGA-29-1701_demographic Dead '-- '-- '-- '-- 20737 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7970b8af-897d-58cd-9c10-f467a239f1d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1701_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 160 31 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1701_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1280 '-- mg '-- '-- '-- '-- 0c5d1c6d-280f-418d-8a9e-1ef6f3528158 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 86b513ba-df09-485d-92d4-fb9e888f7350 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1701 56 false '-- '-- '-- '-- -20737 515 5a7b3dcd-6dc2-5969-88a3-e6623cb00004 '-- not reported female '-- '-- '-- '-- white TCGA-29-1701_demographic Dead '-- '-- '-- '-- 20737 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7970b8af-897d-58cd-9c10-f467a239f1d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1701_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 381 318 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1701_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 75 '-- mg '-- '-- '-- '-- 1f0103b1-1924-432e-a491-d534988bf032 '-- yes '-- '-- Chemotherapy +TCGA-OV 86b513ba-df09-485d-92d4-fb9e888f7350 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1701 56 false '-- '-- '-- '-- -20737 515 5a7b3dcd-6dc2-5969-88a3-e6623cb00004 '-- not reported female '-- '-- '-- '-- white TCGA-29-1701_demographic Dead '-- '-- '-- '-- 20737 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7970b8af-897d-58cd-9c10-f467a239f1d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1701_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 160 31 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1701_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 4505 '-- mg '-- '-- '-- '-- 2411538c-6d01-5b61-969d-ff4d50ed1969 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 86b513ba-df09-485d-92d4-fb9e888f7350 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1701 56 false '-- '-- '-- '-- -20737 515 5a7b3dcd-6dc2-5969-88a3-e6623cb00004 '-- not reported female '-- '-- '-- '-- white TCGA-29-1701_demographic Dead '-- '-- '-- '-- 20737 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7970b8af-897d-58cd-9c10-f467a239f1d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1701_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 472 409 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1701_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 49783079-0370-4b51-9338-cf7433c8a909 '-- yes '-- '-- Chemotherapy +TCGA-OV 86b513ba-df09-485d-92d4-fb9e888f7350 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1701 56 false '-- '-- '-- '-- -20737 515 5a7b3dcd-6dc2-5969-88a3-e6623cb00004 '-- not reported female '-- '-- '-- '-- white TCGA-29-1701_demographic Dead '-- '-- '-- '-- 21035 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 298 '-- '-- '-- eddb4773-2b36-4839-bcb4-70a5f601c11d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1701_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1701_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1701_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 06d18bdc-a9ce-4e32-887d-5a98f104ef06 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 86b513ba-df09-485d-92d4-fb9e888f7350 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1701 56 false '-- '-- '-- '-- -20737 515 5a7b3dcd-6dc2-5969-88a3-e6623cb00004 '-- not reported female '-- '-- '-- '-- white TCGA-29-1701_demographic Dead '-- '-- '-- '-- 21035 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 298 '-- '-- '-- eddb4773-2b36-4839-bcb4-70a5f601c11d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1701_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1701_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1701_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 76c02a48-fb17-4d4a-875d-16d9299b27c8 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 872d2922-7292-4681-adb7-d3b267eccbe7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2033 87 false '-- '-- '-- '-- -31977 562 7726c9f9-3852-5bc5-99d6-00a44e1d0173 '-- not reported female '-- '-- '-- '-- white TCGA-24-2033_demographic Dead '-- '-- '-- '-- 31977 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 54f526da-dd2d-5ca2-ba04-32fa91ce3f46 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-24-2033_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2033_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1d33693e-72e5-4321-8b79-f22fc5f9af5e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 872d2922-7292-4681-adb7-d3b267eccbe7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2033 87 false '-- '-- '-- '-- -31977 562 7726c9f9-3852-5bc5-99d6-00a44e1d0173 '-- not reported female '-- '-- '-- '-- white TCGA-24-2033_demographic Dead '-- '-- '-- '-- 31977 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 54f526da-dd2d-5ca2-ba04-32fa91ce3f46 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-24-2033_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 232 38 '-- '-- '-- '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2033_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2940 '-- mg '-- '-- '-- '-- 2b692939-01eb-5f0f-9fb5-c6bb2f44a78f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 872d2922-7292-4681-adb7-d3b267eccbe7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2033 87 false '-- '-- '-- '-- -31977 562 7726c9f9-3852-5bc5-99d6-00a44e1d0173 '-- not reported female '-- '-- '-- '-- white TCGA-24-2033_demographic Dead '-- '-- '-- '-- 31977 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 54f526da-dd2d-5ca2-ba04-32fa91ce3f46 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-24-2033_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 232 38 '-- '-- '-- '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2033_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3020 '-- mg '-- '-- '-- '-- 4442f6de-d2a2-476c-b516-dbfaef3dbb42 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 872d2922-7292-4681-adb7-d3b267eccbe7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2033 87 false '-- '-- '-- '-- -31977 562 7726c9f9-3852-5bc5-99d6-00a44e1d0173 '-- not reported female '-- '-- '-- '-- white TCGA-24-2033_demographic Dead '-- '-- '-- '-- 31977 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 54f526da-dd2d-5ca2-ba04-32fa91ce3f46 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-24-2033_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- '-- 471 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-2033_treatment2 Altretamine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9a9ca7ba-fafe-465a-bcb5-0929ed6eb699 '-- yes '-- '-- Chemotherapy +TCGA-OV 872d2922-7292-4681-adb7-d3b267eccbe7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2033 87 false '-- '-- '-- '-- -31977 562 7726c9f9-3852-5bc5-99d6-00a44e1d0173 '-- not reported female '-- '-- '-- '-- white TCGA-24-2033_demographic Dead '-- '-- '-- '-- 31977 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 54f526da-dd2d-5ca2-ba04-32fa91ce3f46 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-24-2033_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 400 358 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2033_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c7ca1018-1ad9-4219-8945-cb9fbc8e74f7 '-- yes '-- '-- Chemotherapy +TCGA-OV 872d2922-7292-4681-adb7-d3b267eccbe7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2033 87 false '-- '-- '-- '-- -31977 562 7726c9f9-3852-5bc5-99d6-00a44e1d0173 '-- not reported female '-- '-- '-- '-- white TCGA-24-2033_demographic Dead '-- '-- '-- '-- 32328 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 351 '-- '-- '-- f0346140-5dea-409e-878f-6cb42b717bde false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2033_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2033_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2033_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2b2ad06e-3fc3-4f46-ad7b-a33de5e0ac42 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 872d2922-7292-4681-adb7-d3b267eccbe7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2033 87 false '-- '-- '-- '-- -31977 562 7726c9f9-3852-5bc5-99d6-00a44e1d0173 '-- not reported female '-- '-- '-- '-- white TCGA-24-2033_demographic Dead '-- '-- '-- '-- 32328 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 351 '-- '-- '-- f0346140-5dea-409e-878f-6cb42b717bde false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2033_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2033_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2033_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8ed172c2-211c-48e9-895b-f126acfdff38 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 88180134-710f-46ea-9b06-5e5d860d6d9f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2110 56 false '-- '-- '-- '-- -20718 1354 f60176dd-6543-512c-8308-244afc979cf1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2110_demographic Dead '-- '-- '-- '-- 20718 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1e51ebe2-c57d-5a2a-8421-1f6cbdf4003b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2110_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1354 459 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-61-2110_treatment6 Tamoxifen '-- '-- '-- '-- '-- '-- '-- 10 '-- mg '-- '-- '-- '-- 0460dc35-1b84-43db-a153-535a25b1c396 '-- yes '-- '-- Hormone Therapy +TCGA-OV 88180134-710f-46ea-9b06-5e5d860d6d9f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2110 56 false '-- '-- '-- '-- -20718 1354 f60176dd-6543-512c-8308-244afc979cf1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2110_demographic Dead '-- '-- '-- '-- 20718 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1e51ebe2-c57d-5a2a-8421-1f6cbdf4003b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2110_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1239 1089 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2110_treatment5 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 12640 '-- mg '-- '-- '-- '-- 061c1c33-8156-4b61-b3f5-a53bba4bcddc '-- yes '-- '-- Chemotherapy +TCGA-OV 88180134-710f-46ea-9b06-5e5d860d6d9f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2110 56 false '-- '-- '-- '-- -20718 1354 f60176dd-6543-512c-8308-244afc979cf1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2110_demographic Dead '-- '-- '-- '-- 20718 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1e51ebe2-c57d-5a2a-8421-1f6cbdf4003b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2110_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 930 774 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2110_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3900 '-- mg '-- '-- '-- '-- 3d8f4d7d-d041-404a-90d8-584913dc75c3 '-- yes '-- '-- Chemotherapy +TCGA-OV 88180134-710f-46ea-9b06-5e5d860d6d9f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2110 56 false '-- '-- '-- '-- -20718 1354 f60176dd-6543-512c-8308-244afc979cf1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2110_demographic Dead '-- '-- '-- '-- 20718 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1e51ebe2-c57d-5a2a-8421-1f6cbdf4003b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2110_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- '-- 1263 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- 2.0 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2110_treatment '-- '-- '-- '-- '-- '-- Locoregional Site '-- 600 '-- cGy '-- '-- '-- '-- 40938b97-fc11-528c-8a13-07959e393c9c '-- yes '-- '-- Radiation, External Beam +TCGA-OV 88180134-710f-46ea-9b06-5e5d860d6d9f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2110 56 false '-- '-- '-- '-- -20718 1354 f60176dd-6543-512c-8308-244afc979cf1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2110_demographic Dead '-- '-- '-- '-- 20718 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1e51ebe2-c57d-5a2a-8421-1f6cbdf4003b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2110_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1089 979 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2110_treatment8 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 315 '-- mg '-- '-- '-- '-- 7f9aa3a3-16d8-4c88-9fc0-ce039d934fc9 '-- yes '-- '-- Chemotherapy +TCGA-OV 88180134-710f-46ea-9b06-5e5d860d6d9f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2110 56 false '-- '-- '-- '-- -20718 1354 f60176dd-6543-512c-8308-244afc979cf1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2110_demographic Dead '-- '-- '-- '-- 20718 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1e51ebe2-c57d-5a2a-8421-1f6cbdf4003b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2110_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 161 20 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2110_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2970 '-- mg '-- '-- '-- '-- 97dce764-9904-4d7b-97fb-c879f8e0b90e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 88180134-710f-46ea-9b06-5e5d860d6d9f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2110 56 false '-- '-- '-- '-- -20718 1354 f60176dd-6543-512c-8308-244afc979cf1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2110_demographic Dead '-- '-- '-- '-- 20718 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1e51ebe2-c57d-5a2a-8421-1f6cbdf4003b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2110_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 161 20 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2110_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1620 '-- mg '-- '-- '-- '-- a4816b18-2c87-4f70-9ab1-237148862c98 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 88180134-710f-46ea-9b06-5e5d860d6d9f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2110 56 false '-- '-- '-- '-- -20718 1354 f60176dd-6543-512c-8308-244afc979cf1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2110_demographic Dead '-- '-- '-- '-- 20718 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1e51ebe2-c57d-5a2a-8421-1f6cbdf4003b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2110_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 356 244 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-61-2110_treatment9 Recombinant Interleukin-2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c5760c5e-850e-41f9-9a95-df45bab256e2 '-- yes '-- '-- Immunotherapy (Including Vaccines) +TCGA-OV 88180134-710f-46ea-9b06-5e5d860d6d9f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2110 56 false '-- '-- '-- '-- -20718 1354 f60176dd-6543-512c-8308-244afc979cf1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2110_demographic Dead '-- '-- '-- '-- 20718 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1e51ebe2-c57d-5a2a-8421-1f6cbdf4003b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2110_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 770 661 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2110_treatment2 Topotecan '-- '-- '-- '-- '-- '-- '-- 28 '-- mg '-- '-- '-- '-- c74541b4-3e28-4a22-a505-46a3b339a937 '-- yes '-- '-- Chemotherapy +TCGA-OV 88180134-710f-46ea-9b06-5e5d860d6d9f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2110 56 false '-- '-- '-- '-- -20718 1354 f60176dd-6543-512c-8308-244afc979cf1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2110_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5823a3f1-8fb9-4607-9175-b719a03924c2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2110_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2110_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2110_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6296630e-1fb2-4cdf-890e-32a8b43bbc7e '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 88180134-710f-46ea-9b06-5e5d860d6d9f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2110 56 false '-- '-- '-- '-- -20718 1354 f60176dd-6543-512c-8308-244afc979cf1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2110_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5823a3f1-8fb9-4607-9175-b719a03924c2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2110_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2110_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2110_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c360096c-c3a7-47a4-86ea-5e84000a20a2 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 88180134-710f-46ea-9b06-5e5d860d6d9f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2110 56 false '-- '-- '-- '-- -20718 1354 f60176dd-6543-512c-8308-244afc979cf1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2110_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5823a3f1-8fb9-4607-9175-b719a03924c2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2110_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2110_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 213 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2110_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fe4dd639-7826-42a7-8948-903eb7c1a0a8 '-- yes '-- '-- Surgery, NOS +TCGA-OV 88180134-710f-46ea-9b06-5e5d860d6d9f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2110 56 false '-- '-- '-- '-- -20718 1354 f60176dd-6543-512c-8308-244afc979cf1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2110_demographic Dead '-- '-- '-- '-- 20931 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 213 '-- '-- '-- b833e360-58fb-4c11-bef6-8bbb69f57164 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2110_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2110_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2110_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 782e468c-fdf4-44ec-8e93-f8aa72cbf632 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 88180134-710f-46ea-9b06-5e5d860d6d9f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2110 56 false '-- '-- '-- '-- -20718 1354 f60176dd-6543-512c-8308-244afc979cf1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2110_demographic Dead '-- '-- '-- '-- 20931 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 213 '-- '-- '-- b833e360-58fb-4c11-bef6-8bbb69f57164 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2110_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2110_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2110_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 80508310-81eb-409a-be5a-b91471f911f3 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 88d61634-913c-435a-8d25-e019c8dab7da Informed Consent -9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1625 66 false '-- '-- '-- '-- -24298 840 06877d4c-0fbc-5556-8685-4c48593f955d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1625_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 18025cad-1326-4d81-bbe8-8b9f65a20653 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1625_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1625_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1625_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 073dbeb7-32c5-43bb-98ad-14fdce4c7620 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 88d61634-913c-435a-8d25-e019c8dab7da Informed Consent -9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1625 66 false '-- '-- '-- '-- -24298 840 06877d4c-0fbc-5556-8685-4c48593f955d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1625_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 18025cad-1326-4d81-bbe8-8b9f65a20653 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1625_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1625_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 545 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1625_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2cd9b2e9-cc94-4971-baab-54312fc9c91a '-- yes '-- '-- Surgery, NOS +TCGA-OV 88d61634-913c-435a-8d25-e019c8dab7da Informed Consent -9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1625 66 false '-- '-- '-- '-- -24298 840 06877d4c-0fbc-5556-8685-4c48593f955d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1625_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 18025cad-1326-4d81-bbe8-8b9f65a20653 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1625_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1625_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1625_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 60eea3af-76d1-4183-9bbe-c7e71ef5dbc9 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 88d61634-913c-435a-8d25-e019c8dab7da Informed Consent -9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1625 66 false '-- '-- '-- '-- -24298 840 06877d4c-0fbc-5556-8685-4c48593f955d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1625_demographic Dead '-- '-- '-- '-- 24298 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1f62e295-6408-55a9-935c-279bb362319e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1625_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1625_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4e9b9130-c642-4ba1-8a99-aa27c810d68d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 88d61634-913c-435a-8d25-e019c8dab7da Informed Consent -9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1625 66 false '-- '-- '-- '-- -24298 840 06877d4c-0fbc-5556-8685-4c48593f955d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1625_demographic Dead '-- '-- '-- '-- 24298 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1f62e295-6408-55a9-935c-279bb362319e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1625_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1625_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9eda4617-0d41-58fa-8c1d-7c3a837481f7 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 88d61634-913c-435a-8d25-e019c8dab7da Informed Consent -9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1625 66 false '-- '-- '-- '-- -24298 840 06877d4c-0fbc-5556-8685-4c48593f955d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1625_demographic Dead '-- '-- '-- '-- 24298 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1f62e295-6408-55a9-935c-279bb362319e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1625_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1625_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ca3bc6d2-c477-42ad-b79b-de0a4106f024 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 88d61634-913c-435a-8d25-e019c8dab7da Informed Consent -9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1625 66 false '-- '-- '-- '-- -24298 840 06877d4c-0fbc-5556-8685-4c48593f955d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1625_demographic Dead '-- '-- '-- '-- 24824 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 526 '-- '-- '-- 4420a8e4-a7dc-4c81-bdbd-c8258c9ff81b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1625_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1625_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1625_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1d19146f-b690-4e2c-8a89-13dfef4746b1 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 88d61634-913c-435a-8d25-e019c8dab7da Informed Consent -9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1625 66 false '-- '-- '-- '-- -24298 840 06877d4c-0fbc-5556-8685-4c48593f955d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1625_demographic Dead '-- '-- '-- '-- 24824 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 526 '-- '-- '-- 4420a8e4-a7dc-4c81-bdbd-c8258c9ff81b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1625_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1625_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1625_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- eaebf4a3-8d51-4dd2-8216-2984ab6546a3 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 8a98a6e6-b763-4824-858b-fd2738e6c9a3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1696 43 false '-- '-- '-- '-- -15818 1032 c51e54e0-2edf-5cdc-8ca8-6d6d57b1a6fc '-- not reported female '-- '-- '-- '-- white TCGA-29-1696_demographic Dead '-- '-- '-- '-- 16160 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 342 '-- '-- '-- 10c051ad-bab9-4c85-9865-8a7b74b60f7d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1696_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1696_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1696_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b9570236-582d-4d42-8cd5-47d5c9117e2c '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 8a98a6e6-b763-4824-858b-fd2738e6c9a3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1696 43 false '-- '-- '-- '-- -15818 1032 c51e54e0-2edf-5cdc-8ca8-6d6d57b1a6fc '-- not reported female '-- '-- '-- '-- white TCGA-29-1696_demographic Dead '-- '-- '-- '-- 16160 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 342 '-- '-- '-- 10c051ad-bab9-4c85-9865-8a7b74b60f7d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1696_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1696_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1696_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bafcfc13-228b-4e5a-bf7f-b824665c1d3e '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 8a98a6e6-b763-4824-858b-fd2738e6c9a3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1696 43 false '-- '-- '-- '-- -15818 1032 c51e54e0-2edf-5cdc-8ca8-6d6d57b1a6fc '-- not reported female '-- '-- '-- '-- white TCGA-29-1696_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 24e31861-d8e3-4e15-b53d-fa00516b8bd6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1696_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1696_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 454 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1696_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6bdff5f6-4121-431c-bfc5-b0aa3333dc9e '-- yes '-- '-- Surgery, NOS +TCGA-OV 8a98a6e6-b763-4824-858b-fd2738e6c9a3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1696 43 false '-- '-- '-- '-- -15818 1032 c51e54e0-2edf-5cdc-8ca8-6d6d57b1a6fc '-- not reported female '-- '-- '-- '-- white TCGA-29-1696_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 24e31861-d8e3-4e15-b53d-fa00516b8bd6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1696_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1696_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1696_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 96546ade-4c5a-43ea-bb43-7b01a52f4fb9 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 8a98a6e6-b763-4824-858b-fd2738e6c9a3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1696 43 false '-- '-- '-- '-- -15818 1032 c51e54e0-2edf-5cdc-8ca8-6d6d57b1a6fc '-- not reported female '-- '-- '-- '-- white TCGA-29-1696_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 24e31861-d8e3-4e15-b53d-fa00516b8bd6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1696_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1696_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1696_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b7b3edce-59e6-4a13-bf20-a3db5cd4a4b1 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 8a98a6e6-b763-4824-858b-fd2738e6c9a3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1696 43 false '-- '-- '-- '-- -15818 1032 c51e54e0-2edf-5cdc-8ca8-6d6d57b1a6fc '-- not reported female '-- '-- '-- '-- white TCGA-29-1696_demographic Dead '-- '-- '-- '-- 15818 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f5ff0990-b997-5fdd-801b-60df58027c40 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1696_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 997 948 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1696_treatment4 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 1305 '-- mg '-- '-- '-- '-- 06ff553d-472e-47c6-9ec4-4f4a95db0263 '-- yes '-- '-- Chemotherapy +TCGA-OV 8a98a6e6-b763-4824-858b-fd2738e6c9a3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1696 43 false '-- '-- '-- '-- -15818 1032 c51e54e0-2edf-5cdc-8ca8-6d6d57b1a6fc '-- not reported female '-- '-- '-- '-- white TCGA-29-1696_demographic Dead '-- '-- '-- '-- 15818 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f5ff0990-b997-5fdd-801b-60df58027c40 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1696_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 997 633 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1696_treatment6 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 660 '-- mg '-- '-- '-- '-- 3e6a37d9-c8d3-46c9-9446-f4df30c4f689 '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 8a98a6e6-b763-4824-858b-fd2738e6c9a3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1696 43 false '-- '-- '-- '-- -15818 1032 c51e54e0-2edf-5cdc-8ca8-6d6d57b1a6fc '-- not reported female '-- '-- '-- '-- white TCGA-29-1696_demographic Dead '-- '-- '-- '-- 15818 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f5ff0990-b997-5fdd-801b-60df58027c40 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1696_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 934 864 '-- '-- Progressive Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1696_treatment7 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 140 '-- mg '-- '-- '-- '-- 58f7c29e-fcc4-4763-85d6-8e1d5e1bc316 '-- yes '-- '-- Chemotherapy +TCGA-OV 8a98a6e6-b763-4824-858b-fd2738e6c9a3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1696 43 false '-- '-- '-- '-- -15818 1032 c51e54e0-2edf-5cdc-8ca8-6d6d57b1a6fc '-- not reported female '-- '-- '-- '-- white TCGA-29-1696_demographic Dead '-- '-- '-- '-- 15818 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f5ff0990-b997-5fdd-801b-60df58027c40 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1696_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 171 17 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1696_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2550 '-- mg '-- '-- '-- '-- 69800ea4-51dd-5371-ae98-68bd783855f1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8a98a6e6-b763-4824-858b-fd2738e6c9a3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1696 43 false '-- '-- '-- '-- -15818 1032 c51e54e0-2edf-5cdc-8ca8-6d6d57b1a6fc '-- not reported female '-- '-- '-- '-- white TCGA-29-1696_demographic Dead '-- '-- '-- '-- 15818 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f5ff0990-b997-5fdd-801b-60df58027c40 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1696_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 573 507 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1696_treatment5 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 8321 '-- mg '-- '-- '-- '-- 6eb8a526-6f7d-42b7-b134-19c5efada572 '-- yes '-- '-- Chemotherapy +TCGA-OV 8a98a6e6-b763-4824-858b-fd2738e6c9a3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1696 43 false '-- '-- '-- '-- -15818 1032 c51e54e0-2edf-5cdc-8ca8-6d6d57b1a6fc '-- not reported female '-- '-- '-- '-- white TCGA-29-1696_demographic Dead '-- '-- '-- '-- 15818 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f5ff0990-b997-5fdd-801b-60df58027c40 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1696_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 479 357 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1696_treatment8 Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 70 '-- mg '-- '-- '-- '-- 9ff477b1-7db5-4d01-a706-91367966203d '-- yes '-- '-- Chemotherapy +TCGA-OV 8a98a6e6-b763-4824-858b-fd2738e6c9a3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1696 43 false '-- '-- '-- '-- -15818 1032 c51e54e0-2edf-5cdc-8ca8-6d6d57b1a6fc '-- not reported female '-- '-- '-- '-- white TCGA-29-1696_demographic Dead '-- '-- '-- '-- 15818 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f5ff0990-b997-5fdd-801b-60df58027c40 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1696_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 171 17 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1696_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5472 '-- mg '-- '-- '-- '-- a28c5b2b-1b95-4ffc-9df8-a3fe0a425fb1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8a98a6e6-b763-4824-858b-fd2738e6c9a3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1696 43 false '-- '-- '-- '-- -15818 1032 c51e54e0-2edf-5cdc-8ca8-6d6d57b1a6fc '-- not reported female '-- '-- '-- '-- white TCGA-29-1696_demographic Dead '-- '-- '-- '-- 15818 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f5ff0990-b997-5fdd-801b-60df58027c40 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1696_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1696_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e364d5ca-a40d-47fc-80e9-04b901c99da3 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 8a98a6e6-b763-4824-858b-fd2738e6c9a3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1696 43 false '-- '-- '-- '-- -15818 1032 c51e54e0-2edf-5cdc-8ca8-6d6d57b1a6fc '-- not reported female '-- '-- '-- '-- white TCGA-29-1696_demographic Dead '-- '-- '-- '-- 15818 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f5ff0990-b997-5fdd-801b-60df58027c40 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1696_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 791 598 '-- '-- Progressive Disease '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1696_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- e7253a62-f845-4a16-b521-11235d6ac668 '-- yes '-- '-- Chemotherapy +TCGA-OV 8ac6ce06-ab50-4ab4-a469-9f8bf01be963 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1024 52 false '-- '-- '-- '-- -19052 '-- 83b2a085-d35c-5c1c-a5a5-d0125b3fc24d '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1024_demographic Alive '-- '-- '-- '-- 19052 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4daaa455-5886-55af-9373-8912838020b3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1024_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 304 13 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-23-1024_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 776 '-- mg '-- '-- '-- '-- 1ede6ca5-3de4-56d3-913b-e27419c8b222 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8ac6ce06-ab50-4ab4-a469-9f8bf01be963 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1024 52 false '-- '-- '-- '-- -19052 '-- 83b2a085-d35c-5c1c-a5a5-d0125b3fc24d '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1024_demographic Alive '-- '-- '-- '-- 19052 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4daaa455-5886-55af-9373-8912838020b3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1024_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 304 13 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-23-1024_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1608 '-- mg '-- '-- '-- '-- 367a6467-9d57-474c-9d25-c3121c3f17fe Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8ac6ce06-ab50-4ab4-a469-9f8bf01be963 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1024 52 false '-- '-- '-- '-- -19052 '-- 83b2a085-d35c-5c1c-a5a5-d0125b3fc24d '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1024_demographic Alive '-- '-- '-- '-- 19052 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4daaa455-5886-55af-9373-8912838020b3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1024_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1024_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a26bdbab-74a3-4ca0-bd54-116d24146c09 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 8ac6ce06-ab50-4ab4-a469-9f8bf01be963 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1024 52 false '-- '-- '-- '-- -19052 '-- 83b2a085-d35c-5c1c-a5a5-d0125b3fc24d '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1024_demographic Alive '-- '-- '-- '-- 19052 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4daaa455-5886-55af-9373-8912838020b3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1024_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 304 13 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-23-1024_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 541 '-- mg '-- '-- '-- '-- cb2efeb9-58c7-4790-99dd-66d2e496f353 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8ac6ce06-ab50-4ab4-a469-9f8bf01be963 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1024 52 false '-- '-- '-- '-- -19052 '-- 83b2a085-d35c-5c1c-a5a5-d0125b3fc24d '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1024_demographic Alive '-- '-- '-- '-- 19052 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4daaa455-5886-55af-9373-8912838020b3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1024_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 529 224 '-- '-- Not Reported '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1024_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2556 '-- mg '-- '-- '-- '-- cda2540c-6c06-40a4-a66c-754971058269 Consolidation Therapy yes '-- '-- Chemotherapy +TCGA-OV 8cad4217-5699-4735-9be3-fc0015a8d262 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0911 55 false '-- '-- '-- '-- -20276 1355 d9f04340-86d7-54c3-9770-ba6f4a98c85b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0911_demographic Dead '-- '-- '-- '-- 20555 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 279 '-- '-- '-- 145184d3-08d1-45ba-bf30-7912694cfb8d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0911_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0911_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 8cad4217-5699-4735-9be3-fc0015a8d262 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0911 55 false '-- '-- '-- '-- -20276 1355 d9f04340-86d7-54c3-9770-ba6f4a98c85b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0911_demographic Dead '-- '-- '-- '-- 20276 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 37459c7e-8694-5ed7-8555-422cb0f653b7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-13-0911_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 189 49 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0911_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 12b7e268-b1c5-484f-b7e9-96436700446b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8cad4217-5699-4735-9be3-fc0015a8d262 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0911 55 false '-- '-- '-- '-- -20276 1355 d9f04340-86d7-54c3-9770-ba6f4a98c85b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0911_demographic Dead '-- '-- '-- '-- 20276 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 37459c7e-8694-5ed7-8555-422cb0f653b7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-13-0911_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 189 49 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0911_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3842c585-4b74-5358-baef-56414520a21b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8cad4217-5699-4735-9be3-fc0015a8d262 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0911 55 false '-- '-- '-- '-- -20276 1355 d9f04340-86d7-54c3-9770-ba6f4a98c85b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0911_demographic Dead '-- '-- '-- '-- 20276 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 37459c7e-8694-5ed7-8555-422cb0f653b7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-13-0911_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0911_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 39da7a6a-b642-4304-a3d7-c03fe9b78dc9 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 8cad4217-5699-4735-9be3-fc0015a8d262 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0911 55 false '-- '-- '-- '-- -20276 1355 d9f04340-86d7-54c3-9770-ba6f4a98c85b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0911_demographic Dead '-- '-- '-- '-- 20555 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 279 '-- '-- '-- 425405f4-e6c7-47f7-9034-852058e9aedd false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0911_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0911_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0911_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2d091fc7-a5bb-4f77-b8b8-56fa4bfc7ce1 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 8cad4217-5699-4735-9be3-fc0015a8d262 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0911 55 false '-- '-- '-- '-- -20276 1355 d9f04340-86d7-54c3-9770-ba6f4a98c85b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0911_demographic Dead '-- '-- '-- '-- 20555 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 279 '-- '-- '-- 425405f4-e6c7-47f7-9034-852058e9aedd false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0911_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0911_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0911_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fa68aa33-17c7-45c8-9f34-ebf9556b6c7b '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 8e107f4b-1912-4d3e-814a-b863e2d65ed7 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1404 48 false '-- '-- '-- '-- -17784 '-- edf28ac0-2fef-5d14-9ecd-ff8a593fa717 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1404_demographic Alive '-- '-- '-- '-- 17784 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7b7eb1ba-bb1d-57b4-89e6-1c838f2f540e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1404_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 274 232 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-1404_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- 4997ac35-df51-529f-91be-802f4bedd7d2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8e107f4b-1912-4d3e-814a-b863e2d65ed7 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1404 48 false '-- '-- '-- '-- -17784 '-- edf28ac0-2fef-5d14-9ecd-ff8a593fa717 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1404_demographic Alive '-- '-- '-- '-- 17784 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7b7eb1ba-bb1d-57b4-89e6-1c838f2f540e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1404_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 156 50 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1404_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 91fb2cdc-b02e-4d4f-9e60-f2a9a0bf1761 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8e107f4b-1912-4d3e-814a-b863e2d65ed7 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1404 48 false '-- '-- '-- '-- -17784 '-- edf28ac0-2fef-5d14-9ecd-ff8a593fa717 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1404_demographic Alive '-- '-- '-- '-- 17784 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7b7eb1ba-bb1d-57b4-89e6-1c838f2f540e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1404_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1404_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c408657e-3d52-48be-9acb-6b93d1410642 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 8e107f4b-1912-4d3e-814a-b863e2d65ed7 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1404 48 false '-- '-- '-- '-- -17784 '-- edf28ac0-2fef-5d14-9ecd-ff8a593fa717 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1404_demographic Alive '-- '-- '-- '-- 17784 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7b7eb1ba-bb1d-57b4-89e6-1c838f2f540e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1404_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 156 50 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1404_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- d3a0df2f-68ec-4550-a144-c6c7c4e05896 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8e107f4b-1912-4d3e-814a-b863e2d65ed7 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1404 48 false '-- '-- '-- '-- -17784 '-- edf28ac0-2fef-5d14-9ecd-ff8a593fa717 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1404_demographic Alive '-- '-- '-- '-- 19365 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 1581 '-- '-- '-- e2eefe0e-8ef0-460b-ab65-4d6677bb7226 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1404_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1404_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 8e1b8811-1eb2-4337-852c-c19eaa0ee418 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1914 65 false '-- '-- '-- '-- -23850 '-- 2133f718-5c09-5c22-a386-00330e432c86 '-- not reported female '-- '-- '-- '-- not reported TCGA-61-1914_demographic Alive '-- '-- '-- '-- 25524 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1674 '-- '-- '-- 89709f38-3db6-4fd7-ba99-cf6a5b0cd01d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1914_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1914_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1914_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 65badab2-c2de-4ce2-bd79-24176e7bf331 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 8e1b8811-1eb2-4337-852c-c19eaa0ee418 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1914 65 false '-- '-- '-- '-- -23850 '-- 2133f718-5c09-5c22-a386-00330e432c86 '-- not reported female '-- '-- '-- '-- not reported TCGA-61-1914_demographic Alive '-- '-- '-- '-- 25524 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1674 '-- '-- '-- 89709f38-3db6-4fd7-ba99-cf6a5b0cd01d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1914_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1914_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1914_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e3498d5d-a409-4bc8-9b1a-3ec500b86323 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 8e1b8811-1eb2-4337-852c-c19eaa0ee418 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1914 65 false '-- '-- '-- '-- -23850 '-- 2133f718-5c09-5c22-a386-00330e432c86 '-- not reported female '-- '-- '-- '-- not reported TCGA-61-1914_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cc1fbf3d-08a2-4428-a9ba-6c59260e6f07 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1914_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1914_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1702 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1914_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 09b5b242-4d15-42ca-a026-45fbe1688dd8 '-- yes '-- '-- Surgery, NOS +TCGA-OV 8e1b8811-1eb2-4337-852c-c19eaa0ee418 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1914 65 false '-- '-- '-- '-- -23850 '-- 2133f718-5c09-5c22-a386-00330e432c86 '-- not reported female '-- '-- '-- '-- not reported TCGA-61-1914_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cc1fbf3d-08a2-4428-a9ba-6c59260e6f07 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1914_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1914_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1914_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 22fef897-fba4-43a2-8c2e-7d64fbc62a03 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 8e1b8811-1eb2-4337-852c-c19eaa0ee418 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1914 65 false '-- '-- '-- '-- -23850 '-- 2133f718-5c09-5c22-a386-00330e432c86 '-- not reported female '-- '-- '-- '-- not reported TCGA-61-1914_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cc1fbf3d-08a2-4428-a9ba-6c59260e6f07 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1914_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1914_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1914_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d2c4c2eb-a9ed-437b-abf9-b550d73b0352 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 8e1b8811-1eb2-4337-852c-c19eaa0ee418 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1914 65 false '-- '-- '-- '-- -23850 '-- 2133f718-5c09-5c22-a386-00330e432c86 '-- not reported female '-- '-- '-- '-- not reported TCGA-61-1914_demographic Alive '-- '-- '-- '-- 23850 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d601544b-eacc-5b79-b206-68fa1be8c0ac true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1914_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 193 22 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1914_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2400 '-- mg '-- '-- '-- '-- 31b7ef49-9e87-41f1-8561-df4290f3b475 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8e1b8811-1eb2-4337-852c-c19eaa0ee418 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1914 65 false '-- '-- '-- '-- -23850 '-- 2133f718-5c09-5c22-a386-00330e432c86 '-- not reported female '-- '-- '-- '-- not reported TCGA-61-1914_demographic Alive '-- '-- '-- '-- 23850 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d601544b-eacc-5b79-b206-68fa1be8c0ac true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1914_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 1673 1155 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1914_treatment2 Tamoxifen '-- '-- '-- '-- '-- '-- '-- 1030 '-- mg '-- '-- '-- '-- 776745fe-6083-402d-90ef-92a80e26b549 Adjuvant yes '-- '-- Hormone Therapy +TCGA-OV 8e1b8811-1eb2-4337-852c-c19eaa0ee418 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1914 65 false '-- '-- '-- '-- -23850 '-- 2133f718-5c09-5c22-a386-00330e432c86 '-- not reported female '-- '-- '-- '-- not reported TCGA-61-1914_demographic Alive '-- '-- '-- '-- 23850 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d601544b-eacc-5b79-b206-68fa1be8c0ac true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1914_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 1871 1753 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1914_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2580 '-- mg '-- '-- '-- '-- 86a7f280-58d0-4e2f-b7cf-2ce57da91cbb '-- yes '-- '-- Chemotherapy +TCGA-OV 8e1b8811-1eb2-4337-852c-c19eaa0ee418 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1914 65 false '-- '-- '-- '-- -23850 '-- 2133f718-5c09-5c22-a386-00330e432c86 '-- not reported female '-- '-- '-- '-- not reported TCGA-61-1914_demographic Alive '-- '-- '-- '-- 23850 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d601544b-eacc-5b79-b206-68fa1be8c0ac true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1914_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1914_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 901268b5-7f81-4bd6-8dc4-b59d974a03b2 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 8e1b8811-1eb2-4337-852c-c19eaa0ee418 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1914 65 false '-- '-- '-- '-- -23850 '-- 2133f718-5c09-5c22-a386-00330e432c86 '-- not reported female '-- '-- '-- '-- not reported TCGA-61-1914_demographic Alive '-- '-- '-- '-- 23850 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d601544b-eacc-5b79-b206-68fa1be8c0ac true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1914_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 1871 1753 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1914_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1890 '-- mg '-- '-- '-- '-- a40f6fba-f561-40d9-9922-5fc39ad8bcb4 '-- yes '-- '-- Chemotherapy +TCGA-OV 8e1b8811-1eb2-4337-852c-c19eaa0ee418 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1914 65 false '-- '-- '-- '-- -23850 '-- 2133f718-5c09-5c22-a386-00330e432c86 '-- not reported female '-- '-- '-- '-- not reported TCGA-61-1914_demographic Alive '-- '-- '-- '-- 23850 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d601544b-eacc-5b79-b206-68fa1be8c0ac true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1914_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 193 22 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1914_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 3360 '-- mg '-- '-- '-- '-- cdfd6ed8-89d3-5764-93ec-e05ccd6b4d7d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8fac8e40-beac-4059-9d54-7ee530598cfd Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1408 59 false '-- '-- '-- '-- -21635 1680 45f8a427-8d1d-5aae-b1f3-7f698c460b17 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1408_demographic Dead '-- '-- '-- '-- 21635 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8ea974b6-785e-5566-a7c3-61fc6c0fd914 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1408_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 201 152 '-- '-- '-- '-- '-- '-- '-- 3 '-- 75.0 mg/m2 '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-1408_treatment5 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 313de0f0-e7f6-42cf-b44b-b4e11c8a76ff Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8fac8e40-beac-4059-9d54-7ee530598cfd Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1408 59 false '-- '-- '-- '-- -21635 1680 45f8a427-8d1d-5aae-b1f3-7f698c460b17 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1408_demographic Dead '-- '-- '-- '-- 21635 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8ea974b6-785e-5566-a7c3-61fc6c0fd914 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1408_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 201 152 '-- '-- '-- '-- '-- '-- '-- 3 '-- 135.0 mg/m2 '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1408_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3bef52d7-95c1-4eaa-9e49-7aa31a18d798 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8fac8e40-beac-4059-9d54-7ee530598cfd Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1408 59 false '-- '-- '-- '-- -21635 1680 45f8a427-8d1d-5aae-b1f3-7f698c460b17 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1408_demographic Dead '-- '-- '-- '-- 21635 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8ea974b6-785e-5566-a7c3-61fc6c0fd914 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1408_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 91 8 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1408_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 8be8284b-3a48-4df2-ba42-f1a47f34e638 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8fac8e40-beac-4059-9d54-7ee530598cfd Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1408 59 false '-- '-- '-- '-- -21635 1680 45f8a427-8d1d-5aae-b1f3-7f698c460b17 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1408_demographic Dead '-- '-- '-- '-- 21635 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8ea974b6-785e-5566-a7c3-61fc6c0fd914 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1408_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1408_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 91890577-a9c7-4c47-bfc4-bbea6a3f22d2 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 8fac8e40-beac-4059-9d54-7ee530598cfd Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1408 59 false '-- '-- '-- '-- -21635 1680 45f8a427-8d1d-5aae-b1f3-7f698c460b17 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1408_demographic Dead '-- '-- '-- '-- 21635 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8ea974b6-785e-5566-a7c3-61fc6c0fd914 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1408_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 201 152 '-- '-- '-- '-- '-- '-- '-- 3 '-- 60.0 mg/m2 '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-1408_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a2186591-a57e-43f8-afdf-cd00a181db9c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8fac8e40-beac-4059-9d54-7ee530598cfd Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1408 59 false '-- '-- '-- '-- -21635 1680 45f8a427-8d1d-5aae-b1f3-7f698c460b17 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1408_demographic Dead '-- '-- '-- '-- 21635 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8ea974b6-785e-5566-a7c3-61fc6c0fd914 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1408_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 91 8 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1408_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- d62233c1-db6f-5c67-8080-81da1707a968 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8fac8e40-beac-4059-9d54-7ee530598cfd Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1408 59 false '-- '-- '-- '-- -21635 1680 45f8a427-8d1d-5aae-b1f3-7f698c460b17 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1408_demographic Dead '-- '-- '-- '-- 22400 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 765 '-- '-- '-- e7ea045b-9bee-4ac5-b137-af2500ab48c5 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1408_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1408_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 8fe44099-b313-4bfd-a94a-27e72f2a818c '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0766 42 false '-- '-- '-- '-- -15571 1725 e30ceb01-2a0d-5f44-bc94-3364ba25f4fc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0766_demographic Dead '-- '-- '-- '-- 16199 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 628 '-- '-- '-- 2fd3290b-6b2a-4fad-93e6-5a5e302a5d10 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0766_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0766_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 8fe44099-b313-4bfd-a94a-27e72f2a818c '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0766 42 false '-- '-- '-- '-- -15571 1725 e30ceb01-2a0d-5f44-bc94-3364ba25f4fc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0766_demographic Dead '-- '-- '-- '-- 16199 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 628 '-- '-- '-- 7db33138-2794-4640-bc89-1f80b6b18a55 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0766_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0766_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 8fe44099-b313-4bfd-a94a-27e72f2a818c '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0766 42 false '-- '-- '-- '-- -15571 1725 e30ceb01-2a0d-5f44-bc94-3364ba25f4fc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0766_demographic Dead '-- '-- '-- '-- 15571 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f8151830-32c5-5123-9995-74276a780df0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0766_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 182 '-- '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0766_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 01b57c69-17d6-41b4-a37c-2313fc72ef09 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8fe44099-b313-4bfd-a94a-27e72f2a818c '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0766 42 false '-- '-- '-- '-- -15571 1725 e30ceb01-2a0d-5f44-bc94-3364ba25f4fc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0766_demographic Dead '-- '-- '-- '-- 15571 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f8151830-32c5-5123-9995-74276a780df0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0766_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0766_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a2a52632-1831-541a-9c2c-efc2cc36edfa Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8fe44099-b313-4bfd-a94a-27e72f2a818c '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0766 42 false '-- '-- '-- '-- -15571 1725 e30ceb01-2a0d-5f44-bc94-3364ba25f4fc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0766_demographic Dead '-- '-- '-- '-- 15571 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f8151830-32c5-5123-9995-74276a780df0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0766_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 182 '-- '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0766_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 100 '-- mg/m2 '-- '-- '-- '-- ccead1c4-a6fe-41a8-a114-675d339b2231 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8fe44099-b313-4bfd-a94a-27e72f2a818c '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0766 42 false '-- '-- '-- '-- -15571 1725 e30ceb01-2a0d-5f44-bc94-3364ba25f4fc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0766_demographic Dead '-- '-- '-- '-- 15571 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f8151830-32c5-5123-9995-74276a780df0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0766_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0766_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d1828cb0-0306-4fdf-b5c4-1ac617159354 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 90f4b65c-cfd4-4066-a5b9-842885c172e2 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0727 71 false '-- '-- '-- '-- -26185 462 c607c1f9-1240-5281-9ad1-0481bf7a2684 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0727_demographic Dead '-- '-- '-- '-- 26438 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 253 '-- '-- '-- a279743b-f104-4e69-8432-8750d8765d6f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0727_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0727_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0727_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7d89e70b-1efb-470a-b2e4-35d1da51ef32 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 90f4b65c-cfd4-4066-a5b9-842885c172e2 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0727 71 false '-- '-- '-- '-- -26185 462 c607c1f9-1240-5281-9ad1-0481bf7a2684 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0727_demographic Dead '-- '-- '-- '-- 26438 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 253 '-- '-- '-- a279743b-f104-4e69-8432-8750d8765d6f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0727_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0727_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0727_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d963b702-856f-46ef-884d-cbb0ba348ffa '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 90f4b65c-cfd4-4066-a5b9-842885c172e2 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0727 71 false '-- '-- '-- '-- -26185 462 c607c1f9-1240-5281-9ad1-0481bf7a2684 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0727_demographic Dead '-- '-- '-- '-- 26185 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b8106532-5977-55ab-8efb-28955ed4a91a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0727_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 267 230 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0727_treatment3 Letrozole '-- '-- '-- '-- '-- '-- '-- 3 '-- mg '-- '-- '-- '-- 08d3a6e8-227b-49e6-913b-2d909d43fda9 Adjuvant yes '-- '-- Hormone Therapy +TCGA-OV 90f4b65c-cfd4-4066-a5b9-842885c172e2 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0727 71 false '-- '-- '-- '-- -26185 462 c607c1f9-1240-5281-9ad1-0481bf7a2684 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0727_demographic Dead '-- '-- '-- '-- 26185 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b8106532-5977-55ab-8efb-28955ed4a91a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0727_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0727_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2daf2787-14b6-4a69-a131-e6dacff36135 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 90f4b65c-cfd4-4066-a5b9-842885c172e2 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0727 71 false '-- '-- '-- '-- -26185 462 c607c1f9-1240-5281-9ad1-0481bf7a2684 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0727_demographic Dead '-- '-- '-- '-- 26185 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b8106532-5977-55ab-8efb-28955ed4a91a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0727_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 120 9 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0727_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 589ab6e4-4f58-560b-9045-b1c606466cfd Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 90f4b65c-cfd4-4066-a5b9-842885c172e2 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0727 71 false '-- '-- '-- '-- -26185 462 c607c1f9-1240-5281-9ad1-0481bf7a2684 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0727_demographic Dead '-- '-- '-- '-- 26185 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b8106532-5977-55ab-8efb-28955ed4a91a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0727_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 120 9 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0727_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 8a8b1532-60a3-4652-ab79-1db1f391d6a7 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 914d8613-3c25-4a10-be50-28b42f4d3a5d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1319 73 false '-- '-- '-- '-- -26786 1977 87285b0c-753a-5853-a163-2d40aeeb0262 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1319_demographic Dead '-- '-- '-- '-- 27516 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 730 '-- '-- '-- 9001f454-36ca-4f3b-a6ae-08560aa67cd9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1319_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1319_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1319_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7b186a2a-391e-4607-870a-6f7ad041b5d6 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 914d8613-3c25-4a10-be50-28b42f4d3a5d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1319 73 false '-- '-- '-- '-- -26786 1977 87285b0c-753a-5853-a163-2d40aeeb0262 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1319_demographic Dead '-- '-- '-- '-- 27516 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 730 '-- '-- '-- 9001f454-36ca-4f3b-a6ae-08560aa67cd9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1319_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1319_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1319_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f5cc86d7-c0ac-4599-a62c-91081ee10c5d '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 914d8613-3c25-4a10-be50-28b42f4d3a5d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1319 73 false '-- '-- '-- '-- -26786 1977 87285b0c-753a-5853-a163-2d40aeeb0262 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1319_demographic Dead '-- '-- '-- '-- 26786 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- db3baf3d-297f-5c6c-a175-b0c27145f449 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1319_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- 61 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1319_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5219254a-13ff-429d-8f81-8e59439cf46f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 914d8613-3c25-4a10-be50-28b42f4d3a5d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1319 73 false '-- '-- '-- '-- -26786 1977 87285b0c-753a-5853-a163-2d40aeeb0262 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1319_demographic Dead '-- '-- '-- '-- 26786 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- db3baf3d-297f-5c6c-a175-b0c27145f449 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1319_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1319_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 78620031-ed64-4c31-89c3-efac36048bd6 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 914d8613-3c25-4a10-be50-28b42f4d3a5d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1319 73 false '-- '-- '-- '-- -26786 1977 87285b0c-753a-5853-a163-2d40aeeb0262 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1319_demographic Dead '-- '-- '-- '-- 26786 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- db3baf3d-297f-5c6c-a175-b0c27145f449 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1319_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- 61 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1319_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 92fb3354-b375-5e12-8c52-9863d5367d02 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 914f84bf-578b-4f4d-93cb-378228ea58f6 Informed Consent -22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1505 63 false '-- '-- '-- '-- -23238 '-- b7362858-0e48-5035-9da1-763716901ea0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1505_demographic Alive '-- '-- '-- '-- 24799 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 1561 '-- '-- '-- 64dc1b15-7bae-4545-a667-bd90e4b2eeb2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1505_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1505_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 914f84bf-578b-4f4d-93cb-378228ea58f6 Informed Consent -22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1505 63 false '-- '-- '-- '-- -23238 '-- b7362858-0e48-5035-9da1-763716901ea0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1505_demographic Alive '-- '-- '-- '-- 23238 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- efcf95ec-a94c-5a40-9a69-0f895651d4f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1505_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 167 27 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1505_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 35293d0e-685a-4b30-b0e2-a7bbae794929 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 914f84bf-578b-4f4d-93cb-378228ea58f6 Informed Consent -22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1505 63 false '-- '-- '-- '-- -23238 '-- b7362858-0e48-5035-9da1-763716901ea0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1505_demographic Alive '-- '-- '-- '-- 23238 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- efcf95ec-a94c-5a40-9a69-0f895651d4f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1505_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 167 27 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-1505_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4bdc11e9-5d64-5fb2-bfc2-28406c6a80de Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 914f84bf-578b-4f4d-93cb-378228ea58f6 Informed Consent -22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1505 63 false '-- '-- '-- '-- -23238 '-- b7362858-0e48-5035-9da1-763716901ea0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1505_demographic Alive '-- '-- '-- '-- 23238 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- efcf95ec-a94c-5a40-9a69-0f895651d4f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1505_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 167 27 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-1505_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 58a72c6d-d0c6-4765-ae1e-35bb01a9673c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 914f84bf-578b-4f4d-93cb-378228ea58f6 Informed Consent -22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1505 63 false '-- '-- '-- '-- -23238 '-- b7362858-0e48-5035-9da1-763716901ea0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1505_demographic Alive '-- '-- '-- '-- 23238 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- efcf95ec-a94c-5a40-9a69-0f895651d4f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1505_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1505_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a8419e2c-908f-42cc-9af3-dfbdd0710023 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 91a17d40-c8cb-4cce-b306-966382a8fe4a Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2111 61 false '-- '-- '-- '-- -22517 '-- 207b7d58-3bbf-5097-98dd-b566c44fa826 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2111_demographic Alive '-- '-- '-- '-- 24722 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 2205 '-- '-- '-- 8fcbc3a2-069e-40fc-b3fb-4777a490176b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2111_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2111_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2111_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 023f5263-440a-4943-bd8a-8d2445e9aded '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 91a17d40-c8cb-4cce-b306-966382a8fe4a Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2111 61 false '-- '-- '-- '-- -22517 '-- 207b7d58-3bbf-5097-98dd-b566c44fa826 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2111_demographic Alive '-- '-- '-- '-- 24722 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 2205 '-- '-- '-- 8fcbc3a2-069e-40fc-b3fb-4777a490176b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2111_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2111_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2111_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5e1aff20-7959-49e0-a6ce-982965f33c82 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 91a17d40-c8cb-4cce-b306-966382a8fe4a Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2111 61 false '-- '-- '-- '-- -22517 '-- 207b7d58-3bbf-5097-98dd-b566c44fa826 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2111_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ac9314c1-f6c5-41c0-9a49-388b2ba4e904 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2111_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2111_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2232 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2111_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2f7fbfa4-dbd9-4d45-a219-13e790cba57d '-- yes '-- '-- Surgery, NOS +TCGA-OV 91a17d40-c8cb-4cce-b306-966382a8fe4a Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2111 61 false '-- '-- '-- '-- -22517 '-- 207b7d58-3bbf-5097-98dd-b566c44fa826 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2111_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ac9314c1-f6c5-41c0-9a49-388b2ba4e904 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2111_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2111_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2111_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8d26162f-d9fd-40c2-8b66-227343a8ec84 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 91a17d40-c8cb-4cce-b306-966382a8fe4a Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2111 61 false '-- '-- '-- '-- -22517 '-- 207b7d58-3bbf-5097-98dd-b566c44fa826 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2111_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ac9314c1-f6c5-41c0-9a49-388b2ba4e904 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2111_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2111_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2111_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cb284f16-cae0-4d65-9fab-75232df7df3a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 91a17d40-c8cb-4cce-b306-966382a8fe4a Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2111 61 false '-- '-- '-- '-- -22517 '-- 207b7d58-3bbf-5097-98dd-b566c44fa826 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2111_demographic Alive '-- '-- '-- '-- 22517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- cfac89b4-e306-5fa3-8441-559631390575 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2111_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 3165 3079 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2111_treatment8 Cisplatin '-- '-- '-- '-- '-- '-- '-- 512 '-- mg '-- '-- '-- '-- 253ab76a-2b8d-41c4-b608-a607885aa2b4 '-- yes '-- '-- Chemotherapy +TCGA-OV 91a17d40-c8cb-4cce-b306-966382a8fe4a Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2111 61 false '-- '-- '-- '-- -22517 '-- 207b7d58-3bbf-5097-98dd-b566c44fa826 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2111_demographic Alive '-- '-- '-- '-- 22517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- cfac89b4-e306-5fa3-8441-559631390575 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2111_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2111_treatment10 Medroxyprogesterone Acetate '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3facee2d-a84d-41fe-8271-99fcab8751a9 '-- yes '-- '-- Hormone Therapy +TCGA-OV 91a17d40-c8cb-4cce-b306-966382a8fe4a Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2111 61 false '-- '-- '-- '-- -22517 '-- 207b7d58-3bbf-5097-98dd-b566c44fa826 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2111_demographic Alive '-- '-- '-- '-- 22517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- cfac89b4-e306-5fa3-8441-559631390575 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2111_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2111_treatment3 Megestrol Acetate '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 493eec16-c469-460d-ae33-5b2e1b651b65 Adjuvant yes '-- '-- Hormone Therapy +TCGA-OV 91a17d40-c8cb-4cce-b306-966382a8fe4a Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2111 61 false '-- '-- '-- '-- -22517 '-- 207b7d58-3bbf-5097-98dd-b566c44fa826 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2111_demographic Alive '-- '-- '-- '-- 22517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- cfac89b4-e306-5fa3-8441-559631390575 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2111_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- '-- 3808 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2111_treatment9 Bevacizumab '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5130713d-b0a7-4ca7-930f-b72b23a19a58 '-- yes '-- '-- Chemotherapy +TCGA-OV 91a17d40-c8cb-4cce-b306-966382a8fe4a Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2111 61 false '-- '-- '-- '-- -22517 '-- 207b7d58-3bbf-5097-98dd-b566c44fa826 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2111_demographic Alive '-- '-- '-- '-- 22517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- cfac89b4-e306-5fa3-8441-559631390575 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2111_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2373 2268 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2111_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c45ea76e-86d9-4f44-ba62-0c348f18a351 '-- yes '-- '-- Chemotherapy +TCGA-OV 91a17d40-c8cb-4cce-b306-966382a8fe4a Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2111 61 false '-- '-- '-- '-- -22517 '-- 207b7d58-3bbf-5097-98dd-b566c44fa826 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2111_demographic Alive '-- '-- '-- '-- 22517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- cfac89b4-e306-5fa3-8441-559631390575 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2111_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 3165 3079 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2111_treatment4 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 4000 '-- mg '-- '-- '-- '-- c96507a2-7079-48a3-a6e4-a94563fab955 '-- yes '-- '-- Chemotherapy +TCGA-OV 91a17d40-c8cb-4cce-b306-966382a8fe4a Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2111 61 false '-- '-- '-- '-- -22517 '-- 207b7d58-3bbf-5097-98dd-b566c44fa826 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2111_demographic Alive '-- '-- '-- '-- 22517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- cfac89b4-e306-5fa3-8441-559631390575 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2111_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2111_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d2e7729b-b01c-46b4-b510-afafab8967f7 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 91a17d40-c8cb-4cce-b306-966382a8fe4a Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2111 61 false '-- '-- '-- '-- -22517 '-- 207b7d58-3bbf-5097-98dd-b566c44fa826 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2111_demographic Alive '-- '-- '-- '-- 22517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- cfac89b4-e306-5fa3-8441-559631390575 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2111_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2373 2268 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2111_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d5b17729-b280-4805-93fd-aa8c7e651fb9 '-- yes '-- '-- Chemotherapy +TCGA-OV 91a17d40-c8cb-4cce-b306-966382a8fe4a Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2111 61 false '-- '-- '-- '-- -22517 '-- 207b7d58-3bbf-5097-98dd-b566c44fa826 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2111_demographic Alive '-- '-- '-- '-- 22517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- cfac89b4-e306-5fa3-8441-559631390575 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2111_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 133 29 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2111_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3400 '-- mg '-- '-- '-- '-- d6a31b72-3b86-49ae-b6c2-08bf9bab28c4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 91a17d40-c8cb-4cce-b306-966382a8fe4a Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2111 61 false '-- '-- '-- '-- -22517 '-- 207b7d58-3bbf-5097-98dd-b566c44fa826 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2111_demographic Alive '-- '-- '-- '-- 22517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- cfac89b4-e306-5fa3-8441-559631390575 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2111_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- '-- 3808 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2111_treatment Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dffd8615-b8f5-5ae6-a72a-d6641b0a4c28 '-- yes '-- '-- Chemotherapy +TCGA-OV 91a17d40-c8cb-4cce-b306-966382a8fe4a Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2111 61 false '-- '-- '-- '-- -22517 '-- 207b7d58-3bbf-5097-98dd-b566c44fa826 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2111_demographic Alive '-- '-- '-- '-- 22517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- cfac89b4-e306-5fa3-8441-559631390575 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2111_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 133 29 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2111_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1500 '-- mg '-- '-- '-- '-- ec6bfd30-a082-4df6-941c-ceb69fccb9a3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 91de8a74-a1e6-46b6-a06e-70aedf2c3eaf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0886 67 false '-- '-- '-- '-- -24724 '-- 144fbbef-2227-5cdd-8e21-22114001fe47 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0886_demographic Alive '-- '-- '-- '-- 24724 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e3734193-eac9-5df2-9f6d-dfa735dee27b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0886_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 132 12 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0886_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0692cbb4-fb9a-5464-9bb4-3ca610e4a304 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 91de8a74-a1e6-46b6-a06e-70aedf2c3eaf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0886 67 false '-- '-- '-- '-- -24724 '-- 144fbbef-2227-5cdd-8e21-22114001fe47 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0886_demographic Alive '-- '-- '-- '-- 24724 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e3734193-eac9-5df2-9f6d-dfa735dee27b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0886_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0886_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c46dd1de-870b-49be-a77a-701e898b56a6 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 91de8a74-a1e6-46b6-a06e-70aedf2c3eaf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0886 67 false '-- '-- '-- '-- -24724 '-- 144fbbef-2227-5cdd-8e21-22114001fe47 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0886_demographic Alive '-- '-- '-- '-- 24724 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e3734193-eac9-5df2-9f6d-dfa735dee27b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0886_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 132 12 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0886_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dfc15fde-6a4c-4438-8751-110973b2b55b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 91de8a74-a1e6-46b6-a06e-70aedf2c3eaf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0886 67 false '-- '-- '-- '-- -24724 '-- 144fbbef-2227-5cdd-8e21-22114001fe47 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0886_demographic Alive '-- '-- '-- '-- 24724 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e3734193-eac9-5df2-9f6d-dfa735dee27b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0886_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 263 221 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0886_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- eedc03b0-9a57-4ab6-9bc0-05e12aba4261 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 92badeb5-a50e-4a62-a67e-6a8a59c948ab Informed Consent 33 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1341 85 false '-- '-- '-- '-- -31215 '-- a6a82dbe-deda-5ed3-81b8-4300e0617345 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1341_demographic Alive '-- '-- '-- '-- 31215 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 20316fd4-aca7-57fa-9966-4076874a372f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1341_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1341_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0d68a73c-3842-5432-bb95-10b03c23f67f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 93095c36-2263-438f-a619-a4a4d6ae13c7 Informed Consent -31 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1911 55 false '-- '-- '-- '-- -20144 '-- da682e41-52c5-5a4f-b12c-62a7252a9929 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1911_demographic Alive '-- '-- '-- '-- 20988 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 844 '-- '-- '-- 0bdff29a-883c-4ffc-9bf5-fa92962c59b7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1911_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1911_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1911_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0afdf7f3-e918-453e-a1ce-f15b84d870c9 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 93095c36-2263-438f-a619-a4a4d6ae13c7 Informed Consent -31 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1911 55 false '-- '-- '-- '-- -20144 '-- da682e41-52c5-5a4f-b12c-62a7252a9929 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1911_demographic Alive '-- '-- '-- '-- 20988 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 844 '-- '-- '-- 0bdff29a-883c-4ffc-9bf5-fa92962c59b7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1911_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1911_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1911_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 52d3122a-c4c7-44ba-8745-8391360e018e '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 93095c36-2263-438f-a619-a4a4d6ae13c7 Informed Consent -31 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1911 55 false '-- '-- '-- '-- -20144 '-- da682e41-52c5-5a4f-b12c-62a7252a9929 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1911_demographic Alive '-- '-- '-- '-- 20144 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2fe15ad8-1c35-5513-a742-928b7ffa9166 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1911_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 144 34 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1911_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 4650 '-- mg '-- '-- '-- '-- 1bdabded-cf7f-5dda-a880-89807b805126 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 93095c36-2263-438f-a619-a4a4d6ae13c7 Informed Consent -31 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1911 55 false '-- '-- '-- '-- -20144 '-- da682e41-52c5-5a4f-b12c-62a7252a9929 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1911_demographic Alive '-- '-- '-- '-- 20144 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2fe15ad8-1c35-5513-a742-928b7ffa9166 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1911_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 1432 1306 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1911_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5700 '-- mg '-- '-- '-- '-- 28433e90-82aa-41d9-9040-362b8b03b96d '-- yes '-- '-- Chemotherapy +TCGA-OV 93095c36-2263-438f-a619-a4a4d6ae13c7 Informed Consent -31 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1911 55 false '-- '-- '-- '-- -20144 '-- da682e41-52c5-5a4f-b12c-62a7252a9929 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1911_demographic Alive '-- '-- '-- '-- 20144 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2fe15ad8-1c35-5513-a742-928b7ffa9166 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1911_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 1432 1306 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1911_treatment4 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 9800 '-- mg '-- '-- '-- '-- 31bbc1e5-a38e-4852-b15d-432c155ed96d '-- yes '-- '-- Chemotherapy +TCGA-OV 93095c36-2263-438f-a619-a4a4d6ae13c7 Informed Consent -31 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1911 55 false '-- '-- '-- '-- -20144 '-- da682e41-52c5-5a4f-b12c-62a7252a9929 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1911_demographic Alive '-- '-- '-- '-- 20144 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2fe15ad8-1c35-5513-a742-928b7ffa9166 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1911_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 998 893 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1911_treatment5 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 8400 '-- mg '-- '-- '-- '-- 31c945fe-d804-4bbc-8065-b0fc00548b11 '-- yes '-- '-- Chemotherapy +TCGA-OV 93095c36-2263-438f-a619-a4a4d6ae13c7 Informed Consent -31 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1911 55 false '-- '-- '-- '-- -20144 '-- da682e41-52c5-5a4f-b12c-62a7252a9929 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1911_demographic Alive '-- '-- '-- '-- 20144 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2fe15ad8-1c35-5513-a742-928b7ffa9166 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1911_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 144 34 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1911_treatment7 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1710 '-- mg '-- '-- '-- '-- 6259fb7c-76ba-4ec2-90d7-5481c03fc296 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 93095c36-2263-438f-a619-a4a4d6ae13c7 Informed Consent -31 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1911 55 false '-- '-- '-- '-- -20144 '-- da682e41-52c5-5a4f-b12c-62a7252a9929 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1911_demographic Alive '-- '-- '-- '-- 20144 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2fe15ad8-1c35-5513-a742-928b7ffa9166 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1911_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 1432 1306 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1911_treatment6 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 500 '-- mg '-- '-- '-- '-- 69079724-fcf1-4ec2-8e45-9c20ad0c3b18 '-- yes '-- '-- Chemotherapy +TCGA-OV 93095c36-2263-438f-a619-a4a4d6ae13c7 Informed Consent -31 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1911 55 false '-- '-- '-- '-- -20144 '-- da682e41-52c5-5a4f-b12c-62a7252a9929 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1911_demographic Alive '-- '-- '-- '-- 20144 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2fe15ad8-1c35-5513-a742-928b7ffa9166 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1911_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 998 893 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1911_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3000 '-- mg '-- '-- '-- '-- 6fd560b6-66c5-4044-aa1a-1e2c4e50c377 '-- yes '-- '-- Chemotherapy +TCGA-OV 93095c36-2263-438f-a619-a4a4d6ae13c7 Informed Consent -31 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1911 55 false '-- '-- '-- '-- -20144 '-- da682e41-52c5-5a4f-b12c-62a7252a9929 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1911_demographic Alive '-- '-- '-- '-- 20144 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2fe15ad8-1c35-5513-a742-928b7ffa9166 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1911_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1911_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b8841e37-416c-4ae2-ac41-e3c286643a1f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 93095c36-2263-438f-a619-a4a4d6ae13c7 Informed Consent -31 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1911 55 false '-- '-- '-- '-- -20144 '-- da682e41-52c5-5a4f-b12c-62a7252a9929 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1911_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a381a1f4-48fc-4e25-9e3d-62315781a0c2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1911_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1911_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1911_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5da1aa23-846b-4f1d-ba2b-ecc355be3cda '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 93095c36-2263-438f-a619-a4a4d6ae13c7 Informed Consent -31 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1911 55 false '-- '-- '-- '-- -20144 '-- da682e41-52c5-5a4f-b12c-62a7252a9929 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1911_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a381a1f4-48fc-4e25-9e3d-62315781a0c2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1911_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1911_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1911_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ecccb33a-2f34-4198-9c6a-5ffe3b9377b3 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 93095c36-2263-438f-a619-a4a4d6ae13c7 Informed Consent -31 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1911 55 false '-- '-- '-- '-- -20144 '-- da682e41-52c5-5a4f-b12c-62a7252a9929 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1911_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a381a1f4-48fc-4e25-9e3d-62315781a0c2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1911_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1911_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 855 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1911_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- eeda84ad-9aaa-48a8-9d7a-b8a7fefe1265 '-- yes '-- '-- Surgery, NOS +TCGA-OV 931738a7-4b5b-46dc-b69f-72600862d8af Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1995 43 false '-- '-- '-- '-- -16016 '-- 53fc8603-b3cd-55a5-9034-1c63bbb7089d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1995_demographic Alive '-- '-- '-- '-- 16016 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5a7c82bd-5460-53e5-8b52-19d8586a011c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1995_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 132 67 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-1995_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1311 '-- mg '-- '-- '-- '-- 44ecbbb3-e9b5-519e-b19b-991a0d510db2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 931738a7-4b5b-46dc-b69f-72600862d8af Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1995 43 false '-- '-- '-- '-- -16016 '-- 53fc8603-b3cd-55a5-9034-1c63bbb7089d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1995_demographic Alive '-- '-- '-- '-- 16016 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5a7c82bd-5460-53e5-8b52-19d8586a011c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1995_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 132 67 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-1995_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 3202 '-- mg '-- '-- '-- '-- 9d8a776f-5b5b-4df5-9523-0dca2707872c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 931738a7-4b5b-46dc-b69f-72600862d8af Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1995 43 false '-- '-- '-- '-- -16016 '-- 53fc8603-b3cd-55a5-9034-1c63bbb7089d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1995_demographic Alive '-- '-- '-- '-- 16016 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5a7c82bd-5460-53e5-8b52-19d8586a011c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1995_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1995_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fe5d9fab-0f07-480b-828a-b38d9f3656e0 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 933dbfbd-4697-403e-bd73-c17cb300c94b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0927 65 false '-- '-- '-- '-- -23982 2490 76e6cd60-baff-5f8f-8ad0-ad492278a8ef '-- hispanic or latino female '-- '-- '-- '-- not reported TCGA-10-0927_demographic Dead '-- '-- '-- '-- 24983 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1001 '-- '-- '-- 192ddbac-4c56-418c-b705-345d5e1a5f09 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0927_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0927_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0927_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5e4bbf04-ad3e-4ce6-9227-83be3c61e5e1 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 933dbfbd-4697-403e-bd73-c17cb300c94b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0927 65 false '-- '-- '-- '-- -23982 2490 76e6cd60-baff-5f8f-8ad0-ad492278a8ef '-- hispanic or latino female '-- '-- '-- '-- not reported TCGA-10-0927_demographic Dead '-- '-- '-- '-- 24983 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1001 '-- '-- '-- 192ddbac-4c56-418c-b705-345d5e1a5f09 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0927_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0927_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0927_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 935ac982-f3e8-4831-8995-0e978c7613eb '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 933dbfbd-4697-403e-bd73-c17cb300c94b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0927 65 false '-- '-- '-- '-- -23982 2490 76e6cd60-baff-5f8f-8ad0-ad492278a8ef '-- hispanic or latino female '-- '-- '-- '-- not reported TCGA-10-0927_demographic Dead '-- '-- '-- '-- 23982 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9d23ef93-61ea-5258-8397-89ab16148670 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0927_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0927_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 54b01e4c-38bb-4c35-be4a-fd789aa1de2f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 933dbfbd-4697-403e-bd73-c17cb300c94b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0927 65 false '-- '-- '-- '-- -23982 2490 76e6cd60-baff-5f8f-8ad0-ad492278a8ef '-- hispanic or latino female '-- '-- '-- '-- not reported TCGA-10-0927_demographic Dead '-- '-- '-- '-- 23982 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9d23ef93-61ea-5258-8397-89ab16148670 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0927_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 2463 2330 '-- '-- Progressive Disease '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0927_treatment8 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 9920 '-- mg/m2 '-- '-- '-- '-- 597ba309-deed-4d06-9c15-543ba6a8329c Not Reported yes '-- '-- Chemotherapy +TCGA-OV 933dbfbd-4697-403e-bd73-c17cb300c94b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0927 65 false '-- '-- '-- '-- -23982 2490 76e6cd60-baff-5f8f-8ad0-ad492278a8ef '-- hispanic or latino female '-- '-- '-- '-- not reported TCGA-10-0927_demographic Dead '-- '-- '-- '-- 23982 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9d23ef93-61ea-5258-8397-89ab16148670 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0927_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1910 1686 '-- '-- Progressive Disease '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0927_treatment7 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2320 '-- mg/m2 '-- '-- '-- '-- 5b35b123-3778-4a06-b3fe-51050d6fd59c Not Reported yes '-- '-- Chemotherapy +TCGA-OV 933dbfbd-4697-403e-bd73-c17cb300c94b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0927 65 false '-- '-- '-- '-- -23982 2490 76e6cd60-baff-5f8f-8ad0-ad492278a8ef '-- hispanic or latino female '-- '-- '-- '-- not reported TCGA-10-0927_demographic Dead '-- '-- '-- '-- 23982 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9d23ef93-61ea-5258-8397-89ab16148670 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0927_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1686 1601 '-- '-- Progressive Disease '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0927_treatment Anastrozole '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- 791b367f-dd3b-5eb2-b122-0109685f2baf Not Reported yes '-- '-- Chemotherapy +TCGA-OV 933dbfbd-4697-403e-bd73-c17cb300c94b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0927 65 false '-- '-- '-- '-- -23982 2490 76e6cd60-baff-5f8f-8ad0-ad492278a8ef '-- hispanic or latino female '-- '-- '-- '-- not reported TCGA-10-0927_demographic Dead '-- '-- '-- '-- 23982 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9d23ef93-61ea-5258-8397-89ab16148670 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0927_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 121 9 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0927_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1800 '-- mg/m2 '-- '-- '-- '-- ad5023c8-e0c2-4406-a380-7ca75b5321d3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 933dbfbd-4697-403e-bd73-c17cb300c94b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0927 65 false '-- '-- '-- '-- -23982 2490 76e6cd60-baff-5f8f-8ad0-ad492278a8ef '-- hispanic or latino female '-- '-- '-- '-- not reported TCGA-10-0927_demographic Dead '-- '-- '-- '-- 23982 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9d23ef93-61ea-5258-8397-89ab16148670 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0927_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1301 1017 '-- '-- Progressive Disease '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0927_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5400 '-- mg/m2 '-- '-- '-- '-- c40afc39-24ca-4734-8b73-9f35b4e411fd Not Reported yes '-- '-- Chemotherapy +TCGA-OV 933dbfbd-4697-403e-bd73-c17cb300c94b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0927 65 false '-- '-- '-- '-- -23982 2490 76e6cd60-baff-5f8f-8ad0-ad492278a8ef '-- hispanic or latino female '-- '-- '-- '-- not reported TCGA-10-0927_demographic Dead '-- '-- '-- '-- 23982 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9d23ef93-61ea-5258-8397-89ab16148670 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0927_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1640 1336 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0927_treatment2 Tamoxifen '-- '-- '-- '-- '-- '-- '-- 12000 '-- mg/m2 '-- '-- '-- '-- d85df58e-2384-4049-be54-0db0326542e1 Not Reported yes '-- '-- Hormone Therapy +TCGA-OV 933dbfbd-4697-403e-bd73-c17cb300c94b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0927 65 false '-- '-- '-- '-- -23982 2490 76e6cd60-baff-5f8f-8ad0-ad492278a8ef '-- hispanic or latino female '-- '-- '-- '-- not reported TCGA-10-0927_demographic Dead '-- '-- '-- '-- 23982 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9d23ef93-61ea-5258-8397-89ab16148670 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0927_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 121 9 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0927_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2940 '-- mg/m2 '-- '-- '-- '-- dac2c6de-c22f-4fad-9d15-992f16273661 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 933dbfbd-4697-403e-bd73-c17cb300c94b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0927 65 false '-- '-- '-- '-- -23982 2490 76e6cd60-baff-5f8f-8ad0-ad492278a8ef '-- hispanic or latino female '-- '-- '-- '-- not reported TCGA-10-0927_demographic Dead '-- '-- '-- '-- 23982 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9d23ef93-61ea-5258-8397-89ab16148670 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0927_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 2302 1938 '-- '-- Progressive Disease '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0927_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 845 '-- mg/m2 '-- '-- '-- '-- f1d78508-1992-4180-9b38-0b205d048480 Not Reported yes '-- '-- Chemotherapy +TCGA-OV 94030805-8beb-441a-af73-11a80768edb5 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1684 51 false '-- '-- '-- '-- -18755 '-- 833acdb5-f0ce-5046-aec5-6eea25c5d804 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1684_demographic Alive '-- '-- '-- '-- 18755 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 86651736-aa3a-555d-bf96-24285ca73665 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1684_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 120 42 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-20-1684_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- 068da2d4-5175-46df-a1c3-2d794b2162ca Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 94030805-8beb-441a-af73-11a80768edb5 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1684 51 false '-- '-- '-- '-- -18755 '-- 833acdb5-f0ce-5046-aec5-6eea25c5d804 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1684_demographic Alive '-- '-- '-- '-- 18755 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 86651736-aa3a-555d-bf96-24285ca73665 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1684_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-20-1684_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 20cb2500-82ae-4381-b735-975e481ca0bd Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 94030805-8beb-441a-af73-11a80768edb5 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1684 51 false '-- '-- '-- '-- -18755 '-- 833acdb5-f0ce-5046-aec5-6eea25c5d804 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1684_demographic Alive '-- '-- '-- '-- 18755 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 86651736-aa3a-555d-bf96-24285ca73665 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1684_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 120 42 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-20-1684_treatment Bevacizumab '-- '-- '-- '-- '-- '-- '-- 15 '-- mg/kg '-- '-- '-- '-- c7c50ae4-9741-5409-a0a1-8dcaade070b8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 94030805-8beb-441a-af73-11a80768edb5 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1684 51 false '-- '-- '-- '-- -18755 '-- 833acdb5-f0ce-5046-aec5-6eea25c5d804 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1684_demographic Alive '-- '-- '-- '-- 18755 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 86651736-aa3a-555d-bf96-24285ca73665 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1684_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 120 42 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-20-1684_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- febef6ff-9a3f-418a-bf43-a22c802c3afb Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9446e349-71e6-455a-aa8f-53ec96597146 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0933 77 false '-- '-- '-- '-- -28433 446 5dcb5210-ad8c-5ee3-806a-4305cfba74e6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-10-0933_demographic Dead '-- '-- '-- '-- 28789 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 356 '-- '-- '-- a6373a41-1101-4772-adde-27ef75b65d91 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0933_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0933_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0933_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d9d6478a-2222-4019-baf8-2fc8b60ae52f '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 9446e349-71e6-455a-aa8f-53ec96597146 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0933 77 false '-- '-- '-- '-- -28433 446 5dcb5210-ad8c-5ee3-806a-4305cfba74e6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-10-0933_demographic Dead '-- '-- '-- '-- 28789 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 356 '-- '-- '-- a6373a41-1101-4772-adde-27ef75b65d91 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0933_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0933_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0933_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dfe4658d-2ae6-4203-a047-8edb7cfbcea6 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 9446e349-71e6-455a-aa8f-53ec96597146 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0933 77 false '-- '-- '-- '-- -28433 446 5dcb5210-ad8c-5ee3-806a-4305cfba74e6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-10-0933_demographic Dead '-- '-- '-- '-- 28433 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c1a0ef23-5337-5624-91ed-fca9c7b85f47 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0933_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 132 20 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0933_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 2160 '-- mg/m2 '-- '-- '-- '-- 23a22951-5b42-5c90-ba99-ce22fc046fbc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9446e349-71e6-455a-aa8f-53ec96597146 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0933 77 false '-- '-- '-- '-- -28433 446 5dcb5210-ad8c-5ee3-806a-4305cfba74e6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-10-0933_demographic Dead '-- '-- '-- '-- 28433 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c1a0ef23-5337-5624-91ed-fca9c7b85f47 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0933_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0933_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 84953146-1caf-4446-9116-34937d19dddb Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 9446e349-71e6-455a-aa8f-53ec96597146 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0933 77 false '-- '-- '-- '-- -28433 446 5dcb5210-ad8c-5ee3-806a-4305cfba74e6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-10-0933_demographic Dead '-- '-- '-- '-- 28433 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c1a0ef23-5337-5624-91ed-fca9c7b85f47 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0933_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 132 20 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0933_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1740 '-- mg/m2 '-- '-- '-- '-- aa039703-5580-4eda-91e8-a520c8dd6dcc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 94769f2c-b6fd-48ec-af34-b41165340b7c Informed Consent 524 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1769 40 false '-- '-- '-- '-- -14754 '-- c864bf04-f19e-53ae-98dc-29cf75ba37fe '-- not reported female '-- '-- '-- '-- white TCGA-29-1769_demographic Alive '-- '-- '-- '-- 14754 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4a6c3210-bd6e-5fed-aa66-cd78f1e21390 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1769_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 150 42 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1769_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 300 '-- mg '-- '-- '-- '-- 11936ff0-0e52-5af1-a590-7c1e25af2352 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 94769f2c-b6fd-48ec-af34-b41165340b7c Informed Consent 524 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1769 40 false '-- '-- '-- '-- -14754 '-- c864bf04-f19e-53ae-98dc-29cf75ba37fe '-- not reported female '-- '-- '-- '-- white TCGA-29-1769_demographic Alive '-- '-- '-- '-- 14754 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4a6c3210-bd6e-5fed-aa66-cd78f1e21390 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1769_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 150 42 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1769_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 130 '-- mg '-- '-- '-- '-- 910ba2b0-dfcc-46af-b8dc-5603b1dc9218 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 94769f2c-b6fd-48ec-af34-b41165340b7c Informed Consent 524 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1769 40 false '-- '-- '-- '-- -14754 '-- c864bf04-f19e-53ae-98dc-29cf75ba37fe '-- not reported female '-- '-- '-- '-- white TCGA-29-1769_demographic Alive '-- '-- '-- '-- 14754 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4a6c3210-bd6e-5fed-aa66-cd78f1e21390 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1769_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 20 20 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1769_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 870 '-- mg '-- '-- '-- '-- 97f5198b-cc51-41b4-ab93-ad8d2d5de6d8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 94769f2c-b6fd-48ec-af34-b41165340b7c Informed Consent 524 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1769 40 false '-- '-- '-- '-- -14754 '-- c864bf04-f19e-53ae-98dc-29cf75ba37fe '-- not reported female '-- '-- '-- '-- white TCGA-29-1769_demographic Alive '-- '-- '-- '-- 14754 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4a6c3210-bd6e-5fed-aa66-cd78f1e21390 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1769_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 20 20 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1769_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 318 '-- mg '-- '-- '-- '-- a375b584-9e4b-4c2e-8d2d-c5fdefc33e5a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 94769f2c-b6fd-48ec-af34-b41165340b7c Informed Consent 524 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1769 40 false '-- '-- '-- '-- -14754 '-- c864bf04-f19e-53ae-98dc-29cf75ba37fe '-- not reported female '-- '-- '-- '-- white TCGA-29-1769_demographic Alive '-- '-- '-- '-- 14754 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4a6c3210-bd6e-5fed-aa66-cd78f1e21390 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1769_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1769_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e6215bfb-caa8-4697-a8e0-599a27bcbbd3 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 94769f2c-b6fd-48ec-af34-b41165340b7c Informed Consent 524 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1769 40 false '-- '-- '-- '-- -14754 '-- c864bf04-f19e-53ae-98dc-29cf75ba37fe '-- not reported female '-- '-- '-- '-- white TCGA-29-1769_demographic Alive '-- '-- '-- '-- 14754 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4a6c3210-bd6e-5fed-aa66-cd78f1e21390 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1769_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 206 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1769_treatment5 Clinical Trial '-- '-- '-- '-- '-- '-- '-- 2 '-- mg '-- '-- '-- '-- fdc977d7-73fe-4ecd-95d2-c6f56bbc6487 Adjuvant yes Treatment Ongoing '-- Immunotherapy (Including Vaccines) +TCGA-OV 94bd4c68-4bfc-4db3-9365-97c867747133 Informed Consent 564 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1682 56 false '-- '-- '-- '-- -20583 '-- 785a428f-fce0-5477-84d9-dc65a0af2908 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1682_demographic Alive '-- '-- '-- '-- 20583 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 72df9e88-9c14-5df0-820e-182c1459f906 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1682_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-20-1682_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 057e42e5-4576-46fd-8318-5d78b6e5c7a6 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 94bd4c68-4bfc-4db3-9365-97c867747133 Informed Consent 564 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1682 56 false '-- '-- '-- '-- -20583 '-- 785a428f-fce0-5477-84d9-dc65a0af2908 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1682_demographic Alive '-- '-- '-- '-- 20583 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 72df9e88-9c14-5df0-820e-182c1459f906 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1682_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 145 40 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-1682_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 95b68bc0-4a89-4341-9f78-e02db9e2d625 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 94bd4c68-4bfc-4db3-9365-97c867747133 Informed Consent 564 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1682 56 false '-- '-- '-- '-- -20583 '-- 785a428f-fce0-5477-84d9-dc65a0af2908 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1682_demographic Alive '-- '-- '-- '-- 20583 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 72df9e88-9c14-5df0-820e-182c1459f906 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1682_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 145 40 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-1682_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- fae81cac-35fa-5817-832b-5b69dac21bfc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 94efd4f9-69b0-4efa-8a0c-61106e898fdd Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1849 80 false '-- '-- '-- '-- -29555 '-- 35b4552b-9d9c-59d1-bd1e-e5f0dc255a48 '-- not reported female '-- '-- '-- '-- white TCGA-24-1849_demographic Alive '-- '-- '-- '-- 29555 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 70ebbaef-4c30-53d2-8f0e-d3492ba1c271 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1849_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 141 36 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1849_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- 696 '-- mg '-- '-- '-- '-- 208bbd86-f85c-5a19-b579-739ad05a310c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 94efd4f9-69b0-4efa-8a0c-61106e898fdd Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1849 80 false '-- '-- '-- '-- -29555 '-- 35b4552b-9d9c-59d1-bd1e-e5f0dc255a48 '-- not reported female '-- '-- '-- '-- white TCGA-24-1849_demographic Alive '-- '-- '-- '-- 29555 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 70ebbaef-4c30-53d2-8f0e-d3492ba1c271 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1849_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 141 36 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1849_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3306 '-- mg '-- '-- '-- '-- a772ac55-c808-4a2d-a01b-e61a8ef45be2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 94efd4f9-69b0-4efa-8a0c-61106e898fdd Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1849 80 false '-- '-- '-- '-- -29555 '-- 35b4552b-9d9c-59d1-bd1e-e5f0dc255a48 '-- not reported female '-- '-- '-- '-- white TCGA-24-1849_demographic Alive '-- '-- '-- '-- 29555 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 70ebbaef-4c30-53d2-8f0e-d3492ba1c271 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1849_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1849_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e4302081-8c41-438f-b0a3-1e7c8c33d546 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 955c80be-53df-4565-9303-a7abf96a2f81 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1329 76 false '-- '-- '-- '-- -28093 457 3300031e-8802-584a-9af4-d00c691a2330 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1329_demographic Dead '-- '-- '-- '-- 28093 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 728d06d8-6ccd-5a53-90a6-cb4107824d5a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1329_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1329_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 94eb5635-bcdc-5024-98a0-919a48c5108e Adjuvant yes Not Reported '-- Pharmaceutical Therapy, NOS +TCGA-OV 95e58015-a7c0-4bdc-bf64-7617d24d0784 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0970 63 false '-- '-- '-- '-- -23276 354 9338f958-a412-5c8f-8b5e-944eec93124c '-- not reported female '-- '-- '-- '-- white TCGA-24-0970_demographic Dead '-- '-- '-- '-- 23276 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7d9442c7-a63d-5d58-9578-78601010e061 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0970_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 314 25 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0970_treatment Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 152 '-- mg/m2 '-- '-- '-- '-- 338e74f4-bc2c-58ab-aad9-ba361960dc59 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 95e58015-a7c0-4bdc-bf64-7617d24d0784 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0970 63 false '-- '-- '-- '-- -23276 354 9338f958-a412-5c8f-8b5e-944eec93124c '-- not reported female '-- '-- '-- '-- white TCGA-24-0970_demographic Dead '-- '-- '-- '-- 23276 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7d9442c7-a63d-5d58-9578-78601010e061 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0970_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 314 25 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0970_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1980 '-- mg/m2 '-- '-- '-- '-- 53397cb3-f49c-4279-afb6-c87fb23d7b01 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 95e58015-a7c0-4bdc-bf64-7617d24d0784 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0970 63 false '-- '-- '-- '-- -23276 354 9338f958-a412-5c8f-8b5e-944eec93124c '-- not reported female '-- '-- '-- '-- white TCGA-24-0970_demographic Dead '-- '-- '-- '-- 23276 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7d9442c7-a63d-5d58-9578-78601010e061 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0970_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 314 25 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0970_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3840 '-- mg/m2 '-- '-- '-- '-- a14096cd-db50-4ae4-aa95-3730c785f366 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 95e58015-a7c0-4bdc-bf64-7617d24d0784 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0970 63 false '-- '-- '-- '-- -23276 354 9338f958-a412-5c8f-8b5e-944eec93124c '-- not reported female '-- '-- '-- '-- white TCGA-24-0970_demographic Dead '-- '-- '-- '-- 23276 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7d9442c7-a63d-5d58-9578-78601010e061 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0970_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-0970_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e5d4254f-e95d-4be0-9150-113af951dd24 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 95e58015-a7c0-4bdc-bf64-7617d24d0784 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0970 63 false '-- '-- '-- '-- -23276 354 9338f958-a412-5c8f-8b5e-944eec93124c '-- not reported female '-- '-- '-- '-- white TCGA-24-0970_demographic Dead '-- '-- '-- '-- 23556 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 280 '-- '-- '-- d84ff476-d2ee-4724-b1fd-0630dc6d58f2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-0970_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-0970_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-0970_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1879fdf7-0a33-48a2-9a4e-2f18fa0392b5 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 95e58015-a7c0-4bdc-bf64-7617d24d0784 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0970 63 false '-- '-- '-- '-- -23276 354 9338f958-a412-5c8f-8b5e-944eec93124c '-- not reported female '-- '-- '-- '-- white TCGA-24-0970_demographic Dead '-- '-- '-- '-- 23556 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 280 '-- '-- '-- d84ff476-d2ee-4724-b1fd-0630dc6d58f2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-0970_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-0970_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-0970_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3c3c70a6-debd-4ffb-b696-dd31cace460e '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 97ad0360-3be4-401a-a94c-7f2800a1b519 Informed Consent 1932 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2280 74 false '-- '-- '-- '-- -27356 '-- 20c0c7cf-6af3-503b-bf45-29229f4e17cb '-- not reported female '-- '-- '-- '-- white TCGA-24-2280_demographic Alive '-- '-- '-- '-- 27356 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1d5b60d6-7bc9-56ad-8e82-0acd994fd1c7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2280_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 178 17 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2280_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4240 '-- mg '-- '-- '-- '-- 00f18966-19bf-4f66-bd94-8a889b9f3e23 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 97ad0360-3be4-401a-a94c-7f2800a1b519 Informed Consent 1932 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2280 74 false '-- '-- '-- '-- -27356 '-- 20c0c7cf-6af3-503b-bf45-29229f4e17cb '-- not reported female '-- '-- '-- '-- white TCGA-24-2280_demographic Alive '-- '-- '-- '-- 27356 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1d5b60d6-7bc9-56ad-8e82-0acd994fd1c7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2280_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2280_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 12b0dc40-8c01-4beb-9c49-a3f43511c067 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 97ad0360-3be4-401a-a94c-7f2800a1b519 Informed Consent 1932 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2280 74 false '-- '-- '-- '-- -27356 '-- 20c0c7cf-6af3-503b-bf45-29229f4e17cb '-- not reported female '-- '-- '-- '-- white TCGA-24-2280_demographic Alive '-- '-- '-- '-- 27356 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1d5b60d6-7bc9-56ad-8e82-0acd994fd1c7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2280_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 178 17 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2280_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2248 '-- mg '-- '-- '-- '-- 317d070b-4f4b-58cf-a8e0-83c2f5517b93 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 97ad0360-3be4-401a-a94c-7f2800a1b519 Informed Consent 1932 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2280 74 false '-- '-- '-- '-- -27356 '-- 20c0c7cf-6af3-503b-bf45-29229f4e17cb '-- not reported female '-- '-- '-- '-- white TCGA-24-2280_demographic Alive '-- '-- '-- '-- 27356 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1d5b60d6-7bc9-56ad-8e82-0acd994fd1c7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2280_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 178 17 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2280_treatment6 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 192 '-- mg '-- '-- '-- '-- 623239dc-8767-4b5a-bb24-4a7d2225be47 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 97ad0360-3be4-401a-a94c-7f2800a1b519 Informed Consent 1932 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2280 74 false '-- '-- '-- '-- -27356 '-- 20c0c7cf-6af3-503b-bf45-29229f4e17cb '-- not reported female '-- '-- '-- '-- white TCGA-24-2280_demographic Alive '-- '-- '-- '-- 27356 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1d5b60d6-7bc9-56ad-8e82-0acd994fd1c7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2280_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 766 538 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2280_treatment2 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 478 '-- mg '-- '-- '-- '-- 77baa340-c0f0-47dc-aa58-6479d01a71c0 '-- yes '-- '-- Chemotherapy +TCGA-OV 97ad0360-3be4-401a-a94c-7f2800a1b519 Informed Consent 1932 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2280 74 false '-- '-- '-- '-- -27356 '-- 20c0c7cf-6af3-503b-bf45-29229f4e17cb '-- not reported female '-- '-- '-- '-- white TCGA-24-2280_demographic Alive '-- '-- '-- '-- 27356 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1d5b60d6-7bc9-56ad-8e82-0acd994fd1c7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2280_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1025 906 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2280_treatment3 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 58 '-- mg '-- '-- '-- '-- 92b795a0-2b7d-4952-a96c-59e08c6c170a '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 97ad0360-3be4-401a-a94c-7f2800a1b519 Informed Consent 1932 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2280 74 false '-- '-- '-- '-- -27356 '-- 20c0c7cf-6af3-503b-bf45-29229f4e17cb '-- not reported female '-- '-- '-- '-- white TCGA-24-2280_demographic Alive '-- '-- '-- '-- 27356 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1d5b60d6-7bc9-56ad-8e82-0acd994fd1c7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2280_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1025 906 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2280_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2882 '-- mg '-- '-- '-- '-- ccbc86b5-cfac-4cc5-b4f9-2b61302f750a '-- yes '-- '-- Chemotherapy +TCGA-OV 97ad0360-3be4-401a-a94c-7f2800a1b519 Informed Consent 1932 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2280 74 false '-- '-- '-- '-- -27356 '-- 20c0c7cf-6af3-503b-bf45-29229f4e17cb '-- not reported female '-- '-- '-- '-- white TCGA-24-2280_demographic Alive '-- '-- '-- '-- 27356 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1d5b60d6-7bc9-56ad-8e82-0acd994fd1c7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2280_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1025 906 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2280_treatment7 Docetaxel '-- '-- '-- '-- '-- '-- '-- 599 '-- mg '-- '-- '-- '-- dc6c6634-72cb-4c81-a537-2c9f6e5ec355 '-- yes '-- '-- Chemotherapy +TCGA-OV 97ad0360-3be4-401a-a94c-7f2800a1b519 Informed Consent 1932 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2280 74 false '-- '-- '-- '-- -27356 '-- 20c0c7cf-6af3-503b-bf45-29229f4e17cb '-- not reported female '-- '-- '-- '-- white TCGA-24-2280_demographic Alive '-- '-- '-- '-- 27891 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 535 '-- '-- '-- 25bb2c1f-bd7a-47b2-83e0-4e0a57563323 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2280_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2280_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2280_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 17d12632-ee79-4a91-9182-0e853f4db4df '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 97ad0360-3be4-401a-a94c-7f2800a1b519 Informed Consent 1932 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2280 74 false '-- '-- '-- '-- -27356 '-- 20c0c7cf-6af3-503b-bf45-29229f4e17cb '-- not reported female '-- '-- '-- '-- white TCGA-24-2280_demographic Alive '-- '-- '-- '-- 27891 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 535 '-- '-- '-- 25bb2c1f-bd7a-47b2-83e0-4e0a57563323 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2280_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2280_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2280_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5667a243-e399-4a26-a6fe-86b00758b083 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- 21805 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 512 '-- '-- '-- 50af2a05-8c9b-465e-a3b3-8d7c2c8125e1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2267_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2267_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2267_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3fcadb7a-715f-4433-9f82-aac5ee801aa9 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- 21805 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 512 '-- '-- '-- 50af2a05-8c9b-465e-a3b3-8d7c2c8125e1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2267_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2267_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2267_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7afc0f1c-f514-4a92-a84e-076781fc7fe8 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- 21293 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9e118376-2d24-5552-a922-a86dbf96b389 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2267_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 793 580 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2267_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2524 '-- mg '-- '-- '-- '-- 237386b5-5d72-4c63-9e02-a58da8e64d2e '-- yes '-- '-- Chemotherapy +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- 21293 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9e118376-2d24-5552-a922-a86dbf96b389 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2267_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 1332 1172 '-- '-- Progressive Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2267_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 375 '-- mg '-- '-- '-- '-- 490f0fe4-4932-4472-a589-3ed7e58617ee '-- yes '-- '-- Chemotherapy +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- 21293 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9e118376-2d24-5552-a922-a86dbf96b389 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2267_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 219 6 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2267_treatment10 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5570 '-- mg '-- '-- '-- '-- 57a88dc1-81cb-4291-89bb-ece4593c13b8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- 21293 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9e118376-2d24-5552-a922-a86dbf96b389 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2267_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 219 6 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2267_treatment7 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 7740 '-- mg '-- '-- '-- '-- 58025fcb-0faa-40c1-b22c-6266f241495e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- 21293 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9e118376-2d24-5552-a922-a86dbf96b389 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2267_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 1332 1172 '-- '-- Progressive Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2267_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 375 '-- mg '-- '-- '-- '-- 7a69a86c-305c-4aae-9d72-8368f548c262 '-- yes '-- '-- Chemotherapy +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- 21293 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9e118376-2d24-5552-a922-a86dbf96b389 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2267_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 1011 1011 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2267_treatment6 Topotecan '-- '-- '-- '-- '-- '-- '-- 2 '-- mg '-- '-- '-- '-- b4cae68d-f562-4f3f-a57f-76f305e85d17 '-- yes '-- '-- Chemotherapy +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- 21293 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9e118376-2d24-5552-a922-a86dbf96b389 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2267_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 1332 1172 '-- '-- Progressive Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2267_treatment8 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2302 '-- mg '-- '-- '-- '-- bac77b9e-06c5-43ff-9110-28dda02eb16b '-- yes '-- '-- Chemotherapy +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- 21293 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9e118376-2d24-5552-a922-a86dbf96b389 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2267_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2267_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cae1f44c-c712-4679-a876-c63f3b196666 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- 21293 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9e118376-2d24-5552-a922-a86dbf96b389 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2267_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 997 983 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2267_treatment5 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- 145 '-- mg '-- '-- '-- '-- d0106220-2260-421b-892a-3e4ddd91e092 '-- yes '-- '-- Chemotherapy +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- 21293 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9e118376-2d24-5552-a922-a86dbf96b389 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2267_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 1381 1347 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2267_treatment11 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 4560 '-- mg '-- '-- '-- '-- d394acca-7509-47f7-ac93-7a04e8e3e5ad '-- yes '-- '-- Chemotherapy +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- 21293 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9e118376-2d24-5552-a922-a86dbf96b389 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2267_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 946 827 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-2267_treatment9 Altretamine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d762fcf3-8f9f-45be-b077-1d15a046a05a '-- yes '-- '-- Chemotherapy +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- 21293 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9e118376-2d24-5552-a922-a86dbf96b389 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2267_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 793 580 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2267_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 836 '-- mg '-- '-- '-- '-- d930659d-707a-5a63-8b9a-af729088c26b '-- yes '-- '-- Chemotherapy +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cd865e0f-23bd-471f-bc81-ed7de95dea60 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2267_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2267_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 955 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2267_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8c2c4e23-4170-46ad-a0ea-794c34e18e69 '-- yes '-- '-- Surgery, NOS +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cd865e0f-23bd-471f-bc81-ed7de95dea60 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2267_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2267_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2267_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cd460502-b17c-4e58-ae55-adc432020023 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cd865e0f-23bd-471f-bc81-ed7de95dea60 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2267_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2267_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2267_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f439ed76-dc7a-417a-a8bc-1e3eb60655cb '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 9a30dee8-962a-49db-a85a-c39515c91b68 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0979 53 false '-- '-- '-- '-- -19595 1264 267cae75-6ddd-5309-979e-1fa1196aa5e1 '-- not reported female '-- '-- '-- '-- white TCGA-24-0979_demographic Dead '-- '-- '-- '-- 19595 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 600bf167-5408-5802-8f4b-f20f53e15337 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0979_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 187 15 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0979_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6e1068a3-cbd6-4e5d-8275-7d4f3fdc7613 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9a30dee8-962a-49db-a85a-c39515c91b68 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0979 53 false '-- '-- '-- '-- -19595 1264 267cae75-6ddd-5309-979e-1fa1196aa5e1 '-- not reported female '-- '-- '-- '-- white TCGA-24-0979_demographic Dead '-- '-- '-- '-- 19595 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 600bf167-5408-5802-8f4b-f20f53e15337 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0979_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 357 338 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- 14.0 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-0979_treatment '-- '-- '-- '-- '-- '-- Distant Site '-- 3500 '-- cGy '-- '-- '-- '-- a25fada3-32e0-5ee1-99b3-944dedf07040 '-- yes '-- '-- Radiation, External Beam +TCGA-OV 9a30dee8-962a-49db-a85a-c39515c91b68 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0979 53 false '-- '-- '-- '-- -19595 1264 267cae75-6ddd-5309-979e-1fa1196aa5e1 '-- not reported female '-- '-- '-- '-- white TCGA-24-0979_demographic Dead '-- '-- '-- '-- 19595 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 600bf167-5408-5802-8f4b-f20f53e15337 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0979_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 187 15 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0979_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fb6fd474-6ac1-480d-8506-abbb96cfd429 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9a30dee8-962a-49db-a85a-c39515c91b68 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0979 53 false '-- '-- '-- '-- -19595 1264 267cae75-6ddd-5309-979e-1fa1196aa5e1 '-- not reported female '-- '-- '-- '-- white TCGA-24-0979_demographic Dead '-- '-- '-- '-- 20023 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 428 '-- '-- '-- eb721e6d-cc56-45f2-9e96-7a1ebdadd800 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-0979_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-0979_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-0979_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 42489f65-12c1-4b48-9405-affadad3c0d1 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 9a30dee8-962a-49db-a85a-c39515c91b68 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0979 53 false '-- '-- '-- '-- -19595 1264 267cae75-6ddd-5309-979e-1fa1196aa5e1 '-- not reported female '-- '-- '-- '-- white TCGA-24-0979_demographic Dead '-- '-- '-- '-- 20023 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 428 '-- '-- '-- eb721e6d-cc56-45f2-9e96-7a1ebdadd800 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-0979_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-0979_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-0979_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d35f7858-a75f-4d2e-b157-e23eb045af13 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 9af2248a-d86a-4277-93b4-8eba5a39bd3c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2254 66 false '-- '-- '-- '-- -24407 1736 430d063a-f24e-5702-a4b9-2a5bef151ce1 '-- not reported female '-- '-- '-- '-- white TCGA-24-2254_demographic Dead '-- '-- '-- '-- 24407 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a00f2045-a1f8-5198-8f98-26c7090ec6c5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2254_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2254_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 15219a22-a150-4453-bff0-e148dca1ede1 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 9af2248a-d86a-4277-93b4-8eba5a39bd3c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2254 66 false '-- '-- '-- '-- -24407 1736 430d063a-f24e-5702-a4b9-2a5bef151ce1 '-- not reported female '-- '-- '-- '-- white TCGA-24-2254_demographic Dead '-- '-- '-- '-- 24407 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a00f2045-a1f8-5198-8f98-26c7090ec6c5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2254_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 1112 984 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2254_treatment Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 16000 '-- mg '-- '-- '-- '-- 4c61d397-260b-583f-bb65-98f9b8feb433 '-- yes '-- '-- Chemotherapy +TCGA-OV 9af2248a-d86a-4277-93b4-8eba5a39bd3c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2254 66 false '-- '-- '-- '-- -24407 1736 430d063a-f24e-5702-a4b9-2a5bef151ce1 '-- not reported female '-- '-- '-- '-- white TCGA-24-2254_demographic Dead '-- '-- '-- '-- 24407 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a00f2045-a1f8-5198-8f98-26c7090ec6c5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2254_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 718 615 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2254_treatment6 Docetaxel '-- '-- '-- '-- '-- '-- '-- 780 '-- mg '-- '-- '-- '-- 666ebfe1-d2ac-4a6c-9fc6-506f28fa8944 '-- yes '-- '-- Chemotherapy +TCGA-OV 9af2248a-d86a-4277-93b4-8eba5a39bd3c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2254 66 false '-- '-- '-- '-- -24407 1736 430d063a-f24e-5702-a4b9-2a5bef151ce1 '-- not reported female '-- '-- '-- '-- white TCGA-24-2254_demographic Dead '-- '-- '-- '-- 24407 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a00f2045-a1f8-5198-8f98-26c7090ec6c5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2254_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 165 17 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2254_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3000 '-- mg '-- '-- '-- '-- afc21889-eb6a-44c5-9835-f91a19e2b74c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9af2248a-d86a-4277-93b4-8eba5a39bd3c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2254 66 false '-- '-- '-- '-- -24407 1736 430d063a-f24e-5702-a4b9-2a5bef151ce1 '-- not reported female '-- '-- '-- '-- white TCGA-24-2254_demographic Dead '-- '-- '-- '-- 24407 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a00f2045-a1f8-5198-8f98-26c7090ec6c5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2254_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 165 17 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2254_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 233 '-- mg '-- '-- '-- '-- c34cb944-dbaa-43ba-92de-97dc684335c0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9af2248a-d86a-4277-93b4-8eba5a39bd3c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2254 66 false '-- '-- '-- '-- -24407 1736 430d063a-f24e-5702-a4b9-2a5bef151ce1 '-- not reported female '-- '-- '-- '-- white TCGA-24-2254_demographic Dead '-- '-- '-- '-- 24407 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a00f2045-a1f8-5198-8f98-26c7090ec6c5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2254_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 165 17 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2254_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2717 '-- mg '-- '-- '-- '-- d018894e-b817-452c-abcd-21b4c912aca1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9af2248a-d86a-4277-93b4-8eba5a39bd3c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2254 66 false '-- '-- '-- '-- -24407 1736 430d063a-f24e-5702-a4b9-2a5bef151ce1 '-- not reported female '-- '-- '-- '-- white TCGA-24-2254_demographic Dead '-- '-- '-- '-- 24407 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a00f2045-a1f8-5198-8f98-26c7090ec6c5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2254_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 1112 984 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2254_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4630 '-- mg '-- '-- '-- '-- e736f1fd-a3fd-418b-9e29-6283ec1ba5c4 '-- yes '-- '-- Chemotherapy +TCGA-OV 9af2248a-d86a-4277-93b4-8eba5a39bd3c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2254 66 false '-- '-- '-- '-- -24407 1736 430d063a-f24e-5702-a4b9-2a5bef151ce1 '-- not reported female '-- '-- '-- '-- white TCGA-24-2254_demographic Dead '-- '-- '-- '-- 24407 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a00f2045-a1f8-5198-8f98-26c7090ec6c5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2254_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 718 615 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2254_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2765 '-- mg '-- '-- '-- '-- f9a7a3de-b48c-4f06-84d3-049d8ecf434e '-- yes '-- '-- Chemotherapy +TCGA-OV 9af2248a-d86a-4277-93b4-8eba5a39bd3c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2254 66 false '-- '-- '-- '-- -24407 1736 430d063a-f24e-5702-a4b9-2a5bef151ce1 '-- not reported female '-- '-- '-- '-- white TCGA-24-2254_demographic Dead '-- '-- '-- '-- 25013 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 606 '-- '-- '-- bbe276b4-3eaa-42a2-98df-f5bd62181259 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2254_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2254_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2254_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 08851920-59ed-4be7-8ec1-3f04fc29099e '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 9af2248a-d86a-4277-93b4-8eba5a39bd3c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2254 66 false '-- '-- '-- '-- -24407 1736 430d063a-f24e-5702-a4b9-2a5bef151ce1 '-- not reported female '-- '-- '-- '-- white TCGA-24-2254_demographic Dead '-- '-- '-- '-- 25013 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 606 '-- '-- '-- bbe276b4-3eaa-42a2-98df-f5bd62181259 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2254_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2254_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2254_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f6f0f386-8271-4820-88f2-fa07fdcf4a4d '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 9bbc01b4-056c-4ddc-aca4-ff20718646d0 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0367 67 false '-- '-- '-- '-- -24473 547 51e8191f-bc19-5752-94b7-b3a4ea24578f '-- not hispanic or latino female '-- '-- '-- '-- native hawaiian or other pacific islander TCGA-09-0367_demographic Dead '-- '-- '-- '-- 24473 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3b0fadff-1eaa-5a35-9045-24288b57a3dd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-0367_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 92 9 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-0367_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 17e9db1b-f599-449d-8a45-f82c0a6874f2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9bbc01b4-056c-4ddc-aca4-ff20718646d0 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0367 67 false '-- '-- '-- '-- -24473 547 51e8191f-bc19-5752-94b7-b3a4ea24578f '-- not hispanic or latino female '-- '-- '-- '-- native hawaiian or other pacific islander TCGA-09-0367_demographic Dead '-- '-- '-- '-- 24473 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3b0fadff-1eaa-5a35-9045-24288b57a3dd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-0367_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 92 9 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-0367_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 468cac62-c860-5e8f-b4b0-f22c7544080f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9bbc01b4-056c-4ddc-aca4-ff20718646d0 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0367 67 false '-- '-- '-- '-- -24473 547 51e8191f-bc19-5752-94b7-b3a4ea24578f '-- not hispanic or latino female '-- '-- '-- '-- native hawaiian or other pacific islander TCGA-09-0367_demographic Dead '-- '-- '-- '-- 24473 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3b0fadff-1eaa-5a35-9045-24288b57a3dd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-0367_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-0367_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7e1961d7-4312-4248-aa61-4efae22f6697 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 9bbc01b4-056c-4ddc-aca4-ff20718646d0 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0367 67 false '-- '-- '-- '-- -24473 547 51e8191f-bc19-5752-94b7-b3a4ea24578f '-- not hispanic or latino female '-- '-- '-- '-- native hawaiian or other pacific islander TCGA-09-0367_demographic Dead '-- '-- '-- '-- 24473 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3b0fadff-1eaa-5a35-9045-24288b57a3dd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-0367_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- 153 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-0367_treatment3 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1145 '-- mg '-- '-- '-- '-- c23cb7e2-f2f2-46de-811a-b25fcb3eed33 '-- yes '-- '-- Chemotherapy +TCGA-OV 9bf16a89-2fc7-4c08-93bc-3105eec5c3cc Informed Consent 24 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1687 46 false '-- '-- '-- '-- -16961 '-- c5058873-7e86-55ab-83ec-68f37f816ab9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1687_demographic Alive '-- '-- '-- '-- 16961 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9729bb87-a1cc-5e8d-9e77-b68ef5b45a33 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1687_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 172 42 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-1687_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d9afbb9d-5ca7-5a29-80ac-efbbff19f83b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9bf16a89-2fc7-4c08-93bc-3105eec5c3cc Informed Consent 24 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1687 46 false '-- '-- '-- '-- -16961 '-- c5058873-7e86-55ab-83ec-68f37f816ab9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1687_demographic Alive '-- '-- '-- '-- 16961 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9729bb87-a1cc-5e8d-9e77-b68ef5b45a33 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1687_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 172 42 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-1687_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f16fb3a7-13ce-42ce-af3c-91f112c5abcc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9bf16a89-2fc7-4c08-93bc-3105eec5c3cc Informed Consent 24 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1687 46 false '-- '-- '-- '-- -16961 '-- c5058873-7e86-55ab-83ec-68f37f816ab9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1687_demographic Alive '-- '-- '-- '-- 16961 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9729bb87-a1cc-5e8d-9e77-b68ef5b45a33 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1687_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-20-1687_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f6779b7d-a733-4537-b6e2-2337982271b4 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 9c744ff8-1cde-4176-b6d7-0ab62bf42620 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1428 50 false '-- '-- '-- '-- -18306 '-- cc02ff8d-6eff-5479-acd0-8b3230bcfafa '-- not reported female '-- '-- '-- '-- white TCGA-24-1428_demographic Alive '-- '-- '-- '-- 18754 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 448 '-- '-- '-- 8d9d0acb-49e2-4246-b893-8f0f68b65e42 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1428_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1428_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1428_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5a4e96a5-73a5-4a8c-bf4a-fd231bd34e49 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 9c744ff8-1cde-4176-b6d7-0ab62bf42620 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1428 50 false '-- '-- '-- '-- -18306 '-- cc02ff8d-6eff-5479-acd0-8b3230bcfafa '-- not reported female '-- '-- '-- '-- white TCGA-24-1428_demographic Alive '-- '-- '-- '-- 18754 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 448 '-- '-- '-- 8d9d0acb-49e2-4246-b893-8f0f68b65e42 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1428_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1428_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1428_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9604a3fb-6338-4596-a936-9e273190cfd5 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 9c744ff8-1cde-4176-b6d7-0ab62bf42620 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1428 50 false '-- '-- '-- '-- -18306 '-- cc02ff8d-6eff-5479-acd0-8b3230bcfafa '-- not reported female '-- '-- '-- '-- white TCGA-24-1428_demographic Alive '-- '-- '-- '-- 18306 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f6f658e1-75aa-52b0-ae5b-eec6c0b88964 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1428_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 508 466 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1428_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1519 '-- mg '-- '-- '-- '-- 0cba8dce-0956-4595-8a54-d6566cbbe130 '-- yes '-- '-- Chemotherapy +TCGA-OV 9c744ff8-1cde-4176-b6d7-0ab62bf42620 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1428 50 false '-- '-- '-- '-- -18306 '-- cc02ff8d-6eff-5479-acd0-8b3230bcfafa '-- not reported female '-- '-- '-- '-- white TCGA-24-1428_demographic Alive '-- '-- '-- '-- 18306 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f6f658e1-75aa-52b0-ae5b-eec6c0b88964 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1428_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1428_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4546bc34-30db-4ac7-91f8-cbb420a719d6 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 9c744ff8-1cde-4176-b6d7-0ab62bf42620 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1428 50 false '-- '-- '-- '-- -18306 '-- cc02ff8d-6eff-5479-acd0-8b3230bcfafa '-- not reported female '-- '-- '-- '-- white TCGA-24-1428_demographic Alive '-- '-- '-- '-- 18306 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f6f658e1-75aa-52b0-ae5b-eec6c0b88964 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1428_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 130 46 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1428_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 600 '-- mg '-- '-- '-- '-- 8ca4b2ca-5a23-4ed0-8f91-a4f8cf45c2aa Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9c744ff8-1cde-4176-b6d7-0ab62bf42620 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1428 50 false '-- '-- '-- '-- -18306 '-- cc02ff8d-6eff-5479-acd0-8b3230bcfafa '-- not reported female '-- '-- '-- '-- white TCGA-24-1428_demographic Alive '-- '-- '-- '-- 18306 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f6f658e1-75aa-52b0-ae5b-eec6c0b88964 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1428_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 130 46 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-24-1428_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 900 '-- mg '-- '-- '-- '-- 999d1991-c579-5d87-bcc1-95332145d16c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9c744ff8-1cde-4176-b6d7-0ab62bf42620 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1428 50 false '-- '-- '-- '-- -18306 '-- cc02ff8d-6eff-5479-acd0-8b3230bcfafa '-- not reported female '-- '-- '-- '-- white TCGA-24-1428_demographic Alive '-- '-- '-- '-- 18306 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f6f658e1-75aa-52b0-ae5b-eec6c0b88964 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1428_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 130 46 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1428_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- 780 '-- mg '-- '-- '-- '-- c1a7eacb-9d1b-4010-8d1c-d2c1a31be509 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9d25cd0e-0a3e-4ee0-b1a3-58ffab348c9d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1665 73 false '-- '-- '-- '-- -27010 1266 4b2e1ed3-d88a-581c-a432-bcfc88178a7a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1665_demographic Dead '-- '-- '-- '-- 27010 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 36ea240f-5e4c-59a4-858e-ff2127a15b98 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1665_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 792 778 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1665_treatment '-- '-- '-- '-- '-- '-- Distant Site '-- '-- '-- '-- '-- '-- '-- '-- 259ed336-fe51-5bcd-8647-917135d01f8f '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 9d25cd0e-0a3e-4ee0-b1a3-58ffab348c9d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1665 73 false '-- '-- '-- '-- -27010 1266 4b2e1ed3-d88a-581c-a432-bcfc88178a7a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1665_demographic Dead '-- '-- '-- '-- 27010 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 36ea240f-5e4c-59a4-858e-ff2127a15b98 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1665_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1022 917 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1665_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 6a76a51e-1c97-4ce9-9d78-a03de7ab59b3 '-- yes '-- '-- Chemotherapy +TCGA-OV 9d25cd0e-0a3e-4ee0-b1a3-58ffab348c9d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1665 73 false '-- '-- '-- '-- -27010 1266 4b2e1ed3-d88a-581c-a432-bcfc88178a7a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1665_demographic Dead '-- '-- '-- '-- 27010 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 36ea240f-5e4c-59a4-858e-ff2127a15b98 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1665_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 208 33 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1665_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 9309bdbf-5836-4b26-bf2a-51aae6b1998c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9d25cd0e-0a3e-4ee0-b1a3-58ffab348c9d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1665 73 false '-- '-- '-- '-- -27010 1266 4b2e1ed3-d88a-581c-a432-bcfc88178a7a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1665_demographic Dead '-- '-- '-- '-- 27010 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 36ea240f-5e4c-59a4-858e-ff2127a15b98 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1665_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 208 33 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1665_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- c1847ccb-52de-46d7-84a2-c7e7bb36f060 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9d25cd0e-0a3e-4ee0-b1a3-58ffab348c9d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1665 73 false '-- '-- '-- '-- -27010 1266 4b2e1ed3-d88a-581c-a432-bcfc88178a7a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1665_demographic Dead '-- '-- '-- '-- 27010 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 36ea240f-5e4c-59a4-858e-ff2127a15b98 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1665_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 483 400 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1665_treatment3 Tamoxifen '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e529732a-b0f3-4d4f-8901-86b3db6ba069 '-- yes '-- '-- Hormone Therapy +TCGA-OV 9d25cd0e-0a3e-4ee0-b1a3-58ffab348c9d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1665 73 false '-- '-- '-- '-- -27010 1266 4b2e1ed3-d88a-581c-a432-bcfc88178a7a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1665_demographic Dead '-- '-- '-- '-- 27478 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 468 '-- '-- '-- 98dea3c7-5f14-473d-ac36-5a2e4f8f5588 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1665_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1665_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1665_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2e3e9be6-af11-4971-b7c8-ad34382d08c7 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 9d25cd0e-0a3e-4ee0-b1a3-58ffab348c9d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1665 73 false '-- '-- '-- '-- -27010 1266 4b2e1ed3-d88a-581c-a432-bcfc88178a7a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1665_demographic Dead '-- '-- '-- '-- 27478 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 468 '-- '-- '-- 98dea3c7-5f14-473d-ac36-5a2e4f8f5588 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1665_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1665_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1665_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b32995f3-9d6d-49af-8257-e9ac0f70ec89 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 70c1f438-89c0-4ce7-a69e-1c03d515f76a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1023_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1023_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1023_treatment18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8f52fe8b-401b-444e-a5d9-6a48d380faa8 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 70c1f438-89c0-4ce7-a69e-1c03d515f76a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1023_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1023_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1023_treatment19 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bf246123-0716-4de3-8225-66ca6ac21a83 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 70c1f438-89c0-4ce7-a69e-1c03d515f76a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1023_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1023_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1209 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1023_treatment20 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cd577fe3-9a4f-44b9-9a7c-b5a412e69f4c '-- yes '-- '-- Surgery, NOS +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 24316 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 490 '-- '-- '-- 8bc75408-a593-40f4-a366-48544ff65166 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1023_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1023_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1023_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 590ccdbc-e8d7-46f5-81fd-23ac94cd89a7 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 24316 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 490 '-- '-- '-- 8bc75408-a593-40f4-a366-48544ff65166 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1023_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1023_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1023_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9843e0cd-6cd3-4821-bc09-2806d09f653e '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 23826 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e6fb200e-161a-5533-9fea-45b491af50d2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 609 557 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1023_treatment12 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 7800 '-- mg '-- '-- '-- '-- 0b84c5e6-5fc5-42f8-8e44-bf3443e3bc55 '-- yes '-- '-- Chemotherapy +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 23826 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e6fb200e-161a-5533-9fea-45b491af50d2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 120 29 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1023_treatment10 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1492 '-- mg '-- '-- '-- '-- 179890ef-8b9b-42e9-8e14-5a9229eed440 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 23826 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e6fb200e-161a-5533-9fea-45b491af50d2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 1364 1272 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1023_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 300 '-- mg '-- '-- '-- '-- 299daf52-c850-4697-9f5b-02cde60b011c '-- yes '-- '-- Chemotherapy +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 23826 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e6fb200e-161a-5533-9fea-45b491af50d2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 509 509 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-23-1023_treatment13 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1560 '-- mg '-- '-- '-- '-- 2f4c401b-e64a-43e2-9c8c-ad6a21a79b30 '-- yes '-- '-- Chemotherapy +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 23826 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e6fb200e-161a-5533-9fea-45b491af50d2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1023_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3d66e709-7da1-4eb3-8f34-5121c47849bd Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 23826 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e6fb200e-161a-5533-9fea-45b491af50d2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 560 539 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1023_treatment14 Carboplatin '-- '-- '-- '-- '-- '-- '-- 640 '-- mg '-- '-- '-- '-- 3f5b92a1-422a-48ae-ada7-f2882eaff33a '-- yes '-- '-- Chemotherapy +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 23826 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e6fb200e-161a-5533-9fea-45b491af50d2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 1455 1427 '-- '-- Persistent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1023_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 120 '-- mg '-- '-- '-- '-- 3fd95445-e184-4cd4-aac3-b50d4b3dd1cf Not Reported yes '-- '-- Chemotherapy +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 23826 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e6fb200e-161a-5533-9fea-45b491af50d2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 509 509 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-23-1023_treatment11 Cisplatin '-- '-- '-- '-- '-- '-- '-- 195 '-- mg '-- '-- '-- '-- 56447d06-f3c4-4842-a4b6-5f99c5f4c8ec '-- yes '-- '-- Chemotherapy +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 23826 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e6fb200e-161a-5533-9fea-45b491af50d2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 1665 1616 '-- '-- Persistent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1023_treatment9 Topotecan '-- '-- '-- '-- '-- '-- '-- 24 '-- mg '-- '-- '-- '-- 5d2dd640-2809-4391-8eaa-65ca0f1159e2 Not Reported yes '-- '-- Chemotherapy +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 23826 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e6fb200e-161a-5533-9fea-45b491af50d2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 1407 1386 '-- '-- Persistent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1023_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1100 '-- mg '-- '-- '-- '-- 842b739f-596b-4a1c-8790-a8c49438c5f7 Not Reported yes '-- '-- Chemotherapy +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 23826 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e6fb200e-161a-5533-9fea-45b491af50d2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 609 557 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1023_treatment6 Cisplatin '-- '-- '-- '-- '-- '-- '-- 369 '-- mg '-- '-- '-- '-- 8620d44a-e309-4d28-9108-2404789c565d '-- yes '-- '-- Chemotherapy +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 23826 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e6fb200e-161a-5533-9fea-45b491af50d2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 468 155 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1023_treatment8 Clinical Trial '-- '-- '-- '-- '-- '-- '-- 12 '-- mg '-- '-- '-- '-- 9e5d13b7-651a-4440-8c60-d61420a26790 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 23826 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e6fb200e-161a-5533-9fea-45b491af50d2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 560 539 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1023_treatment7 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 4860 '-- mg '-- '-- '-- '-- a9b0fd4d-faa2-4987-83b8-11f7581a7a54 '-- yes '-- '-- Chemotherapy +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 23826 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e6fb200e-161a-5533-9fea-45b491af50d2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 120 29 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1023_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2021 '-- mg '-- '-- '-- '-- d125396b-8bfb-4a4f-b964-3ad77ef6330a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 23826 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e6fb200e-161a-5533-9fea-45b491af50d2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 1603 1582 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1023_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 198 '-- mg '-- '-- '-- '-- df39fb19-a55b-5390-b5b6-15c45b5892f4 '-- yes '-- '-- Chemotherapy +TCGA-OV 9e48a4b1-6917-4625-9d78-e4832eb816a5 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0900 59 false '-- '-- '-- '-- -21698 '-- 5d5bb297-6177-5d8a-8562-cbfa5c0f119a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0900_demographic Alive '-- '-- '-- '-- 21698 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0637c309-0ed0-5cbf-a47b-4d33baea8096 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0900_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0900_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 467f9681-7ced-4aa0-824c-3bcb4d63abfc Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 9e48a4b1-6917-4625-9d78-e4832eb816a5 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0900 59 false '-- '-- '-- '-- -21698 '-- 5d5bb297-6177-5d8a-8562-cbfa5c0f119a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0900_demographic Alive '-- '-- '-- '-- 21698 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0637c309-0ed0-5cbf-a47b-4d33baea8096 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0900_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 162 38 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0900_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6fc269ae-92bb-54f9-b556-34237de627ea Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9e48a4b1-6917-4625-9d78-e4832eb816a5 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0900 59 false '-- '-- '-- '-- -21698 '-- 5d5bb297-6177-5d8a-8562-cbfa5c0f119a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0900_demographic Alive '-- '-- '-- '-- 21698 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0637c309-0ed0-5cbf-a47b-4d33baea8096 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0900_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 162 38 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0900_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ca7b8670-6fe1-44f8-a387-ef915f4fb68c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9e7d3dea-5d81-4f10-819c-1c2a68ddd150 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1546 46 false '-- '-- '-- '-- -17130 1955 8bff82fb-9ffa-5794-8922-4b2771f31589 '-- not reported female '-- '-- '-- '-- white TCGA-24-1546_demographic Dead '-- '-- '-- '-- 17130 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4ec47e19-8ac8-5799-995f-ed82d4ebef47 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1546_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1546_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 287d5b25-e1ee-5e5b-a4a2-d403b4e54836 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9e7d3dea-5d81-4f10-819c-1c2a68ddd150 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1546 46 false '-- '-- '-- '-- -17130 1955 8bff82fb-9ffa-5794-8922-4b2771f31589 '-- not reported female '-- '-- '-- '-- white TCGA-24-1546_demographic Dead '-- '-- '-- '-- 17130 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4ec47e19-8ac8-5799-995f-ed82d4ebef47 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1546_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1546_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cdc67898-5bd9-4e0a-a298-04d74c726625 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9ec86cbd-8c74-4697-90da-529ab91ab835 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1843 66 false '-- '-- '-- '-- -24469 '-- 63120061-1f2d-5054-ae2e-359fc077acae '-- not reported female '-- '-- '-- '-- white TCGA-24-1843_demographic Alive '-- '-- '-- '-- 24469 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 59f8614c-8ad2-570a-9e9e-134adc1741a0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1843_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 134 20 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1843_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 373 '-- mg '-- '-- '-- '-- 25d0621f-3c4b-56a8-92c5-7b9192816479 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9ec86cbd-8c74-4697-90da-529ab91ab835 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1843 66 false '-- '-- '-- '-- -24469 '-- 63120061-1f2d-5054-ae2e-359fc077acae '-- not reported female '-- '-- '-- '-- white TCGA-24-1843_demographic Alive '-- '-- '-- '-- 24469 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 59f8614c-8ad2-570a-9e9e-134adc1741a0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1843_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1843_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3cb0841b-5c0e-4ce1-b562-e617923b575b Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 9ec86cbd-8c74-4697-90da-529ab91ab835 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1843 66 false '-- '-- '-- '-- -24469 '-- 63120061-1f2d-5054-ae2e-359fc077acae '-- not reported female '-- '-- '-- '-- white TCGA-24-1843_demographic Alive '-- '-- '-- '-- 24469 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 59f8614c-8ad2-570a-9e9e-134adc1741a0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1843_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 134 20 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1843_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 582 '-- mg '-- '-- '-- '-- 610cbd42-6486-403e-8725-6ac970e1ebda Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9ec86cbd-8c74-4697-90da-529ab91ab835 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1843 66 false '-- '-- '-- '-- -24469 '-- 63120061-1f2d-5054-ae2e-359fc077acae '-- not reported female '-- '-- '-- '-- white TCGA-24-1843_demographic Alive '-- '-- '-- '-- 24469 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 59f8614c-8ad2-570a-9e9e-134adc1741a0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1843_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 134 20 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1843_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2957 '-- mg '-- '-- '-- '-- 88f3fe49-26f6-49a9-a0db-f232670656d6 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9fb1ba57-2007-4477-b000-2d36f163efd2 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1110 42 false '-- '-- '-- '-- -15383 '-- bb0f6ffa-ac50-5de2-be4c-54c7494ab86f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1110_demographic Alive '-- '-- '-- '-- 15709 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 326 '-- '-- '-- 05c99f23-b56f-4234-bcb3-a4ad8dd8275f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1110_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1110_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1110_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7a5bff3a-77be-4bd8-a1d8-e56fe7beb3ad '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 9fb1ba57-2007-4477-b000-2d36f163efd2 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1110 42 false '-- '-- '-- '-- -15383 '-- bb0f6ffa-ac50-5de2-be4c-54c7494ab86f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1110_demographic Alive '-- '-- '-- '-- 15709 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 326 '-- '-- '-- 05c99f23-b56f-4234-bcb3-a4ad8dd8275f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1110_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1110_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1110_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d038fa3c-7326-4994-913a-4496c79bba61 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 9fb1ba57-2007-4477-b000-2d36f163efd2 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1110 42 false '-- '-- '-- '-- -15383 '-- bb0f6ffa-ac50-5de2-be4c-54c7494ab86f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1110_demographic Alive '-- '-- '-- '-- 15383 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8d884ab0-aab2-532e-8036-a5b79eb4ce6d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1110_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 110 6 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1110_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 3960 '-- mg '-- '-- '-- '-- 0a1f9f5c-6170-4433-8341-55cd1c2c063e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9fb1ba57-2007-4477-b000-2d36f163efd2 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1110 42 false '-- '-- '-- '-- -15383 '-- bb0f6ffa-ac50-5de2-be4c-54c7494ab86f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1110_demographic Alive '-- '-- '-- '-- 15383 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8d884ab0-aab2-532e-8036-a5b79eb4ce6d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1110_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 235 179 '-- '-- Not Reported '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1110_treatment3 Clinical Trial '-- '-- '-- '-- '-- '-- '-- 6 '-- mg '-- '-- '-- '-- 18ce0035-291c-4ef0-a0ed-f9e0844bca80 Consolidation Therapy yes '-- '-- Immunotherapy (Including Vaccines) +TCGA-OV 9fb1ba57-2007-4477-b000-2d36f163efd2 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1110 42 false '-- '-- '-- '-- -15383 '-- bb0f6ffa-ac50-5de2-be4c-54c7494ab86f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1110_demographic Alive '-- '-- '-- '-- 15383 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8d884ab0-aab2-532e-8036-a5b79eb4ce6d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1110_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 110 6 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1110_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1800 '-- mg '-- '-- '-- '-- 4094c88f-6368-4b3b-9f8f-1232962acf9b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9fb1ba57-2007-4477-b000-2d36f163efd2 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1110 42 false '-- '-- '-- '-- -15383 '-- bb0f6ffa-ac50-5de2-be4c-54c7494ab86f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1110_demographic Alive '-- '-- '-- '-- 15383 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8d884ab0-aab2-532e-8036-a5b79eb4ce6d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1110_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1110_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9ebfb37c-c0e1-43af-bbbe-802973f3c76c Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 9fb1ba57-2007-4477-b000-2d36f163efd2 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1110 42 false '-- '-- '-- '-- -15383 '-- bb0f6ffa-ac50-5de2-be4c-54c7494ab86f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1110_demographic Alive '-- '-- '-- '-- 15383 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8d884ab0-aab2-532e-8036-a5b79eb4ce6d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1110_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 375 333 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-23-1110_treatment Capecitabine '-- '-- '-- '-- '-- '-- '-- 16800 '-- mg '-- '-- '-- '-- e65a832f-f238-5469-b484-f9c0bb0dbe8e '-- yes '-- '-- Chemotherapy +TCGA-OV a09f0626-002a-48fd-8b2d-c66b8285cf23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1892 52 false '-- '-- '-- '-- -19256 1484 caf0b95d-2121-5698-a1cf-f4408b39c118 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1892_demographic Dead '-- '-- '-- '-- 19509 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 253 '-- '-- '-- 234fadaf-c0d9-49c3-893e-fd05f7046ba1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1892_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1892_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1892_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 14266037-2190-48b1-84a0-330b0561d8e9 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV a09f0626-002a-48fd-8b2d-c66b8285cf23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1892 52 false '-- '-- '-- '-- -19256 1484 caf0b95d-2121-5698-a1cf-f4408b39c118 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1892_demographic Dead '-- '-- '-- '-- 19509 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 253 '-- '-- '-- 234fadaf-c0d9-49c3-893e-fd05f7046ba1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1892_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1892_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1892_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e3fe813f-4c33-42fb-9a04-34f16d899b55 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV a09f0626-002a-48fd-8b2d-c66b8285cf23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1892 52 false '-- '-- '-- '-- -19256 1484 caf0b95d-2121-5698-a1cf-f4408b39c118 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1892_demographic Dead '-- '-- '-- '-- 19256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2ac4a173-7eee-5fca-8f3f-6ee590714833 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1892_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 132 10 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1892_treatment9 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2512c213-2491-437f-a0d2-cc331886f41e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a09f0626-002a-48fd-8b2d-c66b8285cf23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1892 52 false '-- '-- '-- '-- -19256 1484 caf0b95d-2121-5698-a1cf-f4408b39c118 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1892_demographic Dead '-- '-- '-- '-- 19256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2ac4a173-7eee-5fca-8f3f-6ee590714833 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1892_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1892_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4fb236e9-bbb1-43f4-8ada-81384eabbebe Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV a09f0626-002a-48fd-8b2d-c66b8285cf23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1892 52 false '-- '-- '-- '-- -19256 1484 caf0b95d-2121-5698-a1cf-f4408b39c118 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1892_demographic Dead '-- '-- '-- '-- 19256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2ac4a173-7eee-5fca-8f3f-6ee590714833 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1892_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 132 10 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1892_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 53a518b3-e090-5044-9dbf-c2c82ca3ebc3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a09f0626-002a-48fd-8b2d-c66b8285cf23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1892 52 false '-- '-- '-- '-- -19256 1484 caf0b95d-2121-5698-a1cf-f4408b39c118 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1892_demographic Dead '-- '-- '-- '-- 19256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2ac4a173-7eee-5fca-8f3f-6ee590714833 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1892_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 754 601 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1892_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 874ad476-9f05-4419-a7f3-1db88f7912b9 '-- yes '-- '-- Chemotherapy +TCGA-OV a09f0626-002a-48fd-8b2d-c66b8285cf23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1892 52 false '-- '-- '-- '-- -19256 1484 caf0b95d-2121-5698-a1cf-f4408b39c118 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1892_demographic Dead '-- '-- '-- '-- 19256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2ac4a173-7eee-5fca-8f3f-6ee590714833 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1892_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1384 1265 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1892_treatment8 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 98e9f537-611e-4dc2-9ef3-ce40dd14bddc '-- yes '-- '-- Chemotherapy +TCGA-OV a09f0626-002a-48fd-8b2d-c66b8285cf23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1892 52 false '-- '-- '-- '-- -19256 1484 caf0b95d-2121-5698-a1cf-f4408b39c118 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1892_demographic Dead '-- '-- '-- '-- 19256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2ac4a173-7eee-5fca-8f3f-6ee590714833 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1892_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1197 1113 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-30-1892_treatment2 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 50 '-- mg '-- '-- '-- '-- 9a90d19a-5d60-489d-a0fd-dcad3d4b4661 '-- yes '-- '-- Chemotherapy +TCGA-OV a09f0626-002a-48fd-8b2d-c66b8285cf23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1892 52 false '-- '-- '-- '-- -19256 1484 caf0b95d-2121-5698-a1cf-f4408b39c118 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1892_demographic Dead '-- '-- '-- '-- 19256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2ac4a173-7eee-5fca-8f3f-6ee590714833 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1892_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1892_treatment7 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aa3be3dc-5bfd-4c0b-a760-01fa7b5ebd5b '-- yes '-- '-- Chemotherapy +TCGA-OV a09f0626-002a-48fd-8b2d-c66b8285cf23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1892 52 false '-- '-- '-- '-- -19256 1484 caf0b95d-2121-5698-a1cf-f4408b39c118 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1892_demographic Dead '-- '-- '-- '-- 19256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2ac4a173-7eee-5fca-8f3f-6ee590714833 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1892_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 419 253 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1892_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bdfe0707-be60-4ffc-b9d2-e452bbaaa196 '-- yes '-- '-- Chemotherapy +TCGA-OV a09f0626-002a-48fd-8b2d-c66b8285cf23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1892 52 false '-- '-- '-- '-- -19256 1484 caf0b95d-2121-5698-a1cf-f4408b39c118 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1892_demographic Dead '-- '-- '-- '-- 19256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2ac4a173-7eee-5fca-8f3f-6ee590714833 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1892_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1449 1428 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-30-1892_treatment11 Catumaxomab '-- '-- '-- '-- '-- '-- '-- 10 '-- ug '-- '-- '-- '-- d85145c3-4435-4add-9298-aaa1aee69649 '-- yes '-- '-- Chemotherapy +TCGA-OV a09f0626-002a-48fd-8b2d-c66b8285cf23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1892 52 false '-- '-- '-- '-- -19256 1484 caf0b95d-2121-5698-a1cf-f4408b39c118 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1892_demographic Dead '-- '-- '-- '-- 19256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2ac4a173-7eee-5fca-8f3f-6ee590714833 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1892_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1258 1197 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1892_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 70 '-- mg/m2 '-- '-- '-- '-- dfe23e08-79fd-4d04-be3a-88e967546f56 '-- yes '-- '-- Chemotherapy +TCGA-OV a09f0626-002a-48fd-8b2d-c66b8285cf23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1892 52 false '-- '-- '-- '-- -19256 1484 caf0b95d-2121-5698-a1cf-f4408b39c118 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1892_demographic Dead '-- '-- '-- '-- 19256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2ac4a173-7eee-5fca-8f3f-6ee590714833 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1892_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- 862 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1892_treatment3 Pemetrexed Disodium '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e6e525c1-7f7d-4da1-b91a-7a976911d52e '-- yes '-- '-- Chemotherapy +TCGA-OV a09f0626-002a-48fd-8b2d-c66b8285cf23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1892 52 false '-- '-- '-- '-- -19256 1484 caf0b95d-2121-5698-a1cf-f4408b39c118 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1892_demographic Dead '-- '-- '-- '-- 19256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2ac4a173-7eee-5fca-8f3f-6ee590714833 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1892_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 573 428 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1892_treatment10 Gemcitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e6ec3a3d-10ff-418c-934d-c849c1035dae '-- yes '-- '-- Chemotherapy +TCGA-OV a09f0626-002a-48fd-8b2d-c66b8285cf23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1892 52 false '-- '-- '-- '-- -19256 1484 caf0b95d-2121-5698-a1cf-f4408b39c118 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1892_demographic Dead '-- '-- '-- '-- 19256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2ac4a173-7eee-5fca-8f3f-6ee590714833 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1892_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1197 1134 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-30-1892_treatment12 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 15 '-- mg/kg '-- '-- '-- '-- f0ba9b0a-9ca0-4bdd-900a-f4b73099022b '-- yes '-- '-- Immunotherapy (Including Vaccines) +TCGA-OV a2319490-b85d-4219-a1b0-fa1ec432d5c8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2414 75 false '-- '-- '-- '-- -27417 2621 7b9aeb08-3b4c-5661-bec0-b3b74dc9ec8a '-- not reported female '-- '-- '-- '-- white TCGA-29-2414_demographic Dead '-- '-- '-- '-- 27417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1911c0e4-d523-5681-9cc6-332707c4c25e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2414_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- '-- 1705 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2414_treatment '-- '-- '-- '-- '-- '-- Distant Site '-- 6600 '-- cGy '-- '-- '-- '-- 6a5666f9-cc38-5f1c-a8b6-ec1953ac9ff2 '-- yes '-- '-- Radiation, External Beam +TCGA-OV a2319490-b85d-4219-a1b0-fa1ec432d5c8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2414 75 false '-- '-- '-- '-- -27417 2621 7b9aeb08-3b4c-5661-bec0-b3b74dc9ec8a '-- not reported female '-- '-- '-- '-- white TCGA-29-2414_demographic Dead '-- '-- '-- '-- 27417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1911c0e4-d523-5681-9cc6-332707c4c25e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2414_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2287 2256 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-2414_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 40 '-- mg/m2 '-- '-- '-- '-- 75d501e6-b6c7-488b-b187-d41a5916f2e6 '-- yes '-- '-- Chemotherapy +TCGA-OV a2319490-b85d-4219-a1b0-fa1ec432d5c8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2414 75 false '-- '-- '-- '-- -27417 2621 7b9aeb08-3b4c-5661-bec0-b3b74dc9ec8a '-- not reported female '-- '-- '-- '-- white TCGA-29-2414_demographic Dead '-- '-- '-- '-- 27417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1911c0e4-d523-5681-9cc6-332707c4c25e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2414_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 131 3 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-2414_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 20 '-- mg/m2 '-- '-- '-- '-- 7db96c0f-cdf3-4194-8473-0e2e9f4263b0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a2319490-b85d-4219-a1b0-fa1ec432d5c8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2414 75 false '-- '-- '-- '-- -27417 2621 7b9aeb08-3b4c-5661-bec0-b3b74dc9ec8a '-- not reported female '-- '-- '-- '-- white TCGA-29-2414_demographic Dead '-- '-- '-- '-- 27417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1911c0e4-d523-5681-9cc6-332707c4c25e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2414_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2424 2315 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-2414_treatment6 Topotecan '-- '-- '-- '-- '-- '-- '-- 3 '-- mg/m2 '-- '-- '-- '-- 9b9cecbe-337f-4881-9df3-6ffa3727ce1f '-- yes '-- '-- Chemotherapy +TCGA-OV a2319490-b85d-4219-a1b0-fa1ec432d5c8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2414 75 false '-- '-- '-- '-- -27417 2621 7b9aeb08-3b4c-5661-bec0-b3b74dc9ec8a '-- not reported female '-- '-- '-- '-- white TCGA-29-2414_demographic Dead '-- '-- '-- '-- 27417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1911c0e4-d523-5681-9cc6-332707c4c25e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2414_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1171 996 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-2414_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e16a10a3-1f11-44e1-b272-8e0ce38afb3e '-- yes '-- '-- Chemotherapy +TCGA-OV a2319490-b85d-4219-a1b0-fa1ec432d5c8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2414 75 false '-- '-- '-- '-- -27417 2621 7b9aeb08-3b4c-5661-bec0-b3b74dc9ec8a '-- not reported female '-- '-- '-- '-- white TCGA-29-2414_demographic Dead '-- '-- '-- '-- 27417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1911c0e4-d523-5681-9cc6-332707c4c25e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2414_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1171 996 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-2414_treatment8 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- efcc1bfd-9911-4bd3-b3bf-a6e186083ee9 '-- yes '-- '-- Chemotherapy +TCGA-OV a2319490-b85d-4219-a1b0-fa1ec432d5c8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2414 75 false '-- '-- '-- '-- -27417 2621 7b9aeb08-3b4c-5661-bec0-b3b74dc9ec8a '-- not reported female '-- '-- '-- '-- white TCGA-29-2414_demographic Dead '-- '-- '-- '-- 27417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1911c0e4-d523-5681-9cc6-332707c4c25e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2414_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 131 3 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-2414_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- f0de6949-55f2-4189-9854-7df5a2396471 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a2319490-b85d-4219-a1b0-fa1ec432d5c8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2414 75 false '-- '-- '-- '-- -27417 2621 7b9aeb08-3b4c-5661-bec0-b3b74dc9ec8a '-- not reported female '-- '-- '-- '-- white TCGA-29-2414_demographic Dead '-- '-- '-- '-- 27417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1911c0e4-d523-5681-9cc6-332707c4c25e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2414_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2151 2042 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-2414_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- f2a0ab99-98a6-4d7a-ab28-292080b27d7d '-- yes '-- '-- Chemotherapy +TCGA-OV a2319490-b85d-4219-a1b0-fa1ec432d5c8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2414 75 false '-- '-- '-- '-- -27417 2621 7b9aeb08-3b4c-5661-bec0-b3b74dc9ec8a '-- not reported female '-- '-- '-- '-- white TCGA-29-2414_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 34087ea9-a2fa-415b-8853-1f88d80d9ba8 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-2414_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-2414_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2222 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2414_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 94af1c00-7391-4cad-9ddf-9c8f954f5800 '-- yes '-- '-- Surgery, NOS +TCGA-OV a2319490-b85d-4219-a1b0-fa1ec432d5c8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2414 75 false '-- '-- '-- '-- -27417 2621 7b9aeb08-3b4c-5661-bec0-b3b74dc9ec8a '-- not reported female '-- '-- '-- '-- white TCGA-29-2414_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 34087ea9-a2fa-415b-8853-1f88d80d9ba8 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-2414_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-2414_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2414_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cd1f0932-2269-42e9-835f-18df40084c33 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV a2319490-b85d-4219-a1b0-fa1ec432d5c8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2414 75 false '-- '-- '-- '-- -27417 2621 7b9aeb08-3b4c-5661-bec0-b3b74dc9ec8a '-- not reported female '-- '-- '-- '-- white TCGA-29-2414_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 34087ea9-a2fa-415b-8853-1f88d80d9ba8 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-2414_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-2414_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2414_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- de7d3f74-0746-426e-a198-9dfa68ba1872 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV a2319490-b85d-4219-a1b0-fa1ec432d5c8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2414 75 false '-- '-- '-- '-- -27417 2621 7b9aeb08-3b4c-5661-bec0-b3b74dc9ec8a '-- not reported female '-- '-- '-- '-- white TCGA-29-2414_demographic Dead '-- '-- '-- '-- 27969 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 552 '-- '-- '-- 55b71011-dd71-4908-942e-ff0a7c6270bb false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-2414_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-2414_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2414_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9c897b9e-a16e-4592-8882-640fc20c15bc '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV a2319490-b85d-4219-a1b0-fa1ec432d5c8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2414 75 false '-- '-- '-- '-- -27417 2621 7b9aeb08-3b4c-5661-bec0-b3b74dc9ec8a '-- not reported female '-- '-- '-- '-- white TCGA-29-2414_demographic Dead '-- '-- '-- '-- 27969 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 552 '-- '-- '-- 55b71011-dd71-4908-942e-ff0a7c6270bb false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-2414_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-2414_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2414_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c85244db-becf-46a3-b740-b2d7b09e270d '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV a36a4440-15ef-4837-904b-380a964d16f1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1844 64 false '-- '-- '-- '-- -23542 '-- 1364e963-dbbb-5881-a86a-ad660efa2898 '-- not reported female '-- '-- '-- '-- white TCGA-24-1844_demographic Alive '-- '-- '-- '-- 23542 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 250e6c30-98ff-51b3-bc1f-cb87719b253c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1844_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 134 24 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1844_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- 405 '-- mg '-- '-- '-- '-- 2099c7d2-d8b3-42dd-b3cd-8aab764448f8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a36a4440-15ef-4837-904b-380a964d16f1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1844 64 false '-- '-- '-- '-- -23542 '-- 1364e963-dbbb-5881-a86a-ad660efa2898 '-- not reported female '-- '-- '-- '-- white TCGA-24-1844_demographic Alive '-- '-- '-- '-- 23542 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 250e6c30-98ff-51b3-bc1f-cb87719b253c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1844_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1844_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5a2e3428-5268-46de-a3eb-bf67e1b89741 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV a36a4440-15ef-4837-904b-380a964d16f1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1844 64 false '-- '-- '-- '-- -23542 '-- 1364e963-dbbb-5881-a86a-ad660efa2898 '-- not reported female '-- '-- '-- '-- white TCGA-24-1844_demographic Alive '-- '-- '-- '-- 23542 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 250e6c30-98ff-51b3-bc1f-cb87719b253c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1844_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 134 24 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1844_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1285 '-- mg '-- '-- '-- '-- cdc87da0-37fe-53d8-9ce0-60d6f76618d9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a36a4440-15ef-4837-904b-380a964d16f1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1844 64 false '-- '-- '-- '-- -23542 '-- 1364e963-dbbb-5881-a86a-ad660efa2898 '-- not reported female '-- '-- '-- '-- white TCGA-24-1844_demographic Alive '-- '-- '-- '-- 23542 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 250e6c30-98ff-51b3-bc1f-cb87719b253c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1844_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 134 24 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1844_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2660 '-- mg '-- '-- '-- '-- d79e4c59-4d71-4155-8e42-34963719d247 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a3898640-0d85-441d-a000-b5b8ff857399 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1470 54 false '-- '-- '-- '-- -20007 '-- db352bc7-95c7-59df-a9fe-4655e1c409df '-- not reported female '-- '-- '-- '-- white TCGA-24-1470_demographic Alive '-- '-- '-- '-- 20007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7baca1af-8043-51b5-ab12-d87b025a8ded true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1470_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 83 17 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1470_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 593 '-- mg '-- '-- '-- '-- 445af3a9-3a77-4694-a572-8f67d16029e2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a3898640-0d85-441d-a000-b5b8ff857399 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1470 54 false '-- '-- '-- '-- -20007 '-- db352bc7-95c7-59df-a9fe-4655e1c409df '-- not reported female '-- '-- '-- '-- white TCGA-24-1470_demographic Alive '-- '-- '-- '-- 20007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7baca1af-8043-51b5-ab12-d87b025a8ded true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1470_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1470_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a9065bc0-02f2-4a7b-bacf-d4ce9fb1677f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV a3898640-0d85-441d-a000-b5b8ff857399 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1470 54 false '-- '-- '-- '-- -20007 '-- db352bc7-95c7-59df-a9fe-4655e1c409df '-- not reported female '-- '-- '-- '-- white TCGA-24-1470_demographic Alive '-- '-- '-- '-- 20007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7baca1af-8043-51b5-ab12-d87b025a8ded true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1470_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 83 17 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1470_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 110 '-- mg '-- '-- '-- '-- b9ed5cd1-6ede-4be6-a986-6ac0ecc1cbc2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a3898640-0d85-441d-a000-b5b8ff857399 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1470 54 false '-- '-- '-- '-- -20007 '-- db352bc7-95c7-59df-a9fe-4655e1c409df '-- not reported female '-- '-- '-- '-- white TCGA-24-1470_demographic Alive '-- '-- '-- '-- 20007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7baca1af-8043-51b5-ab12-d87b025a8ded true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1470_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 83 17 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1470_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- 475 '-- mg '-- '-- '-- '-- f4a5e8c4-7ce4-5a44-9abd-6942c0721e86 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a3e26259-732b-49fb-bc95-2f0ec7a0494e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1743 53 false '-- '-- '-- '-- -19365 1329 af7506f4-ac24-5171-bb5d-09f46567ea39 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1743_demographic Dead '-- '-- '-- '-- 20174 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 809 '-- '-- '-- 12e7d086-8b4e-4830-9ca6-ce8255dc2510 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1743_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1743_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1743_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4034e908-860e-40e6-b928-f91460cf2c74 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV a3e26259-732b-49fb-bc95-2f0ec7a0494e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1743 53 false '-- '-- '-- '-- -19365 1329 af7506f4-ac24-5171-bb5d-09f46567ea39 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1743_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1335e48b-e3cf-4ab2-b274-4a913e3a04c0 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1743_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1743_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 829 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1743_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2d84f4eb-ee8e-4a7c-931f-4b64acefbf56 '-- yes '-- '-- Surgery, NOS +TCGA-OV a3e26259-732b-49fb-bc95-2f0ec7a0494e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1743 53 false '-- '-- '-- '-- -19365 1329 af7506f4-ac24-5171-bb5d-09f46567ea39 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1743_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1335e48b-e3cf-4ab2-b274-4a913e3a04c0 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1743_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1743_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1743_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6fbfc52d-e2cf-4c69-83fa-e651a7061113 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV a3e26259-732b-49fb-bc95-2f0ec7a0494e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1743 53 false '-- '-- '-- '-- -19365 1329 af7506f4-ac24-5171-bb5d-09f46567ea39 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1743_demographic Dead '-- '-- '-- '-- 19365 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 93edbb37-2471-5683-98b2-d48d3c5d10c7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1743_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 172 40 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1743_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 868a6882-778b-4016-83cb-9387bd7eae42 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a3e26259-732b-49fb-bc95-2f0ec7a0494e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1743 53 false '-- '-- '-- '-- -19365 1329 af7506f4-ac24-5171-bb5d-09f46567ea39 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1743_demographic Dead '-- '-- '-- '-- 19365 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 93edbb37-2471-5683-98b2-d48d3c5d10c7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1743_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1743_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aab22c4e-9b87-41c1-94ed-94e18601c89a Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV a3e26259-732b-49fb-bc95-2f0ec7a0494e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1743 53 false '-- '-- '-- '-- -19365 1329 af7506f4-ac24-5171-bb5d-09f46567ea39 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1743_demographic Dead '-- '-- '-- '-- 19365 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 93edbb37-2471-5683-98b2-d48d3c5d10c7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1743_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 172 40 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1743_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cd5d51f4-e605-5068-a5be-428d6c78155b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a5030259-cf9c-4a58-8710-b9da8ee59320 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0937 44 false '-- '-- '-- '-- -16222 608 ec4793f1-4af3-5052-bc55-d865c8d8a000 '-- not reported female '-- '-- '-- '-- white TCGA-10-0937_demographic Dead '-- '-- '-- '-- 16222 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4a6e1e14-2751-5cb3-b3b1-b559944ace34 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0937_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 146 33 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0937_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1980 '-- mg/m2 '-- '-- '-- '-- 08f4f458-fb4d-4cc7-9ef3-972d8477d64b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a5030259-cf9c-4a58-8710-b9da8ee59320 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0937 44 false '-- '-- '-- '-- -16222 608 ec4793f1-4af3-5052-bc55-d865c8d8a000 '-- not reported female '-- '-- '-- '-- white TCGA-10-0937_demographic Dead '-- '-- '-- '-- 16222 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4a6e1e14-2751-5cb3-b3b1-b559944ace34 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0937_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 146 33 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0937_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 3990 '-- mg/m2 '-- '-- '-- '-- 237d5a37-b0e1-50be-a0bc-5e78e355e012 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a5030259-cf9c-4a58-8710-b9da8ee59320 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0937 44 false '-- '-- '-- '-- -16222 608 ec4793f1-4af3-5052-bc55-d865c8d8a000 '-- not reported female '-- '-- '-- '-- white TCGA-10-0937_demographic Dead '-- '-- '-- '-- 16222 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4a6e1e14-2751-5cb3-b3b1-b559944ace34 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0937_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- 346 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0937_treatment4 Topotecan '-- '-- '-- '-- '-- '-- '-- 21 '-- mg/m2 '-- '-- '-- '-- 3a8f222f-66a0-4098-81af-bb66d5cf41df Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a5030259-cf9c-4a58-8710-b9da8ee59320 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0937 44 false '-- '-- '-- '-- -16222 608 ec4793f1-4af3-5052-bc55-d865c8d8a000 '-- not reported female '-- '-- '-- '-- white TCGA-10-0937_demographic Dead '-- '-- '-- '-- 16222 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4a6e1e14-2751-5cb3-b3b1-b559944ace34 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0937_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 296 244 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0937_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 140 '-- mg/m2 '-- '-- '-- '-- 79325dbf-42ac-4935-b9f6-3a106ecce47c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a5030259-cf9c-4a58-8710-b9da8ee59320 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0937 44 false '-- '-- '-- '-- -16222 608 ec4793f1-4af3-5052-bc55-d865c8d8a000 '-- not reported female '-- '-- '-- '-- white TCGA-10-0937_demographic Dead '-- '-- '-- '-- 16222 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4a6e1e14-2751-5cb3-b3b1-b559944ace34 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0937_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 451 '-- '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0937_treatment2 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 4176 '-- mg/m2 '-- '-- '-- '-- 800072eb-0169-47d8-b08f-3dddbb9ca38c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a5030259-cf9c-4a58-8710-b9da8ee59320 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0937 44 false '-- '-- '-- '-- -16222 608 ec4793f1-4af3-5052-bc55-d865c8d8a000 '-- not reported female '-- '-- '-- '-- white TCGA-10-0937_demographic Dead '-- '-- '-- '-- 16222 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4a6e1e14-2751-5cb3-b3b1-b559944ace34 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0937_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0937_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 88ef0764-8762-49e6-9c10-08c5cf1448ef Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV a5030259-cf9c-4a58-8710-b9da8ee59320 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0937 44 false '-- '-- '-- '-- -16222 608 ec4793f1-4af3-5052-bc55-d865c8d8a000 '-- not reported female '-- '-- '-- '-- white TCGA-10-0937_demographic Dead '-- '-- '-- '-- 16457 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 235 '-- '-- '-- b718638b-3fee-454a-a7c9-388ffb4589c1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0937_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0937_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0937_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3c757b27-e5e1-45ce-a5ec-4494531c0756 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV a5030259-cf9c-4a58-8710-b9da8ee59320 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0937 44 false '-- '-- '-- '-- -16222 608 ec4793f1-4af3-5052-bc55-d865c8d8a000 '-- not reported female '-- '-- '-- '-- white TCGA-10-0937_demographic Dead '-- '-- '-- '-- 16457 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 235 '-- '-- '-- b718638b-3fee-454a-a7c9-388ffb4589c1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0937_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0937_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0937_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9e92c71d-95a3-41f8-8979-c4068a90f4af '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV a6aad7f9-8444-4c2f-8e4b-b19fd453544f Informed Consent 38 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1361 57 false '-- '-- '-- '-- -20860 '-- 7640a9d1-04b1-5950-8139-52e731454d82 '-- not reported female '-- '-- '-- '-- white TCGA-04-1361_demographic Alive '-- '-- '-- '-- 21787 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 927 '-- '-- '-- 1dc00dd3-d1cf-495b-9578-f57d02344886 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1361_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1361_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1361_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0bc0cf39-f5ea-4cbe-b790-66d6cf291718 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV a6aad7f9-8444-4c2f-8e4b-b19fd453544f Informed Consent 38 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1361 57 false '-- '-- '-- '-- -20860 '-- 7640a9d1-04b1-5950-8139-52e731454d82 '-- not reported female '-- '-- '-- '-- white TCGA-04-1361_demographic Alive '-- '-- '-- '-- 21787 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 927 '-- '-- '-- 1dc00dd3-d1cf-495b-9578-f57d02344886 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1361_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1361_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1361_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1cb4161e-06c1-45d9-aba0-c2440d321add '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV a6aad7f9-8444-4c2f-8e4b-b19fd453544f Informed Consent 38 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1361 57 false '-- '-- '-- '-- -20860 '-- 7640a9d1-04b1-5950-8139-52e731454d82 '-- not reported female '-- '-- '-- '-- white TCGA-04-1361_demographic Alive '-- '-- '-- '-- 20860 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 20329fd9-e669-5e99-8572-55ca9d382aec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1361_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1361_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5463c903-5fba-4e5a-b9f9-ccadfe1b559a Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV a6aad7f9-8444-4c2f-8e4b-b19fd453544f Informed Consent 38 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1361 57 false '-- '-- '-- '-- -20860 '-- 7640a9d1-04b1-5950-8139-52e731454d82 '-- not reported female '-- '-- '-- '-- white TCGA-04-1361_demographic Alive '-- '-- '-- '-- 20860 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 20329fd9-e669-5e99-8572-55ca9d382aec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1361_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 844 53 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1361_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6570ce77-d90a-435d-8c8f-e36a9481002a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a6aad7f9-8444-4c2f-8e4b-b19fd453544f Informed Consent 38 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1361 57 false '-- '-- '-- '-- -20860 '-- 7640a9d1-04b1-5950-8139-52e731454d82 '-- not reported female '-- '-- '-- '-- white TCGA-04-1361_demographic Alive '-- '-- '-- '-- 20860 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 20329fd9-e669-5e99-8572-55ca9d382aec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1361_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 844 53 '-- '-- '-- '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1361_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 919c412a-9363-54c4-bacf-d58a709a0a04 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a6aad7f9-8444-4c2f-8e4b-b19fd453544f Informed Consent 38 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1361 57 false '-- '-- '-- '-- -20860 '-- 7640a9d1-04b1-5950-8139-52e731454d82 '-- not reported female '-- '-- '-- '-- white TCGA-04-1361_demographic Alive '-- '-- '-- '-- 20860 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 20329fd9-e669-5e99-8572-55ca9d382aec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1361_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 989 936 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1361_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9ad212cc-d96d-43fa-b010-753f261cc40d '-- yes '-- '-- Chemotherapy +TCGA-OV a6aad7f9-8444-4c2f-8e4b-b19fd453544f Informed Consent 38 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1361 57 false '-- '-- '-- '-- -20860 '-- 7640a9d1-04b1-5950-8139-52e731454d82 '-- not reported female '-- '-- '-- '-- white TCGA-04-1361_demographic Alive '-- '-- '-- '-- 20860 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 20329fd9-e669-5e99-8572-55ca9d382aec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1361_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 989 936 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1361_treatment2 Bevacizumab '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cf4aef04-0e46-4f75-be30-1d40abdc6c22 '-- yes '-- '-- Immunotherapy (Including Vaccines) +TCGA-OV a6aad7f9-8444-4c2f-8e4b-b19fd453544f Informed Consent 38 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1361 57 false '-- '-- '-- '-- -20860 '-- 7640a9d1-04b1-5950-8139-52e731454d82 '-- not reported female '-- '-- '-- '-- white TCGA-04-1361_demographic Alive '-- '-- '-- '-- 20860 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 20329fd9-e669-5e99-8572-55ca9d382aec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1361_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 844 53 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1361_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fc4deb2f-deb7-4971-b254-c70a3caa30ab Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a6eb0cd0-fe57-41b0-8593-776208684293 Informed Consent 195 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1725 40 false '-- '-- '-- '-- -14782 '-- 1567ed8d-6ce0-5fab-b6a3-901c244c2235 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1725_demographic Alive '-- '-- '-- '-- 14782 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9ff03257-e85c-5449-95be-ea2f7d51e27d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1725_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1725_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0115e5ce-b8f6-48b6-a3ee-5550206448d6 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV a6eb0cd0-fe57-41b0-8593-776208684293 Informed Consent 195 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1725 40 false '-- '-- '-- '-- -14782 '-- 1567ed8d-6ce0-5fab-b6a3-901c244c2235 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1725_demographic Alive '-- '-- '-- '-- 14782 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9ff03257-e85c-5449-95be-ea2f7d51e27d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1725_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 908 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1725_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4368 '-- mg '-- '-- '-- '-- 136687be-739e-47f7-829c-0096da4c451f '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV a6eb0cd0-fe57-41b0-8593-776208684293 Informed Consent 195 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1725 40 false '-- '-- '-- '-- -14782 '-- 1567ed8d-6ce0-5fab-b6a3-901c244c2235 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1725_demographic Alive '-- '-- '-- '-- 14782 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9ff03257-e85c-5449-95be-ea2f7d51e27d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1725_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 158 45 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-1725_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 585 '-- mg '-- '-- '-- '-- 39ca8e1b-2ec6-4294-b097-905aa24edef8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a6eb0cd0-fe57-41b0-8593-776208684293 Informed Consent 195 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1725 40 false '-- '-- '-- '-- -14782 '-- 1567ed8d-6ce0-5fab-b6a3-901c244c2235 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1725_demographic Alive '-- '-- '-- '-- 14782 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9ff03257-e85c-5449-95be-ea2f7d51e27d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1725_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 158 45 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-1725_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 456 '-- mg '-- '-- '-- '-- 856b5273-652c-4b8e-84df-7529b2d86e81 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a6eb0cd0-fe57-41b0-8593-776208684293 Informed Consent 195 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1725 40 false '-- '-- '-- '-- -14782 '-- 1567ed8d-6ce0-5fab-b6a3-901c244c2235 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1725_demographic Alive '-- '-- '-- '-- 14782 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9ff03257-e85c-5449-95be-ea2f7d51e27d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1725_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 158 45 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-1725_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1548 '-- mg '-- '-- '-- '-- d5198be0-1414-55b3-98ae-cbb0ea820f6a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a6eb0cd0-fe57-41b0-8593-776208684293 Informed Consent 195 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1725 40 false '-- '-- '-- '-- -14782 '-- 1567ed8d-6ce0-5fab-b6a3-901c244c2235 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1725_demographic Alive '-- '-- '-- '-- 14782 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9ff03257-e85c-5449-95be-ea2f7d51e27d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1725_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 908 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1725_treatment4 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 8550 '-- mg '-- '-- '-- '-- e50b8113-d861-4305-a132-86de2f88448b '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV a6eb0cd0-fe57-41b0-8593-776208684293 Informed Consent 195 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1725 40 false '-- '-- '-- '-- -14782 '-- 1567ed8d-6ce0-5fab-b6a3-901c244c2235 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1725_demographic Alive '-- '-- '-- '-- 14782 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9ff03257-e85c-5449-95be-ea2f7d51e27d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1725_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 577 235 '-- '-- '-- '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1725_treatment7 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 3204 '-- mg '-- '-- '-- '-- f9a88eeb-6162-4af1-b5ae-67fee8ff36b0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a6eb0cd0-fe57-41b0-8593-776208684293 Informed Consent 195 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1725 40 false '-- '-- '-- '-- -14782 '-- 1567ed8d-6ce0-5fab-b6a3-901c244c2235 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1725_demographic Alive '-- '-- '-- '-- 14782 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 9ff03257-e85c-5449-95be-ea2f7d51e27d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1725_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 908 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1725_treatment6 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 2400 '-- mg '-- '-- '-- '-- fbe5a8cf-bc1f-4ffe-aaf3-e22b95442b42 '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV a6eb0cd0-fe57-41b0-8593-776208684293 Informed Consent 195 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1725 40 false '-- '-- '-- '-- -14782 '-- 1567ed8d-6ce0-5fab-b6a3-901c244c2235 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1725_demographic Alive '-- '-- '-- '-- 15626 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 844 '-- '-- '-- a7393f85-f02e-4611-89ec-eb9fd5cab012 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1725_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1725_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1725_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 42548121-0ebe-49b0-a701-a44758b89e91 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV a6eb0cd0-fe57-41b0-8593-776208684293 Informed Consent 195 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1725 40 false '-- '-- '-- '-- -14782 '-- 1567ed8d-6ce0-5fab-b6a3-901c244c2235 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1725_demographic Alive '-- '-- '-- '-- 15626 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 844 '-- '-- '-- a7393f85-f02e-4611-89ec-eb9fd5cab012 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1725_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1725_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1725_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cdd33115-9d17-4b86-9529-0928ca0f09cb '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV a782352e-c4bb-4c3e-ba82-456a47c3689a Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1845 42 false '-- '-- '-- '-- -15599 '-- 4992063f-c38e-540f-852c-da0c5b9e027b '-- not reported female '-- '-- '-- '-- white TCGA-24-1845_demographic Alive '-- '-- '-- '-- 15599 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 77f2d86e-3e74-5e0b-a3b4-dc55a7d1702e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1845_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 123 72 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1845_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 118 '-- mg '-- '-- '-- '-- 171e719a-d0c0-45df-8e69-ff043ec62acd Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a782352e-c4bb-4c3e-ba82-456a47c3689a Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1845 42 false '-- '-- '-- '-- -15599 '-- 4992063f-c38e-540f-852c-da0c5b9e027b '-- not reported female '-- '-- '-- '-- white TCGA-24-1845_demographic Alive '-- '-- '-- '-- 15599 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 77f2d86e-3e74-5e0b-a3b4-dc55a7d1702e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1845_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 123 72 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1845_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- 603 '-- mg '-- '-- '-- '-- 7d9db0d7-056f-553a-9d8a-fbfb7f7b2e67 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a782352e-c4bb-4c3e-ba82-456a47c3689a Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1845 42 false '-- '-- '-- '-- -15599 '-- 4992063f-c38e-540f-852c-da0c5b9e027b '-- not reported female '-- '-- '-- '-- white TCGA-24-1845_demographic Alive '-- '-- '-- '-- 15599 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 77f2d86e-3e74-5e0b-a3b4-dc55a7d1702e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1845_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 123 72 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1845_treatment4 Cisplatin '-- '-- '-- '-- '-- '-- '-- 469 '-- mg '-- '-- '-- '-- 97c8a850-f7dd-48a0-9bbe-22a5bef0e33f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a782352e-c4bb-4c3e-ba82-456a47c3689a Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1845 42 false '-- '-- '-- '-- -15599 '-- 4992063f-c38e-540f-852c-da0c5b9e027b '-- not reported female '-- '-- '-- '-- white TCGA-24-1845_demographic Alive '-- '-- '-- '-- 15599 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 77f2d86e-3e74-5e0b-a3b4-dc55a7d1702e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1845_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1845_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 99b3ad36-8baa-49d4-b50f-08309a8bf85d Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV a782352e-c4bb-4c3e-ba82-456a47c3689a Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1845 42 false '-- '-- '-- '-- -15599 '-- 4992063f-c38e-540f-852c-da0c5b9e027b '-- not reported female '-- '-- '-- '-- white TCGA-24-1845_demographic Alive '-- '-- '-- '-- 15599 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 77f2d86e-3e74-5e0b-a3b4-dc55a7d1702e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1845_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 123 72 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1845_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1169 '-- mg '-- '-- '-- '-- a7a5b490-017e-4229-aa9c-d3d97344df9a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a85f6f9c-1e1d-44fc-85eb-3b2d96cfbc61 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1488 59 false '-- '-- '-- '-- -21726 2154 b6bd947a-dae0-5ef3-905e-02630b777a39 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1488_demographic Dead '-- '-- '-- '-- 21726 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 04ce8f92-1262-5b87-9371-5b7f0e7d3f5f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1488_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 165 8 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1488_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 1773f89d-ed73-5734-a705-e5272bf0c60c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a85f6f9c-1e1d-44fc-85eb-3b2d96cfbc61 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1488 59 false '-- '-- '-- '-- -21726 2154 b6bd947a-dae0-5ef3-905e-02630b777a39 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1488_demographic Dead '-- '-- '-- '-- 21726 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 04ce8f92-1262-5b87-9371-5b7f0e7d3f5f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1488_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1488_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bdf62272-486f-458a-b712-1aa4f83eebbf Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV a85f6f9c-1e1d-44fc-85eb-3b2d96cfbc61 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1488 59 false '-- '-- '-- '-- -21726 2154 b6bd947a-dae0-5ef3-905e-02630b777a39 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1488_demographic Dead '-- '-- '-- '-- 21726 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 04ce8f92-1262-5b87-9371-5b7f0e7d3f5f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1488_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 165 8 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1488_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f30f1096-75cc-408f-9cea-f727f72634e0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a85f6f9c-1e1d-44fc-85eb-3b2d96cfbc61 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1488 59 false '-- '-- '-- '-- -21726 2154 b6bd947a-dae0-5ef3-905e-02630b777a39 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1488_demographic Dead '-- '-- '-- '-- 22077 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 351 '-- '-- '-- 5e28d4be-c413-4a06-ae0b-bd440928aaf9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1488_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1488_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1488_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1b99f2d4-c818-4023-99f2-45ba9719f1ee '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV a85f6f9c-1e1d-44fc-85eb-3b2d96cfbc61 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1488 59 false '-- '-- '-- '-- -21726 2154 b6bd947a-dae0-5ef3-905e-02630b777a39 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1488_demographic Dead '-- '-- '-- '-- 22077 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 351 '-- '-- '-- 5e28d4be-c413-4a06-ae0b-bd440928aaf9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1488_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1488_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1488_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7105a32a-700f-465d-90d0-a105676f1672 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV a8c4a333-6b67-44c8-9000-516f8ccea788 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2271 55 false '-- '-- '-- '-- -20399 962 ade57b50-0f6f-525d-b4d9-895575ae7a36 '-- not reported female '-- '-- '-- '-- asian TCGA-24-2271_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 01d0842c-eaa0-4aaf-a557-6a482c619c8e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2271_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2271_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2271_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5ce9a5a0-145c-40d7-99ec-d96af0868739 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV a8c4a333-6b67-44c8-9000-516f8ccea788 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2271 55 false '-- '-- '-- '-- -20399 962 ade57b50-0f6f-525d-b4d9-895575ae7a36 '-- not reported female '-- '-- '-- '-- asian TCGA-24-2271_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 01d0842c-eaa0-4aaf-a557-6a482c619c8e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2271_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2271_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2271_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5e66868a-e1ff-4554-931c-3c971c223c93 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV a8c4a333-6b67-44c8-9000-516f8ccea788 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2271 55 false '-- '-- '-- '-- -20399 962 ade57b50-0f6f-525d-b4d9-895575ae7a36 '-- not reported female '-- '-- '-- '-- asian TCGA-24-2271_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 01d0842c-eaa0-4aaf-a557-6a482c619c8e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2271_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2271_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 22 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2271_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 870b4b25-54da-4479-92d8-f172adf8d81a '-- yes '-- '-- Surgery, NOS +TCGA-OV a8c4a333-6b67-44c8-9000-516f8ccea788 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2271 55 false '-- '-- '-- '-- -20399 962 ade57b50-0f6f-525d-b4d9-895575ae7a36 '-- not reported female '-- '-- '-- '-- asian TCGA-24-2271_demographic Dead '-- '-- '-- '-- 21226 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 827 '-- '-- '-- 44c70399-2580-41f2-ab4a-2ac5a975e161 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2271_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2271_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2271_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2dec379f-5e11-459a-9b69-bf8b1a6c3c65 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV a8c4a333-6b67-44c8-9000-516f8ccea788 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2271 55 false '-- '-- '-- '-- -20399 962 ade57b50-0f6f-525d-b4d9-895575ae7a36 '-- not reported female '-- '-- '-- '-- asian TCGA-24-2271_demographic Dead '-- '-- '-- '-- 21226 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 827 '-- '-- '-- 44c70399-2580-41f2-ab4a-2ac5a975e161 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2271_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2271_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2271_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d3facc58-696d-4e82-95d6-732f800bc609 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV a8c4a333-6b67-44c8-9000-516f8ccea788 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2271 55 false '-- '-- '-- '-- -20399 962 ade57b50-0f6f-525d-b4d9-895575ae7a36 '-- not reported female '-- '-- '-- '-- asian TCGA-24-2271_demographic Dead '-- '-- '-- '-- 20399 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ae67d486-7f72-5338-90a8-592460e5a8d4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2271_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2271_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 82203de9-9821-59e2-80b1-afd36bf7da68 '-- yes '-- '-- Chemotherapy +TCGA-OV a8c4a333-6b67-44c8-9000-516f8ccea788 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2271 55 false '-- '-- '-- '-- -20399 962 ade57b50-0f6f-525d-b4d9-895575ae7a36 '-- not reported female '-- '-- '-- '-- asian TCGA-24-2271_demographic Dead '-- '-- '-- '-- 20399 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ae67d486-7f72-5338-90a8-592460e5a8d4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2271_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2271_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9f9dec84-d9bd-4981-a697-d90c8dce44ec Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV a8c4a333-6b67-44c8-9000-516f8ccea788 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2271 55 false '-- '-- '-- '-- -20399 962 ade57b50-0f6f-525d-b4d9-895575ae7a36 '-- not reported female '-- '-- '-- '-- asian TCGA-24-2271_demographic Dead '-- '-- '-- '-- 20399 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ae67d486-7f72-5338-90a8-592460e5a8d4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2271_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2271_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d8dc06c5-d079-400f-9e32-153e32dbed5f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a9abe7a7-4126-414b-87d2-a6d25abcf1fa '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0724 72 false '-- '-- '-- '-- -26342 83 f7209024-2212-57c6-a911-814f868dded7 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-13-0724_demographic Dead '-- '-- '-- '-- 26425 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 83 '-- '-- '-- b4836b5f-972c-4098-b4a5-2fa16e79dacd false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0724_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0724_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0724_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 03f77fe9-683d-4831-bd0c-e50d96627987 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV a9abe7a7-4126-414b-87d2-a6d25abcf1fa '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0724 72 false '-- '-- '-- '-- -26342 83 f7209024-2212-57c6-a911-814f868dded7 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-13-0724_demographic Dead '-- '-- '-- '-- 26425 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 83 '-- '-- '-- b4836b5f-972c-4098-b4a5-2fa16e79dacd false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0724_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0724_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0724_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- eb88500c-daaa-42b5-965f-c02c9b802855 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV a9abe7a7-4126-414b-87d2-a6d25abcf1fa '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0724 72 false '-- '-- '-- '-- -26342 83 f7209024-2212-57c6-a911-814f868dded7 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-13-0724_demographic Dead '-- '-- '-- '-- 26342 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b91001a3-8a3f-5dfc-8ec8-33576a6f86c7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0724_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 75 75 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0724_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 18f395e7-41cf-5bc5-ae77-985e648fbed5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a9abe7a7-4126-414b-87d2-a6d25abcf1fa '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0724 72 false '-- '-- '-- '-- -26342 83 f7209024-2212-57c6-a911-814f868dded7 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-13-0724_demographic Dead '-- '-- '-- '-- 26342 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b91001a3-8a3f-5dfc-8ec8-33576a6f86c7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0724_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0724_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b528b3d3-0766-401e-9d30-d9702ca83da3 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV a9d3a7b0-faf8-4e56-8600-d9e6882a4f23 Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1411 81 false '-- '-- '-- '-- -29874 531 27139b74-ed7d-5c9a-a505-c3f8562efbce '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1411_demographic Dead '-- '-- '-- '-- 30112 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 238 '-- '-- '-- 2f4833c6-0f31-4b29-b154-e8359b605de1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1411_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1411_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV a9d3a7b0-faf8-4e56-8600-d9e6882a4f23 Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1411 81 false '-- '-- '-- '-- -29874 531 27139b74-ed7d-5c9a-a505-c3f8562efbce '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1411_demographic Dead '-- '-- '-- '-- 29874 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 33ef06dd-c3cb-5ba0-b224-c83af2b6171b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1411_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 128 8 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1411_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0023c0f9-b6fb-5ead-b992-e0e4f116abb0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a9d3a7b0-faf8-4e56-8600-d9e6882a4f23 Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1411 81 false '-- '-- '-- '-- -29874 531 27139b74-ed7d-5c9a-a505-c3f8562efbce '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1411_demographic Dead '-- '-- '-- '-- 29874 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 33ef06dd-c3cb-5ba0-b224-c83af2b6171b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1411_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1411_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 05bbd2e0-c939-4d44-8d12-d2023c5ea14d Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV a9d3a7b0-faf8-4e56-8600-d9e6882a4f23 Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1411 81 false '-- '-- '-- '-- -29874 531 27139b74-ed7d-5c9a-a505-c3f8562efbce '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1411_demographic Dead '-- '-- '-- '-- 29874 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 33ef06dd-c3cb-5ba0-b224-c83af2b6171b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1411_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 128 8 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1411_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- aaf1e076-7d88-4d48-92b1-cefb3dbb2b93 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ac2e88ff-8b1e-4691-9a96-5a581f98d827 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1683 65 false '-- '-- '-- '-- -24006 '-- 7ca939fc-90ab-59cf-bf58-f423d134465e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1683_demographic Alive '-- '-- '-- '-- 24624 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 618 '-- '-- '-- 06542bee-6ecf-4857-855a-135a278c5a69 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-20-1683_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-20-1683_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-20-1683_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 761fbadd-9d25-4cd6-a1ee-e6c05e5bdd4f '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ac2e88ff-8b1e-4691-9a96-5a581f98d827 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1683 65 false '-- '-- '-- '-- -24006 '-- 7ca939fc-90ab-59cf-bf58-f423d134465e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1683_demographic Alive '-- '-- '-- '-- 24624 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 618 '-- '-- '-- 06542bee-6ecf-4857-855a-135a278c5a69 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-20-1683_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-20-1683_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-20-1683_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c49b2084-b9ac-4e13-af22-64a0b7cfb1ed '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV ac2e88ff-8b1e-4691-9a96-5a581f98d827 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1683 65 false '-- '-- '-- '-- -24006 '-- 7ca939fc-90ab-59cf-bf58-f423d134465e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1683_demographic Alive '-- '-- '-- '-- 24006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b3cd76a3-af1c-573b-b5fc-42c3ee779e66 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1683_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 135 17 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-1683_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 3d9625df-f84e-46b5-a83d-2f7a8d4d5167 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ac2e88ff-8b1e-4691-9a96-5a581f98d827 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1683 65 false '-- '-- '-- '-- -24006 '-- 7ca939fc-90ab-59cf-bf58-f423d134465e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1683_demographic Alive '-- '-- '-- '-- 24006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b3cd76a3-af1c-573b-b5fc-42c3ee779e66 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1683_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 618 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-20-1683_treatment3 Tamoxifen '-- '-- '-- '-- '-- '-- '-- 20 '-- mg '-- '-- '-- '-- a99c568b-18f0-4bc7-95b7-5fe762753777 Adjuvant yes Treatment Ongoing '-- Hormone Therapy +TCGA-OV ac2e88ff-8b1e-4691-9a96-5a581f98d827 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1683 65 false '-- '-- '-- '-- -24006 '-- 7ca939fc-90ab-59cf-bf58-f423d134465e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1683_demographic Alive '-- '-- '-- '-- 24006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b3cd76a3-af1c-573b-b5fc-42c3ee779e66 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1683_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 135 17 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-1683_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- c145f10f-6028-5b8b-9b46-43b0d9d01105 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ac2e88ff-8b1e-4691-9a96-5a581f98d827 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1683 65 false '-- '-- '-- '-- -24006 '-- 7ca939fc-90ab-59cf-bf58-f423d134465e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1683_demographic Alive '-- '-- '-- '-- 24006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b3cd76a3-af1c-573b-b5fc-42c3ee779e66 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1683_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-20-1683_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f0d667fc-0ff3-4ff1-983f-1b97d84e7088 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV acb7ec56-8a47-495f-a11b-2c9fb5d8fe95 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1107 59 false '-- '-- '-- '-- -21561 9 a11794df-2f45-5422-bff0-439ff680ce2d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1107_demographic Dead '-- '-- '-- '-- 21561 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c5596e3d-d994-5f01-98ef-e04beffcc90b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1107_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1107_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 73b0ab2b-8e76-4b2a-beef-4b54c6d1f81e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV acb7ec56-8a47-495f-a11b-2c9fb5d8fe95 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1107 59 false '-- '-- '-- '-- -21561 9 a11794df-2f45-5422-bff0-439ff680ce2d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1107_demographic Dead '-- '-- '-- '-- 21561 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c5596e3d-d994-5f01-98ef-e04beffcc90b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1107_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1107_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ff33860a-fae6-5bfe-abe3-29eb0f909303 Adjuvant no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV ad2939e6-b8b8-475a-90e2-6a369c3d3167 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1718 44 false '-- '-- '-- '-- -16400 1579 af0f012e-4f9b-5984-9ca8-278a4b50c0ce '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1718_demographic Dead '-- '-- '-- '-- 16400 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a8f15bcc-2d2b-58da-adf9-fe2277971d9e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1718_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1718_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 03b3b1bd-5e6f-47a5-8cee-448e77bc6e6f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ad2939e6-b8b8-475a-90e2-6a369c3d3167 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1718 44 false '-- '-- '-- '-- -16400 1579 af0f012e-4f9b-5984-9ca8-278a4b50c0ce '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1718_demographic Dead '-- '-- '-- '-- 16400 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a8f15bcc-2d2b-58da-adf9-fe2277971d9e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1718_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 492 206 '-- '-- '-- '-- '-- '-- '-- 11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1718_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 17cbc288-edde-54bb-a604-7b7421ba7b73 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ad2939e6-b8b8-475a-90e2-6a369c3d3167 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1718 44 false '-- '-- '-- '-- -16400 1579 af0f012e-4f9b-5984-9ca8-278a4b50c0ce '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1718_demographic Dead '-- '-- '-- '-- 16400 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a8f15bcc-2d2b-58da-adf9-fe2277971d9e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1718_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1718_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1e1c9bb6-da2a-4575-a198-da9f1237e74f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ad2939e6-b8b8-475a-90e2-6a369c3d3167 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1718 44 false '-- '-- '-- '-- -16400 1579 af0f012e-4f9b-5984-9ca8-278a4b50c0ce '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1718_demographic Dead '-- '-- '-- '-- 16400 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a8f15bcc-2d2b-58da-adf9-fe2277971d9e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1718_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1718_treatment2 Altretamine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5e7bd0e0-d85b-49f8-9797-864460c78a36 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ad2939e6-b8b8-475a-90e2-6a369c3d3167 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1718 44 false '-- '-- '-- '-- -16400 1579 af0f012e-4f9b-5984-9ca8-278a4b50c0ce '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1718_demographic Dead '-- '-- '-- '-- 16400 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a8f15bcc-2d2b-58da-adf9-fe2277971d9e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1718_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 178 31 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1718_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b1a7fd43-8292-4a76-858f-b5d680287445 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ad2939e6-b8b8-475a-90e2-6a369c3d3167 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1718 44 false '-- '-- '-- '-- -16400 1579 af0f012e-4f9b-5984-9ca8-278a4b50c0ce '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1718_demographic Dead '-- '-- '-- '-- 16400 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a8f15bcc-2d2b-58da-adf9-fe2277971d9e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1718_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 896 865 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1718_treatment4 Tamoxifen '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d0ab8730-72a3-4dee-980b-c610e4797fe7 Adjuvant yes '-- '-- Hormone Therapy +TCGA-OV ad2939e6-b8b8-475a-90e2-6a369c3d3167 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1718 44 false '-- '-- '-- '-- -16400 1579 af0f012e-4f9b-5984-9ca8-278a4b50c0ce '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1718_demographic Dead '-- '-- '-- '-- 16400 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a8f15bcc-2d2b-58da-adf9-fe2277971d9e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1718_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1718_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fbce0faa-8d82-4f37-8b3e-9f01be7bdfaf Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ad2939e6-b8b8-475a-90e2-6a369c3d3167 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1718 44 false '-- '-- '-- '-- -16400 1579 af0f012e-4f9b-5984-9ca8-278a4b50c0ce '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1718_demographic Dead '-- '-- '-- '-- 17296 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 896 '-- '-- '-- e5b0c522-eeae-424e-a5f5-0db04e433007 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1718_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1718_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1718_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1f20fd44-db7b-4650-862a-7cb64f42ce66 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ad2939e6-b8b8-475a-90e2-6a369c3d3167 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1718 44 false '-- '-- '-- '-- -16400 1579 af0f012e-4f9b-5984-9ca8-278a4b50c0ce '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1718_demographic Dead '-- '-- '-- '-- 17296 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 896 '-- '-- '-- e5b0c522-eeae-424e-a5f5-0db04e433007 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1718_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1718_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1718_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e61bae5f-96ec-403c-8572-b1e1a2c04668 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV ad2b1a0a-153f-483d-b228-5763eba3f6cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2399 80 false '-- '-- '-- '-- -29373 608 bf26361b-e6d4-5693-b15f-d91ed2a71b5f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2399_demographic Dead '-- '-- '-- '-- 29616 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 243 '-- '-- '-- 0f66c4fd-6a3e-4604-aef9-48f9726eb7d6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-2399_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-2399_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2399_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 52f8e534-1554-40bb-93a1-9d5a3c3b1d7f '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV ad2b1a0a-153f-483d-b228-5763eba3f6cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2399 80 false '-- '-- '-- '-- -29373 608 bf26361b-e6d4-5693-b15f-d91ed2a71b5f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2399_demographic Dead '-- '-- '-- '-- 29616 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 243 '-- '-- '-- 0f66c4fd-6a3e-4604-aef9-48f9726eb7d6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-2399_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-2399_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2399_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aecf5c12-5640-46ed-882a-a61da24eeedb '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ad2b1a0a-153f-483d-b228-5763eba3f6cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2399 80 false '-- '-- '-- '-- -29373 608 bf26361b-e6d4-5693-b15f-d91ed2a71b5f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2399_demographic Dead '-- '-- '-- '-- 29373 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e1731d67-eada-531d-baa0-f203daa3117c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2399_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2399_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9264b74a-edeb-46ac-a6c7-e88c8e98cf33 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ad2b1a0a-153f-483d-b228-5763eba3f6cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2399 80 false '-- '-- '-- '-- -29373 608 bf26361b-e6d4-5693-b15f-d91ed2a71b5f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2399_demographic Dead '-- '-- '-- '-- 29373 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e1731d67-eada-531d-baa0-f203daa3117c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2399_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 182 61 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2399_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b0e7aa92-8bc0-5c75-b202-cda6572df638 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ad2b1a0a-153f-483d-b228-5763eba3f6cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2399 80 false '-- '-- '-- '-- -29373 608 bf26361b-e6d4-5693-b15f-d91ed2a71b5f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2399_demographic Dead '-- '-- '-- '-- 29373 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e1731d67-eada-531d-baa0-f203daa3117c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2399_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 182 61 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2399_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c79f896a-50b0-4937-9284-1c61349a110f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ad2b1a0a-153f-483d-b228-5763eba3f6cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2399 80 false '-- '-- '-- '-- -29373 608 bf26361b-e6d4-5693-b15f-d91ed2a71b5f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2399_demographic Dead '-- '-- '-- '-- 29373 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e1731d67-eada-531d-baa0-f203daa3117c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2399_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2399_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e6116246-4411-4613-a24a-862f6379e1fd '-- yes '-- '-- Chemotherapy +TCGA-OV ae914f23-87b9-4169-a7f7-a3483078c902 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2009 65 false '-- '-- '-- '-- -23772 '-- c2e9ac12-63d8-5aff-8006-3a819ceb9302 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2009_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8c541cd8-ed56-4bbf-88ab-c9aa1c70b67e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2009_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2009_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2009_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cd3dccd6-ec73-4eaa-b553-8043be761df6 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV ae914f23-87b9-4169-a7f7-a3483078c902 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2009 65 false '-- '-- '-- '-- -23772 '-- c2e9ac12-63d8-5aff-8006-3a819ceb9302 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2009_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8c541cd8-ed56-4bbf-88ab-c9aa1c70b67e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2009_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2009_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 819 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2009_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- da6b78c6-acaf-40c3-8ee9-196ff387239e '-- yes '-- '-- Surgery, NOS +TCGA-OV ae914f23-87b9-4169-a7f7-a3483078c902 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2009 65 false '-- '-- '-- '-- -23772 '-- c2e9ac12-63d8-5aff-8006-3a819ceb9302 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2009_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8c541cd8-ed56-4bbf-88ab-c9aa1c70b67e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2009_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2009_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2009_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e4faacf8-3792-4050-9597-7a524817ef32 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ae914f23-87b9-4169-a7f7-a3483078c902 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2009 65 false '-- '-- '-- '-- -23772 '-- c2e9ac12-63d8-5aff-8006-3a819ceb9302 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2009_demographic Alive '-- '-- '-- '-- 23873 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 101 '-- '-- '-- c308a0cc-7fd8-4aaf-a65c-03cd259f0de1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2009_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2009_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2009_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 58dbe39a-8e8f-4456-a169-e7fc8ed7681d '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ae914f23-87b9-4169-a7f7-a3483078c902 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2009 65 false '-- '-- '-- '-- -23772 '-- c2e9ac12-63d8-5aff-8006-3a819ceb9302 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2009_demographic Alive '-- '-- '-- '-- 23873 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 101 '-- '-- '-- c308a0cc-7fd8-4aaf-a65c-03cd259f0de1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2009_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2009_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2009_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 668157df-968f-42a4-81ca-10c77e97c5d2 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV ae914f23-87b9-4169-a7f7-a3483078c902 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2009 65 false '-- '-- '-- '-- -23772 '-- c2e9ac12-63d8-5aff-8006-3a819ceb9302 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2009_demographic Alive '-- '-- '-- '-- 23772 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c813f3eb-5dd8-5697-90d3-e91a0bd284b0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2009_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 295 120 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-2009_treatment4 Cisplatin '-- '-- '-- '-- '-- '-- '-- 635 '-- mg '-- '-- '-- '-- 04b1c02d-7a07-4427-8a6c-52ae10f8529c '-- yes '-- '-- Chemotherapy +TCGA-OV ae914f23-87b9-4169-a7f7-a3483078c902 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2009 65 false '-- '-- '-- '-- -23772 '-- c2e9ac12-63d8-5aff-8006-3a819ceb9302 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2009_demographic Alive '-- '-- '-- '-- 23772 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c813f3eb-5dd8-5697-90d3-e91a0bd284b0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2009_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 83 41 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2009_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 778 '-- mg '-- '-- '-- '-- 6e543960-c196-4edb-a146-95ad95fc0f74 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ae914f23-87b9-4169-a7f7-a3483078c902 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2009 65 false '-- '-- '-- '-- -23772 '-- c2e9ac12-63d8-5aff-8006-3a819ceb9302 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2009_demographic Alive '-- '-- '-- '-- 23772 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c813f3eb-5dd8-5697-90d3-e91a0bd284b0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2009_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 295 120 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-2009_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 490 '-- mg '-- '-- '-- '-- 7ecf782b-0b72-4e1d-822a-3103565d42a6 '-- yes '-- '-- Chemotherapy +TCGA-OV ae914f23-87b9-4169-a7f7-a3483078c902 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2009 65 false '-- '-- '-- '-- -23772 '-- c2e9ac12-63d8-5aff-8006-3a819ceb9302 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2009_demographic Alive '-- '-- '-- '-- 23772 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c813f3eb-5dd8-5697-90d3-e91a0bd284b0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2009_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 83 41 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2009_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 1545 '-- mg '-- '-- '-- '-- 883871c7-ecf6-5669-8b76-a651137bf869 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ae914f23-87b9-4169-a7f7-a3483078c902 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2009 65 false '-- '-- '-- '-- -23772 '-- c2e9ac12-63d8-5aff-8006-3a819ceb9302 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2009_demographic Alive '-- '-- '-- '-- 23772 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c813f3eb-5dd8-5697-90d3-e91a0bd284b0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2009_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 1003 839 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-2009_treatment6 Docetaxel '-- '-- '-- '-- '-- '-- '-- 658 '-- mg '-- '-- '-- '-- a7172467-4c5d-48dd-a09d-3efc77c1ab19 '-- yes '-- '-- Chemotherapy +TCGA-OV ae914f23-87b9-4169-a7f7-a3483078c902 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2009 65 false '-- '-- '-- '-- -23772 '-- c2e9ac12-63d8-5aff-8006-3a819ceb9302 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2009_demographic Alive '-- '-- '-- '-- 23772 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c813f3eb-5dd8-5697-90d3-e91a0bd284b0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2009_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 1003 839 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-2009_treatment8 Oxaliplatin '-- '-- '-- '-- '-- '-- '-- 987 '-- mg '-- '-- '-- '-- c36ec2bb-1512-45cc-aa9b-22465c5edd34 '-- yes '-- '-- Chemotherapy +TCGA-OV ae914f23-87b9-4169-a7f7-a3483078c902 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2009 65 false '-- '-- '-- '-- -23772 '-- c2e9ac12-63d8-5aff-8006-3a819ceb9302 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2009_demographic Alive '-- '-- '-- '-- 23772 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c813f3eb-5dd8-5697-90d3-e91a0bd284b0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2009_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 295 120 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-2009_treatment9 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1200 '-- mg '-- '-- '-- '-- d364b7f1-350a-497c-9840-ddb5ba94c007 '-- yes '-- '-- Chemotherapy +TCGA-OV ae914f23-87b9-4169-a7f7-a3483078c902 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2009 65 false '-- '-- '-- '-- -23772 '-- c2e9ac12-63d8-5aff-8006-3a819ceb9302 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2009_demographic Alive '-- '-- '-- '-- 23772 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c813f3eb-5dd8-5697-90d3-e91a0bd284b0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2009_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2009_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d463df74-7aac-4668-adaf-eeb5beeff6e7 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ae914f23-87b9-4169-a7f7-a3483078c902 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2009 65 false '-- '-- '-- '-- -23772 '-- c2e9ac12-63d8-5aff-8006-3a819ceb9302 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2009_demographic Alive '-- '-- '-- '-- 23772 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c813f3eb-5dd8-5697-90d3-e91a0bd284b0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2009_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- 658 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2009_treatment3 Tamoxifen '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f2a25806-5458-4191-b22d-8bc4a0cbdbda '-- yes '-- '-- Hormone Therapy +TCGA-OV ae914f23-87b9-4169-a7f7-a3483078c902 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2009 65 false '-- '-- '-- '-- -23772 '-- c2e9ac12-63d8-5aff-8006-3a819ceb9302 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2009_demographic Alive '-- '-- '-- '-- 23772 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c813f3eb-5dd8-5697-90d3-e91a0bd284b0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2009_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 1126 1100 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2009_treatment7 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 304 '-- mg '-- '-- '-- '-- f8e10e34-e5b0-4f76-9163-b33317631d1b '-- yes '-- '-- Chemotherapy +TCGA-OV afd92922-b8dc-48bd-a9c0-bc8d95855eb7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1560 51 false '-- '-- '-- '-- -18671 1341 78a963aa-07fe-526a-93c8-3f2bc9d8d317 '-- not reported female '-- '-- '-- '-- white TCGA-24-1560_demographic Dead '-- '-- '-- '-- 18671 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c81c054c-bd20-5c4f-b3bd-3d67dc613c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1560_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 117 15 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1560_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4620 '-- mg '-- '-- '-- '-- 147c1956-b0f6-443c-88d2-b9220796b32c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV afd92922-b8dc-48bd-a9c0-bc8d95855eb7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1560 51 false '-- '-- '-- '-- -18671 1341 78a963aa-07fe-526a-93c8-3f2bc9d8d317 '-- not reported female '-- '-- '-- '-- white TCGA-24-1560_demographic Dead '-- '-- '-- '-- 18671 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c81c054c-bd20-5c4f-b3bd-3d67dc613c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1560_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 614 509 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1560_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1730 '-- mg '-- '-- '-- '-- 258c3977-35a2-4c3e-a46a-6836d4fb5f36 '-- yes '-- '-- Chemotherapy +TCGA-OV afd92922-b8dc-48bd-a9c0-bc8d95855eb7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1560 51 false '-- '-- '-- '-- -18671 1341 78a963aa-07fe-526a-93c8-3f2bc9d8d317 '-- not reported female '-- '-- '-- '-- white TCGA-24-1560_demographic Dead '-- '-- '-- '-- 18671 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c81c054c-bd20-5c4f-b3bd-3d67dc613c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1560_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 901 757 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Not Reported TCGA-24-1560_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2875 '-- mg '-- '-- '-- '-- 28274d8a-3646-4cfb-bf36-c5f6ea09b452 '-- yes '-- '-- Chemotherapy +TCGA-OV afd92922-b8dc-48bd-a9c0-bc8d95855eb7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1560 51 false '-- '-- '-- '-- -18671 1341 78a963aa-07fe-526a-93c8-3f2bc9d8d317 '-- not reported female '-- '-- '-- '-- white TCGA-24-1560_demographic Dead '-- '-- '-- '-- 18671 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c81c054c-bd20-5c4f-b3bd-3d67dc613c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1560_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1189 1043 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1560_treatment13 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2730 '-- mg '-- '-- '-- '-- 2f93067d-da93-49f0-a125-913a84d25a8a '-- yes '-- '-- Chemotherapy +TCGA-OV afd92922-b8dc-48bd-a9c0-bc8d95855eb7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1560 51 false '-- '-- '-- '-- -18671 1341 78a963aa-07fe-526a-93c8-3f2bc9d8d317 '-- not reported female '-- '-- '-- '-- white TCGA-24-1560_demographic Dead '-- '-- '-- '-- 18671 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c81c054c-bd20-5c4f-b3bd-3d67dc613c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1560_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 481 398 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1560_treatment Topotecan '-- '-- '-- '-- '-- '-- '-- 48 '-- mg '-- '-- '-- '-- 433292e6-7678-56ee-8919-2c720079f7f2 '-- yes '-- '-- Chemotherapy +TCGA-OV afd92922-b8dc-48bd-a9c0-bc8d95855eb7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1560 51 false '-- '-- '-- '-- -18671 1341 78a963aa-07fe-526a-93c8-3f2bc9d8d317 '-- not reported female '-- '-- '-- '-- white TCGA-24-1560_demographic Dead '-- '-- '-- '-- 18671 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c81c054c-bd20-5c4f-b3bd-3d67dc613c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1560_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 901 757 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Not Reported TCGA-24-1560_treatment9 Etoposide '-- '-- '-- '-- '-- '-- '-- 4650 '-- mg '-- '-- '-- '-- 5a7f25f0-96b3-438e-9f91-7ea021ea8c07 '-- yes '-- '-- Chemotherapy +TCGA-OV afd92922-b8dc-48bd-a9c0-bc8d95855eb7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1560 51 false '-- '-- '-- '-- -18671 1341 78a963aa-07fe-526a-93c8-3f2bc9d8d317 '-- not reported female '-- '-- '-- '-- white TCGA-24-1560_demographic Dead '-- '-- '-- '-- 18671 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c81c054c-bd20-5c4f-b3bd-3d67dc613c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1560_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1560_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6cbaed26-25c3-4491-986e-98f995de09dd Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV afd92922-b8dc-48bd-a9c0-bc8d95855eb7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1560 51 false '-- '-- '-- '-- -18671 1341 78a963aa-07fe-526a-93c8-3f2bc9d8d317 '-- not reported female '-- '-- '-- '-- white TCGA-24-1560_demographic Dead '-- '-- '-- '-- 18671 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c81c054c-bd20-5c4f-b3bd-3d67dc613c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1560_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 614 509 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1560_treatment8 Amifostine '-- '-- '-- '-- '-- '-- '-- 7220 '-- mg '-- '-- '-- '-- 8006b3d6-2d47-4bd1-9c85-a78d2cd56d11 '-- yes '-- '-- Chemotherapy +TCGA-OV afd92922-b8dc-48bd-a9c0-bc8d95855eb7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1560 51 false '-- '-- '-- '-- -18671 1341 78a963aa-07fe-526a-93c8-3f2bc9d8d317 '-- not reported female '-- '-- '-- '-- white TCGA-24-1560_demographic Dead '-- '-- '-- '-- 18671 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c81c054c-bd20-5c4f-b3bd-3d67dc613c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1560_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1015 931 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-1560_treatment12 Capecitabine '-- '-- '-- '-- '-- '-- '-- 210000 '-- mg '-- '-- '-- '-- 8fecbaeb-6d47-4252-8162-40e7e37b5a40 '-- yes '-- '-- Chemotherapy +TCGA-OV afd92922-b8dc-48bd-a9c0-bc8d95855eb7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1560 51 false '-- '-- '-- '-- -18671 1341 78a963aa-07fe-526a-93c8-3f2bc9d8d317 '-- not reported female '-- '-- '-- '-- white TCGA-24-1560_demographic Dead '-- '-- '-- '-- 18671 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c81c054c-bd20-5c4f-b3bd-3d67dc613c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1560_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 614 509 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1560_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3100 '-- mg '-- '-- '-- '-- acc910f1-b151-4c98-b826-a78c83d95558 '-- yes '-- '-- Chemotherapy +TCGA-OV afd92922-b8dc-48bd-a9c0-bc8d95855eb7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1560 51 false '-- '-- '-- '-- -18671 1341 78a963aa-07fe-526a-93c8-3f2bc9d8d317 '-- not reported female '-- '-- '-- '-- white TCGA-24-1560_demographic Dead '-- '-- '-- '-- 18671 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c81c054c-bd20-5c4f-b3bd-3d67dc613c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1560_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1258 1216 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1560_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1640 '-- mg '-- '-- '-- '-- af39e8d8-2656-4e2e-ba66-fd37b6d960d1 '-- yes '-- '-- Chemotherapy +TCGA-OV afd92922-b8dc-48bd-a9c0-bc8d95855eb7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1560 51 false '-- '-- '-- '-- -18671 1341 78a963aa-07fe-526a-93c8-3f2bc9d8d317 '-- not reported female '-- '-- '-- '-- white TCGA-24-1560_demographic Dead '-- '-- '-- '-- 18671 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c81c054c-bd20-5c4f-b3bd-3d67dc613c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1560_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 117 15 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1560_treatment10 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1620 '-- mg '-- '-- '-- '-- af46cb53-45cc-44da-a49f-8158f9485762 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV afd92922-b8dc-48bd-a9c0-bc8d95855eb7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1560 51 false '-- '-- '-- '-- -18671 1341 78a963aa-07fe-526a-93c8-3f2bc9d8d317 '-- not reported female '-- '-- '-- '-- white TCGA-24-1560_demographic Dead '-- '-- '-- '-- 18671 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c81c054c-bd20-5c4f-b3bd-3d67dc613c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1560_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 726 635 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1560_treatment11 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 200 '-- mg '-- '-- '-- '-- c8b62bf4-f8f4-4329-b0e5-3a5de042e292 '-- yes '-- '-- Chemotherapy +TCGA-OV afd92922-b8dc-48bd-a9c0-bc8d95855eb7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1560 51 false '-- '-- '-- '-- -18671 1341 78a963aa-07fe-526a-93c8-3f2bc9d8d317 '-- not reported female '-- '-- '-- '-- white TCGA-24-1560_demographic Dead '-- '-- '-- '-- 18671 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c81c054c-bd20-5c4f-b3bd-3d67dc613c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1560_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 726 635 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1560_treatment4 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 15000 '-- mg '-- '-- '-- '-- e9e41016-05e3-4893-b17b-bfae048c99f9 '-- yes '-- '-- Chemotherapy +TCGA-OV afd92922-b8dc-48bd-a9c0-bc8d95855eb7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1560 51 false '-- '-- '-- '-- -18671 1341 78a963aa-07fe-526a-93c8-3f2bc9d8d317 '-- not reported female '-- '-- '-- '-- white TCGA-24-1560_demographic Dead '-- '-- '-- '-- 18814 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 143 '-- '-- '-- fced6d41-8bc6-42f8-b0a4-83e2d93aa3e7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1560_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1560_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1560_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8861eaf7-646d-44d7-b162-543401eafb21 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV afd92922-b8dc-48bd-a9c0-bc8d95855eb7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1560 51 false '-- '-- '-- '-- -18671 1341 78a963aa-07fe-526a-93c8-3f2bc9d8d317 '-- not reported female '-- '-- '-- '-- white TCGA-24-1560_demographic Dead '-- '-- '-- '-- 18814 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 143 '-- '-- '-- fced6d41-8bc6-42f8-b0a4-83e2d93aa3e7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1560_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1560_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1560_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d7664e82-bd5d-4b2e-b49b-8a7162267dbc '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV b0585c7a-7205-4dac-9d54-6da89674accb Informed Consent 1372 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2428 58 false '-- '-- '-- '-- -21392 '-- f49495f3-6a81-572b-b92a-f1ffdb45a55d '-- not reported female '-- '-- '-- '-- white TCGA-29-2428_demographic Alive '-- '-- '-- '-- 21392 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e20d29d9-559f-572a-8639-75c5d0f20e06 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2428_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 141 18 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-2428_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 670 '-- mg '-- '-- '-- '-- 1137f07e-391a-5b5f-a537-bd03d22f3f20 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b0585c7a-7205-4dac-9d54-6da89674accb Informed Consent 1372 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2428 58 false '-- '-- '-- '-- -21392 '-- f49495f3-6a81-572b-b92a-f1ffdb45a55d '-- not reported female '-- '-- '-- '-- white TCGA-29-2428_demographic Alive '-- '-- '-- '-- 21392 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e20d29d9-559f-572a-8639-75c5d0f20e06 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2428_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 141 18 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-2428_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 280 '-- mg '-- '-- '-- '-- 507449cc-22bc-4ae1-994d-d63856401014 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b0585c7a-7205-4dac-9d54-6da89674accb Informed Consent 1372 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2428 58 false '-- '-- '-- '-- -21392 '-- f49495f3-6a81-572b-b92a-f1ffdb45a55d '-- not reported female '-- '-- '-- '-- white TCGA-29-2428_demographic Alive '-- '-- '-- '-- 21392 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e20d29d9-559f-572a-8639-75c5d0f20e06 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2428_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2428_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 94f21461-8b39-4754-89df-146bda38ef64 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b0839f46-8c82-4619-be3d-c857a1759463 Informed Consent -325 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1951 58 false '-- '-- '-- '-- -21352 '-- 1f9b5de4-e9f0-5e4d-8959-ccfe046d49a5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1951_demographic Alive '-- '-- '-- '-- 21352 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 201d89c4-e6e6-5f26-9ffc-249c94991d25 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1951_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 146 41 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1951_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3600 '-- mg '-- '-- '-- '-- 0cc14ffb-50e9-4538-a1ba-a1bac0d63e8f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b0839f46-8c82-4619-be3d-c857a1759463 Informed Consent -325 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1951 58 false '-- '-- '-- '-- -21352 '-- 1f9b5de4-e9f0-5e4d-8959-ccfe046d49a5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1951_demographic Alive '-- '-- '-- '-- 21352 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 201d89c4-e6e6-5f26-9ffc-249c94991d25 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1951_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 482 328 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1951_treatment Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 240 '-- mg '-- '-- '-- '-- 26eb5580-5888-5b83-8256-0e83babb4ed7 '-- yes '-- '-- Chemotherapy +TCGA-OV b0839f46-8c82-4619-be3d-c857a1759463 Informed Consent -325 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1951 58 false '-- '-- '-- '-- -21352 '-- 1f9b5de4-e9f0-5e4d-8959-ccfe046d49a5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1951_demographic Alive '-- '-- '-- '-- 21352 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 201d89c4-e6e6-5f26-9ffc-249c94991d25 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1951_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 482 328 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1951_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3600 '-- mg '-- '-- '-- '-- 6eed5189-5fb1-40c3-91ce-93b632514031 '-- yes '-- '-- Chemotherapy +TCGA-OV b0839f46-8c82-4619-be3d-c857a1759463 Informed Consent -325 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1951 58 false '-- '-- '-- '-- -21352 '-- 1f9b5de4-e9f0-5e4d-8959-ccfe046d49a5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1951_demographic Alive '-- '-- '-- '-- 21352 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 201d89c4-e6e6-5f26-9ffc-249c94991d25 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1951_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1951_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9d44da79-0ad1-46d2-b038-1f7ef881abcb Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b0839f46-8c82-4619-be3d-c857a1759463 Informed Consent -325 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1951 58 false '-- '-- '-- '-- -21352 '-- 1f9b5de4-e9f0-5e4d-8959-ccfe046d49a5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1951_demographic Alive '-- '-- '-- '-- 21352 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 201d89c4-e6e6-5f26-9ffc-249c94991d25 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1951_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 146 41 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1951_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1260 '-- mg '-- '-- '-- '-- caa50005-4228-49cd-985e-5c6eb04d452b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b0839f46-8c82-4619-be3d-c857a1759463 Informed Consent -325 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1951 58 false '-- '-- '-- '-- -21352 '-- 1f9b5de4-e9f0-5e4d-8959-ccfe046d49a5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1951_demographic Alive '-- '-- '-- '-- 22011 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 659 '-- '-- '-- d44392a8-12cf-4272-bf49-936c71ae2751 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-31-1951_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-31-1951_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1951_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 13b1d094-c207-4216-b642-cfc268636514 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV b0839f46-8c82-4619-be3d-c857a1759463 Informed Consent -325 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1951 58 false '-- '-- '-- '-- -21352 '-- 1f9b5de4-e9f0-5e4d-8959-ccfe046d49a5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1951_demographic Alive '-- '-- '-- '-- 22011 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 659 '-- '-- '-- d44392a8-12cf-4272-bf49-936c71ae2751 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-31-1951_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-31-1951_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1951_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a333f1aa-5879-43eb-987e-688284e77272 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV b120b701-c194-43d7-a491-3206fac38ec1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1425 45 false '-- '-- '-- '-- -16764 '-- aedc9d93-ac86-5686-a44b-83c6a60b6bcb '-- not reported female '-- '-- '-- '-- white TCGA-24-1425_demographic Alive '-- '-- '-- '-- 16764 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a4520404-b3dd-59ab-a30e-b3073be4407c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1425_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 145 27 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1425_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5065 '-- mg '-- '-- '-- '-- 1d95f428-88d0-47b0-bed1-5e668a570a82 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b120b701-c194-43d7-a491-3206fac38ec1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1425 45 false '-- '-- '-- '-- -16764 '-- aedc9d93-ac86-5686-a44b-83c6a60b6bcb '-- not reported female '-- '-- '-- '-- white TCGA-24-1425_demographic Alive '-- '-- '-- '-- 16764 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a4520404-b3dd-59ab-a30e-b3073be4407c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1425_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1425_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 89a0a221-2313-4fa0-84bb-2c0b014fefb8 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b120b701-c194-43d7-a491-3206fac38ec1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1425 45 false '-- '-- '-- '-- -16764 '-- aedc9d93-ac86-5686-a44b-83c6a60b6bcb '-- not reported female '-- '-- '-- '-- white TCGA-24-1425_demographic Alive '-- '-- '-- '-- 16764 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a4520404-b3dd-59ab-a30e-b3073be4407c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1425_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 145 27 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1425_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 553 '-- mg '-- '-- '-- '-- c64cf399-ed54-418b-96b1-1793f1052484 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b120b701-c194-43d7-a491-3206fac38ec1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1425 45 false '-- '-- '-- '-- -16764 '-- aedc9d93-ac86-5686-a44b-83c6a60b6bcb '-- not reported female '-- '-- '-- '-- white TCGA-24-1425_demographic Alive '-- '-- '-- '-- 16764 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a4520404-b3dd-59ab-a30e-b3073be4407c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1425_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 145 27 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1425_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- 832 '-- mg '-- '-- '-- '-- c8533376-0d48-5ff0-a8f4-86f4bd19a3bf Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b1c90c69-6149-4105-8182-ab9212f196be Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1669 54 false '-- '-- '-- '-- -20052 '-- 85394400-da7b-574f-8346-6d5fc26b3df5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1669_demographic Alive '-- '-- '-- '-- 20052 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a5bcf80f-e5db-5ab5-8c04-57c2093acb89 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1669_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 132 27 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1669_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 15a724f5-1a73-51fb-83ad-81dbf48cc564 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b1c90c69-6149-4105-8182-ab9212f196be Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1669 54 false '-- '-- '-- '-- -20052 '-- 85394400-da7b-574f-8346-6d5fc26b3df5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1669_demographic Alive '-- '-- '-- '-- 20052 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a5bcf80f-e5db-5ab5-8c04-57c2093acb89 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1669_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1669_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5c233f57-7dd3-4fbc-9923-41f17b5a7c00 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b1c90c69-6149-4105-8182-ab9212f196be Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1669 54 false '-- '-- '-- '-- -20052 '-- 85394400-da7b-574f-8346-6d5fc26b3df5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1669_demographic Alive '-- '-- '-- '-- 20052 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a5bcf80f-e5db-5ab5-8c04-57c2093acb89 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1669_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 132 27 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1669_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cce89418-ea58-415e-8feb-7c7a3991b863 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b1e11e94-646b-4c44-9d33-1ca67d8356fb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0795 66 false '-- '-- '-- '-- -24403 619 765b568d-c940-5239-92dc-26c4c0431db1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0795_demographic Dead '-- '-- '-- '-- 24403 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 049f6c9e-4b02-5c39-ad7f-5f357c226bc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0795_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 205 101 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0795_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 32f57f01-37d2-437b-beb2-962c2da15f13 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b1e11e94-646b-4c44-9d33-1ca67d8356fb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0795 66 false '-- '-- '-- '-- -24403 619 765b568d-c940-5239-92dc-26c4c0431db1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0795_demographic Dead '-- '-- '-- '-- 24403 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 049f6c9e-4b02-5c39-ad7f-5f357c226bc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0795_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 205 101 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0795_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 61f9e645-1126-57fe-8301-cdfbba84acac Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b1e11e94-646b-4c44-9d33-1ca67d8356fb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0795 66 false '-- '-- '-- '-- -24403 619 765b568d-c940-5239-92dc-26c4c0431db1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0795_demographic Dead '-- '-- '-- '-- 24403 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 049f6c9e-4b02-5c39-ad7f-5f357c226bc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0795_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0795_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 899e9ac7-b154-4227-82fd-0af59272db89 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b1e11e94-646b-4c44-9d33-1ca67d8356fb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0795 66 false '-- '-- '-- '-- -24403 619 765b568d-c940-5239-92dc-26c4c0431db1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0795_demographic Dead '-- '-- '-- '-- 24728 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 325 '-- '-- '-- 920d28d6-5d91-48d9-8eff-ce074bbf51cb false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0795_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0795_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV b1e11e94-646b-4c44-9d33-1ca67d8356fb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0795 66 false '-- '-- '-- '-- -24403 619 765b568d-c940-5239-92dc-26c4c0431db1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0795_demographic Dead '-- '-- '-- '-- 24728 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 325 '-- '-- '-- b1d3c419-ce08-45c3-919f-0f489e5d927d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0795_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0795_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0795_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9239a13e-16fd-47bb-bb2c-d0c37df5e09b '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV b1e11e94-646b-4c44-9d33-1ca67d8356fb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0795 66 false '-- '-- '-- '-- -24403 619 765b568d-c940-5239-92dc-26c4c0431db1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0795_demographic Dead '-- '-- '-- '-- 24728 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 325 '-- '-- '-- b1d3c419-ce08-45c3-919f-0f489e5d927d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0795_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0795_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0795_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aebdb2c5-084b-454a-bfbc-6df91e4b7648 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV b25570ed-baca-4e3f-87c6-2ef18119ba49 Informed Consent 27 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1499 56 false '-- '-- '-- '-- -20668 '-- f5853584-62ad-5679-9cb3-8ca4b7d8a998 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1499_demographic Alive '-- '-- '-- '-- 20668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 148128fe-490f-5ecb-9eb0-7bfd1594cfd3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1499_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 97 76 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1499_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 106d89b7-4dcc-4a1a-87d7-d6cc2d8d3da1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b25570ed-baca-4e3f-87c6-2ef18119ba49 Informed Consent 27 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1499 56 false '-- '-- '-- '-- -20668 '-- f5853584-62ad-5679-9cb3-8ca4b7d8a998 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1499_demographic Alive '-- '-- '-- '-- 20668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 148128fe-490f-5ecb-9eb0-7bfd1594cfd3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1499_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 187 118 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-13-1499_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- 1e907bba-9509-4cf9-b978-7c07bbd402f5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b25570ed-baca-4e3f-87c6-2ef18119ba49 Informed Consent 27 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1499 56 false '-- '-- '-- '-- -20668 '-- f5853584-62ad-5679-9cb3-8ca4b7d8a998 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1499_demographic Alive '-- '-- '-- '-- 20668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 148128fe-490f-5ecb-9eb0-7bfd1594cfd3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1499_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 187 118 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-1499_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- 7e05846e-a31f-4c13-8429-0d0668283828 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b25570ed-baca-4e3f-87c6-2ef18119ba49 Informed Consent 27 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1499 56 false '-- '-- '-- '-- -20668 '-- f5853584-62ad-5679-9cb3-8ca4b7d8a998 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1499_demographic Alive '-- '-- '-- '-- 20668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 148128fe-490f-5ecb-9eb0-7bfd1594cfd3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1499_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 97 76 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1499_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- 89d4ac03-0516-5efe-87d2-b896c064abf1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b25570ed-baca-4e3f-87c6-2ef18119ba49 Informed Consent 27 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1499 56 false '-- '-- '-- '-- -20668 '-- f5853584-62ad-5679-9cb3-8ca4b7d8a998 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1499_demographic Alive '-- '-- '-- '-- 20668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 148128fe-490f-5ecb-9eb0-7bfd1594cfd3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1499_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1499_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9ec94fe6-a90f-4b16-88e6-a4fe753087ba Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b25570ed-baca-4e3f-87c6-2ef18119ba49 Informed Consent 27 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1499 56 false '-- '-- '-- '-- -20668 '-- f5853584-62ad-5679-9cb3-8ca4b7d8a998 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1499_demographic Alive '-- '-- '-- '-- 20668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 148128fe-490f-5ecb-9eb0-7bfd1594cfd3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1499_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 187 118 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-1499_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- f40ccf65-dd38-4287-8289-f8c1ab36128d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b25570ed-baca-4e3f-87c6-2ef18119ba49 Informed Consent 27 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1499 56 false '-- '-- '-- '-- -20668 '-- f5853584-62ad-5679-9cb3-8ca4b7d8a998 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1499_demographic Alive '-- '-- '-- '-- 21251 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 583 '-- '-- '-- 2f99da0d-42ac-4a1b-89fb-fce374aa4301 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1499_diagnosis4 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1499_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV b25570ed-baca-4e3f-87c6-2ef18119ba49 Informed Consent 27 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1499 56 false '-- '-- '-- '-- -20668 '-- f5853584-62ad-5679-9cb3-8ca4b7d8a998 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1499_demographic Alive '-- '-- '-- '-- 21251 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 583 '-- '-- '-- 641c7c33-3159-4ccf-aed7-6376b7bc0feb false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1499_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1499_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1499_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e0467ece-6962-4225-b67a-7883e97c1de8 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV b25570ed-baca-4e3f-87c6-2ef18119ba49 Informed Consent 27 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1499 56 false '-- '-- '-- '-- -20668 '-- f5853584-62ad-5679-9cb3-8ca4b7d8a998 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1499_demographic Alive '-- '-- '-- '-- 21251 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 583 '-- '-- '-- 641c7c33-3159-4ccf-aed7-6376b7bc0feb false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1499_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1499_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1499_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e186badd-eee3-461f-aa13-45d6d19b1440 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV b25570ed-baca-4e3f-87c6-2ef18119ba49 Informed Consent 27 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1499 56 false '-- '-- '-- '-- -20668 '-- f5853584-62ad-5679-9cb3-8ca4b7d8a998 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1499_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- de1c7df5-71b2-4382-b560-c13b3f482ed3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1499_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1499_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 595 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1499_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 090ae02e-26c9-4b5c-a4ce-2c3d7a39c6cf '-- yes '-- '-- Surgery, NOS +TCGA-OV b25570ed-baca-4e3f-87c6-2ef18119ba49 Informed Consent 27 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1499 56 false '-- '-- '-- '-- -20668 '-- f5853584-62ad-5679-9cb3-8ca4b7d8a998 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1499_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- de1c7df5-71b2-4382-b560-c13b3f482ed3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1499_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1499_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1499_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 12fecb80-e5db-4f81-ade5-fa70c5bc677a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV b25570ed-baca-4e3f-87c6-2ef18119ba49 Informed Consent 27 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1499 56 false '-- '-- '-- '-- -20668 '-- f5853584-62ad-5679-9cb3-8ca4b7d8a998 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1499_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- de1c7df5-71b2-4382-b560-c13b3f482ed3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1499_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1499_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1499_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6fcfcf49-01b5-4172-ad1e-deb7a9ac0ee9 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV b31d85cc-d2e2-4bd1-9986-d6bbe30e657f Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2094 63 false '-- '-- '-- '-- -23273 '-- b5affed5-6e77-5623-b1a4-a0cdcef3b0d9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2094_demographic Alive '-- '-- '-- '-- 23273 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 38e754fd-a254-5193-9f78-49239781ea56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2094_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2094_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 58dedc4b-d8c0-4b8a-b51c-7b92f4eb7f06 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b31d85cc-d2e2-4bd1-9986-d6bbe30e657f Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2094 63 false '-- '-- '-- '-- -23273 '-- b5affed5-6e77-5623-b1a4-a0cdcef3b0d9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2094_demographic Alive '-- '-- '-- '-- 23273 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 38e754fd-a254-5193-9f78-49239781ea56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2094_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 166 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2094_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d0cf9ac5-8f1b-4a67-9753-6d31662bb1c8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b31d85cc-d2e2-4bd1-9986-d6bbe30e657f Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2094 63 false '-- '-- '-- '-- -23273 '-- b5affed5-6e77-5623-b1a4-a0cdcef3b0d9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2094_demographic Alive '-- '-- '-- '-- 23273 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 38e754fd-a254-5193-9f78-49239781ea56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2094_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 166 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2094_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e9c4d759-9318-57e7-ac69-8e7165a8bf5f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b3511675-fd68-4745-8020-e290ca0fd115 Informed Consent 1430 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1703 56 false '-- '-- '-- '-- -20622 1815 d3239bb4-63cb-5ba3-911b-f8ef467f8bb5 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1703_demographic Dead '-- '-- '-- '-- 20946 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 324 '-- '-- '-- 0d1ae180-6e6d-47bc-8741-41dbc17c5e2b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1703_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1703_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1703_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 38e1d347-f75e-43cc-95fb-b0b365177b47 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV b3511675-fd68-4745-8020-e290ca0fd115 Informed Consent 1430 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1703 56 false '-- '-- '-- '-- -20622 1815 d3239bb4-63cb-5ba3-911b-f8ef467f8bb5 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1703_demographic Dead '-- '-- '-- '-- 20946 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 324 '-- '-- '-- 0d1ae180-6e6d-47bc-8741-41dbc17c5e2b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1703_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1703_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1703_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8d1953ac-15b1-4166-8291-1085f0c12c07 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV b3511675-fd68-4745-8020-e290ca0fd115 Informed Consent 1430 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1703 56 false '-- '-- '-- '-- -20622 1815 d3239bb4-63cb-5ba3-911b-f8ef467f8bb5 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1703_demographic Dead '-- '-- '-- '-- 20622 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 17951518-166e-5b1e-b7a9-d3cda6b3bd1c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1703_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 1720 1720 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1703_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 390 '-- mg '-- '-- '-- '-- 10a2db1c-4e5d-45a1-bcc0-dd9dc6c7ccaf '-- yes '-- '-- Chemotherapy +TCGA-OV b3511675-fd68-4745-8020-e290ca0fd115 Informed Consent 1430 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1703 56 false '-- '-- '-- '-- -20622 1815 d3239bb4-63cb-5ba3-911b-f8ef467f8bb5 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1703_demographic Dead '-- '-- '-- '-- 20622 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 17951518-166e-5b1e-b7a9-d3cda6b3bd1c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1703_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 1314 1030 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1703_treatment11 Motesanib Diphosphate '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 11fe8fc2-4038-4fe7-93aa-911952b77b45 '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV b3511675-fd68-4745-8020-e290ca0fd115 Informed Consent 1430 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1703 56 false '-- '-- '-- '-- -20622 1815 d3239bb4-63cb-5ba3-911b-f8ef467f8bb5 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1703_demographic Dead '-- '-- '-- '-- 20622 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 17951518-166e-5b1e-b7a9-d3cda6b3bd1c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1703_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 1667 1577 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1703_treatment8 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1370 '-- mg '-- '-- '-- '-- 20f8eb26-a9d5-43df-b10b-96b679e27336 '-- yes '-- '-- Chemotherapy +TCGA-OV b3511675-fd68-4745-8020-e290ca0fd115 Informed Consent 1430 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1703 56 false '-- '-- '-- '-- -20622 1815 d3239bb4-63cb-5ba3-911b-f8ef467f8bb5 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1703_demographic Dead '-- '-- '-- '-- 20622 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 17951518-166e-5b1e-b7a9-d3cda6b3bd1c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1703_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 163 16 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-29-1703_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1595 '-- mg '-- '-- '-- '-- 2fd1d9cb-646d-5b93-893b-daff67331324 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b3511675-fd68-4745-8020-e290ca0fd115 Informed Consent 1430 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1703 56 false '-- '-- '-- '-- -20622 1815 d3239bb4-63cb-5ba3-911b-f8ef467f8bb5 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1703_demographic Dead '-- '-- '-- '-- 20622 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 17951518-166e-5b1e-b7a9-d3cda6b3bd1c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1703_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 1753 1746 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1703_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 80 '-- mg/m2 '-- '-- '-- '-- 57b4753c-c610-48e7-8e2d-374bab66b19f '-- yes '-- '-- Chemotherapy +TCGA-OV b3511675-fd68-4745-8020-e290ca0fd115 Informed Consent 1430 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1703 56 false '-- '-- '-- '-- -20622 1815 d3239bb4-63cb-5ba3-911b-f8ef467f8bb5 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1703_demographic Dead '-- '-- '-- '-- 20622 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 17951518-166e-5b1e-b7a9-d3cda6b3bd1c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1703_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 651 478 '-- '-- Progressive Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1703_treatment12 Carboplatin '-- '-- '-- '-- '-- '-- '-- 773 '-- mg '-- '-- '-- '-- 5ed64560-bb75-49cf-a236-b1fd17ced80c '-- yes '-- '-- Chemotherapy +TCGA-OV b3511675-fd68-4745-8020-e290ca0fd115 Informed Consent 1430 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1703 56 false '-- '-- '-- '-- -20622 1815 d3239bb4-63cb-5ba3-911b-f8ef467f8bb5 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1703_demographic Dead '-- '-- '-- '-- 20622 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 17951518-166e-5b1e-b7a9-d3cda6b3bd1c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1703_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 163 16 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-29-1703_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4081 '-- mg '-- '-- '-- '-- 739c8393-1d27-48c6-8ea4-e8bb07ce89d3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b3511675-fd68-4745-8020-e290ca0fd115 Informed Consent 1430 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1703 56 false '-- '-- '-- '-- -20622 1815 d3239bb4-63cb-5ba3-911b-f8ef467f8bb5 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1703_demographic Dead '-- '-- '-- '-- 20622 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 17951518-166e-5b1e-b7a9-d3cda6b3bd1c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1703_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 470 337 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1703_treatment10 Tamoxifen '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8aa943c6-6b79-4d9d-9ad0-8a22084c4697 '-- yes '-- '-- Hormone Therapy +TCGA-OV b3511675-fd68-4745-8020-e290ca0fd115 Informed Consent 1430 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1703 56 false '-- '-- '-- '-- -20622 1815 d3239bb4-63cb-5ba3-911b-f8ef467f8bb5 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1703_demographic Dead '-- '-- '-- '-- 20622 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 17951518-166e-5b1e-b7a9-d3cda6b3bd1c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1703_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1703_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bc39619b-a009-498b-a944-29e8da826893 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b3511675-fd68-4745-8020-e290ca0fd115 Informed Consent 1430 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1703 56 false '-- '-- '-- '-- -20622 1815 d3239bb4-63cb-5ba3-911b-f8ef467f8bb5 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1703_demographic Dead '-- '-- '-- '-- 20622 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 17951518-166e-5b1e-b7a9-d3cda6b3bd1c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1703_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 1457 1317 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1703_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 70 '-- mg '-- '-- '-- '-- ca301917-9abe-4d38-bf15-5d943388d513 '-- yes '-- '-- Chemotherapy +TCGA-OV b3511675-fd68-4745-8020-e290ca0fd115 Informed Consent 1430 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1703 56 false '-- '-- '-- '-- -20622 1815 d3239bb4-63cb-5ba3-911b-f8ef467f8bb5 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1703_demographic Dead '-- '-- '-- '-- 20622 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 17951518-166e-5b1e-b7a9-d3cda6b3bd1c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1703_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 946 743 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-29-1703_treatment9 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 50 '-- mg '-- '-- '-- '-- dbab1353-2e5e-4d94-a963-0da5ed53145a '-- yes '-- '-- Chemotherapy +TCGA-OV b3511675-fd68-4745-8020-e290ca0fd115 Informed Consent 1430 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1703 56 false '-- '-- '-- '-- -20622 1815 d3239bb4-63cb-5ba3-911b-f8ef467f8bb5 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1703_demographic Dead '-- '-- '-- '-- 20622 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 17951518-166e-5b1e-b7a9-d3cda6b3bd1c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1703_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 651 478 '-- '-- Progressive Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1703_treatment6 Docetaxel '-- '-- '-- '-- '-- '-- '-- 55 '-- mg '-- '-- '-- '-- e71c6ba0-0129-475b-bb8d-e8862297a4b9 '-- yes '-- '-- Chemotherapy +TCGA-OV b3511675-fd68-4745-8020-e290ca0fd115 Informed Consent 1430 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1703 56 false '-- '-- '-- '-- -20622 1815 d3239bb4-63cb-5ba3-911b-f8ef467f8bb5 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1703_demographic Dead '-- '-- '-- '-- 20622 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 17951518-166e-5b1e-b7a9-d3cda6b3bd1c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1703_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 946 743 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1703_treatment5 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 800 '-- mg '-- '-- '-- '-- f526ac04-3f56-4bc4-943d-aa044f497d2c '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1691 51 false '-- '-- '-- '-- -18664 1470 3e0c0748-6430-57d2-81fa-e74f67bba190 '-- not reported female '-- '-- '-- '-- white TCGA-29-1691_demographic Dead '-- '-- '-- '-- 18664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 462c9b3c-1b04-5e25-bdd0-cb23c26c7256 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1691_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 137 '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1691_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 19b3b873-f0c8-4043-a827-11da06f523b9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1691 51 false '-- '-- '-- '-- -18664 1470 3e0c0748-6430-57d2-81fa-e74f67bba190 '-- not reported female '-- '-- '-- '-- white TCGA-29-1691_demographic Dead '-- '-- '-- '-- 18664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 462c9b3c-1b04-5e25-bdd0-cb23c26c7256 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1691_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 1353 1233 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1691_treatment3 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 21675d44-1a2b-4119-bebf-87315ce21123 '-- yes '-- '-- Chemotherapy +TCGA-OV b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1691 51 false '-- '-- '-- '-- -18664 1470 3e0c0748-6430-57d2-81fa-e74f67bba190 '-- not reported female '-- '-- '-- '-- white TCGA-29-1691_demographic Dead '-- '-- '-- '-- 18664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 462c9b3c-1b04-5e25-bdd0-cb23c26c7256 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1691_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 1353 1233 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1691_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 422134be-b175-48af-9f71-330e754e04aa '-- yes '-- '-- Chemotherapy +TCGA-OV b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1691 51 false '-- '-- '-- '-- -18664 1470 3e0c0748-6430-57d2-81fa-e74f67bba190 '-- not reported female '-- '-- '-- '-- white TCGA-29-1691_demographic Dead '-- '-- '-- '-- 18664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 462c9b3c-1b04-5e25-bdd0-cb23c26c7256 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1691_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- '-- 988 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1691_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 807f244e-7c88-4767-a43c-cd3216e872da '-- yes '-- '-- Chemotherapy +TCGA-OV b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1691 51 false '-- '-- '-- '-- -18664 1470 3e0c0748-6430-57d2-81fa-e74f67bba190 '-- not reported female '-- '-- '-- '-- white TCGA-29-1691_demographic Dead '-- '-- '-- '-- 18664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 462c9b3c-1b04-5e25-bdd0-cb23c26c7256 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1691_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 868 654 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1691_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- a93d26be-fd01-447d-b0fc-663276156cfb '-- yes '-- '-- Chemotherapy +TCGA-OV b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1691 51 false '-- '-- '-- '-- -18664 1470 3e0c0748-6430-57d2-81fa-e74f67bba190 '-- not reported female '-- '-- '-- '-- white TCGA-29-1691_demographic Dead '-- '-- '-- '-- 18664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 462c9b3c-1b04-5e25-bdd0-cb23c26c7256 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1691_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 868 654 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1691_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- ab171b2b-788a-4081-ae4f-0772abcc0e25 '-- yes '-- '-- Chemotherapy +TCGA-OV b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1691 51 false '-- '-- '-- '-- -18664 1470 3e0c0748-6430-57d2-81fa-e74f67bba190 '-- not reported female '-- '-- '-- '-- white TCGA-29-1691_demographic Dead '-- '-- '-- '-- 18664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 462c9b3c-1b04-5e25-bdd0-cb23c26c7256 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1691_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 137 '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1691_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ab9e8288-c148-5fc9-8502-54b6d560c9a5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1691 51 false '-- '-- '-- '-- -18664 1470 3e0c0748-6430-57d2-81fa-e74f67bba190 '-- not reported female '-- '-- '-- '-- white TCGA-29-1691_demographic Dead '-- '-- '-- '-- 18664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 462c9b3c-1b04-5e25-bdd0-cb23c26c7256 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1691_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- '-- 988 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-29-1691_treatment8 Megestrol Acetate '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cf846774-fdc5-405a-9588-3b4105652c67 '-- yes '-- '-- Hormone Therapy +TCGA-OV b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1691 51 false '-- '-- '-- '-- -18664 1470 3e0c0748-6430-57d2-81fa-e74f67bba190 '-- not reported female '-- '-- '-- '-- white TCGA-29-1691_demographic Dead '-- '-- '-- '-- 18664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 462c9b3c-1b04-5e25-bdd0-cb23c26c7256 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1691_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1691_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e5572e60-116e-40e7-8580-0db6d6c662a4 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1691 51 false '-- '-- '-- '-- -18664 1470 3e0c0748-6430-57d2-81fa-e74f67bba190 '-- not reported female '-- '-- '-- '-- white TCGA-29-1691_demographic Dead '-- '-- '-- '-- 18664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 462c9b3c-1b04-5e25-bdd0-cb23c26c7256 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1691_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- '-- 868 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1691_treatment9 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- eed38277-d0a0-4093-b8d3-4cff500fb40a '-- yes '-- '-- Chemotherapy +TCGA-OV b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1691 51 false '-- '-- '-- '-- -18664 1470 3e0c0748-6430-57d2-81fa-e74f67bba190 '-- not reported female '-- '-- '-- '-- white TCGA-29-1691_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 89cbf08d-96f7-4c9a-875f-61ee382f54f6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1691_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1691_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1691_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 10045b25-cdb9-4973-b9e7-14f068c70f0a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1691 51 false '-- '-- '-- '-- -18664 1470 3e0c0748-6430-57d2-81fa-e74f67bba190 '-- not reported female '-- '-- '-- '-- white TCGA-29-1691_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 89cbf08d-96f7-4c9a-875f-61ee382f54f6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1691_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1691_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 624 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1691_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 873f971c-773f-4adc-9c0f-cf5d447f04b7 '-- yes '-- '-- Surgery, NOS +TCGA-OV b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1691 51 false '-- '-- '-- '-- -18664 1470 3e0c0748-6430-57d2-81fa-e74f67bba190 '-- not reported female '-- '-- '-- '-- white TCGA-29-1691_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 89cbf08d-96f7-4c9a-875f-61ee382f54f6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1691_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1691_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1691_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- efa4edd8-20b8-41dd-a649-d3bd155fd616 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1691 51 false '-- '-- '-- '-- -18664 1470 3e0c0748-6430-57d2-81fa-e74f67bba190 '-- not reported female '-- '-- '-- '-- white TCGA-29-1691_demographic Dead '-- '-- '-- '-- 19277 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 613 '-- '-- '-- e9f6e17f-b0e6-456f-aee7-8cb4e48874af false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1691_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1691_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1691_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8b8308b0-7844-4fb5-a3d5-c36b8e4730e4 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1691 51 false '-- '-- '-- '-- -18664 1470 3e0c0748-6430-57d2-81fa-e74f67bba190 '-- not reported female '-- '-- '-- '-- white TCGA-29-1691_demographic Dead '-- '-- '-- '-- 19277 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 613 '-- '-- '-- e9f6e17f-b0e6-456f-aee7-8cb4e48874af false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1691_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1691_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1691_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c55e4769-e78b-4656-9615-0898a5c60998 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV b45c543a-40d9-423a-a7fa-98e4b325b487 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1928 77 false '-- '-- '-- '-- -28126 336 e160398a-2b94-5d6a-88dc-1950614fd97d '-- not reported female '-- '-- '-- '-- white TCGA-24-1928_demographic Dead '-- '-- '-- '-- 28126 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 20d832c5-76d1-5895-aa49-3794d469aede true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1928_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 126 14 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1928_treatment5 Cisplatin '-- '-- '-- '-- '-- '-- '-- 537 '-- mg '-- '-- '-- '-- 1faabed2-3b8b-49ba-b0b6-f5e3327d28cf Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b45c543a-40d9-423a-a7fa-98e4b325b487 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1928 77 false '-- '-- '-- '-- -28126 336 e160398a-2b94-5d6a-88dc-1950614fd97d '-- not reported female '-- '-- '-- '-- white TCGA-24-1928_demographic Dead '-- '-- '-- '-- 28126 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 20d832c5-76d1-5895-aa49-3794d469aede true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1928_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 282 254 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1928_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 138 '-- mg '-- '-- '-- '-- 206c6379-6da7-4e1b-b997-eb7472e9f959 '-- yes '-- '-- Chemotherapy +TCGA-OV b45c543a-40d9-423a-a7fa-98e4b325b487 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1928 77 false '-- '-- '-- '-- -28126 336 e160398a-2b94-5d6a-88dc-1950614fd97d '-- not reported female '-- '-- '-- '-- white TCGA-24-1928_demographic Dead '-- '-- '-- '-- 28126 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 20d832c5-76d1-5895-aa49-3794d469aede true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1928_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- '-- 327 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-1928_treatment2 Etoposide '-- '-- '-- '-- '-- '-- '-- 1200 '-- mg '-- '-- '-- '-- 45dfb6ee-1b16-4b3b-9965-592c263730a1 '-- yes '-- '-- Chemotherapy +TCGA-OV b45c543a-40d9-423a-a7fa-98e4b325b487 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1928 77 false '-- '-- '-- '-- -28126 336 e160398a-2b94-5d6a-88dc-1950614fd97d '-- not reported female '-- '-- '-- '-- white TCGA-24-1928_demographic Dead '-- '-- '-- '-- 28126 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 20d832c5-76d1-5895-aa49-3794d469aede true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1928_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 226 156 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1928_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- 560 '-- mg '-- '-- '-- '-- 60b47769-537d-536e-bfc4-e058ffe51a16 '-- yes '-- '-- Chemotherapy +TCGA-OV b45c543a-40d9-423a-a7fa-98e4b325b487 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1928 77 false '-- '-- '-- '-- -28126 336 e160398a-2b94-5d6a-88dc-1950614fd97d '-- not reported female '-- '-- '-- '-- white TCGA-24-1928_demographic Dead '-- '-- '-- '-- 28126 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 20d832c5-76d1-5895-aa49-3794d469aede true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1928_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 126 14 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1928_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1130 '-- mg '-- '-- '-- '-- d0516061-9e84-47ca-a334-53a84a5eea0e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b45c543a-40d9-423a-a7fa-98e4b325b487 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1928 77 false '-- '-- '-- '-- -28126 336 e160398a-2b94-5d6a-88dc-1950614fd97d '-- not reported female '-- '-- '-- '-- white TCGA-24-1928_demographic Dead '-- '-- '-- '-- 28126 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 20d832c5-76d1-5895-aa49-3794d469aede true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1928_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1928_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f5a5f9f8-0965-448d-83f6-a351acb22075 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b45c543a-40d9-423a-a7fa-98e4b325b487 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1928 77 false '-- '-- '-- '-- -28126 336 e160398a-2b94-5d6a-88dc-1950614fd97d '-- not reported female '-- '-- '-- '-- white TCGA-24-1928_demographic Dead '-- '-- '-- '-- 28196 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 70 '-- '-- '-- 5fee2713-6cd2-4687-a32d-1320979acafa false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1928_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1928_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1928_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a1ad3111-a4c9-41c2-811e-cc448171f12a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV b45c543a-40d9-423a-a7fa-98e4b325b487 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1928 77 false '-- '-- '-- '-- -28126 336 e160398a-2b94-5d6a-88dc-1950614fd97d '-- not reported female '-- '-- '-- '-- white TCGA-24-1928_demographic Dead '-- '-- '-- '-- 28196 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 70 '-- '-- '-- 5fee2713-6cd2-4687-a32d-1320979acafa false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1928_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1928_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1928_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aa83be3e-fdfa-4be3-a6b7-ea64379049e7 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV b46263ab-c3ca-4fda-a895-74c7e6e6fe22 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1332 70 false '-- '-- '-- '-- -25786 1247 b30355c0-e9f5-5b9d-88e5-05f6e7ec84d8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1332_demographic Dead '-- '-- '-- '-- 26179 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 393 '-- '-- '-- 36c3ac04-81eb-4379-b954-1e4e1a0c6dfe false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1332_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1332_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1332_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2e2274e1-5dbb-4f12-b890-b15463d4008d '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV b46263ab-c3ca-4fda-a895-74c7e6e6fe22 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1332 70 false '-- '-- '-- '-- -25786 1247 b30355c0-e9f5-5b9d-88e5-05f6e7ec84d8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1332_demographic Dead '-- '-- '-- '-- 26179 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 393 '-- '-- '-- 36c3ac04-81eb-4379-b954-1e4e1a0c6dfe false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1332_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1332_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1332_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 49c9720b-db0c-4cfb-b763-d618ceacfb40 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV b46263ab-c3ca-4fda-a895-74c7e6e6fe22 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1332 70 false '-- '-- '-- '-- -25786 1247 b30355c0-e9f5-5b9d-88e5-05f6e7ec84d8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1332_demographic Dead '-- '-- '-- '-- 25786 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6686400d-d4de-5369-ae39-7518bd6bfcad true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1332_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 606 424 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1332_treatment12 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 014a2315-b937-40bc-9542-e58dd084cd93 '-- yes '-- '-- Chemotherapy +TCGA-OV b46263ab-c3ca-4fda-a895-74c7e6e6fe22 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1332 70 false '-- '-- '-- '-- -25786 1247 b30355c0-e9f5-5b9d-88e5-05f6e7ec84d8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1332_demographic Dead '-- '-- '-- '-- 25786 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6686400d-d4de-5369-ae39-7518bd6bfcad true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1332_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 606 424 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1332_treatment11 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 07402307-0587-47f6-8328-f9d88724936b '-- yes '-- '-- Chemotherapy +TCGA-OV b46263ab-c3ca-4fda-a895-74c7e6e6fe22 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1332 70 false '-- '-- '-- '-- -25786 1247 b30355c0-e9f5-5b9d-88e5-05f6e7ec84d8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1332_demographic Dead '-- '-- '-- '-- 25786 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6686400d-d4de-5369-ae39-7518bd6bfcad true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1332_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 179 28 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1332_treatment9 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1c8b501d-5526-456b-acaa-37b96a8364f8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b46263ab-c3ca-4fda-a895-74c7e6e6fe22 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1332 70 false '-- '-- '-- '-- -25786 1247 b30355c0-e9f5-5b9d-88e5-05f6e7ec84d8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1332_demographic Dead '-- '-- '-- '-- 25786 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6686400d-d4de-5369-ae39-7518bd6bfcad true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1332_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1155 1094 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1332_treatment6 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 21588d82-3cd2-4131-ac40-4c9aa1137269 '-- yes '-- '-- Chemotherapy +TCGA-OV b46263ab-c3ca-4fda-a895-74c7e6e6fe22 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1332 70 false '-- '-- '-- '-- -25786 1247 b30355c0-e9f5-5b9d-88e5-05f6e7ec84d8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1332_demographic Dead '-- '-- '-- '-- 25786 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6686400d-d4de-5369-ae39-7518bd6bfcad true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1332_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 179 28 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1332_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2677d8ee-59f4-4908-8921-a80d35cdabc8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b46263ab-c3ca-4fda-a895-74c7e6e6fe22 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1332 70 false '-- '-- '-- '-- -25786 1247 b30355c0-e9f5-5b9d-88e5-05f6e7ec84d8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1332_demographic Dead '-- '-- '-- '-- 25786 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6686400d-d4de-5369-ae39-7518bd6bfcad true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1332_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1155 1094 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1332_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 59be1e2d-dd7b-47b5-8ce9-62abaa67479a '-- yes '-- '-- Chemotherapy +TCGA-OV b46263ab-c3ca-4fda-a895-74c7e6e6fe22 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1332 70 false '-- '-- '-- '-- -25786 1247 b30355c0-e9f5-5b9d-88e5-05f6e7ec84d8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1332_demographic Dead '-- '-- '-- '-- 25786 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6686400d-d4de-5369-ae39-7518bd6bfcad true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1332_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1216 1155 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1332_treatment10 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7a473ba1-db4f-4138-8afc-fc22de0bb5c2 '-- yes '-- '-- Chemotherapy +TCGA-OV b46263ab-c3ca-4fda-a895-74c7e6e6fe22 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1332 70 false '-- '-- '-- '-- -25786 1247 b30355c0-e9f5-5b9d-88e5-05f6e7ec84d8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1332_demographic Dead '-- '-- '-- '-- 25786 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6686400d-d4de-5369-ae39-7518bd6bfcad true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1332_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1332_treatment7 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 971c9bf0-ac3a-4c60-8357-648682f8ab2b '-- yes '-- '-- Chemotherapy +TCGA-OV b46263ab-c3ca-4fda-a895-74c7e6e6fe22 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1332 70 false '-- '-- '-- '-- -25786 1247 b30355c0-e9f5-5b9d-88e5-05f6e7ec84d8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1332_demographic Dead '-- '-- '-- '-- 25786 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6686400d-d4de-5369-ae39-7518bd6bfcad true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1332_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 179 28 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1332_treatment Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c06afc1b-0d7e-5ba3-a070-aab9e7264afc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b46263ab-c3ca-4fda-a895-74c7e6e6fe22 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1332 70 false '-- '-- '-- '-- -25786 1247 b30355c0-e9f5-5b9d-88e5-05f6e7ec84d8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1332_demographic Dead '-- '-- '-- '-- 25786 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6686400d-d4de-5369-ae39-7518bd6bfcad true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1332_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1063 971 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1332_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c8284aff-53c8-4e1f-b001-069ea4b4c2f1 '-- yes '-- '-- Chemotherapy +TCGA-OV b46263ab-c3ca-4fda-a895-74c7e6e6fe22 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1332 70 false '-- '-- '-- '-- -25786 1247 b30355c0-e9f5-5b9d-88e5-05f6e7ec84d8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1332_demographic Dead '-- '-- '-- '-- 25786 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6686400d-d4de-5369-ae39-7518bd6bfcad true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1332_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1332_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cddd1ff2-8081-4d6e-9d99-e41e5a5a9f26 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b46263ab-c3ca-4fda-a895-74c7e6e6fe22 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1332 70 false '-- '-- '-- '-- -25786 1247 b30355c0-e9f5-5b9d-88e5-05f6e7ec84d8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1332_demographic Dead '-- '-- '-- '-- 25786 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6686400d-d4de-5369-ae39-7518bd6bfcad true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1332_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1332_treatment5 Gemcitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fc111872-2775-4599-abaf-55149f69cdbe '-- yes '-- '-- Chemotherapy +TCGA-OV b46263ab-c3ca-4fda-a895-74c7e6e6fe22 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1332 70 false '-- '-- '-- '-- -25786 1247 b30355c0-e9f5-5b9d-88e5-05f6e7ec84d8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1332_demographic Dead '-- '-- '-- '-- 25786 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6686400d-d4de-5369-ae39-7518bd6bfcad true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1332_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1063 971 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1332_treatment8 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fe4657ff-79d9-4a9e-8361-2d52a34df616 '-- yes '-- '-- Chemotherapy +TCGA-OV b4b49027-7815-4813-9769-a3fe3a26a37a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2393 80 false '-- '-- '-- '-- -29585 1157 d287eb95-3746-5617-b7a4-31ccca93dffb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2393_demographic Dead '-- '-- '-- '-- 29585 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 635b00aa-baef-5228-96e1-96c52b8da8a3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2393_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 123 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2393_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 01f77f81-c3b9-4a94-9e4e-940cbe0d0e51 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b4b49027-7815-4813-9769-a3fe3a26a37a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2393 80 false '-- '-- '-- '-- -29585 1157 d287eb95-3746-5617-b7a4-31ccca93dffb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2393_demographic Dead '-- '-- '-- '-- 29585 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 635b00aa-baef-5228-96e1-96c52b8da8a3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2393_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 517 305 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2393_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 741660b1-377a-46a2-9228-5997f90230bd '-- yes '-- '-- Chemotherapy +TCGA-OV b4b49027-7815-4813-9769-a3fe3a26a37a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2393 80 false '-- '-- '-- '-- -29585 1157 d287eb95-3746-5617-b7a4-31ccca93dffb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2393_demographic Dead '-- '-- '-- '-- 29585 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 635b00aa-baef-5228-96e1-96c52b8da8a3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2393_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2393_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7f236410-a19b-46b8-bbac-f12a0ee3bfcc Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b4b49027-7815-4813-9769-a3fe3a26a37a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2393 80 false '-- '-- '-- '-- -29585 1157 d287eb95-3746-5617-b7a4-31ccca93dffb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2393_demographic Dead '-- '-- '-- '-- 29585 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 635b00aa-baef-5228-96e1-96c52b8da8a3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2393_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 123 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2393_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ebf44a84-1696-59f7-9b25-926975930d32 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b4b49027-7815-4813-9769-a3fe3a26a37a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2393 80 false '-- '-- '-- '-- -29585 1157 d287eb95-3746-5617-b7a4-31ccca93dffb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2393_demographic Dead '-- '-- '-- '-- 29890 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 305 '-- '-- '-- ae09478c-b9fc-4b28-b133-5bf5b4f20b0d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-2393_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-2393_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2393_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1923c444-c05e-4171-9561-ff19c079808a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV b4b49027-7815-4813-9769-a3fe3a26a37a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2393 80 false '-- '-- '-- '-- -29585 1157 d287eb95-3746-5617-b7a4-31ccca93dffb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2393_demographic Dead '-- '-- '-- '-- 29890 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 305 '-- '-- '-- ae09478c-b9fc-4b28-b133-5bf5b4f20b0d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-2393_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-2393_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2393_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f356349d-2179-456a-9c3b-239d735cde43 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV b520aae5-65a6-4b27-bc2a-10b02c7b1aeb Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1322 62 false '-- '-- '-- '-- -22646 91 895829cd-984f-5029-ac7d-de8de3feb97f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1322_demographic Dead '-- '-- '-- '-- 22646 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d7d5faf4-cb8e-5db8-9a9c-7894070b7ead true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1322_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 91 30 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1322_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0552af02-bfa2-562e-a1c2-e127329c9904 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b520aae5-65a6-4b27-bc2a-10b02c7b1aeb Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1322 62 false '-- '-- '-- '-- -22646 91 895829cd-984f-5029-ac7d-de8de3feb97f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1322_demographic Dead '-- '-- '-- '-- 22646 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d7d5faf4-cb8e-5db8-9a9c-7894070b7ead true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1322_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 91 30 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1322_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4caf2e83-ef64-4910-94bf-0d82bc556152 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b520aae5-65a6-4b27-bc2a-10b02c7b1aeb Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1322 62 false '-- '-- '-- '-- -22646 91 895829cd-984f-5029-ac7d-de8de3feb97f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1322_demographic Dead '-- '-- '-- '-- 22646 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d7d5faf4-cb8e-5db8-9a9c-7894070b7ead true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1322_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1322_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d9532dfc-9ef1-44c2-93dc-999d90fdaf5b Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b6b607cd-67b8-4c04-a212-a4e8c0743f05 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1850 72 false '-- '-- '-- '-- -26369 '-- d6afc291-5d82-5eb0-90e0-91d9933e5c0a '-- not reported female '-- '-- '-- '-- white TCGA-24-1850_demographic Alive '-- '-- '-- '-- 26369 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f34214f1-17e6-51fa-a214-6826ccc10fd8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1850_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1850_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 08a909a0-6ca2-47fb-87fd-7514445993ee Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b6b607cd-67b8-4c04-a212-a4e8c0743f05 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1850 72 false '-- '-- '-- '-- -26369 '-- d6afc291-5d82-5eb0-90e0-91d9933e5c0a '-- not reported female '-- '-- '-- '-- white TCGA-24-1850_demographic Alive '-- '-- '-- '-- 26369 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f34214f1-17e6-51fa-a214-6826ccc10fd8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1850_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 138 34 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1850_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 706 '-- mg '-- '-- '-- '-- 294270d5-39c3-4bff-9e8d-6012f7b1ff73 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b6b607cd-67b8-4c04-a212-a4e8c0743f05 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1850 72 false '-- '-- '-- '-- -26369 '-- d6afc291-5d82-5eb0-90e0-91d9933e5c0a '-- not reported female '-- '-- '-- '-- white TCGA-24-1850_demographic Alive '-- '-- '-- '-- 26369 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f34214f1-17e6-51fa-a214-6826ccc10fd8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1850_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 138 34 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1850_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 3138 '-- mg '-- '-- '-- '-- b0328c0c-f7ff-526e-9535-360ebe7a5d00 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b7715ff6-57a6-4513-9447-aa8bc93f16d4 Informed Consent 22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1343 72 false '-- '-- '-- '-- -26428 361 f71d969e-38e8-523e-8db7-d8b2e3f0ae0c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1343_demographic Dead '-- '-- '-- '-- 26428 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- bd744f83-779b-5ca5-af2b-45670de8fcec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1343_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 323 262 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1343_treatment8 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0a294ee7-808f-43fc-a4aa-3810346ace6f '-- yes '-- '-- Chemotherapy +TCGA-OV b7715ff6-57a6-4513-9447-aa8bc93f16d4 Informed Consent 22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1343 72 false '-- '-- '-- '-- -26428 361 f71d969e-38e8-523e-8db7-d8b2e3f0ae0c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1343_demographic Dead '-- '-- '-- '-- 26428 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- bd744f83-779b-5ca5-af2b-45670de8fcec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1343_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 323 262 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1343_treatment5 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 11b727cb-d596-4d37-979c-35dd35c18740 '-- yes '-- '-- Chemotherapy +TCGA-OV b7715ff6-57a6-4513-9447-aa8bc93f16d4 Informed Consent 22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1343 72 false '-- '-- '-- '-- -26428 361 f71d969e-38e8-523e-8db7-d8b2e3f0ae0c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1343_demographic Dead '-- '-- '-- '-- 26428 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- bd744f83-779b-5ca5-af2b-45670de8fcec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1343_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 170 50 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1343_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 1a7a6396-27a8-48f9-a39d-5e299397e004 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b7715ff6-57a6-4513-9447-aa8bc93f16d4 Informed Consent 22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1343 72 false '-- '-- '-- '-- -26428 361 f71d969e-38e8-523e-8db7-d8b2e3f0ae0c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1343_demographic Dead '-- '-- '-- '-- 26428 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- bd744f83-779b-5ca5-af2b-45670de8fcec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1343_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 170 50 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1343_treatment3 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 800 '-- mg/m2 '-- '-- '-- '-- 36480907-4106-42cd-9737-eecf33a87557 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b7715ff6-57a6-4513-9447-aa8bc93f16d4 Informed Consent 22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1343 72 false '-- '-- '-- '-- -26428 361 f71d969e-38e8-523e-8db7-d8b2e3f0ae0c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1343_demographic Dead '-- '-- '-- '-- 26428 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- bd744f83-779b-5ca5-af2b-45670de8fcec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1343_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 354 323 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1343_treatment Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3a42b4ee-f935-5ed4-a090-fd63bb17beb5 '-- yes '-- '-- Chemotherapy +TCGA-OV b7715ff6-57a6-4513-9447-aa8bc93f16d4 Informed Consent 22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1343 72 false '-- '-- '-- '-- -26428 361 f71d969e-38e8-523e-8db7-d8b2e3f0ae0c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1343_demographic Dead '-- '-- '-- '-- 26428 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- bd744f83-779b-5ca5-af2b-45670de8fcec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1343_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 262 170 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1343_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a923e63a-228d-4f5e-9a90-782d1a63dd52 '-- yes '-- '-- Chemotherapy +TCGA-OV b7715ff6-57a6-4513-9447-aa8bc93f16d4 Informed Consent 22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1343 72 false '-- '-- '-- '-- -26428 361 f71d969e-38e8-523e-8db7-d8b2e3f0ae0c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1343_demographic Dead '-- '-- '-- '-- 26428 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- bd744f83-779b-5ca5-af2b-45670de8fcec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1343_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 170 50 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1343_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- b9ae122b-8e83-40c4-8b01-160db0e8e912 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b7715ff6-57a6-4513-9447-aa8bc93f16d4 Informed Consent 22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1343 72 false '-- '-- '-- '-- -26428 361 f71d969e-38e8-523e-8db7-d8b2e3f0ae0c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1343_demographic Dead '-- '-- '-- '-- 26428 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- bd744f83-779b-5ca5-af2b-45670de8fcec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1343_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 262 170 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1343_treatment6 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ec734cef-bdb2-4dd5-a9ec-380f44d04b08 '-- yes '-- '-- Chemotherapy +TCGA-OV b7715ff6-57a6-4513-9447-aa8bc93f16d4 Informed Consent 22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1343 72 false '-- '-- '-- '-- -26428 361 f71d969e-38e8-523e-8db7-d8b2e3f0ae0c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1343_demographic Dead '-- '-- '-- '-- 26428 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- bd744f83-779b-5ca5-af2b-45670de8fcec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1343_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1343_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- edfe6b0c-ffbf-4013-af01-7e3fb00b8fc1 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b8023162-5e82-40e6-ad8c-8acf81821f01 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-WR-A838 72 false '-- '-- '-- United States -26418 304 2e3f8de2-09c9-56c0-9615-ff7b01989992 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-WR-A838_demographic Dead '-- '-- '-- '-- 26663 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 245 '-- '-- '-- 4c207882-6cf0-4f0f-a759-abec3c65f99e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-WR-A838_diagnosis4 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-WR-A838_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV b8023162-5e82-40e6-ad8c-8acf81821f01 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-WR-A838 72 false '-- '-- '-- United States -26418 304 2e3f8de2-09c9-56c0-9615-ff7b01989992 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-WR-A838_demographic Dead '-- '-- '-- '-- 26663 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 245 '-- '-- '-- 54f790b2-0b9f-4ea6-a34c-468b5fe3a64a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-WR-A838_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-WR-A838_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-WR-A838_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6cae8cff-a066-4b41-a0b8-58833105ae62 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV b8023162-5e82-40e6-ad8c-8acf81821f01 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-WR-A838 72 false '-- '-- '-- United States -26418 304 2e3f8de2-09c9-56c0-9615-ff7b01989992 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-WR-A838_demographic Dead '-- '-- '-- '-- 26663 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 245 '-- '-- '-- 54f790b2-0b9f-4ea6-a34c-468b5fe3a64a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-WR-A838_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-WR-A838_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-WR-A838_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f5ded378-8e3c-48ea-9ebc-b8032253785a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV b8023162-5e82-40e6-ad8c-8acf81821f01 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-WR-A838 72 false '-- '-- '-- United States -26418 304 2e3f8de2-09c9-56c0-9615-ff7b01989992 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-WR-A838_demographic Dead '-- '-- '-- '-- 26663 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 245 '-- '-- '-- 5959f04b-4bb1-4cc6-9763-e4b2579a490e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-WR-A838_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-WR-A838_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-WR-A838_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 71881689-383c-4f16-9165-78127f797ebe '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV b8023162-5e82-40e6-ad8c-8acf81821f01 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-WR-A838 72 false '-- '-- '-- United States -26418 304 2e3f8de2-09c9-56c0-9615-ff7b01989992 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-WR-A838_demographic Dead '-- '-- '-- '-- 26663 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 245 '-- '-- '-- 5959f04b-4bb1-4cc6-9763-e4b2579a490e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-WR-A838_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-WR-A838_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-WR-A838_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a4f72fca-e113-4ecb-807a-7bc6f1cc9e5d '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV b8023162-5e82-40e6-ad8c-8acf81821f01 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-WR-A838 72 false '-- '-- '-- United States -26418 304 2e3f8de2-09c9-56c0-9615-ff7b01989992 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-WR-A838_demographic Dead '-- '-- '-- '-- 26418 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- fefb6772-4f28-54b1-8e0d-7b57065372c5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- no No '-- '-- '-- '-- Ovary '-- '-- TCGA-WR-A838_diagnosis '-- No Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2013 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-WR-A838_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7613299c-f0d7-4f00-8418-cf448d40ec8a Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b8023162-5e82-40e6-ad8c-8acf81821f01 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-WR-A838 72 false '-- '-- '-- United States -26418 304 2e3f8de2-09c9-56c0-9615-ff7b01989992 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-WR-A838_demographic Dead '-- '-- '-- '-- 26418 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- fefb6772-4f28-54b1-8e0d-7b57065372c5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- no No '-- '-- '-- '-- Ovary '-- '-- TCGA-WR-A838_diagnosis '-- No Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2013 '-- No '-- 92 30 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-WR-A838_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7cfb0d44-4e59-517a-9019-0834b030ab52 '-- yes Progressive Disease '-- Chemotherapy +TCGA-OV b8023162-5e82-40e6-ad8c-8acf81821f01 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-WR-A838 72 false '-- '-- '-- United States -26418 304 2e3f8de2-09c9-56c0-9615-ff7b01989992 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-WR-A838_demographic Dead '-- '-- '-- '-- 26418 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- fefb6772-4f28-54b1-8e0d-7b57065372c5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- no No '-- '-- '-- '-- Ovary '-- '-- TCGA-WR-A838_diagnosis '-- No Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2013 '-- No '-- 92 30 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-WR-A838_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d5124712-7da8-4714-b658-bf40229f7105 '-- yes Progressive Disease '-- Chemotherapy +TCGA-OV b867e933-e3e3-4491-9bb6-b18c48d6f173 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2289 68 false '-- '-- '-- '-- -25191 2049 c9b134f1-5648-5775-8531-9769fbda3073 '-- not reported female '-- '-- '-- '-- white TCGA-24-2289_demographic Dead '-- '-- '-- '-- 25191 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 566061b0-53fa-5c9b-aba1-fe01ff343b32 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2289_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 183 4 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2289_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 645 '-- mg '-- '-- '-- '-- 029f7aa0-151f-44ec-9551-8c7c98234723 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b867e933-e3e3-4491-9bb6-b18c48d6f173 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2289 68 false '-- '-- '-- '-- -25191 2049 c9b134f1-5648-5775-8531-9769fbda3073 '-- not reported female '-- '-- '-- '-- white TCGA-24-2289_demographic Dead '-- '-- '-- '-- 25191 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 566061b0-53fa-5c9b-aba1-fe01ff343b32 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2289_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 183 4 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2289_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1735 '-- mg '-- '-- '-- '-- 13ec1c2a-b48f-5fce-a7c0-e091a367564f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b867e933-e3e3-4491-9bb6-b18c48d6f173 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2289 68 false '-- '-- '-- '-- -25191 2049 c9b134f1-5648-5775-8531-9769fbda3073 '-- not reported female '-- '-- '-- '-- white TCGA-24-2289_demographic Dead '-- '-- '-- '-- 25191 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 566061b0-53fa-5c9b-aba1-fe01ff343b32 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2289_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 708 598 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2289_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- 957 '-- mg '-- '-- '-- '-- 685d1a50-2c1d-4c4d-b9d1-897db586953f '-- yes '-- '-- Chemotherapy +TCGA-OV b867e933-e3e3-4491-9bb6-b18c48d6f173 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2289 68 false '-- '-- '-- '-- -25191 2049 c9b134f1-5648-5775-8531-9769fbda3073 '-- not reported female '-- '-- '-- '-- white TCGA-24-2289_demographic Dead '-- '-- '-- '-- 25191 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 566061b0-53fa-5c9b-aba1-fe01ff343b32 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2289_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2289_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ff29b456-ee5e-4902-b2cf-8579e4b5c94c Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b867e933-e3e3-4491-9bb6-b18c48d6f173 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2289 68 false '-- '-- '-- '-- -25191 2049 c9b134f1-5648-5775-8531-9769fbda3073 '-- not reported female '-- '-- '-- '-- white TCGA-24-2289_demographic Dead '-- '-- '-- '-- 25759 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 568 '-- '-- '-- 8f95c121-0953-4513-9cf4-ff9b998d700a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2289_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2289_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2289_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1d5d18ba-9dbd-4cdb-94c3-39564e9a0a70 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV b867e933-e3e3-4491-9bb6-b18c48d6f173 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2289 68 false '-- '-- '-- '-- -25191 2049 c9b134f1-5648-5775-8531-9769fbda3073 '-- not reported female '-- '-- '-- '-- white TCGA-24-2289_demographic Dead '-- '-- '-- '-- 25759 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 568 '-- '-- '-- 8f95c121-0953-4513-9cf4-ff9b998d700a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2289_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2289_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2289_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- acaf448c-12c2-4759-9d69-65b597179582 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV b8c3d99c-429b-42a3-b486-6fbcb90cc2e0 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0801 46 false '-- '-- '-- '-- -16812 1399 7bbb9196-227a-56c9-83d2-215537f27f32 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-13-0801_demographic Dead '-- '-- '-- '-- 16812 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6d02c417-f8de-5616-9116-d5ca3ede4004 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0801_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 144 32 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0801_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 94acb906-c80b-54ca-9199-5e88c45d41d9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b8c3d99c-429b-42a3-b486-6fbcb90cc2e0 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0801 46 false '-- '-- '-- '-- -16812 1399 7bbb9196-227a-56c9-83d2-215537f27f32 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-13-0801_demographic Dead '-- '-- '-- '-- 16812 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6d02c417-f8de-5616-9116-d5ca3ede4004 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0801_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 144 32 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0801_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9af8b654-ca4d-403c-8299-895fb269988f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b8c3d99c-429b-42a3-b486-6fbcb90cc2e0 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0801 46 false '-- '-- '-- '-- -16812 1399 7bbb9196-227a-56c9-83d2-215537f27f32 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-13-0801_demographic Dead '-- '-- '-- '-- 16812 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6d02c417-f8de-5616-9116-d5ca3ede4004 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0801_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0801_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d47c112f-c7b3-4504-afb2-8fc74188e9f1 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b8c3d99c-429b-42a3-b486-6fbcb90cc2e0 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0801 46 false '-- '-- '-- '-- -16812 1399 7bbb9196-227a-56c9-83d2-215537f27f32 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-13-0801_demographic Dead '-- '-- '-- '-- 16812 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6d02c417-f8de-5616-9116-d5ca3ede4004 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0801_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 144 32 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0801_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f02bc20b-9795-43fa-aea0-b399aa5a623f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b8c3d99c-429b-42a3-b486-6fbcb90cc2e0 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0801 46 false '-- '-- '-- '-- -16812 1399 7bbb9196-227a-56c9-83d2-215537f27f32 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-13-0801_demographic Dead '-- '-- '-- '-- 17157 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 345 '-- '-- '-- e438d7dd-744b-4b78-aff0-a1bdb3af414b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0801_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0801_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV b923ac70-70ea-4a82-8466-46350c5803bf Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1021 45 false '-- '-- '-- '-- -16484 1446 5bf4dbf9-9ad3-56b4-a16a-b891ca34a898 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1021_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8ab9fe04-df2e-45b9-9304-b32a5a6d17f4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1021_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1021_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1181 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1021_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5eaf9dc2-d162-492f-b786-6abc79a6cfe6 '-- yes '-- '-- Surgery, NOS +TCGA-OV b923ac70-70ea-4a82-8466-46350c5803bf Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1021 45 false '-- '-- '-- '-- -16484 1446 5bf4dbf9-9ad3-56b4-a16a-b891ca34a898 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1021_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8ab9fe04-df2e-45b9-9304-b32a5a6d17f4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1021_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1021_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1021_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 658276ed-fd28-49a5-866b-49e7ef2b0872 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV b923ac70-70ea-4a82-8466-46350c5803bf Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1021 45 false '-- '-- '-- '-- -16484 1446 5bf4dbf9-9ad3-56b4-a16a-b891ca34a898 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1021_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8ab9fe04-df2e-45b9-9304-b32a5a6d17f4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1021_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1021_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1021_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 79797abf-14fd-42c6-afb1-be88409bd7f9 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV b923ac70-70ea-4a82-8466-46350c5803bf Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1021 45 false '-- '-- '-- '-- -16484 1446 5bf4dbf9-9ad3-56b4-a16a-b891ca34a898 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1021_demographic Dead '-- '-- '-- '-- 16484 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- aa38d2f9-46a7-5bed-ba31-29109424d54a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1021_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1021_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 002ef306-8f73-4f54-b81c-a2351479d8c6 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b923ac70-70ea-4a82-8466-46350c5803bf Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1021 45 false '-- '-- '-- '-- -16484 1446 5bf4dbf9-9ad3-56b4-a16a-b891ca34a898 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1021_demographic Dead '-- '-- '-- '-- 16484 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- aa38d2f9-46a7-5bed-ba31-29109424d54a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1021_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1331 1226 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1021_treatment7 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2540 '-- mg '-- '-- '-- '-- 0a9f4f95-78bc-4890-a655-567676121f63 '-- yes '-- '-- Chemotherapy +TCGA-OV b923ac70-70ea-4a82-8466-46350c5803bf Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1021 45 false '-- '-- '-- '-- -16484 1446 5bf4dbf9-9ad3-56b4-a16a-b891ca34a898 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1021_demographic Dead '-- '-- '-- '-- 16484 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- aa38d2f9-46a7-5bed-ba31-29109424d54a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1021_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1380 1352 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1021_treatment5 Vinorelbine '-- '-- '-- '-- '-- '-- '-- 50 '-- mg '-- '-- '-- '-- 464ebd2e-901c-46ed-af14-797591331df8 '-- yes '-- '-- Chemotherapy +TCGA-OV b923ac70-70ea-4a82-8466-46350c5803bf Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1021 45 false '-- '-- '-- '-- -16484 1446 5bf4dbf9-9ad3-56b4-a16a-b891ca34a898 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1021_demographic Dead '-- '-- '-- '-- 16484 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- aa38d2f9-46a7-5bed-ba31-29109424d54a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1021_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 861 722 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1021_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- 60 '-- mg '-- '-- '-- '-- 540c2d4b-0369-4e2a-aa9e-181e54406c12 '-- yes '-- '-- Chemotherapy +TCGA-OV b923ac70-70ea-4a82-8466-46350c5803bf Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1021 45 false '-- '-- '-- '-- -16484 1446 5bf4dbf9-9ad3-56b4-a16a-b891ca34a898 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1021_demographic Dead '-- '-- '-- '-- 16484 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- aa38d2f9-46a7-5bed-ba31-29109424d54a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1021_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 119 14 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1021_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2880 '-- mg '-- '-- '-- '-- 82aa4a2a-a987-4121-8a47-6f197238339a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b923ac70-70ea-4a82-8466-46350c5803bf Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1021 45 false '-- '-- '-- '-- -16484 1446 5bf4dbf9-9ad3-56b4-a16a-b891ca34a898 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1021_demographic Dead '-- '-- '-- '-- 16484 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- aa38d2f9-46a7-5bed-ba31-29109424d54a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1021_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1408 1408 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1021_treatment6 Doxorubicin '-- '-- '-- '-- '-- '-- '-- 25 '-- mg '-- '-- '-- '-- 83b674be-0773-4403-9e84-080e92592a62 '-- yes '-- '-- Chemotherapy +TCGA-OV b923ac70-70ea-4a82-8466-46350c5803bf Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1021 45 false '-- '-- '-- '-- -16484 1446 5bf4dbf9-9ad3-56b4-a16a-b891ca34a898 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1021_demographic Dead '-- '-- '-- '-- 16484 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- aa38d2f9-46a7-5bed-ba31-29109424d54a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1021_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 119 14 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1021_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2100 '-- mg '-- '-- '-- '-- c1f54b72-ca1e-430a-80f6-23d80a887d04 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b923ac70-70ea-4a82-8466-46350c5803bf Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1021 45 false '-- '-- '-- '-- -16484 1446 5bf4dbf9-9ad3-56b4-a16a-b891ca34a898 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1021_demographic Dead '-- '-- '-- '-- 16484 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- aa38d2f9-46a7-5bed-ba31-29109424d54a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1021_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 693 526 '-- '-- Persistent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1021_treatment Gemcitabine '-- '-- '-- '-- '-- '-- '-- 6061 '-- mg '-- '-- '-- '-- f3469830-8e5e-50fc-a8df-4e016b741a1e Not Reported yes '-- '-- Chemotherapy +TCGA-OV b9418c6d-94f7-4db4-a1e4-f384b09d54cb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0799 44 false '-- '-- '-- '-- -16171 '-- 7c7c62c8-4ef7-5df4-a00b-512a62df70bf '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-0799_demographic Alive '-- '-- '-- '-- 16171 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1216ba5e-1eb5-5540-9476-831e7434c39a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0799_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 146 36 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0799_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- 1197e425-e369-4998-8e07-beb27ef0ce11 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b9418c6d-94f7-4db4-a1e4-f384b09d54cb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0799 44 false '-- '-- '-- '-- -16171 '-- 7c7c62c8-4ef7-5df4-a00b-512a62df70bf '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-0799_demographic Alive '-- '-- '-- '-- 16171 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1216ba5e-1eb5-5540-9476-831e7434c39a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0799_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0799_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 36ab23c0-ffed-4fa8-9d91-268b417e8b42 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b9418c6d-94f7-4db4-a1e4-f384b09d54cb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0799 44 false '-- '-- '-- '-- -16171 '-- 7c7c62c8-4ef7-5df4-a00b-512a62df70bf '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-0799_demographic Alive '-- '-- '-- '-- 16171 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1216ba5e-1eb5-5540-9476-831e7434c39a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0799_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 146 36 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0799_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- 4800630e-79c4-5b3f-a821-3b0ec51f16d5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b9418c6d-94f7-4db4-a1e4-f384b09d54cb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0799 44 false '-- '-- '-- '-- -16171 '-- 7c7c62c8-4ef7-5df4-a00b-512a62df70bf '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-0799_demographic Alive '-- '-- '-- '-- 16171 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1216ba5e-1eb5-5540-9476-831e7434c39a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0799_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 146 36 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0799_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- 6b00f295-1259-46f3-a799-7daf5600dd22 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b9418c6d-94f7-4db4-a1e4-f384b09d54cb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0799 44 false '-- '-- '-- '-- -16171 '-- 7c7c62c8-4ef7-5df4-a00b-512a62df70bf '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-0799_demographic Alive '-- '-- '-- '-- 17433 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 1262 '-- '-- '-- 98529311-0cbd-4a40-8f43-42506c07a8f5 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0799_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0799_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV ba68f2cf-9271-41fd-9655-1fac7681f588 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1558 73 false '-- '-- '-- '-- -27004 594 58103f7a-0d5a-5c6b-b9cb-6214466a0c34 '-- not reported female '-- '-- '-- '-- white TCGA-24-1558_demographic Dead '-- '-- '-- '-- 27004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2c050cd3-82f7-5809-b295-340ecf3cb89c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1558_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 487 403 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1558_treatment7 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 277 '-- mg '-- '-- '-- '-- 0563b68b-beaa-4507-87d6-51231025c82c '-- yes '-- '-- Chemotherapy +TCGA-OV ba68f2cf-9271-41fd-9655-1fac7681f588 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1558 73 false '-- '-- '-- '-- -27004 594 58103f7a-0d5a-5c6b-b9cb-6214466a0c34 '-- not reported female '-- '-- '-- '-- white TCGA-24-1558_demographic Dead '-- '-- '-- '-- 27004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2c050cd3-82f7-5809-b295-340ecf3cb89c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1558_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1558_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0f2adf95-1701-4d75-8da6-7fcdec862fc7 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ba68f2cf-9271-41fd-9655-1fac7681f588 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1558 73 false '-- '-- '-- '-- -27004 594 58103f7a-0d5a-5c6b-b9cb-6214466a0c34 '-- not reported female '-- '-- '-- '-- white TCGA-24-1558_demographic Dead '-- '-- '-- '-- 27004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2c050cd3-82f7-5809-b295-340ecf3cb89c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1558_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 588 515 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1558_treatment3 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 11810 '-- mg '-- '-- '-- '-- 13443c28-f67e-41a1-9113-b4fd4c4cdfa4 '-- yes '-- '-- Chemotherapy +TCGA-OV ba68f2cf-9271-41fd-9655-1fac7681f588 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1558 73 false '-- '-- '-- '-- -27004 594 58103f7a-0d5a-5c6b-b9cb-6214466a0c34 '-- not reported female '-- '-- '-- '-- white TCGA-24-1558_demographic Dead '-- '-- '-- '-- 27004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2c050cd3-82f7-5809-b295-340ecf3cb89c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1558_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 382 316 '-- '-- Persistent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1558_treatment4 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 3600 '-- mg '-- '-- '-- '-- 3f1affec-eeab-40e7-96de-2a956516eefa Not Reported yes '-- '-- Chemotherapy +TCGA-OV ba68f2cf-9271-41fd-9655-1fac7681f588 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1558 73 false '-- '-- '-- '-- -27004 594 58103f7a-0d5a-5c6b-b9cb-6214466a0c34 '-- not reported female '-- '-- '-- '-- white TCGA-24-1558_demographic Dead '-- '-- '-- '-- 27004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2c050cd3-82f7-5809-b295-340ecf3cb89c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1558_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 247 37 '-- '-- '-- '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1558_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 44 '-- mg '-- '-- '-- '-- 5e803842-33be-5620-ac0b-2cfd048621d8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ba68f2cf-9271-41fd-9655-1fac7681f588 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1558 73 false '-- '-- '-- '-- -27004 594 58103f7a-0d5a-5c6b-b9cb-6214466a0c34 '-- not reported female '-- '-- '-- '-- white TCGA-24-1558_demographic Dead '-- '-- '-- '-- 27004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2c050cd3-82f7-5809-b295-340ecf3cb89c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1558_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 247 37 '-- '-- '-- '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1558_treatment5 Topotecan '-- '-- '-- '-- '-- '-- '-- 14 '-- mg '-- '-- '-- '-- 80f229b9-2f48-4103-b81d-221c06a86467 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ba68f2cf-9271-41fd-9655-1fac7681f588 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1558 73 false '-- '-- '-- '-- -27004 594 58103f7a-0d5a-5c6b-b9cb-6214466a0c34 '-- not reported female '-- '-- '-- '-- white TCGA-24-1558_demographic Dead '-- '-- '-- '-- 27004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2c050cd3-82f7-5809-b295-340ecf3cb89c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1558_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 382 316 '-- '-- Persistent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1558_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 524 '-- mg '-- '-- '-- '-- e20283cd-ed7e-4842-9ab9-d8cdf1b9887e Not Reported yes '-- '-- Chemotherapy +TCGA-OV ba68f2cf-9271-41fd-9655-1fac7681f588 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1558 73 false '-- '-- '-- '-- -27004 594 58103f7a-0d5a-5c6b-b9cb-6214466a0c34 '-- not reported female '-- '-- '-- '-- white TCGA-24-1558_demographic Dead '-- '-- '-- '-- 27004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2c050cd3-82f7-5809-b295-340ecf3cb89c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1558_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 247 37 '-- '-- '-- '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1558_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1800 '-- mg '-- '-- '-- '-- ff1faaaa-8290-4a11-bd63-d7e9aaa0dc06 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ba68f2cf-9271-41fd-9655-1fac7681f588 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1558 73 false '-- '-- '-- '-- -27004 594 58103f7a-0d5a-5c6b-b9cb-6214466a0c34 '-- not reported female '-- '-- '-- '-- white TCGA-24-1558_demographic Dead '-- '-- '-- '-- 27277 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 273 '-- '-- '-- 688a52cb-75a3-46d0-b134-00b9f880bd81 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1558_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1558_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1558_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6780e6a1-b698-4a30-a7b5-a0f177d05fe3 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ba68f2cf-9271-41fd-9655-1fac7681f588 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1558 73 false '-- '-- '-- '-- -27004 594 58103f7a-0d5a-5c6b-b9cb-6214466a0c34 '-- not reported female '-- '-- '-- '-- white TCGA-24-1558_demographic Dead '-- '-- '-- '-- 27277 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 273 '-- '-- '-- 688a52cb-75a3-46d0-b134-00b9f880bd81 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1558_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1558_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1558_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b7357cbc-6206-4804-868f-7ab0fed43397 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV bbad2efe-e9c7-4f8f-924b-ebbbe4c181d4 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2019 46 false '-- '-- '-- '-- -17009 '-- d1eab0fc-7b3b-562a-a9f8-771209dca14f '-- not reported female '-- '-- '-- '-- white TCGA-24-2019_demographic Alive '-- '-- '-- '-- 17009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4422c00b-d710-52d1-b3c3-a3b6879dd792 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2019_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2019_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 02bd3368-a572-426a-8489-966260e79e34 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV bbad2efe-e9c7-4f8f-924b-ebbbe4c181d4 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2019 46 false '-- '-- '-- '-- -17009 '-- d1eab0fc-7b3b-562a-a9f8-771209dca14f '-- not reported female '-- '-- '-- '-- white TCGA-24-2019_demographic Alive '-- '-- '-- '-- 17009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4422c00b-d710-52d1-b3c3-a3b6879dd792 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2019_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2019_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a78e377d-5270-55e9-ba09-406e129ccc09 Adjuvant yes Not Reported '-- Pharmaceutical Therapy, NOS +TCGA-OV bc2591b0-65d7-48c3-a5cc-783f67b65869 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1635 71 false '-- '-- '-- '-- -26200 1583 79dac28f-6891-5ca1-9a1b-b6b946171961 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1635_demographic Dead '-- '-- '-- '-- 26200 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1b49c382-da56-568d-823a-34afc1fd6a96 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1635_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1635_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 15cfd467-6fb7-4706-83de-f824bbe4b372 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV bc2591b0-65d7-48c3-a5cc-783f67b65869 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1635 71 false '-- '-- '-- '-- -26200 1583 79dac28f-6891-5ca1-9a1b-b6b946171961 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1635_demographic Dead '-- '-- '-- '-- 26200 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1b49c382-da56-568d-823a-34afc1fd6a96 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1635_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 233 24 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1635_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6c4bddce-4032-4c19-83bf-998a0f7fc10f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV bc2591b0-65d7-48c3-a5cc-783f67b65869 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1635 71 false '-- '-- '-- '-- -26200 1583 79dac28f-6891-5ca1-9a1b-b6b946171961 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1635_demographic Dead '-- '-- '-- '-- 26200 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1b49c382-da56-568d-823a-34afc1fd6a96 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1635_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 233 24 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1635_treatment Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 73649ab7-ae3a-5923-8c7b-d9afbaf187f4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV bc2591b0-65d7-48c3-a5cc-783f67b65869 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1635 71 false '-- '-- '-- '-- -26200 1583 79dac28f-6891-5ca1-9a1b-b6b946171961 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1635_demographic Dead '-- '-- '-- '-- 26200 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1b49c382-da56-568d-823a-34afc1fd6a96 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1635_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 741 614 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1635_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b74a13b4-37e3-418d-b17e-e24c1f3b2fd7 '-- yes '-- '-- Chemotherapy +TCGA-OV bc2591b0-65d7-48c3-a5cc-783f67b65869 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1635 71 false '-- '-- '-- '-- -26200 1583 79dac28f-6891-5ca1-9a1b-b6b946171961 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1635_demographic Dead '-- '-- '-- '-- 26200 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1b49c382-da56-568d-823a-34afc1fd6a96 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1635_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 741 614 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1635_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d93eea66-4271-441e-9792-f10b63b5ff76 '-- yes '-- '-- Chemotherapy +TCGA-OV bc2591b0-65d7-48c3-a5cc-783f67b65869 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1635 71 false '-- '-- '-- '-- -26200 1583 79dac28f-6891-5ca1-9a1b-b6b946171961 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1635_demographic Dead '-- '-- '-- '-- 26200 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1b49c382-da56-568d-823a-34afc1fd6a96 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1635_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 233 24 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1635_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- eb5c70cc-6bcb-4142-a229-ca6dd0c35311 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV bc2591b0-65d7-48c3-a5cc-783f67b65869 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1635 71 false '-- '-- '-- '-- -26200 1583 79dac28f-6891-5ca1-9a1b-b6b946171961 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1635_demographic Dead '-- '-- '-- '-- 26814 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 614 '-- '-- '-- 624bdf8f-fa2b-4ef9-bfac-e4d0ea1d2cb4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1635_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1635_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1635_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 90daddd3-d744-4f98-b94e-66d6bab01d45 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV bc2591b0-65d7-48c3-a5cc-783f67b65869 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1635 71 false '-- '-- '-- '-- -26200 1583 79dac28f-6891-5ca1-9a1b-b6b946171961 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1635_demographic Dead '-- '-- '-- '-- 26814 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 614 '-- '-- '-- 624bdf8f-fa2b-4ef9-bfac-e4d0ea1d2cb4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1635_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1635_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1635_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fde1e2d4-e872-4d9c-a9de-ae0cd3eb24a6 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV bc3e0b74-ea09-46a5-9f61-16bd15ffd883 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1809 63 false '-- '-- '-- '-- -23111 '-- 8cd7c35b-a01a-52cd-b6fe-c23edb79cfc4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1809_demographic Alive '-- '-- '-- '-- 23111 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ba8c7f10-02ed-5863-a63b-881397fd3c13 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1809_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 107 24 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1809_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1898 '-- mg '-- '-- '-- '-- 3c25f0d8-7069-4497-9aa7-ab29da1d6b8a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV bc3e0b74-ea09-46a5-9f61-16bd15ffd883 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1809 63 false '-- '-- '-- '-- -23111 '-- 8cd7c35b-a01a-52cd-b6fe-c23edb79cfc4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1809_demographic Alive '-- '-- '-- '-- 23111 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ba8c7f10-02ed-5863-a63b-881397fd3c13 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1809_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1809_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 54de9b84-cd40-4919-9c47-3077078c171a Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV bc3e0b74-ea09-46a5-9f61-16bd15ffd883 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1809 63 false '-- '-- '-- '-- -23111 '-- 8cd7c35b-a01a-52cd-b6fe-c23edb79cfc4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1809_demographic Alive '-- '-- '-- '-- 23111 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ba8c7f10-02ed-5863-a63b-881397fd3c13 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1809_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 107 24 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1809_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1495 '-- mg '-- '-- '-- '-- 5825fcbd-3f5b-5845-8028-b80430d579ff Adjuvant yes '-- '-- Chemotherapy +TCGA-OV bc4bc342-20bf-40c3-af26-2c6f942da93d Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1497 47 false '-- '-- '-- '-- -17528 '-- 9c931a7a-6e3c-5a87-a410-c936e9789e42 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1497_demographic Alive '-- '-- '-- '-- 18341 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 813 '-- '-- '-- 055381ca-f580-4a7e-a407-e7e314f6e24a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1497_diagnosis4 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1497_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV bc4bc342-20bf-40c3-af26-2c6f942da93d Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1497 47 false '-- '-- '-- '-- -17528 '-- 9c931a7a-6e3c-5a87-a410-c936e9789e42 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1497_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 32d4e4a5-5527-4ea9-be80-19959940d4d6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1497_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1497_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1497_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2c444e04-4b02-4462-9a63-76be1a87f418 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV bc4bc342-20bf-40c3-af26-2c6f942da93d Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1497 47 false '-- '-- '-- '-- -17528 '-- 9c931a7a-6e3c-5a87-a410-c936e9789e42 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1497_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 32d4e4a5-5527-4ea9-be80-19959940d4d6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1497_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1497_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1497_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6f0ecf82-a3b3-4aa3-bc90-d2a1ca989f8a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV bc4bc342-20bf-40c3-af26-2c6f942da93d Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1497 47 false '-- '-- '-- '-- -17528 '-- 9c931a7a-6e3c-5a87-a410-c936e9789e42 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1497_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 32d4e4a5-5527-4ea9-be80-19959940d4d6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1497_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1497_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 861 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1497_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a899ab9c-7eda-4a65-9cdd-0467bf5c23ef '-- yes '-- '-- Surgery, NOS +TCGA-OV bc4bc342-20bf-40c3-af26-2c6f942da93d Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1497 47 false '-- '-- '-- '-- -17528 '-- 9c931a7a-6e3c-5a87-a410-c936e9789e42 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1497_demographic Alive '-- '-- '-- '-- 18341 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 813 '-- '-- '-- 6296945c-745a-4120-9350-25b2e8f859fe false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1497_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1497_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1497_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8006921f-734c-4061-b0b7-a2c6b1db2ade '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV bc4bc342-20bf-40c3-af26-2c6f942da93d Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1497 47 false '-- '-- '-- '-- -17528 '-- 9c931a7a-6e3c-5a87-a410-c936e9789e42 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1497_demographic Alive '-- '-- '-- '-- 18341 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 813 '-- '-- '-- 6296945c-745a-4120-9350-25b2e8f859fe false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1497_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1497_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1497_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f4b7fefd-1202-4d06-b6b5-f0d5d7aab673 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV bc4bc342-20bf-40c3-af26-2c6f942da93d Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1497 47 false '-- '-- '-- '-- -17528 '-- 9c931a7a-6e3c-5a87-a410-c936e9789e42 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1497_demographic Alive '-- '-- '-- '-- 17528 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b1652541-14ef-5640-8541-d042fdc2524a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1497_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 127 22 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1497_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3ac7d057-ea1c-46b9-9568-6fe097e670e1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV bc4bc342-20bf-40c3-af26-2c6f942da93d Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1497 47 false '-- '-- '-- '-- -17528 '-- 9c931a7a-6e3c-5a87-a410-c936e9789e42 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1497_demographic Alive '-- '-- '-- '-- 17528 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b1652541-14ef-5640-8541-d042fdc2524a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1497_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 185 185 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-1497_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- 6399754c-8906-5395-942f-205595f1b6a9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV bc4bc342-20bf-40c3-af26-2c6f942da93d Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1497 47 false '-- '-- '-- '-- -17528 '-- 9c931a7a-6e3c-5a87-a410-c936e9789e42 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1497_demographic Alive '-- '-- '-- '-- 17528 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b1652541-14ef-5640-8541-d042fdc2524a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1497_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 71 22 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1497_treatment4 Cetuximab '-- '-- '-- '-- '-- '-- '-- 250 '-- mg/m2 '-- '-- '-- '-- 777aa665-01d5-4c90-9377-12f7afeac8da Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV bc4bc342-20bf-40c3-af26-2c6f942da93d Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1497 47 false '-- '-- '-- '-- -17528 '-- 9c931a7a-6e3c-5a87-a410-c936e9789e42 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1497_demographic Alive '-- '-- '-- '-- 17528 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b1652541-14ef-5640-8541-d042fdc2524a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1497_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1497_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a22bbd3e-48e2-4778-8755-aa503e55d197 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV bc4bc342-20bf-40c3-af26-2c6f942da93d Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1497 47 false '-- '-- '-- '-- -17528 '-- 9c931a7a-6e3c-5a87-a410-c936e9789e42 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1497_demographic Alive '-- '-- '-- '-- 17528 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b1652541-14ef-5640-8541-d042fdc2524a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1497_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 127 22 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1497_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- ac60a672-7f3b-470b-afee-15eec3273918 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV bc84c5c5-1785-4edd-b732-8987f862063e Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-5X-AA5U 61 false '-- '-- '-- United States -22438 '-- 168d1029-2d5f-5f1c-8258-18c881e52862 '-- not reported female '-- '-- '-- '-- black or african american TCGA-5X-AA5U_demographic Alive '-- '-- '-- '-- 22438 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 14b248c8-51a1-5f37-9c1f-5b310254bd02 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8460/3 '-- '-- '-- '-- '-- '-- Papillary serous cystadenocarcinoma '-- '-- no No '-- R0 '-- '-- Ovary '-- '-- TCGA-5X-AA5U_diagnosis '-- Yes Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2013 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-5X-AA5U_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 146393dd-59e3-405c-bc0a-54fc24c4deeb Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV bc84c5c5-1785-4edd-b732-8987f862063e Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-5X-AA5U 61 false '-- '-- '-- United States -22438 '-- 168d1029-2d5f-5f1c-8258-18c881e52862 '-- not reported female '-- '-- '-- '-- black or african american TCGA-5X-AA5U_demographic Alive '-- '-- '-- '-- 22438 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 14b248c8-51a1-5f37-9c1f-5b310254bd02 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8460/3 '-- '-- '-- '-- '-- '-- Papillary serous cystadenocarcinoma '-- '-- no No '-- R0 '-- '-- Ovary '-- '-- TCGA-5X-AA5U_diagnosis '-- Yes Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2013 '-- No '-- 178 66 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-5X-AA5U_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2fec166a-281f-55ed-97e9-c3513e22fb44 '-- yes Complete Response '-- Chemotherapy +TCGA-OV bc84c5c5-1785-4edd-b732-8987f862063e Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-5X-AA5U 61 false '-- '-- '-- United States -22438 '-- 168d1029-2d5f-5f1c-8258-18c881e52862 '-- not reported female '-- '-- '-- '-- black or african american TCGA-5X-AA5U_demographic Alive '-- '-- '-- '-- 22438 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 14b248c8-51a1-5f37-9c1f-5b310254bd02 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8460/3 '-- '-- '-- '-- '-- '-- Papillary serous cystadenocarcinoma '-- '-- no No '-- R0 '-- '-- Ovary '-- '-- TCGA-5X-AA5U_diagnosis '-- Yes Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2013 '-- No '-- 178 63 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-5X-AA5U_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 83850744-4f0c-42a9-a897-27fc30f54c5b '-- yes Complete Response '-- Chemotherapy +TCGA-OV bc84c5c5-1785-4edd-b732-8987f862063e Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-5X-AA5U 61 false '-- '-- '-- United States -22438 '-- 168d1029-2d5f-5f1c-8258-18c881e52862 '-- not reported female '-- '-- '-- '-- black or african american TCGA-5X-AA5U_demographic Alive '-- '-- '-- '-- 22438 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 14b248c8-51a1-5f37-9c1f-5b310254bd02 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8460/3 '-- '-- '-- '-- '-- '-- Papillary serous cystadenocarcinoma '-- '-- no No '-- R0 '-- '-- Ovary '-- '-- TCGA-5X-AA5U_diagnosis '-- Yes Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2013 '-- No '-- 178 63 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-5X-AA5U_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cc1856bd-72ea-4852-8546-d7a8b91583f2 '-- yes Complete Response '-- Chemotherapy +TCGA-OV bc84c5c5-1785-4edd-b732-8987f862063e Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-5X-AA5U 61 false '-- '-- '-- United States -22438 '-- 168d1029-2d5f-5f1c-8258-18c881e52862 '-- not reported female '-- '-- '-- '-- black or african american TCGA-5X-AA5U_demographic Alive '-- '-- '-- '-- 22437 '-- '-- '-- '-- M0 NX '-- T1b '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Synchronous primary '-- '-- '-- '-- '-- '-- -1 '-- '-- '-- 2acc63ec-6d6d-4be3-a1f0-8cefd920e716 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IB 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8050/3 '-- '-- '-- '-- '-- '-- Papillary carcinoma, NOS '-- '-- '-- '-- '-- '-- '-- '-- Not Reported '-- '-- TCGA-5X-AA5U_diagnosis2 '-- '-- Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-5X-AA5U_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 669a8282-7241-44a5-b9ec-aa62b891c88a '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV bc84c5c5-1785-4edd-b732-8987f862063e Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-5X-AA5U 61 false '-- '-- '-- United States -22438 '-- 168d1029-2d5f-5f1c-8258-18c881e52862 '-- not reported female '-- '-- '-- '-- black or african american TCGA-5X-AA5U_demographic Alive '-- '-- '-- '-- 22437 '-- '-- '-- '-- M0 NX '-- T1b '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Synchronous primary '-- '-- '-- '-- '-- '-- -1 '-- '-- '-- 2acc63ec-6d6d-4be3-a1f0-8cefd920e716 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IB 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8050/3 '-- '-- '-- '-- '-- '-- Papillary carcinoma, NOS '-- '-- '-- '-- '-- '-- '-- '-- Not Reported '-- '-- TCGA-5X-AA5U_diagnosis2 '-- '-- Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- -1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-5X-AA5U_treatment7 '-- '-- '-- '-- '-- '-- Uterus '-- '-- '-- '-- '-- '-- '-- '-- 6b9ed08f-f493-4c89-b998-e9d22e53f31b '-- yes '-- '-- Surgery, NOS +TCGA-OV bc84c5c5-1785-4edd-b732-8987f862063e Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-5X-AA5U 61 false '-- '-- '-- United States -22438 '-- 168d1029-2d5f-5f1c-8258-18c881e52862 '-- not reported female '-- '-- '-- '-- black or african american TCGA-5X-AA5U_demographic Alive '-- '-- '-- '-- 22437 '-- '-- '-- '-- M0 NX '-- T1b '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Synchronous primary '-- '-- '-- '-- '-- '-- -1 '-- '-- '-- 2acc63ec-6d6d-4be3-a1f0-8cefd920e716 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IB 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8050/3 '-- '-- '-- '-- '-- '-- Papillary carcinoma, NOS '-- '-- '-- '-- '-- '-- '-- '-- Not Reported '-- '-- TCGA-5X-AA5U_diagnosis2 '-- '-- Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-5X-AA5U_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ac0875e5-4587-4a2b-a54e-bdcb23b55d5f '-- no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- 20409 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2f26a07c-893d-5252-be5b-5dcb2902113a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1114_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1918 1741 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1114_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 475 '-- mg '-- '-- '-- '-- 217a7e5b-2644-4622-b6df-e0de8ec63e34 '-- yes '-- '-- Chemotherapy +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- 20409 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2f26a07c-893d-5252-be5b-5dcb2902113a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1114_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1114_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 260cad42-2a86-4d9d-a65d-5a0f4f4dc962 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- 20409 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2f26a07c-893d-5252-be5b-5dcb2902113a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1114_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 182 43 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1114_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3dc9ae85-15bc-4e2b-aa27-6a6366cacb81 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- 20409 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2f26a07c-893d-5252-be5b-5dcb2902113a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1114_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 907 865 '-- '-- Not Reported '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1114_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 1305 '-- mg '-- '-- '-- '-- 4ce7f4c7-428f-5c90-85c3-de43de186e0c Consolidation Therapy yes '-- '-- Chemotherapy +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- 20409 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2f26a07c-893d-5252-be5b-5dcb2902113a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1114_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 182 43 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1114_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 53ed84a0-5e50-4f25-8fee-89b2f705a28e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- 20409 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2f26a07c-893d-5252-be5b-5dcb2902113a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1114_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 747 663 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1114_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1400 '-- mg '-- '-- '-- '-- 5ff2f676-16fc-4f39-85b8-16bdb77046fe '-- yes '-- '-- Chemotherapy +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- 20409 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2f26a07c-893d-5252-be5b-5dcb2902113a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1114_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1222 1159 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1114_treatment10 Docetaxel '-- '-- '-- '-- '-- '-- '-- 520 '-- mg '-- '-- '-- '-- 75ef0e20-b37b-49f0-bb47-45de5d650e5a '-- yes '-- '-- Chemotherapy +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- 20409 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2f26a07c-893d-5252-be5b-5dcb2902113a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1114_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 747 663 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1114_treatment9 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2100 '-- mg '-- '-- '-- '-- 8a0adf52-6226-4724-a475-ddb5c691788c '-- yes '-- '-- Chemotherapy +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- 20409 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2f26a07c-893d-5252-be5b-5dcb2902113a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1114_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1425 1357 '-- '-- Persistent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1114_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1190 '-- mg '-- '-- '-- '-- 93c56564-9055-40f6-8c36-c19116986251 Not Reported yes '-- '-- Chemotherapy +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- 20409 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2f26a07c-893d-5252-be5b-5dcb2902113a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1114_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1425 1348 '-- '-- Persistent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1114_treatment11 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 9625 '-- mg '-- '-- '-- '-- b024cf14-1247-46c3-b80d-e40f5c9fc1bb Not Reported yes '-- '-- Chemotherapy +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- 20409 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2f26a07c-893d-5252-be5b-5dcb2902113a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1114_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 2026 1985 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1114_treatment2 Topotecan '-- '-- '-- '-- '-- '-- '-- 20 '-- mg '-- '-- '-- '-- be918966-a95d-4a87-97ad-c4a4c18979f8 '-- yes '-- '-- Chemotherapy +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- 20409 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2f26a07c-893d-5252-be5b-5dcb2902113a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1114_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1350 1324 '-- '-- Persistent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1114_treatment8 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 5500 '-- mg '-- '-- '-- '-- e9e3f762-6e37-4613-8b3f-4e556f91e96c Not Reported yes '-- '-- Chemotherapy +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- 20409 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2f26a07c-893d-5252-be5b-5dcb2902113a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1114_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1350 1324 '-- '-- Persistent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1114_treatment12 Cisplatin '-- '-- '-- '-- '-- '-- '-- 260 '-- mg '-- '-- '-- '-- f2e65017-3d5c-4b25-a8f0-29dd7f80be74 Not Reported yes '-- '-- Chemotherapy +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8de7faad-7f73-4541-a113-4ba0b228935f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1114_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1114_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1114_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5b906a33-af03-4386-a139-b4c0b17c96a3 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8de7faad-7f73-4541-a113-4ba0b228935f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1114_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1114_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 634 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1114_treatment18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7a6cd2ad-3148-48f0-aab3-e9559502c703 '-- yes '-- '-- Surgery, NOS +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8de7faad-7f73-4541-a113-4ba0b228935f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1114_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1114_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1114_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 80237e5b-550d-459a-b7cd-99b6ec043927 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- 21043 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 634 '-- '-- '-- fbec5e51-4146-4efc-8513-7b6e4d7aa520 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1114_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1114_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1114_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3b314132-99b5-4842-9575-6ba2dd089520 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- 21043 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 634 '-- '-- '-- fbec5e51-4146-4efc-8513-7b6e4d7aa520 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1114_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1114_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1114_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f7a99641-c257-4092-a3c8-910dac22e560 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV c183d3fb-2eee-44f8-890e-b9bf907141e6 Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2092 57 false '-- '-- '-- '-- -21072 '-- 53de236f-819a-54ee-9111-6556f3647385 '-- not reported female '-- '-- '-- '-- white TCGA-61-2092_demographic Alive '-- '-- '-- '-- 21072 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8fd8c018-04a7-549f-a3a6-ac8e9b87c065 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2092_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 160 41 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2092_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2d8c1dcf-b0a7-4630-82c2-8054ac8b7052 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c183d3fb-2eee-44f8-890e-b9bf907141e6 Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2092 57 false '-- '-- '-- '-- -21072 '-- 53de236f-819a-54ee-9111-6556f3647385 '-- not reported female '-- '-- '-- '-- white TCGA-61-2092_demographic Alive '-- '-- '-- '-- 21072 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8fd8c018-04a7-549f-a3a6-ac8e9b87c065 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2092_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2092_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ac21f76e-5537-42ee-b868-8831478c5150 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV c183d3fb-2eee-44f8-890e-b9bf907141e6 Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2092 57 false '-- '-- '-- '-- -21072 '-- 53de236f-819a-54ee-9111-6556f3647385 '-- not reported female '-- '-- '-- '-- white TCGA-61-2092_demographic Alive '-- '-- '-- '-- 21072 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8fd8c018-04a7-549f-a3a6-ac8e9b87c065 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2092_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 160 41 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2092_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e69ef619-a6ae-5941-a261-0a6ee83ea47a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c3e443b9-5dc5-4793-91e3-534f21485268 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1424 67 false '-- '-- '-- '-- -24545 '-- 63997bed-da2a-57ae-81e4-53468e3d556a '-- not reported female '-- '-- '-- '-- white TCGA-24-1424_demographic Alive '-- '-- '-- '-- 24545 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 51ca0e22-1a4d-5b23-a0bb-f197df114dfe true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1424_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 120 8 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1424_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 1441 '-- mg '-- '-- '-- '-- 0abda174-3602-5b21-9c07-80eb17808870 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c3e443b9-5dc5-4793-91e3-534f21485268 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1424 67 false '-- '-- '-- '-- -24545 '-- 63997bed-da2a-57ae-81e4-53468e3d556a '-- not reported female '-- '-- '-- '-- white TCGA-24-1424_demographic Alive '-- '-- '-- '-- 24545 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 51ca0e22-1a4d-5b23-a0bb-f197df114dfe true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1424_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1424_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7e58fd31-8b1f-4eae-80aa-4c5a4d850a71 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV c3e443b9-5dc5-4793-91e3-534f21485268 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1424 67 false '-- '-- '-- '-- -24545 '-- 63997bed-da2a-57ae-81e4-53468e3d556a '-- not reported female '-- '-- '-- '-- white TCGA-24-1424_demographic Alive '-- '-- '-- '-- 24545 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 51ca0e22-1a4d-5b23-a0bb-f197df114dfe true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1424_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 120 8 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1424_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- 429 '-- mg '-- '-- '-- '-- a5120aaa-833a-472e-bd7f-4e3ff3cb8eaf Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c3e443b9-5dc5-4793-91e3-534f21485268 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1424 67 false '-- '-- '-- '-- -24545 '-- 63997bed-da2a-57ae-81e4-53468e3d556a '-- not reported female '-- '-- '-- '-- white TCGA-24-1424_demographic Alive '-- '-- '-- '-- 24545 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 51ca0e22-1a4d-5b23-a0bb-f197df114dfe true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1424_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 120 8 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1424_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 972 '-- mg '-- '-- '-- '-- b9c16de8-5e53-41c7-806f-ab2fd1a2f602 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c3f9ee36-d34f-472b-ac7f-801a0d400aa4 Informed Consent -18 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1410 57 false '-- '-- '-- '-- -20950 '-- dddcc9ce-814f-57e6-88a2-e528d7447fbb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1410_demographic Alive '-- '-- '-- '-- 20950 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5e13b45b-37a6-5228-8b30-a580f27d1c1a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1410_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 83 39 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1410_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2b230ef2-11da-4175-9171-30caca913d2c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c3f9ee36-d34f-472b-ac7f-801a0d400aa4 Informed Consent -18 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1410 57 false '-- '-- '-- '-- -20950 '-- dddcc9ce-814f-57e6-88a2-e528d7447fbb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1410_demographic Alive '-- '-- '-- '-- 20950 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5e13b45b-37a6-5228-8b30-a580f27d1c1a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1410_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 125 103 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-13-1410_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- 35b5209f-4450-58fe-87f6-96613c89f7fb Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c3f9ee36-d34f-472b-ac7f-801a0d400aa4 Informed Consent -18 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1410 57 false '-- '-- '-- '-- -20950 '-- dddcc9ce-814f-57e6-88a2-e528d7447fbb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1410_demographic Alive '-- '-- '-- '-- 20950 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5e13b45b-37a6-5228-8b30-a580f27d1c1a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1410_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 83 39 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1410_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 7679adc6-2db2-4f4e-9f5d-f96dfc269e3a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c3f9ee36-d34f-472b-ac7f-801a0d400aa4 Informed Consent -18 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1410 57 false '-- '-- '-- '-- -20950 '-- dddcc9ce-814f-57e6-88a2-e528d7447fbb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1410_demographic Alive '-- '-- '-- '-- 20950 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5e13b45b-37a6-5228-8b30-a580f27d1c1a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1410_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1410_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7fd0fe35-169f-4f40-8c86-cf4e7b50d8aa Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV c3f9ee36-d34f-472b-ac7f-801a0d400aa4 Informed Consent -18 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1410 57 false '-- '-- '-- '-- -20950 '-- dddcc9ce-814f-57e6-88a2-e528d7447fbb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1410_demographic Alive '-- '-- '-- '-- 20950 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5e13b45b-37a6-5228-8b30-a580f27d1c1a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1410_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 125 103 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-13-1410_treatment4 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- f817e44e-f432-4d4b-b6b3-22322566d04f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c3f9ee36-d34f-472b-ac7f-801a0d400aa4 Informed Consent -18 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1410 57 false '-- '-- '-- '-- -20950 '-- dddcc9ce-814f-57e6-88a2-e528d7447fbb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1410_demographic Alive '-- '-- '-- '-- 21269 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 319 '-- '-- '-- 707cfeea-8f3d-4af8-9252-e3688211d9b3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1410_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1410_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV c435627c-159d-4a6d-a819-30abac24bf4d Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1632 68 false '-- '-- '-- '-- -24993 1799 ecf4f54b-a69f-5931-8dc3-82641be4e4f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1632_demographic Dead '-- '-- '-- '-- 25530 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 537 '-- '-- '-- 03854145-98b4-4997-999d-7303bf40d770 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1632_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1632_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1632_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 66e1f0d5-eb8b-4222-aa6a-c5ba4fc76c93 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV c435627c-159d-4a6d-a819-30abac24bf4d Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1632 68 false '-- '-- '-- '-- -24993 1799 ecf4f54b-a69f-5931-8dc3-82641be4e4f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1632_demographic Dead '-- '-- '-- '-- 25530 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 537 '-- '-- '-- 03854145-98b4-4997-999d-7303bf40d770 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1632_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1632_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1632_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 94799d53-168e-413b-940c-08c4de75c13f '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV c435627c-159d-4a6d-a819-30abac24bf4d Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1632 68 false '-- '-- '-- '-- -24993 1799 ecf4f54b-a69f-5931-8dc3-82641be4e4f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1632_demographic Dead '-- '-- '-- '-- 24993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c8695a7a-bbd7-5587-abe6-4896e3db73ba true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1632_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1632_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 23c018a6-e68d-43ee-9f7d-f5efae848c14 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV c435627c-159d-4a6d-a819-30abac24bf4d Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1632 68 false '-- '-- '-- '-- -24993 1799 ecf4f54b-a69f-5931-8dc3-82641be4e4f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1632_demographic Dead '-- '-- '-- '-- 24993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c8695a7a-bbd7-5587-abe6-4896e3db73ba true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1632_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 719 566 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1632_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3995de18-6364-449b-bad3-02e493e0a4a4 '-- yes '-- '-- Chemotherapy +TCGA-OV c435627c-159d-4a6d-a819-30abac24bf4d Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1632 68 false '-- '-- '-- '-- -24993 1799 ecf4f54b-a69f-5931-8dc3-82641be4e4f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1632_demographic Dead '-- '-- '-- '-- 24993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c8695a7a-bbd7-5587-abe6-4896e3db73ba true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1632_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 719 566 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1632_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 48fa0442-2828-4674-82ed-5fc329acfb6a '-- yes '-- '-- Chemotherapy +TCGA-OV c435627c-159d-4a6d-a819-30abac24bf4d Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1632 68 false '-- '-- '-- '-- -24993 1799 ecf4f54b-a69f-5931-8dc3-82641be4e4f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1632_demographic Dead '-- '-- '-- '-- 24993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c8695a7a-bbd7-5587-abe6-4896e3db73ba true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1632_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 200 82 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1632_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 76150ff8-715c-502e-b0a0-483aadf886d4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c435627c-159d-4a6d-a819-30abac24bf4d Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1632 68 false '-- '-- '-- '-- -24993 1799 ecf4f54b-a69f-5931-8dc3-82641be4e4f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1632_demographic Dead '-- '-- '-- '-- 24993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c8695a7a-bbd7-5587-abe6-4896e3db73ba true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1632_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 200 82 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1632_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 94389e58-8b86-41ce-b06e-3614d107a4e9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c435627c-159d-4a6d-a819-30abac24bf4d Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1632 68 false '-- '-- '-- '-- -24993 1799 ecf4f54b-a69f-5931-8dc3-82641be4e4f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1632_demographic Dead '-- '-- '-- '-- 24993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c8695a7a-bbd7-5587-abe6-4896e3db73ba true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1632_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 200 82 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1632_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ac66b5cb-256d-476c-8bd8-db6ddd85042a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c5355491-e1e8-46a4-a05e-bafcaf2e7459 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1481 76 false '-- '-- '-- '-- -27898 2648 3feefab3-b78e-5f51-a8f7-b0601937c6dc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1481_demographic Dead '-- '-- '-- '-- 27898 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6876be41-0a9d-5d46-b658-88ac8875f007 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1481_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 242 198 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-1481_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 59a108b5-57c4-5efc-b34f-97cd49df570c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c5355491-e1e8-46a4-a05e-bafcaf2e7459 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1481 76 false '-- '-- '-- '-- -27898 2648 3feefab3-b78e-5f51-a8f7-b0601937c6dc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1481_demographic Dead '-- '-- '-- '-- 27898 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6876be41-0a9d-5d46-b658-88ac8875f007 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1481_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 131 11 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1481_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9f848a6a-9e86-4a61-82ef-5bf10f16d76f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c5355491-e1e8-46a4-a05e-bafcaf2e7459 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1481 76 false '-- '-- '-- '-- -27898 2648 3feefab3-b78e-5f51-a8f7-b0601937c6dc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1481_demographic Dead '-- '-- '-- '-- 27898 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6876be41-0a9d-5d46-b658-88ac8875f007 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1481_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1481_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- afe86459-325d-4aa8-b408-e711b86f942b Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV c5355491-e1e8-46a4-a05e-bafcaf2e7459 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1481 76 false '-- '-- '-- '-- -27898 2648 3feefab3-b78e-5f51-a8f7-b0601937c6dc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1481_demographic Dead '-- '-- '-- '-- 27898 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6876be41-0a9d-5d46-b658-88ac8875f007 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1481_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 131 11 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1481_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- f35ffa58-18cf-4730-96c9-07907f59fa17 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c6ede8ae-881c-47a0-a0ef-745ed4b7764a Informed Consent 1095 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1026 45 false '-- '-- '-- '-- -16442 '-- c1602427-bdf1-51ea-b682-09a7e2a740c1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1026_demographic Alive '-- '-- '-- '-- 16442 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0a5bc544-d5cc-57d6-85e2-fd38deb2fccb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1026_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 108 7 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1026_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1560 '-- mg '-- '-- '-- '-- 6d3785bf-c3d1-46d2-ab7e-9a0c599a4f19 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c6ede8ae-881c-47a0-a0ef-745ed4b7764a Informed Consent 1095 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1026 45 false '-- '-- '-- '-- -16442 '-- c1602427-bdf1-51ea-b682-09a7e2a740c1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1026_demographic Alive '-- '-- '-- '-- 16442 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0a5bc544-d5cc-57d6-85e2-fd38deb2fccb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1026_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 936 866 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-23-1026_treatment4 Cisplatin '-- '-- '-- '-- '-- '-- '-- 520 '-- mg '-- '-- '-- '-- a20eb4ed-953f-4e5a-83e7-ae0d96813a06 '-- yes '-- '-- Chemotherapy +TCGA-OV c6ede8ae-881c-47a0-a0ef-745ed4b7764a Informed Consent 1095 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1026 45 false '-- '-- '-- '-- -16442 '-- c1602427-bdf1-51ea-b682-09a7e2a740c1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1026_demographic Alive '-- '-- '-- '-- 16442 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0a5bc544-d5cc-57d6-85e2-fd38deb2fccb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1026_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 936 866 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-23-1026_treatment Gemcitabine '-- '-- '-- '-- '-- '-- '-- 5648 '-- mg '-- '-- '-- '-- abcd3aa9-29eb-52a2-a30b-9378a2110059 '-- yes '-- '-- Chemotherapy +TCGA-OV c6ede8ae-881c-47a0-a0ef-745ed4b7764a Informed Consent 1095 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1026 45 false '-- '-- '-- '-- -16442 '-- c1602427-bdf1-51ea-b682-09a7e2a740c1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1026_demographic Alive '-- '-- '-- '-- 16442 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0a5bc544-d5cc-57d6-85e2-fd38deb2fccb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1026_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1026_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ba1d4a77-776b-4c88-8025-e42a16399294 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV c6ede8ae-881c-47a0-a0ef-745ed4b7764a Informed Consent 1095 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1026 45 false '-- '-- '-- '-- -16442 '-- c1602427-bdf1-51ea-b682-09a7e2a740c1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1026_demographic Alive '-- '-- '-- '-- 16442 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0a5bc544-d5cc-57d6-85e2-fd38deb2fccb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1026_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 108 7 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1026_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3420 '-- mg '-- '-- '-- '-- c080e577-f2ce-47eb-96ca-654154cd3162 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c6ede8ae-881c-47a0-a0ef-745ed4b7764a Informed Consent 1095 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1026 45 false '-- '-- '-- '-- -16442 '-- c1602427-bdf1-51ea-b682-09a7e2a740c1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1026_demographic Alive '-- '-- '-- '-- 17239 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 797 '-- '-- '-- 21c9f279-b78d-4f65-8a01-48a8049dfa7f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1026_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1026_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1026_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 63ff0ebd-d6ac-4034-a175-8c08787dff73 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV c6ede8ae-881c-47a0-a0ef-745ed4b7764a Informed Consent 1095 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1026 45 false '-- '-- '-- '-- -16442 '-- c1602427-bdf1-51ea-b682-09a7e2a740c1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1026_demographic Alive '-- '-- '-- '-- 17239 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 797 '-- '-- '-- 21c9f279-b78d-4f65-8a01-48a8049dfa7f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1026_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1026_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1026_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 74b201c6-5bbc-4cb6-b32e-00dad201ee3f '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV c6ede8ae-881c-47a0-a0ef-745ed4b7764a Informed Consent 1095 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1026 45 false '-- '-- '-- '-- -16442 '-- c1602427-bdf1-51ea-b682-09a7e2a740c1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1026_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7b08ac98-ca67-4948-bd3e-b80392a1efac false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1026_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1026_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1026_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 39d1f94a-fc1a-44e4-8c9b-6d5aa98f3e8f '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV c6ede8ae-881c-47a0-a0ef-745ed4b7764a Informed Consent 1095 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1026 45 false '-- '-- '-- '-- -16442 '-- c1602427-bdf1-51ea-b682-09a7e2a740c1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1026_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7b08ac98-ca67-4948-bd3e-b80392a1efac false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1026_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1026_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 816 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1026_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- acb5bdef-8322-4434-9760-2f611e2fa658 '-- yes '-- '-- Surgery, NOS +TCGA-OV c6ede8ae-881c-47a0-a0ef-745ed4b7764a Informed Consent 1095 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1026 45 false '-- '-- '-- '-- -16442 '-- c1602427-bdf1-51ea-b682-09a7e2a740c1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1026_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7b08ac98-ca67-4948-bd3e-b80392a1efac false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1026_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1026_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1026_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fcdda856-da61-44cd-b192-2219048f2759 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV c73244fd-d486-439f-a94f-fb0bd4e9ac8f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1324 74 false '-- '-- '-- '-- -27090 1035 82f1207d-737a-5fa8-bd7e-a9555193d7ff '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1324_demographic Dead '-- '-- '-- '-- 27090 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- bfdec51d-c323-5a52-8541-41131eef2710 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1324_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1324_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 17df83aa-1728-42f4-810a-550800f0a18e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c73244fd-d486-439f-a94f-fb0bd4e9ac8f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1324 74 false '-- '-- '-- '-- -27090 1035 82f1207d-737a-5fa8-bd7e-a9555193d7ff '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1324_demographic Dead '-- '-- '-- '-- 27090 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- bfdec51d-c323-5a52-8541-41131eef2710 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1324_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1324_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8db7a10d-09d1-45a2-b5b6-f8b7c792b0b4 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV c73244fd-d486-439f-a94f-fb0bd4e9ac8f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1324 74 false '-- '-- '-- '-- -27090 1035 82f1207d-737a-5fa8-bd7e-a9555193d7ff '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1324_demographic Dead '-- '-- '-- '-- 27090 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- bfdec51d-c323-5a52-8541-41131eef2710 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1324_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1324_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a14514cb-922d-5a4e-9c43-0e9387795c08 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c7cf6755-8856-435b-a443-174b22a25b07 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-OY-A56Q 78 false '-- '-- '-- United States -28623 '-- d29528b8-bba5-5033-8fed-7dc94e0f4764 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-OY-A56Q_demographic Alive '-- '-- '-- '-- 28623 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e64f78a3-2512-50f4-8b0c-34493a440422 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- no No '-- RX '-- '-- Ovary '-- '-- TCGA-OY-A56Q_diagnosis '-- No Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2012 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-OY-A56Q_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 77a61c99-b15a-47d5-8fcf-aa0f0a0f9432 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV c7cf6755-8856-435b-a443-174b22a25b07 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-OY-A56Q 78 false '-- '-- '-- United States -28623 '-- d29528b8-bba5-5033-8fed-7dc94e0f4764 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-OY-A56Q_demographic Alive '-- '-- '-- '-- 28623 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e64f78a3-2512-50f4-8b0c-34493a440422 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- no No '-- RX '-- '-- Ovary '-- '-- TCGA-OY-A56Q_diagnosis '-- No Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2012 '-- No '-- 128 23 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-OY-A56Q_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aed9933d-25e1-49ce-9f7b-3fdcbc48cb27 '-- yes Complete Response '-- Chemotherapy +TCGA-OV c7cf6755-8856-435b-a443-174b22a25b07 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-OY-A56Q 78 false '-- '-- '-- United States -28623 '-- d29528b8-bba5-5033-8fed-7dc94e0f4764 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-OY-A56Q_demographic Alive '-- '-- '-- '-- 28623 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e64f78a3-2512-50f4-8b0c-34493a440422 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- no No '-- RX '-- '-- Ovary '-- '-- TCGA-OY-A56Q_diagnosis '-- No Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2012 '-- No '-- 128 23 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-OY-A56Q_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- af64e246-f0f8-51c9-8cc0-473354478c58 '-- yes Complete Response '-- Chemotherapy +TCGA-OV c8acee1b-6854-409b-86ab-bf69dbe22ab6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1426 43 false '-- '-- '-- '-- -15949 '-- 13753562-152d-554c-9562-f22a3fcf89f7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1426_demographic Alive '-- '-- '-- '-- 15949 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 73d04d1d-d04a-5882-9b7c-26f5a22bf03e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1426_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 142 -8 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1426_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 900 '-- mg '-- '-- '-- '-- 4e62a9f2-3ff9-53b6-bc81-449ddbcee8a9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c8acee1b-6854-409b-86ab-bf69dbe22ab6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1426 43 false '-- '-- '-- '-- -15949 '-- 13753562-152d-554c-9562-f22a3fcf89f7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1426_demographic Alive '-- '-- '-- '-- 15949 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 73d04d1d-d04a-5882-9b7c-26f5a22bf03e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1426_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1426_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 62c57493-d8f6-481b-81ec-e66ce354b1dd Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV c8acee1b-6854-409b-86ab-bf69dbe22ab6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1426 43 false '-- '-- '-- '-- -15949 '-- 13753562-152d-554c-9562-f22a3fcf89f7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1426_demographic Alive '-- '-- '-- '-- 15949 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 73d04d1d-d04a-5882-9b7c-26f5a22bf03e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1426_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 142 -8 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1426_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 720 '-- mg '-- '-- '-- '-- a1b61240-4ef4-4c49-8ed1-a27e42b5f6bc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c8acee1b-6854-409b-86ab-bf69dbe22ab6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1426 43 false '-- '-- '-- '-- -15949 '-- 13753562-152d-554c-9562-f22a3fcf89f7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1426_demographic Alive '-- '-- '-- '-- 15949 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 73d04d1d-d04a-5882-9b7c-26f5a22bf03e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1426_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 142 -8 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1426_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 780 '-- mg '-- '-- '-- '-- ad86990f-6dc2-414a-b937-1bb92e36ea74 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c9226204-cb61-40b8-8a94-a7e71c14ea3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2036 50 false '-- '-- '-- '-- -18582 1947 8d1986bb-40dd-57cb-9ca9-33b4a9651882 '-- not reported female '-- '-- '-- '-- white TCGA-24-2036_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 69d25ae5-5d99-4ab9-ad5c-7499e42c04a9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2036_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2036_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 579 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2036_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0ec49ace-90f6-4079-b084-de76c23cf912 '-- yes '-- '-- Surgery, NOS +TCGA-OV c9226204-cb61-40b8-8a94-a7e71c14ea3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2036 50 false '-- '-- '-- '-- -18582 1947 8d1986bb-40dd-57cb-9ca9-33b4a9651882 '-- not reported female '-- '-- '-- '-- white TCGA-24-2036_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 69d25ae5-5d99-4ab9-ad5c-7499e42c04a9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2036_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2036_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2036_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 65592d8c-8757-47c6-be67-619856bb7d9b '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV c9226204-cb61-40b8-8a94-a7e71c14ea3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2036 50 false '-- '-- '-- '-- -18582 1947 8d1986bb-40dd-57cb-9ca9-33b4a9651882 '-- not reported female '-- '-- '-- '-- white TCGA-24-2036_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 69d25ae5-5d99-4ab9-ad5c-7499e42c04a9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2036_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2036_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2036_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 73560574-2111-4d58-b5d6-e73a05637de8 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV c9226204-cb61-40b8-8a94-a7e71c14ea3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2036 50 false '-- '-- '-- '-- -18582 1947 8d1986bb-40dd-57cb-9ca9-33b4a9651882 '-- not reported female '-- '-- '-- '-- white TCGA-24-2036_demographic Dead '-- '-- '-- '-- 18582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 74e1f295-8a60-5d66-95ed-2dd395075e1e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2036_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 1916 1897 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- 14.0 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2036_treatment '-- '-- '-- '-- '-- '-- Locoregional Site '-- 35 '-- cGy '-- '-- '-- '-- 1a9d9ad6-eb9a-544e-ae73-fe307f320b65 '-- yes '-- '-- Radiation, External Beam +TCGA-OV c9226204-cb61-40b8-8a94-a7e71c14ea3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2036 50 false '-- '-- '-- '-- -18582 1947 8d1986bb-40dd-57cb-9ca9-33b4a9651882 '-- not reported female '-- '-- '-- '-- white TCGA-24-2036_demographic Dead '-- '-- '-- '-- 18582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 74e1f295-8a60-5d66-95ed-2dd395075e1e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2036_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 638 592 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-2036_treatment10 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 24c3ab38-d88b-43f9-9019-2e9a434eaf7d '-- yes '-- '-- Chemotherapy +TCGA-OV c9226204-cb61-40b8-8a94-a7e71c14ea3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2036 50 false '-- '-- '-- '-- -18582 1947 8d1986bb-40dd-57cb-9ca9-33b4a9651882 '-- not reported female '-- '-- '-- '-- white TCGA-24-2036_demographic Dead '-- '-- '-- '-- 18582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 74e1f295-8a60-5d66-95ed-2dd395075e1e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2036_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- 1064 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2036_treatment7 Tamoxifen '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3faaa265-e7e6-4168-8196-6780a4158cdb '-- yes '-- '-- Hormone Therapy +TCGA-OV c9226204-cb61-40b8-8a94-a7e71c14ea3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2036 50 false '-- '-- '-- '-- -18582 1947 8d1986bb-40dd-57cb-9ca9-33b4a9651882 '-- not reported female '-- '-- '-- '-- white TCGA-24-2036_demographic Dead '-- '-- '-- '-- 18582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 74e1f295-8a60-5d66-95ed-2dd395075e1e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2036_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- 1430 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2036_treatment9 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 58abbd48-670e-449f-97df-60d9f3e79f6f '-- yes '-- '-- Chemotherapy +TCGA-OV c9226204-cb61-40b8-8a94-a7e71c14ea3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2036 50 false '-- '-- '-- '-- -18582 1947 8d1986bb-40dd-57cb-9ca9-33b4a9651882 '-- not reported female '-- '-- '-- '-- white TCGA-24-2036_demographic Dead '-- '-- '-- '-- 18582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 74e1f295-8a60-5d66-95ed-2dd395075e1e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2036_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- 1156 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2036_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7fcc60a9-c96c-4e04-965d-c8a71156695b '-- yes '-- '-- Chemotherapy +TCGA-OV c9226204-cb61-40b8-8a94-a7e71c14ea3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2036 50 false '-- '-- '-- '-- -18582 1947 8d1986bb-40dd-57cb-9ca9-33b4a9651882 '-- not reported female '-- '-- '-- '-- white TCGA-24-2036_demographic Dead '-- '-- '-- '-- 18582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 74e1f295-8a60-5d66-95ed-2dd395075e1e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2036_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 638 592 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-2036_treatment6 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8d963b17-a84d-4e93-9a8e-c3d1333dcdb5 '-- yes '-- '-- Chemotherapy +TCGA-OV c9226204-cb61-40b8-8a94-a7e71c14ea3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2036 50 false '-- '-- '-- '-- -18582 1947 8d1986bb-40dd-57cb-9ca9-33b4a9651882 '-- not reported female '-- '-- '-- '-- white TCGA-24-2036_demographic Dead '-- '-- '-- '-- 18582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 74e1f295-8a60-5d66-95ed-2dd395075e1e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2036_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- 1454 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2036_treatment8 Mitomycin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9588456d-db6c-45ff-ad83-3e5013ffca12 '-- yes '-- '-- Chemotherapy +TCGA-OV c9226204-cb61-40b8-8a94-a7e71c14ea3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2036 50 false '-- '-- '-- '-- -18582 1947 8d1986bb-40dd-57cb-9ca9-33b4a9651882 '-- not reported female '-- '-- '-- '-- white TCGA-24-2036_demographic Dead '-- '-- '-- '-- 18582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 74e1f295-8a60-5d66-95ed-2dd395075e1e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2036_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 153 '-- '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2036_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b14b6fa6-099b-42e4-94a0-b831e36b21e0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c9226204-cb61-40b8-8a94-a7e71c14ea3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2036 50 false '-- '-- '-- '-- -18582 1947 8d1986bb-40dd-57cb-9ca9-33b4a9651882 '-- not reported female '-- '-- '-- '-- white TCGA-24-2036_demographic Dead '-- '-- '-- '-- 18582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 74e1f295-8a60-5d66-95ed-2dd395075e1e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2036_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- 1156 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2036_treatment11 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e4387bca-6539-4b33-889c-fcfcabe29b88 '-- yes '-- '-- Chemotherapy +TCGA-OV c9226204-cb61-40b8-8a94-a7e71c14ea3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2036 50 false '-- '-- '-- '-- -18582 1947 8d1986bb-40dd-57cb-9ca9-33b4a9651882 '-- not reported female '-- '-- '-- '-- white TCGA-24-2036_demographic Dead '-- '-- '-- '-- 18582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 74e1f295-8a60-5d66-95ed-2dd395075e1e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2036_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 153 '-- '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2036_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f0f70fb0-83b4-44df-b907-781574a8169f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c9226204-cb61-40b8-8a94-a7e71c14ea3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2036 50 false '-- '-- '-- '-- -18582 1947 8d1986bb-40dd-57cb-9ca9-33b4a9651882 '-- not reported female '-- '-- '-- '-- white TCGA-24-2036_demographic Dead '-- '-- '-- '-- 18582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 74e1f295-8a60-5d66-95ed-2dd395075e1e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2036_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- 1855 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2036_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f5b34091-9dd3-4765-90b3-0881aa826a00 '-- yes '-- '-- Chemotherapy +TCGA-OV c9226204-cb61-40b8-8a94-a7e71c14ea3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2036 50 false '-- '-- '-- '-- -18582 1947 8d1986bb-40dd-57cb-9ca9-33b4a9651882 '-- not reported female '-- '-- '-- '-- white TCGA-24-2036_demographic Dead '-- '-- '-- '-- 19496 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 914 '-- '-- '-- f0d1b028-f9f3-4e0e-9e0a-fc547c462cc3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2036_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2036_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2036_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 27c0e7ba-1317-489c-9a95-bf7ed7f5e7fd '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV c9226204-cb61-40b8-8a94-a7e71c14ea3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2036 50 false '-- '-- '-- '-- -18582 1947 8d1986bb-40dd-57cb-9ca9-33b4a9651882 '-- not reported female '-- '-- '-- '-- white TCGA-24-2036_demographic Dead '-- '-- '-- '-- 19496 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 914 '-- '-- '-- f0d1b028-f9f3-4e0e-9e0a-fc547c462cc3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2036_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2036_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2036_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ad6b7644-c494-4b88-841d-38250f1ed538 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV c9e28934-8379-4511-817c-d787f2c4ca3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1487 74 false '-- '-- '-- '-- -27176 681 d660ec1a-93b8-5ce7-9a60-49c9ec945ce8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1487_demographic Dead '-- '-- '-- '-- 27176 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f2bef3a1-e2c5-5c6f-8f16-e34d476c1a86 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1487_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 412 257 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1487_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- 1c09ace5-9961-4498-8f0e-52b6f269eada Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c9e28934-8379-4511-817c-d787f2c4ca3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1487 74 false '-- '-- '-- '-- -27176 681 d660ec1a-93b8-5ce7-9a60-49c9ec945ce8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1487_demographic Dead '-- '-- '-- '-- 27176 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f2bef3a1-e2c5-5c6f-8f16-e34d476c1a86 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1487_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 208 208 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-1487_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- 649e57e1-55fb-4c60-8c88-a08b38dd294b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c9e28934-8379-4511-817c-d787f2c4ca3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1487 74 false '-- '-- '-- '-- -27176 681 d660ec1a-93b8-5ce7-9a60-49c9ec945ce8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1487_demographic Dead '-- '-- '-- '-- 27176 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f2bef3a1-e2c5-5c6f-8f16-e34d476c1a86 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1487_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1487_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aefcf7ba-41ad-4ef2-bb2f-23a96633e0d8 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV c9e28934-8379-4511-817c-d787f2c4ca3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1487 74 false '-- '-- '-- '-- -27176 681 d660ec1a-93b8-5ce7-9a60-49c9ec945ce8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1487_demographic Dead '-- '-- '-- '-- 27176 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f2bef3a1-e2c5-5c6f-8f16-e34d476c1a86 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1487_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 129 17 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1487_treatment4 Docetaxel '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- ca824dc1-b7f2-47ab-950c-881911e7b16b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c9e28934-8379-4511-817c-d787f2c4ca3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1487 74 false '-- '-- '-- '-- -27176 681 d660ec1a-93b8-5ce7-9a60-49c9ec945ce8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1487_demographic Dead '-- '-- '-- '-- 27176 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f2bef3a1-e2c5-5c6f-8f16-e34d476c1a86 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1487_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 129 17 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1487_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 300 '-- mg/m2 '-- '-- '-- '-- f3bec8f1-1367-5073-a080-dae1f9d758dd Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c9e28934-8379-4511-817c-d787f2c4ca3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1487 74 false '-- '-- '-- '-- -27176 681 d660ec1a-93b8-5ce7-9a60-49c9ec945ce8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1487_demographic Dead '-- '-- '-- '-- 27588 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 412 '-- '-- '-- ff9eb4d2-2cad-4ffa-aa07-45203fd0ce78 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1487_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1487_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1487_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5ade079e-d925-49f0-82fb-8cee4b138814 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV c9e28934-8379-4511-817c-d787f2c4ca3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1487 74 false '-- '-- '-- '-- -27176 681 d660ec1a-93b8-5ce7-9a60-49c9ec945ce8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1487_demographic Dead '-- '-- '-- '-- 27588 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 412 '-- '-- '-- ff9eb4d2-2cad-4ffa-aa07-45203fd0ce78 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1487_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1487_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1487_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 62206dfd-c948-4104-adfd-687140aa6c27 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV c9e58844-9d61-44a2-aee6-1760bc19711b Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1027 48 false '-- '-- '-- '-- -17588 976 de6818be-e2c7-5255-b1fa-d8444f500277 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1027_demographic Dead '-- '-- '-- '-- 17702 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 114 '-- '-- '-- 7032b5c6-acde-41cf-aa8e-2082c88d4406 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1027_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1027_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1027_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2ef6b38f-6932-4ea9-ac4d-b28154ebf239 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV c9e58844-9d61-44a2-aee6-1760bc19711b Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1027 48 false '-- '-- '-- '-- -17588 976 de6818be-e2c7-5255-b1fa-d8444f500277 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1027_demographic Dead '-- '-- '-- '-- 17702 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 114 '-- '-- '-- 7032b5c6-acde-41cf-aa8e-2082c88d4406 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1027_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1027_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1027_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d52f73c5-7c49-4339-a443-53b56dab6113 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV c9e58844-9d61-44a2-aee6-1760bc19711b Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1027 48 false '-- '-- '-- '-- -17588 976 de6818be-e2c7-5255-b1fa-d8444f500277 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1027_demographic Dead '-- '-- '-- '-- 17588 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ed60e55e-cdc8-51e1-9be4-00d4c65cb2ce true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1027_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2ed7aa99-8fcc-4934-bbb1-61f305c57aae Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV c9e58844-9d61-44a2-aee6-1760bc19711b Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1027 48 false '-- '-- '-- '-- -17588 976 de6818be-e2c7-5255-b1fa-d8444f500277 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1027_demographic Dead '-- '-- '-- '-- 17588 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ed60e55e-cdc8-51e1-9be4-00d4c65cb2ce true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 129 26 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1027_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2088 '-- mg '-- '-- '-- '-- 370998fb-df1e-4643-b26a-d3febdf06209 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c9e58844-9d61-44a2-aee6-1760bc19711b Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1027 48 false '-- '-- '-- '-- -17588 976 de6818be-e2c7-5255-b1fa-d8444f500277 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1027_demographic Dead '-- '-- '-- '-- 17588 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ed60e55e-cdc8-51e1-9be4-00d4c65cb2ce true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 250 166 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1027_treatment4 Cisplatin '-- '-- '-- '-- '-- '-- '-- 748 '-- mg '-- '-- '-- '-- 448bb838-14f0-4e52-9ba2-d65796fed301 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c9e58844-9d61-44a2-aee6-1760bc19711b Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1027 48 false '-- '-- '-- '-- -17588 976 de6818be-e2c7-5255-b1fa-d8444f500277 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1027_demographic Dead '-- '-- '-- '-- 17588 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ed60e55e-cdc8-51e1-9be4-00d4c65cb2ce true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 250 166 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1027_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 360 '-- mg '-- '-- '-- '-- 560ce1c5-fba8-4faa-b1d1-11e66aa34a13 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c9e58844-9d61-44a2-aee6-1760bc19711b Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1027 48 false '-- '-- '-- '-- -17588 976 de6818be-e2c7-5255-b1fa-d8444f500277 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1027_demographic Dead '-- '-- '-- '-- 17588 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ed60e55e-cdc8-51e1-9be4-00d4c65cb2ce true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 867 769 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-23-1027_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 450 '-- mg '-- '-- '-- '-- 7c46dafb-005d-48ca-9cdd-a8b4ae2f5db3 '-- yes '-- '-- Chemotherapy +TCGA-OV c9e58844-9d61-44a2-aee6-1760bc19711b Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1027 48 false '-- '-- '-- '-- -17588 976 de6818be-e2c7-5255-b1fa-d8444f500277 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1027_demographic Dead '-- '-- '-- '-- 17588 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ed60e55e-cdc8-51e1-9be4-00d4c65cb2ce true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 129 26 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1027_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1281 '-- mg '-- '-- '-- '-- 9c7cd4f2-ba03-4822-a917-28e6b801594e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c9e58844-9d61-44a2-aee6-1760bc19711b Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1027 48 false '-- '-- '-- '-- -17588 976 de6818be-e2c7-5255-b1fa-d8444f500277 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1027_demographic Dead '-- '-- '-- '-- 17588 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ed60e55e-cdc8-51e1-9be4-00d4c65cb2ce true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 867 769 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-23-1027_treatment Gemcitabine '-- '-- '-- '-- '-- '-- '-- 10932 '-- mg '-- '-- '-- '-- 9f7b72b5-ce0c-5818-93bd-511e96f93728 '-- yes '-- '-- Chemotherapy +TCGA-OV cbc5b936-ead5-4858-ab90-e639402789b0 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1685 45 false '-- '-- '-- '-- -16745 '-- b30231af-aec0-558d-82d5-1c88bcf2176a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1685_demographic Alive '-- '-- '-- '-- 16745 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- bb3ebf3b-4ded-57a8-b64e-eea59df41b37 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1685_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 144 39 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-1685_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0e148de3-7555-5e71-a2c8-49923da30177 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cbc5b936-ead5-4858-ab90-e639402789b0 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1685 45 false '-- '-- '-- '-- -16745 '-- b30231af-aec0-558d-82d5-1c88bcf2176a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1685_demographic Alive '-- '-- '-- '-- 16745 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- bb3ebf3b-4ded-57a8-b64e-eea59df41b37 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1685_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 144 39 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-1685_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 3e67efd2-0355-4091-8c02-19aabd6d6566 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cbc5b936-ead5-4858-ab90-e639402789b0 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1685 45 false '-- '-- '-- '-- -16745 '-- b30231af-aec0-558d-82d5-1c88bcf2176a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1685_demographic Alive '-- '-- '-- '-- 16745 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- bb3ebf3b-4ded-57a8-b64e-eea59df41b37 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1685_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 144 39 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-1685_treatment2 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 15 '-- mg/kg '-- '-- '-- '-- 5f3e78cc-6706-40b5-a6db-a2f6319cab2a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cbc5b936-ead5-4858-ab90-e639402789b0 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1685 45 false '-- '-- '-- '-- -16745 '-- b30231af-aec0-558d-82d5-1c88bcf2176a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1685_demographic Alive '-- '-- '-- '-- 16745 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- bb3ebf3b-4ded-57a8-b64e-eea59df41b37 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1685_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-20-1685_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f6e00839-ebb1-4575-a9d2-dcb05848047d Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV cbc7f427-5f7b-4267-ad56-055d8880a4cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1866 61 false '-- '-- '-- '-- -22562 1114 279cd324-6a0b-5661-a9fa-20e52a631c31 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1866_demographic Dead '-- '-- '-- '-- 22847 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 285 '-- '-- '-- 51d47fdb-3067-493c-b382-8239cd6d430e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1866_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1866_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1866_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8158e226-1bab-424d-8762-d1f039d7137b '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV cbc7f427-5f7b-4267-ad56-055d8880a4cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1866 61 false '-- '-- '-- '-- -22562 1114 279cd324-6a0b-5661-a9fa-20e52a631c31 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1866_demographic Dead '-- '-- '-- '-- 22847 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 285 '-- '-- '-- 51d47fdb-3067-493c-b382-8239cd6d430e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1866_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1866_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1866_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cb18656b-46c0-46fc-82cc-23bbeef9fe6e '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV cbc7f427-5f7b-4267-ad56-055d8880a4cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1866 61 false '-- '-- '-- '-- -22562 1114 279cd324-6a0b-5661-a9fa-20e52a631c31 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1866_demographic Dead '-- '-- '-- '-- 22562 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 85df57f5-3d3c-516c-8925-cfddbb62eedd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1866_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1866_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2e2ad35a-eda0-590a-a6f1-485f44ae5752 '-- yes '-- '-- Chemotherapy +TCGA-OV cbc7f427-5f7b-4267-ad56-055d8880a4cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1866 61 false '-- '-- '-- '-- -22562 1114 279cd324-6a0b-5661-a9fa-20e52a631c31 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1866_demographic Dead '-- '-- '-- '-- 22562 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 85df57f5-3d3c-516c-8925-cfddbb62eedd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1866_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1866_treatment6 Gemcitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 49e0e88c-6451-49c3-a705-92bcf3974856 '-- yes '-- '-- Chemotherapy +TCGA-OV cbc7f427-5f7b-4267-ad56-055d8880a4cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1866 61 false '-- '-- '-- '-- -22562 1114 279cd324-6a0b-5661-a9fa-20e52a631c31 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1866_demographic Dead '-- '-- '-- '-- 22562 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 85df57f5-3d3c-516c-8925-cfddbb62eedd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1866_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 126 19 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1866_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 617ed7a9-c96e-40bd-9312-04b7912c6fd4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cbc7f427-5f7b-4267-ad56-055d8880a4cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1866 61 false '-- '-- '-- '-- -22562 1114 279cd324-6a0b-5661-a9fa-20e52a631c31 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1866_demographic Dead '-- '-- '-- '-- 22562 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 85df57f5-3d3c-516c-8925-cfddbb62eedd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1866_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1866_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7e7264fb-0245-4db8-b488-a9d9c06629e4 '-- yes '-- '-- Chemotherapy +TCGA-OV cbc7f427-5f7b-4267-ad56-055d8880a4cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1866 61 false '-- '-- '-- '-- -22562 1114 279cd324-6a0b-5661-a9fa-20e52a631c31 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1866_demographic Dead '-- '-- '-- '-- 22562 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 85df57f5-3d3c-516c-8925-cfddbb62eedd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1866_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1866_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b1c33193-8860-4d59-ac6e-8fe619c09407 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV cbc7f427-5f7b-4267-ad56-055d8880a4cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1866 61 false '-- '-- '-- '-- -22562 1114 279cd324-6a0b-5661-a9fa-20e52a631c31 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1866_demographic Dead '-- '-- '-- '-- 22562 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 85df57f5-3d3c-516c-8925-cfddbb62eedd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1866_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 126 19 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1866_treatment8 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cad3afa9-7132-4375-ae34-478210b4f1a5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cbc7f427-5f7b-4267-ad56-055d8880a4cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1866 61 false '-- '-- '-- '-- -22562 1114 279cd324-6a0b-5661-a9fa-20e52a631c31 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1866_demographic Dead '-- '-- '-- '-- 22562 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 85df57f5-3d3c-516c-8925-cfddbb62eedd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1866_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1866_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cae9bbc7-8c5e-4020-a5ef-a7fd1dd3ad84 '-- yes '-- '-- Chemotherapy +TCGA-OV cbc7f427-5f7b-4267-ad56-055d8880a4cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1866 61 false '-- '-- '-- '-- -22562 1114 279cd324-6a0b-5661-a9fa-20e52a631c31 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1866_demographic Dead '-- '-- '-- '-- 22562 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 85df57f5-3d3c-516c-8925-cfddbb62eedd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1866_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 265 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1866_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d79d44c6-a2c0-4e02-ad79-9c3f220b5003 '-- yes '-- '-- Chemotherapy +TCGA-OV cbc7f427-5f7b-4267-ad56-055d8880a4cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1866 61 false '-- '-- '-- '-- -22562 1114 279cd324-6a0b-5661-a9fa-20e52a631c31 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1866_demographic Dead '-- '-- '-- '-- 22562 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 85df57f5-3d3c-516c-8925-cfddbb62eedd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1866_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1866_treatment5 Gemcitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e3094594-c0e8-452b-80c2-7d9e70371c37 '-- yes '-- '-- Chemotherapy +TCGA-OV cbc7f427-5f7b-4267-ad56-055d8880a4cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1866 61 false '-- '-- '-- '-- -22562 1114 279cd324-6a0b-5661-a9fa-20e52a631c31 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1866_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- da67e978-5fb4-4945-b04c-df6492401f4c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1866_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1866_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1866_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0e2dd1ab-8f19-4980-9f32-02d3733b39ea '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV cbc7f427-5f7b-4267-ad56-055d8880a4cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1866 61 false '-- '-- '-- '-- -22562 1114 279cd324-6a0b-5661-a9fa-20e52a631c31 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1866_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- da67e978-5fb4-4945-b04c-df6492401f4c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1866_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1866_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 285 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1866_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1341ac7d-bbe4-495c-bd61-38ba9b49a02b '-- yes '-- '-- Surgery, NOS +TCGA-OV cbc7f427-5f7b-4267-ad56-055d8880a4cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1866 61 false '-- '-- '-- '-- -22562 1114 279cd324-6a0b-5661-a9fa-20e52a631c31 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1866_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- da67e978-5fb4-4945-b04c-df6492401f4c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1866_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1866_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1866_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 98ef42b0-f515-477b-ab95-82e3be7f03e7 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV cbcf6922-a3c0-43a1-826e-642918b0a635 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1030 64 false '-- '-- '-- '-- -23416 '-- e8dc4dd7-3263-5e49-bcf9-65c4e263a04f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1030_demographic Alive '-- '-- '-- '-- 23960 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 544 '-- '-- '-- 411da102-2939-45e2-972a-96369daee5ce false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1030_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1030_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1030_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cbe72d2a-a9ef-4b82-a211-a1cc6709b077 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV cbcf6922-a3c0-43a1-826e-642918b0a635 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1030 64 false '-- '-- '-- '-- -23416 '-- e8dc4dd7-3263-5e49-bcf9-65c4e263a04f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1030_demographic Alive '-- '-- '-- '-- 23960 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 544 '-- '-- '-- 411da102-2939-45e2-972a-96369daee5ce false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1030_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1030_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1030_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e91e3101-d39d-45dc-9cac-fad15ec80cc5 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV cbcf6922-a3c0-43a1-826e-642918b0a635 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1030 64 false '-- '-- '-- '-- -23416 '-- e8dc4dd7-3263-5e49-bcf9-65c4e263a04f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1030_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- abd41fe4-ff04-4c60-97ab-90aaf457e198 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1030_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1030_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1030_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 26aa76fa-60fd-4c9c-877e-47c1dd2b3669 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV cbcf6922-a3c0-43a1-826e-642918b0a635 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1030 64 false '-- '-- '-- '-- -23416 '-- e8dc4dd7-3263-5e49-bcf9-65c4e263a04f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1030_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- abd41fe4-ff04-4c60-97ab-90aaf457e198 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1030_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1030_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 544 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1030_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3def0da0-5ead-4877-b387-cac5430690ff '-- yes '-- '-- Surgery, NOS +TCGA-OV cbcf6922-a3c0-43a1-826e-642918b0a635 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1030 64 false '-- '-- '-- '-- -23416 '-- e8dc4dd7-3263-5e49-bcf9-65c4e263a04f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1030_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- abd41fe4-ff04-4c60-97ab-90aaf457e198 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1030_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1030_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1030_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 40657a14-561f-40ec-9759-d3ce276d9802 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV cbcf6922-a3c0-43a1-826e-642918b0a635 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1030 64 false '-- '-- '-- '-- -23416 '-- e8dc4dd7-3263-5e49-bcf9-65c4e263a04f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1030_demographic Alive '-- '-- '-- '-- 23416 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c428661a-76b6-5998-8f9e-3de1a5441bc1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1030_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 767 622 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1030_treatment Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 540 '-- mg '-- '-- '-- '-- 595cde23-d937-59f1-b3f6-4237faf481bc '-- yes '-- '-- Chemotherapy +TCGA-OV cbcf6922-a3c0-43a1-826e-642918b0a635 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1030 64 false '-- '-- '-- '-- -23416 '-- e8dc4dd7-3263-5e49-bcf9-65c4e263a04f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1030_demographic Alive '-- '-- '-- '-- 23416 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c428661a-76b6-5998-8f9e-3de1a5441bc1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1030_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1030_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6bef13b9-5419-4544-87f9-a8195e93e417 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV cbcf6922-a3c0-43a1-826e-642918b0a635 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1030 64 false '-- '-- '-- '-- -23416 '-- e8dc4dd7-3263-5e49-bcf9-65c4e263a04f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1030_demographic Alive '-- '-- '-- '-- 23416 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c428661a-76b6-5998-8f9e-3de1a5441bc1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1030_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 438 243 '-- '-- Not Reported '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1030_treatment2 Paclitaxel Poliglumex '-- '-- '-- '-- '-- '-- '-- 2160 '-- mg '-- '-- '-- '-- 87228392-c4ca-4a86-bead-d74e8126f539 Consolidation Therapy yes '-- '-- Chemotherapy +TCGA-OV cbcf6922-a3c0-43a1-826e-642918b0a635 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1030 64 false '-- '-- '-- '-- -23416 '-- e8dc4dd7-3263-5e49-bcf9-65c4e263a04f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1030_demographic Alive '-- '-- '-- '-- 23416 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c428661a-76b6-5998-8f9e-3de1a5441bc1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1030_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 165 62 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1030_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2130 '-- mg '-- '-- '-- '-- caa92577-befd-42aa-8f32-0828117fd67b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cbcf6922-a3c0-43a1-826e-642918b0a635 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1030 64 false '-- '-- '-- '-- -23416 '-- e8dc4dd7-3263-5e49-bcf9-65c4e263a04f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1030_demographic Alive '-- '-- '-- '-- 23416 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c428661a-76b6-5998-8f9e-3de1a5441bc1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1030_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 165 62 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1030_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5010 '-- mg '-- '-- '-- '-- e4957eb8-dc73-45f3-8410-6a52abb4b707 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cbd87697-7708-4b69-9e50-9ee474feabe1 Informed Consent 170 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2054 58 false '-- '-- '-- '-- -21285 637 8be5e1f5-91eb-53cd-9cfe-8cc67176093b '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-09-2054_demographic Dead '-- '-- '-- '-- 21285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 90364ee6-2b18-5172-a7f4-b50c4343e0f4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2054_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 161 37 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2054_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 0d318cfb-b4dd-5b02-aac5-d0e3fe6aa09d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cbd87697-7708-4b69-9e50-9ee474feabe1 Informed Consent 170 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2054 58 false '-- '-- '-- '-- -21285 637 8be5e1f5-91eb-53cd-9cfe-8cc67176093b '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-09-2054_demographic Dead '-- '-- '-- '-- 21285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 90364ee6-2b18-5172-a7f4-b50c4343e0f4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2054_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 513 428 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2054_treatment3 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 893e8433-a421-44d1-bfc9-57ff8e61e401 '-- yes '-- '-- Chemotherapy +TCGA-OV cbd87697-7708-4b69-9e50-9ee474feabe1 Informed Consent 170 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2054 58 false '-- '-- '-- '-- -21285 637 8be5e1f5-91eb-53cd-9cfe-8cc67176093b '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-09-2054_demographic Dead '-- '-- '-- '-- 21285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 90364ee6-2b18-5172-a7f4-b50c4343e0f4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2054_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 421 329 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2054_treatment5 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 922f5dd7-63d0-4b63-ac69-9ffa83becf70 '-- yes '-- '-- Chemotherapy +TCGA-OV cbd87697-7708-4b69-9e50-9ee474feabe1 Informed Consent 170 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2054 58 false '-- '-- '-- '-- -21285 637 8be5e1f5-91eb-53cd-9cfe-8cc67176093b '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-09-2054_demographic Dead '-- '-- '-- '-- 21285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 90364ee6-2b18-5172-a7f4-b50c4343e0f4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2054_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2054_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b01cdacb-54fd-46d1-9b7a-61f52867217b Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV cbd87697-7708-4b69-9e50-9ee474feabe1 Informed Consent 170 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2054 58 false '-- '-- '-- '-- -21285 637 8be5e1f5-91eb-53cd-9cfe-8cc67176093b '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-09-2054_demographic Dead '-- '-- '-- '-- 21285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 90364ee6-2b18-5172-a7f4-b50c4343e0f4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2054_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 300 244 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2054_treatment2 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 50 '-- mg/m2 '-- '-- '-- '-- e25c7aa7-a2c4-4bea-82a3-37bb321f0c7a '-- yes '-- '-- Chemotherapy +TCGA-OV cbd87697-7708-4b69-9e50-9ee474feabe1 Informed Consent 170 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2054 58 false '-- '-- '-- '-- -21285 637 8be5e1f5-91eb-53cd-9cfe-8cc67176093b '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-09-2054_demographic Dead '-- '-- '-- '-- 21285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 90364ee6-2b18-5172-a7f4-b50c4343e0f4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2054_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 161 37 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2054_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- fcf55172-4912-4acd-8f36-5f5318d4c28d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cbe3309e-9b7b-4f62-87b5-0f5ed4218ada Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1627 73 false '-- '-- '-- '-- -26784 394 f17d6310-6505-5f0f-a62b-1a1f807f9e50 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1627_demographic Dead '-- '-- '-- '-- 26784 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b0bdaa93-0778-58a1-a5ab-dd9f0efa3171 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1627_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1627_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7f8fd9a1-9d68-5d75-850b-b199877c0d1d Adjuvant yes Not Reported '-- Pharmaceutical Therapy, NOS +TCGA-OV cbe3309e-9b7b-4f62-87b5-0f5ed4218ada Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1627 73 false '-- '-- '-- '-- -26784 394 f17d6310-6505-5f0f-a62b-1a1f807f9e50 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1627_demographic Dead '-- '-- '-- '-- 26784 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b0bdaa93-0778-58a1-a5ab-dd9f0efa3171 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1627_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1627_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bb6c814f-d04d-47e1-8e56-4951e54c0db4 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV cd6e5d3d-1c86-40dd-9cb3-b2e2075dec56 Informed Consent 100 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1469 71 false '-- '-- '-- '-- -25937 '-- a68ea48a-8b0a-554f-a2a7-29d4474fe9e5 '-- not reported female '-- '-- '-- '-- white TCGA-24-1469_demographic Alive '-- '-- '-- '-- 25937 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c35644a3-29fa-58ef-96eb-39833b3fd41f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1469_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 135 '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1469_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a3e878cc-484a-5420-bdbf-c28781031d39 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cd6e5d3d-1c86-40dd-9cb3-b2e2075dec56 Informed Consent 100 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1469 71 false '-- '-- '-- '-- -25937 '-- a68ea48a-8b0a-554f-a2a7-29d4474fe9e5 '-- not reported female '-- '-- '-- '-- white TCGA-24-1469_demographic Alive '-- '-- '-- '-- 25937 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c35644a3-29fa-58ef-96eb-39833b3fd41f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1469_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 135 '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1469_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aeca23ed-c058-4181-b00c-d8962c26890a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cd6e5d3d-1c86-40dd-9cb3-b2e2075dec56 Informed Consent 100 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1469 71 false '-- '-- '-- '-- -25937 '-- a68ea48a-8b0a-554f-a2a7-29d4474fe9e5 '-- not reported female '-- '-- '-- '-- white TCGA-24-1469_demographic Alive '-- '-- '-- '-- 25937 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c35644a3-29fa-58ef-96eb-39833b3fd41f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1469_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1469_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ce19525e-a81a-4d67-bd4f-ef1892d660b4 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV cddce77f-21e6-4124-9f03-96fb5ca7cefa Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1648 57 false '-- '-- '-- '-- -21113 871 bf5dd053-0971-5b16-9bd2-9ee9b821551d '-- not reported female '-- '-- '-- '-- white TCGA-04-1648_demographic Dead '-- '-- '-- '-- 21113 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 258aa1d0-810d-53d9-8274-f290e2d22468 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1648_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 149 3 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1648_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2544 '-- mg '-- '-- '-- '-- 0c37fd6c-eae4-4848-9daa-662894cbe10f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cddce77f-21e6-4124-9f03-96fb5ca7cefa Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1648 57 false '-- '-- '-- '-- -21113 871 bf5dd053-0971-5b16-9bd2-9ee9b821551d '-- not reported female '-- '-- '-- '-- white TCGA-04-1648_demographic Dead '-- '-- '-- '-- 21113 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 258aa1d0-810d-53d9-8274-f290e2d22468 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1648_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1648_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5a031f62-efc3-4fbd-a9e5-a024f71576e3 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV cddce77f-21e6-4124-9f03-96fb5ca7cefa Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1648 57 false '-- '-- '-- '-- -21113 871 bf5dd053-0971-5b16-9bd2-9ee9b821551d '-- not reported female '-- '-- '-- '-- white TCGA-04-1648_demographic Dead '-- '-- '-- '-- 21113 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 258aa1d0-810d-53d9-8274-f290e2d22468 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1648_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 149 3 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1648_treatment3 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 23296 '-- mg '-- '-- '-- '-- 61f60d4d-5d80-4567-a791-22823ea9f715 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cddce77f-21e6-4124-9f03-96fb5ca7cefa Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1648 57 false '-- '-- '-- '-- -21113 871 bf5dd053-0971-5b16-9bd2-9ee9b821551d '-- not reported female '-- '-- '-- '-- white TCGA-04-1648_demographic Dead '-- '-- '-- '-- 21113 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 258aa1d0-810d-53d9-8274-f290e2d22468 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1648_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 149 3 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1648_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 5140 '-- mg '-- '-- '-- '-- b7ec434e-46b6-5ab5-bc2c-91ed3f4eeb4e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cddce77f-21e6-4124-9f03-96fb5ca7cefa Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1648 57 false '-- '-- '-- '-- -21113 871 bf5dd053-0971-5b16-9bd2-9ee9b821551d '-- not reported female '-- '-- '-- '-- white TCGA-04-1648_demographic Dead '-- '-- '-- '-- 21113 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 258aa1d0-810d-53d9-8274-f290e2d22468 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1648_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 247 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1648_treatment2 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 40 '-- mg '-- '-- '-- '-- bc6ad631-e909-47b0-8be7-4400431506a8 '-- yes '-- '-- Chemotherapy +TCGA-OV cddce77f-21e6-4124-9f03-96fb5ca7cefa Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1648 57 false '-- '-- '-- '-- -21113 871 bf5dd053-0971-5b16-9bd2-9ee9b821551d '-- not reported female '-- '-- '-- '-- white TCGA-04-1648_demographic Dead '-- '-- '-- '-- 21113 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 258aa1d0-810d-53d9-8274-f290e2d22468 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1648_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 247 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1648_treatment4 Bevacizumab '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- be387329-e062-4975-89e6-0436d21e4526 '-- yes '-- '-- Immunotherapy (Including Vaccines) +TCGA-OV cddce77f-21e6-4124-9f03-96fb5ca7cefa Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1648 57 false '-- '-- '-- '-- -21113 871 bf5dd053-0971-5b16-9bd2-9ee9b821551d '-- not reported female '-- '-- '-- '-- white TCGA-04-1648_demographic Dead '-- '-- '-- '-- 21113 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 258aa1d0-810d-53d9-8274-f290e2d22468 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1648_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 247 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1648_treatment5 Docetaxel '-- '-- '-- '-- '-- '-- '-- 129 '-- mg '-- '-- '-- '-- cb20f2ee-d742-41b3-8291-276a37e5f3dd '-- yes '-- '-- Chemotherapy +TCGA-OV cddce77f-21e6-4124-9f03-96fb5ca7cefa Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1648 57 false '-- '-- '-- '-- -21113 871 bf5dd053-0971-5b16-9bd2-9ee9b821551d '-- not reported female '-- '-- '-- '-- white TCGA-04-1648_demographic Dead '-- '-- '-- '-- 21113 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 258aa1d0-810d-53d9-8274-f290e2d22468 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1648_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 247 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1648_treatment7 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d0efee94-b20a-4f31-a2ce-62760bc178a2 '-- yes '-- '-- Chemotherapy +TCGA-OV cddce77f-21e6-4124-9f03-96fb5ca7cefa Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1648 57 false '-- '-- '-- '-- -21113 871 bf5dd053-0971-5b16-9bd2-9ee9b821551d '-- not reported female '-- '-- '-- '-- white TCGA-04-1648_demographic Dead '-- '-- '-- '-- 21525 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 412 '-- '-- '-- d46fa8de-cc64-400f-91b3-1dbcabff9da8 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1648_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1648_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1648_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 01a4c028-882d-4758-a48c-812fd0a0b0e3 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV cddce77f-21e6-4124-9f03-96fb5ca7cefa Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1648 57 false '-- '-- '-- '-- -21113 871 bf5dd053-0971-5b16-9bd2-9ee9b821551d '-- not reported female '-- '-- '-- '-- white TCGA-04-1648_demographic Dead '-- '-- '-- '-- 21525 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 412 '-- '-- '-- d46fa8de-cc64-400f-91b3-1dbcabff9da8 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1648_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1648_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1648_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 77471f85-a5df-49b4-a2e4-0061fef2ef2a '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ce871097-a6e9-4139-897e-642ee24ee123 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1919 58 false '-- '-- '-- '-- -21199 1161 23c0b61b-61e7-5f1e-8ed1-2e01f6ec1a56 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1919_demographic Dead '-- '-- '-- '-- 21199 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 41c9c74c-e5f7-5f95-b067-21508c7d5999 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1919_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1919_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 03223c84-530f-518f-ad2f-990a1386e1b2 Adjuvant yes Complete Response '-- Pharmaceutical Therapy, NOS +TCGA-OV ce871097-a6e9-4139-897e-642ee24ee123 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1919 58 false '-- '-- '-- '-- -21199 1161 23c0b61b-61e7-5f1e-8ed1-2e01f6ec1a56 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1919_demographic Dead '-- '-- '-- '-- 21199 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 41c9c74c-e5f7-5f95-b067-21508c7d5999 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1919_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1919_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4a61d7ed-10b8-488c-9a4a-c9bc020ae912 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ce871097-a6e9-4139-897e-642ee24ee123 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1919 58 false '-- '-- '-- '-- -21199 1161 23c0b61b-61e7-5f1e-8ed1-2e01f6ec1a56 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1919_demographic Dead '-- '-- '-- '-- 21638 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 439 '-- '-- '-- 5f90740f-bb30-4784-b25b-8c1ba4044d10 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1919_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1919_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1919_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3e79b088-4ab3-4f2b-801e-b6c9658835e5 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV ce871097-a6e9-4139-897e-642ee24ee123 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1919 58 false '-- '-- '-- '-- -21199 1161 23c0b61b-61e7-5f1e-8ed1-2e01f6ec1a56 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1919_demographic Dead '-- '-- '-- '-- 21638 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 439 '-- '-- '-- 5f90740f-bb30-4784-b25b-8c1ba4044d10 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1919_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1919_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1919_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 68c19346-bd3d-403f-996b-76c321f50a1e '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ce871097-a6e9-4139-897e-642ee24ee123 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1919 58 false '-- '-- '-- '-- -21199 1161 23c0b61b-61e7-5f1e-8ed1-2e01f6ec1a56 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1919_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6d44c4e7-c6b5-42ae-8b1b-88b7cd33dc1e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1919_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1919_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1919_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0abc8d4b-8c69-4b3d-8192-ecc90cebc2fc '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV ce871097-a6e9-4139-897e-642ee24ee123 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1919 58 false '-- '-- '-- '-- -21199 1161 23c0b61b-61e7-5f1e-8ed1-2e01f6ec1a56 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1919_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6d44c4e7-c6b5-42ae-8b1b-88b7cd33dc1e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1919_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1919_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1919_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 440a89e8-e2f9-485f-8969-fd06a9f8ebb7 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ce871097-a6e9-4139-897e-642ee24ee123 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1919 58 false '-- '-- '-- '-- -21199 1161 23c0b61b-61e7-5f1e-8ed1-2e01f6ec1a56 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1919_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6d44c4e7-c6b5-42ae-8b1b-88b7cd33dc1e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1919_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1919_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 438 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1919_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4e2924eb-3d16-44ca-9c98-4e64136075dd '-- yes '-- '-- Surgery, NOS +TCGA-OV ceb19678-b453-4529-b6cb-d02f9cb101b4 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1471 60 false '-- '-- '-- '-- -22081 '-- 2cc27fab-a108-5748-aefe-0bef861bc009 '-- not reported female '-- '-- '-- '-- white TCGA-24-1471_demographic Alive '-- '-- '-- '-- 22081 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 43f6535a-4e53-5545-8cb3-311a4901f939 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1471_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1471_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 261f42c9-fc10-44a9-b754-6fcaa8932e3a Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ceb19678-b453-4529-b6cb-d02f9cb101b4 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1471 60 false '-- '-- '-- '-- -22081 '-- 2cc27fab-a108-5748-aefe-0bef861bc009 '-- not reported female '-- '-- '-- '-- white TCGA-24-1471_demographic Alive '-- '-- '-- '-- 22081 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 43f6535a-4e53-5545-8cb3-311a4901f939 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1471_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1471_treatment2 Clinical Trial '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6d58e60c-c601-41b9-ba19-0683bec01fad Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV ceb19678-b453-4529-b6cb-d02f9cb101b4 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1471 60 false '-- '-- '-- '-- -22081 '-- 2cc27fab-a108-5748-aefe-0bef861bc009 '-- not reported female '-- '-- '-- '-- white TCGA-24-1471_demographic Alive '-- '-- '-- '-- 22081 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 43f6535a-4e53-5545-8cb3-311a4901f939 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1471_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1471_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fc984d64-8a86-5f39-ae93-f96f0a16b7c6 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cf1e86ec-4bcb-403c-831b-d67bddef14eb Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1565 74 false '-- '-- '-- '-- -27048 312 ff23d451-c438-5f18-9951-f4adc6b0744f '-- not reported female '-- '-- '-- '-- white TCGA-24-1565_demographic Dead '-- '-- '-- '-- 27193 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 145 '-- '-- '-- 92cebb47-506c-453c-9300-27a945763627 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1565_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1565_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1565_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 377206a0-9893-4eda-9abb-6d1e31e21ea4 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV cf1e86ec-4bcb-403c-831b-d67bddef14eb Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1565 74 false '-- '-- '-- '-- -27048 312 ff23d451-c438-5f18-9951-f4adc6b0744f '-- not reported female '-- '-- '-- '-- white TCGA-24-1565_demographic Dead '-- '-- '-- '-- 27193 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 145 '-- '-- '-- 92cebb47-506c-453c-9300-27a945763627 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1565_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1565_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1565_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d6a4211d-320d-45f9-9e89-77c0a03f05c6 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV cf1e86ec-4bcb-403c-831b-d67bddef14eb Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1565 74 false '-- '-- '-- '-- -27048 312 ff23d451-c438-5f18-9951-f4adc6b0744f '-- not reported female '-- '-- '-- '-- white TCGA-24-1565_demographic Dead '-- '-- '-- '-- 27048 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e36db772-f900-5281-9362-18c0fa204e9a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1565_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1565_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 306060bd-02df-4b07-a9be-4d2dc45ca1be Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV cf1e86ec-4bcb-403c-831b-d67bddef14eb Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1565 74 false '-- '-- '-- '-- -27048 312 ff23d451-c438-5f18-9951-f4adc6b0744f '-- not reported female '-- '-- '-- '-- white TCGA-24-1565_demographic Dead '-- '-- '-- '-- 27048 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e36db772-f900-5281-9362-18c0fa204e9a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1565_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 123 39 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1565_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 774 '-- mg '-- '-- '-- '-- 3565516e-0dfc-48ae-b68f-6547b82372ef Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cf1e86ec-4bcb-403c-831b-d67bddef14eb Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1565 74 false '-- '-- '-- '-- -27048 312 ff23d451-c438-5f18-9951-f4adc6b0744f '-- not reported female '-- '-- '-- '-- white TCGA-24-1565_demographic Dead '-- '-- '-- '-- 27048 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e36db772-f900-5281-9362-18c0fa204e9a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1565_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 123 39 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1565_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1389 '-- mg '-- '-- '-- '-- 461f56c9-ffc0-5212-a78d-f465658fd2ad Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cf1e86ec-4bcb-403c-831b-d67bddef14eb Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1565 74 false '-- '-- '-- '-- -27048 312 ff23d451-c438-5f18-9951-f4adc6b0744f '-- not reported female '-- '-- '-- '-- white TCGA-24-1565_demographic Dead '-- '-- '-- '-- 27048 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e36db772-f900-5281-9362-18c0fa204e9a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1565_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- 178 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1565_treatment2 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5c6067a8-4a12-4111-a80d-3ae6e7b54032 '-- yes '-- '-- Chemotherapy +TCGA-OV d0673efd-3315-4dd5-8ab6-912bfa07dceb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1022 67 false '-- '-- '-- '-- -24798 1511 c4eab79f-a23b-5be3-abcc-b2e64f7626dc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1022_demographic Dead '-- '-- '-- '-- 24798 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0cb11846-7903-535a-926e-9347464dcdd3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1022_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 1378 1378 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1022_treatment3 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1560 '-- mg '-- '-- '-- '-- 0bfaffe7-deea-44df-bf87-d50b0fb74e0e '-- yes '-- '-- Chemotherapy +TCGA-OV d0673efd-3315-4dd5-8ab6-912bfa07dceb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1022 67 false '-- '-- '-- '-- -24798 1511 c4eab79f-a23b-5be3-abcc-b2e64f7626dc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1022_demographic Dead '-- '-- '-- '-- 24798 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0cb11846-7903-535a-926e-9347464dcdd3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1022_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 937 853 '-- '-- Recurrent Disease '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1022_treatment9 Docetaxel '-- '-- '-- '-- '-- '-- '-- 640 '-- mg '-- '-- '-- '-- 58cc0762-c458-48c4-828a-b8084ef9e335 '-- yes '-- '-- Chemotherapy +TCGA-OV d0673efd-3315-4dd5-8ab6-912bfa07dceb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1022 67 false '-- '-- '-- '-- -24798 1511 c4eab79f-a23b-5be3-abcc-b2e64f7626dc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1022_demographic Dead '-- '-- '-- '-- 24798 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0cb11846-7903-535a-926e-9347464dcdd3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1022_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 162 29 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1022_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2170 '-- mg '-- '-- '-- '-- 5eee8d7b-7f8d-591a-8674-7896ce4867ff Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d0673efd-3315-4dd5-8ab6-912bfa07dceb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1022 67 false '-- '-- '-- '-- -24798 1511 c4eab79f-a23b-5be3-abcc-b2e64f7626dc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1022_demographic Dead '-- '-- '-- '-- 24798 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0cb11846-7903-535a-926e-9347464dcdd3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1022_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 1357 1274 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1022_treatment6 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 8120 '-- mg '-- '-- '-- '-- 71b6b764-d1c1-4f26-817b-464c5e861d7a '-- yes '-- '-- Chemotherapy +TCGA-OV d0673efd-3315-4dd5-8ab6-912bfa07dceb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1022 67 false '-- '-- '-- '-- -24798 1511 c4eab79f-a23b-5be3-abcc-b2e64f7626dc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1022_demographic Dead '-- '-- '-- '-- 24798 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0cb11846-7903-535a-926e-9347464dcdd3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1022_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 1252 1056 '-- '-- Progressive Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1022_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2500 '-- mg '-- '-- '-- '-- 72903838-3351-46c1-829e-57b2f6057724 '-- yes '-- '-- Chemotherapy +TCGA-OV d0673efd-3315-4dd5-8ab6-912bfa07dceb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1022 67 false '-- '-- '-- '-- -24798 1511 c4eab79f-a23b-5be3-abcc-b2e64f7626dc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1022_demographic Dead '-- '-- '-- '-- 24798 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0cb11846-7903-535a-926e-9347464dcdd3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1022_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 162 29 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1022_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2730 '-- mg '-- '-- '-- '-- 7b39082a-a7bb-460e-b6e3-2dbf2e7c04c0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d0673efd-3315-4dd5-8ab6-912bfa07dceb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1022 67 false '-- '-- '-- '-- -24798 1511 c4eab79f-a23b-5be3-abcc-b2e64f7626dc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1022_demographic Dead '-- '-- '-- '-- 24798 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0cb11846-7903-535a-926e-9347464dcdd3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1022_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 741 614 '-- '-- Recurrent Disease '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1022_treatment8 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 17200 '-- mg '-- '-- '-- '-- adb3a4e0-a958-47c9-a469-eecee42ef46c '-- yes '-- '-- Chemotherapy +TCGA-OV d0673efd-3315-4dd5-8ab6-912bfa07dceb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1022 67 false '-- '-- '-- '-- -24798 1511 c4eab79f-a23b-5be3-abcc-b2e64f7626dc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1022_demographic Dead '-- '-- '-- '-- 24798 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0cb11846-7903-535a-926e-9347464dcdd3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1022_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 741 614 '-- '-- Recurrent Disease '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1022_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 820 '-- mg '-- '-- '-- '-- afe0eb85-dad3-4ea4-8466-a2a84c2c6d60 '-- yes '-- '-- Chemotherapy +TCGA-OV d0673efd-3315-4dd5-8ab6-912bfa07dceb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1022 67 false '-- '-- '-- '-- -24798 1511 c4eab79f-a23b-5be3-abcc-b2e64f7626dc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1022_demographic Dead '-- '-- '-- '-- 24798 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0cb11846-7903-535a-926e-9347464dcdd3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1022_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1022_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c6b5fd1a-27d6-4846-9258-db397fd1f456 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV d0673efd-3315-4dd5-8ab6-912bfa07dceb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1022 67 false '-- '-- '-- '-- -24798 1511 c4eab79f-a23b-5be3-abcc-b2e64f7626dc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1022_demographic Dead '-- '-- '-- '-- 24798 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0cb11846-7903-535a-926e-9347464dcdd3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1022_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 818 762 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1022_treatment5 Topotecan '-- '-- '-- '-- '-- '-- '-- 28 '-- mg '-- '-- '-- '-- dcd18ac2-d0e0-4e44-84cd-6d84858a64bc '-- yes '-- '-- Chemotherapy +TCGA-OV d0673efd-3315-4dd5-8ab6-912bfa07dceb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1022 67 false '-- '-- '-- '-- -24798 1511 c4eab79f-a23b-5be3-abcc-b2e64f7626dc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1022_demographic Dead '-- '-- '-- '-- 25248 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 450 '-- '-- '-- c075994d-4355-455e-bf1a-22e28e7fb44f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1022_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1022_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1022_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7bc7268e-96ba-4f4e-9780-72222733a9e0 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV d0673efd-3315-4dd5-8ab6-912bfa07dceb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1022 67 false '-- '-- '-- '-- -24798 1511 c4eab79f-a23b-5be3-abcc-b2e64f7626dc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1022_demographic Dead '-- '-- '-- '-- 25248 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 450 '-- '-- '-- c075994d-4355-455e-bf1a-22e28e7fb44f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1022_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1022_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1022_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f0a21c7c-9b99-401b-9ae9-2af0d7b26ead '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV d1976840-35f7-4423-8458-12fb32a52b33 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1032 73 false '-- '-- '-- '-- -26715 84 11f19a38-9234-583d-bfa1-72d744906534 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-23-1032_demographic Dead '-- '-- '-- '-- 26715 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ce95a788-c4a1-573a-bf27-259e0b06fc75 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1032_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1032_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 418a9bac-9b85-4c4c-9b29-a554b0af5674 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV d1976840-35f7-4423-8458-12fb32a52b33 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1032 73 false '-- '-- '-- '-- -26715 84 11f19a38-9234-583d-bfa1-72d744906534 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-23-1032_demographic Dead '-- '-- '-- '-- 26715 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ce95a788-c4a1-573a-bf27-259e0b06fc75 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1032_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1032_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ed7d9fbd-a8bd-50cc-acf7-b81fc834bc92 Adjuvant no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV d1e974e7-dd68-40cc-ad06-2b57d964e5a1 Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1337 78 false '-- '-- '-- '-- -28626 61 955e097e-08f9-5ef5-8ca0-932e5d45ac9f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1337_demographic Dead '-- '-- '-- '-- 28626 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 34aa5429-9d9e-5eea-bf66-26acfdbb8a96 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1337_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1337_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 203e69ba-ee47-43e9-8592-3c248d14f1c0 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV d1e974e7-dd68-40cc-ad06-2b57d964e5a1 Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1337 78 false '-- '-- '-- '-- -28626 61 955e097e-08f9-5ef5-8ca0-932e5d45ac9f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1337_demographic Dead '-- '-- '-- '-- 28626 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 34aa5429-9d9e-5eea-bf66-26acfdbb8a96 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1337_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1337_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e50538d0-06ca-523d-b631-9dbc3e96a5f7 Adjuvant no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV d2c0d320-d1c5-4eed-af4f-15540e60db0b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1122 53 false '-- '-- '-- '-- -19537 1189 35fba336-e795-5600-a892-a3899a3d9fe3 '-- not reported female '-- '-- '-- '-- white TCGA-23-1122_demographic Dead '-- '-- '-- '-- 19537 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0bf0b7d6-59fd-5d2e-b753-857c4b618889 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1122_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 244 27 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1122_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4200 '-- mg '-- '-- '-- '-- 10571b3f-0223-4817-aa51-f0fb0e6301cf Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d2c0d320-d1c5-4eed-af4f-15540e60db0b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1122 53 false '-- '-- '-- '-- -19537 1189 35fba336-e795-5600-a892-a3899a3d9fe3 '-- not reported female '-- '-- '-- '-- white TCGA-23-1122_demographic Dead '-- '-- '-- '-- 19537 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0bf0b7d6-59fd-5d2e-b753-857c4b618889 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1122_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1031 921 '-- '-- Persistent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1122_treatment2 Ifosfamide '-- '-- '-- '-- '-- '-- '-- 72 '-- mg '-- '-- '-- '-- 167ee7a8-51da-4383-9f9b-ddaeb59c1f74 Not Reported yes '-- '-- Chemotherapy +TCGA-OV d2c0d320-d1c5-4eed-af4f-15540e60db0b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1122 53 false '-- '-- '-- '-- -19537 1189 35fba336-e795-5600-a892-a3899a3d9fe3 '-- not reported female '-- '-- '-- '-- white TCGA-23-1122_demographic Dead '-- '-- '-- '-- 19537 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0bf0b7d6-59fd-5d2e-b753-857c4b618889 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1122_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 686 501 '-- '-- Recurrent Disease '-- '-- '-- '-- 20 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1122_treatment4 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 15900 '-- mg '-- '-- '-- '-- 38fb62c6-526b-4ac3-a117-8595ddb580c9 '-- yes '-- '-- Chemotherapy +TCGA-OV d2c0d320-d1c5-4eed-af4f-15540e60db0b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1122 53 false '-- '-- '-- '-- -19537 1189 35fba336-e795-5600-a892-a3899a3d9fe3 '-- not reported female '-- '-- '-- '-- white TCGA-23-1122_demographic Dead '-- '-- '-- '-- 19537 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0bf0b7d6-59fd-5d2e-b753-857c4b618889 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1122_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 859 775 '-- '-- Persistent Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1122_treatment7 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 5900 '-- mg '-- '-- '-- '-- 696b1bf9-db47-48ca-b491-bc75ece1615c Not Reported yes '-- '-- Chemotherapy +TCGA-OV d2c0d320-d1c5-4eed-af4f-15540e60db0b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1122 53 false '-- '-- '-- '-- -19537 1189 35fba336-e795-5600-a892-a3899a3d9fe3 '-- not reported female '-- '-- '-- '-- white TCGA-23-1122_demographic Dead '-- '-- '-- '-- 19537 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0bf0b7d6-59fd-5d2e-b753-857c4b618889 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1122_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 754 707 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1122_treatment6 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 3500 '-- mg '-- '-- '-- '-- 7fc5ab77-a14a-4d63-a56b-2e90d91ec211 '-- yes '-- '-- Chemotherapy +TCGA-OV d2c0d320-d1c5-4eed-af4f-15540e60db0b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1122 53 false '-- '-- '-- '-- -19537 1189 35fba336-e795-5600-a892-a3899a3d9fe3 '-- not reported female '-- '-- '-- '-- white TCGA-23-1122_demographic Dead '-- '-- '-- '-- 19537 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0bf0b7d6-59fd-5d2e-b753-857c4b618889 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1122_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1089 1054 '-- '-- Progressive Disease '-- '-- '-- '-- '-- 29.0 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1122_treatment '-- '-- '-- '-- '-- '-- Distant Site '-- 14290 '-- cGy '-- '-- '-- '-- 9d7b0051-95b8-5e5f-850a-505f56d62842 '-- yes '-- '-- Radiation, External Beam +TCGA-OV d2c0d320-d1c5-4eed-af4f-15540e60db0b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1122 53 false '-- '-- '-- '-- -19537 1189 35fba336-e795-5600-a892-a3899a3d9fe3 '-- not reported female '-- '-- '-- '-- white TCGA-23-1122_demographic Dead '-- '-- '-- '-- 19537 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0bf0b7d6-59fd-5d2e-b753-857c4b618889 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1122_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1089 1054 '-- '-- Persistent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1122_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 240 '-- mg '-- '-- '-- '-- dfd3da5b-71a1-48f8-aea0-21a1c4905e18 Not Reported yes '-- '-- Chemotherapy +TCGA-OV d2c0d320-d1c5-4eed-af4f-15540e60db0b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1122 53 false '-- '-- '-- '-- -19537 1189 35fba336-e795-5600-a892-a3899a3d9fe3 '-- not reported female '-- '-- '-- '-- white TCGA-23-1122_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3feb5069-2db9-40fc-a0ce-2d0dd2997e36 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1122_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1122_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1122_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0d0d5ab2-2582-45a7-8be1-ddcb2a22e409 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV d2c0d320-d1c5-4eed-af4f-15540e60db0b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1122 53 false '-- '-- '-- '-- -19537 1189 35fba336-e795-5600-a892-a3899a3d9fe3 '-- not reported female '-- '-- '-- '-- white TCGA-23-1122_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3feb5069-2db9-40fc-a0ce-2d0dd2997e36 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1122_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1122_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1122_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6d118d74-e535-4afb-8dce-e42ad1b69436 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV d2c0d320-d1c5-4eed-af4f-15540e60db0b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1122 53 false '-- '-- '-- '-- -19537 1189 35fba336-e795-5600-a892-a3899a3d9fe3 '-- not reported female '-- '-- '-- '-- white TCGA-23-1122_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3feb5069-2db9-40fc-a0ce-2d0dd2997e36 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1122_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1122_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 470 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1122_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d9360c57-24fb-4558-afbb-583aa183500c '-- yes '-- '-- Surgery, NOS +TCGA-OV d2c0d320-d1c5-4eed-af4f-15540e60db0b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1122 53 false '-- '-- '-- '-- -19537 1189 35fba336-e795-5600-a892-a3899a3d9fe3 '-- not reported female '-- '-- '-- '-- white TCGA-23-1122_demographic Dead '-- '-- '-- '-- 19984 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 447 '-- '-- '-- 524a9b6a-da9e-4866-9a9d-99686127633d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1122_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1122_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1122_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 918cf43c-8f16-46ae-9ed0-f3a495b18479 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV d2c0d320-d1c5-4eed-af4f-15540e60db0b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1122 53 false '-- '-- '-- '-- -19537 1189 35fba336-e795-5600-a892-a3899a3d9fe3 '-- not reported female '-- '-- '-- '-- white TCGA-23-1122_demographic Dead '-- '-- '-- '-- 19984 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 447 '-- '-- '-- 524a9b6a-da9e-4866-9a9d-99686127633d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1122_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1122_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1122_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f0e14c6d-3a20-4c0b-82f5-6254f1e6f13a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV d3dd5e69-9752-4b50-9b1f-814afbc2c3dd Informed Consent 310 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1774 82 false '-- '-- '-- '-- -29991 '-- 1d15823e-4daa-5758-8481-cfa43f826e1e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-29-1774_demographic Alive '-- '-- '-- '-- 30225 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 234 '-- '-- '-- 6da4fb09-fc5a-402e-9ed6-cf5cb628762b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1774_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1774_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1774_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1ad73947-a6a6-4329-9307-a99ac941d511 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV d3dd5e69-9752-4b50-9b1f-814afbc2c3dd Informed Consent 310 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1774 82 false '-- '-- '-- '-- -29991 '-- 1d15823e-4daa-5758-8481-cfa43f826e1e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-29-1774_demographic Alive '-- '-- '-- '-- 30225 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 234 '-- '-- '-- 6da4fb09-fc5a-402e-9ed6-cf5cb628762b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1774_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1774_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1774_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 559d6335-b989-4d8b-bf2f-e7eee52df1e4 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV d3dd5e69-9752-4b50-9b1f-814afbc2c3dd Informed Consent 310 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1774 82 false '-- '-- '-- '-- -29991 '-- 1d15823e-4daa-5758-8481-cfa43f826e1e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-29-1774_demographic Alive '-- '-- '-- '-- 29991 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dbf2bcbf-39a4-5c2a-8db3-883fffc89e0e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1774_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 37 37 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1774_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 410 '-- mg '-- '-- '-- '-- 15103971-2183-4c66-a745-736117ef7e43 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d3dd5e69-9752-4b50-9b1f-814afbc2c3dd Informed Consent 310 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1774 82 false '-- '-- '-- '-- -29991 '-- 1d15823e-4daa-5758-8481-cfa43f826e1e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-29-1774_demographic Alive '-- '-- '-- '-- 29991 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dbf2bcbf-39a4-5c2a-8db3-883fffc89e0e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1774_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 14 14 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1774_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 340 '-- mg '-- '-- '-- '-- 168ec590-d425-5f64-9493-68e3ea3df84d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d3dd5e69-9752-4b50-9b1f-814afbc2c3dd Informed Consent 310 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1774 82 false '-- '-- '-- '-- -29991 '-- 1d15823e-4daa-5758-8481-cfa43f826e1e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-29-1774_demographic Alive '-- '-- '-- '-- 29991 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dbf2bcbf-39a4-5c2a-8db3-883fffc89e0e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1774_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 86 86 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1774_treatment2 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1075 '-- mg '-- '-- '-- '-- 29521784-a80e-4723-9dc3-cef8c351ce77 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d3dd5e69-9752-4b50-9b1f-814afbc2c3dd Informed Consent 310 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1774 82 false '-- '-- '-- '-- -29991 '-- 1d15823e-4daa-5758-8481-cfa43f826e1e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-29-1774_demographic Alive '-- '-- '-- '-- 29991 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dbf2bcbf-39a4-5c2a-8db3-883fffc89e0e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1774_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 380 247 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1774_treatment3 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1425 '-- mg '-- '-- '-- '-- 68a1f6cc-0df7-4c03-816a-3a866566f242 '-- yes '-- '-- Chemotherapy +TCGA-OV d3dd5e69-9752-4b50-9b1f-814afbc2c3dd Informed Consent 310 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1774 82 false '-- '-- '-- '-- -29991 '-- 1d15823e-4daa-5758-8481-cfa43f826e1e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-29-1774_demographic Alive '-- '-- '-- '-- 29991 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dbf2bcbf-39a4-5c2a-8db3-883fffc89e0e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1774_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 133 65 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1774_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 340 '-- mg '-- '-- '-- '-- bdbe0a65-5e3e-42f5-a537-546e2cd7b0ad Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d3dd5e69-9752-4b50-9b1f-814afbc2c3dd Informed Consent 310 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1774 82 false '-- '-- '-- '-- -29991 '-- 1d15823e-4daa-5758-8481-cfa43f826e1e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-29-1774_demographic Alive '-- '-- '-- '-- 29991 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- dbf2bcbf-39a4-5c2a-8db3-883fffc89e0e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1774_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1774_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bfe166cc-21c1-4728-b6ad-7137c8b7aa09 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV d73a0a33-e4e8-44bd-9580-2038ab06583a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1313 62 false '-- '-- '-- '-- -22982 820 eb34da9e-5cca-54f5-8a3b-7a4745c1edb5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1313_demographic Dead '-- '-- '-- '-- 22982 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1ad23243-90b7-58dd-a896-f3a3432ad5f2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1313_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 547 394 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1313_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c9c7bc22-468c-48d9-8507-e8e8d742e8d7 '-- yes '-- '-- Chemotherapy +TCGA-OV d73a0a33-e4e8-44bd-9580-2038ab06583a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1313 62 false '-- '-- '-- '-- -22982 820 eb34da9e-5cca-54f5-8a3b-7a4745c1edb5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1313_demographic Dead '-- '-- '-- '-- 22982 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1ad23243-90b7-58dd-a896-f3a3432ad5f2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1313_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 151 29 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1313_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e9515711-ffd8-53a5-b970-1a4ff3a601d2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d73a0a33-e4e8-44bd-9580-2038ab06583a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1313 62 false '-- '-- '-- '-- -22982 820 eb34da9e-5cca-54f5-8a3b-7a4745c1edb5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1313_demographic Dead '-- '-- '-- '-- 22982 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1ad23243-90b7-58dd-a896-f3a3432ad5f2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1313_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 151 29 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1313_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f2107365-4254-473e-a355-aeaa149453c6 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d73a0a33-e4e8-44bd-9580-2038ab06583a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1313 62 false '-- '-- '-- '-- -22982 820 eb34da9e-5cca-54f5-8a3b-7a4745c1edb5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1313_demographic Dead '-- '-- '-- '-- 23376 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 394 '-- '-- '-- 3b4a2cbc-7618-47d6-906f-5b09f40a2b6a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1313_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1313_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1313_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 89c1005b-651e-444f-ba00-84e0ac9bd425 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV d73a0a33-e4e8-44bd-9580-2038ab06583a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1313 62 false '-- '-- '-- '-- -22982 820 eb34da9e-5cca-54f5-8a3b-7a4745c1edb5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1313_demographic Dead '-- '-- '-- '-- 23376 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 394 '-- '-- '-- 3b4a2cbc-7618-47d6-906f-5b09f40a2b6a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1313_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1313_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1313_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9d656652-a3ee-43f0-9a42-8bd145169173 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV d77ef9cf-f8e6-4ee9-8d4f-1106885f6b06 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1564 67 false '-- '-- '-- '-- -24668 787 3a32c00c-98b2-5f28-ac70-dc47e5e99798 '-- not reported female '-- '-- '-- '-- white TCGA-24-1564_demographic Dead '-- '-- '-- '-- 24668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 049c7bc3-3d4a-5872-8d4a-eaffbf8187f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1564_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 406 333 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1564_treatment12 Topotecan '-- '-- '-- '-- '-- '-- '-- 33 '-- mg '-- '-- '-- '-- 1b5f9f14-98f9-485d-9cfe-34ae3b34ad38 '-- yes '-- '-- Chemotherapy +TCGA-OV d77ef9cf-f8e6-4ee9-8d4f-1106885f6b06 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1564 67 false '-- '-- '-- '-- -24668 787 3a32c00c-98b2-5f28-ac70-dc47e5e99798 '-- not reported female '-- '-- '-- '-- white TCGA-24-1564_demographic Dead '-- '-- '-- '-- 24668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 049c7bc3-3d4a-5872-8d4a-eaffbf8187f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1564_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1564_treatment '-- '-- '-- '-- '-- '-- Primary Tumor Field '-- '-- '-- '-- '-- '-- '-- '-- 223471a9-7d76-54de-b753-01e84ad6be87 '-- yes '-- '-- Radiation, External Beam +TCGA-OV d77ef9cf-f8e6-4ee9-8d4f-1106885f6b06 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1564 67 false '-- '-- '-- '-- -24668 787 3a32c00c-98b2-5f28-ac70-dc47e5e99798 '-- not reported female '-- '-- '-- '-- white TCGA-24-1564_demographic Dead '-- '-- '-- '-- 24668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 049c7bc3-3d4a-5872-8d4a-eaffbf8187f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1564_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 295 248 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1564_treatment10 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5080 '-- mg '-- '-- '-- '-- 3b5b1164-0577-4f53-8780-76ed8c8dfc84 '-- yes '-- '-- Chemotherapy +TCGA-OV d77ef9cf-f8e6-4ee9-8d4f-1106885f6b06 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1564 67 false '-- '-- '-- '-- -24668 787 3a32c00c-98b2-5f28-ac70-dc47e5e99798 '-- not reported female '-- '-- '-- '-- white TCGA-24-1564_demographic Dead '-- '-- '-- '-- 24668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 049c7bc3-3d4a-5872-8d4a-eaffbf8187f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1564_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 295 248 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1564_treatment5 Amifostine '-- '-- '-- '-- '-- '-- '-- 5080 '-- mg '-- '-- '-- '-- 6e743e05-1e27-49cb-bcdf-0922cb45feda '-- yes '-- '-- Chemotherapy +TCGA-OV d77ef9cf-f8e6-4ee9-8d4f-1106885f6b06 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1564 67 false '-- '-- '-- '-- -24668 787 3a32c00c-98b2-5f28-ac70-dc47e5e99798 '-- not reported female '-- '-- '-- '-- white TCGA-24-1564_demographic Dead '-- '-- '-- '-- 24668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 049c7bc3-3d4a-5872-8d4a-eaffbf8187f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1564_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- 736 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-1564_treatment11 Tamoxifen '-- '-- '-- '-- '-- '-- '-- 20 '-- mg '-- '-- '-- '-- 939a330c-747e-4e50-83f8-b02648740e4f '-- yes '-- '-- Hormone Therapy +TCGA-OV d77ef9cf-f8e6-4ee9-8d4f-1106885f6b06 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1564 67 false '-- '-- '-- '-- -24668 787 3a32c00c-98b2-5f28-ac70-dc47e5e99798 '-- not reported female '-- '-- '-- '-- white TCGA-24-1564_demographic Dead '-- '-- '-- '-- 24668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 049c7bc3-3d4a-5872-8d4a-eaffbf8187f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1564_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 463 435 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1564_treatment7 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 136 '-- mg '-- '-- '-- '-- 9d8f06fc-24aa-4d0b-aaf9-190bdf262663 '-- yes '-- '-- Chemotherapy +TCGA-OV d77ef9cf-f8e6-4ee9-8d4f-1106885f6b06 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1564 67 false '-- '-- '-- '-- -24668 787 3a32c00c-98b2-5f28-ac70-dc47e5e99798 '-- not reported female '-- '-- '-- '-- white TCGA-24-1564_demographic Dead '-- '-- '-- '-- 24668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 049c7bc3-3d4a-5872-8d4a-eaffbf8187f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1564_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 624 589 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1564_treatment8 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 2462 '-- mg '-- '-- '-- '-- a2fa824b-c072-48de-905b-5821ba9bf08a '-- yes '-- '-- Chemotherapy +TCGA-OV d77ef9cf-f8e6-4ee9-8d4f-1106885f6b06 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1564 67 false '-- '-- '-- '-- -24668 787 3a32c00c-98b2-5f28-ac70-dc47e5e99798 '-- not reported female '-- '-- '-- '-- white TCGA-24-1564_demographic Dead '-- '-- '-- '-- 24668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 049c7bc3-3d4a-5872-8d4a-eaffbf8187f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1564_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 568 499 '-- '-- Progressive Disease '-- '-- '-- '-- 11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1564_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1496 '-- mg '-- '-- '-- '-- a6d6d5af-9060-4549-bff3-f33f321d0821 '-- yes '-- '-- Chemotherapy +TCGA-OV d77ef9cf-f8e6-4ee9-8d4f-1106885f6b06 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1564 67 false '-- '-- '-- '-- -24668 787 3a32c00c-98b2-5f28-ac70-dc47e5e99798 '-- not reported female '-- '-- '-- '-- white TCGA-24-1564_demographic Dead '-- '-- '-- '-- 24668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 049c7bc3-3d4a-5872-8d4a-eaffbf8187f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1564_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 624 589 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-1564_treatment6 Etoposide '-- '-- '-- '-- '-- '-- '-- 1500 '-- mg '-- '-- '-- '-- c5322b17-5be1-46d2-93db-8b6319462704 '-- yes '-- '-- Chemotherapy +TCGA-OV d77ef9cf-f8e6-4ee9-8d4f-1106885f6b06 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1564 67 false '-- '-- '-- '-- -24668 787 3a32c00c-98b2-5f28-ac70-dc47e5e99798 '-- not reported female '-- '-- '-- '-- white TCGA-24-1564_demographic Dead '-- '-- '-- '-- 24668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 049c7bc3-3d4a-5872-8d4a-eaffbf8187f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1564_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 116 8 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1564_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 779 '-- mg '-- '-- '-- '-- e1973295-b7b1-4f65-8b03-d88adae9e88b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d77ef9cf-f8e6-4ee9-8d4f-1106885f6b06 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1564 67 false '-- '-- '-- '-- -24668 787 3a32c00c-98b2-5f28-ac70-dc47e5e99798 '-- not reported female '-- '-- '-- '-- white TCGA-24-1564_demographic Dead '-- '-- '-- '-- 24668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 049c7bc3-3d4a-5872-8d4a-eaffbf8187f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1564_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 116 8 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1564_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1396 '-- mg '-- '-- '-- '-- ef979a6b-9734-4d58-9b1f-81ae653dc54e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d77ef9cf-f8e6-4ee9-8d4f-1106885f6b06 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1564 67 false '-- '-- '-- '-- -24668 787 3a32c00c-98b2-5f28-ac70-dc47e5e99798 '-- not reported female '-- '-- '-- '-- white TCGA-24-1564_demographic Dead '-- '-- '-- '-- 24668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 049c7bc3-3d4a-5872-8d4a-eaffbf8187f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1564_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 295 248 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1564_treatment9 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1200 '-- mg '-- '-- '-- '-- f1e890be-5279-4163-9268-24f147417082 '-- yes '-- '-- Chemotherapy +TCGA-OV d77ef9cf-f8e6-4ee9-8d4f-1106885f6b06 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1564 67 false '-- '-- '-- '-- -24668 787 3a32c00c-98b2-5f28-ac70-dc47e5e99798 '-- not reported female '-- '-- '-- '-- white TCGA-24-1564_demographic Dead '-- '-- '-- '-- 24889 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 221 '-- '-- '-- d9da33e6-2e6b-4e86-9d5c-f817ff150db3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1564_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1564_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1564_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0f7dea7e-8faf-41c0-9414-179abcff6377 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV d77ef9cf-f8e6-4ee9-8d4f-1106885f6b06 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1564 67 false '-- '-- '-- '-- -24668 787 3a32c00c-98b2-5f28-ac70-dc47e5e99798 '-- not reported female '-- '-- '-- '-- white TCGA-24-1564_demographic Dead '-- '-- '-- '-- 24889 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 221 '-- '-- '-- d9da33e6-2e6b-4e86-9d5c-f817ff150db3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1564_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1564_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1564_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 42069717-b60d-44b4-ba22-4e7b2c6b122f '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV d7925dfc-18ce-46ab-a47b-9d06eacc96d0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2354 63 false '-- '-- '-- '-- '-- 1046 87faef0a-06fb-53fa-b2e6-7ac6f4cb94c1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-59-2354_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 462 '-- '-- '-- 1a99e81a-0fd9-4996-b994-99842226692b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-59-2354_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-59-2354_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-2354_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 45a2565f-9be8-4d56-921d-a25d796b1f8f '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV d7925dfc-18ce-46ab-a47b-9d06eacc96d0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2354 63 false '-- '-- '-- '-- '-- 1046 87faef0a-06fb-53fa-b2e6-7ac6f4cb94c1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-59-2354_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 462 '-- '-- '-- 1a99e81a-0fd9-4996-b994-99842226692b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-59-2354_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-59-2354_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-2354_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b5696de2-6e85-4a95-9a0c-f19685c00a80 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV d7925dfc-18ce-46ab-a47b-9d06eacc96d0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2354 63 false '-- '-- '-- '-- '-- 1046 87faef0a-06fb-53fa-b2e6-7ac6f4cb94c1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-59-2354_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d102e815-6af9-5d9f-b5ff-36b7b8730c4b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-59-2354_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-2354_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9a6346ee-be59-4932-b915-3daab940033a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d7925dfc-18ce-46ab-a47b-9d06eacc96d0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2354 63 false '-- '-- '-- '-- '-- 1046 87faef0a-06fb-53fa-b2e6-7ac6f4cb94c1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-59-2354_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d102e815-6af9-5d9f-b5ff-36b7b8730c4b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-59-2354_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-2354_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dcbd83c4-6827-5b46-8f65-b68ba8d3b247 '-- yes '-- '-- Chemotherapy +TCGA-OV d7b3156d-672a-4a55-868d-9ca6a09fcb0f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1474 57 false '-- '-- '-- '-- -20902 676 4812aee4-fa81-5936-a941-fc0d01dba26d '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1474_demographic Dead '-- '-- '-- '-- 21234 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 332 '-- '-- '-- b25cd618-4a70-4b9a-a75d-227666c21295 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1474_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1474_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1474_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2400da21-e14c-4bcd-b792-bb4003e8ebbb '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV d7b3156d-672a-4a55-868d-9ca6a09fcb0f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1474 57 false '-- '-- '-- '-- -20902 676 4812aee4-fa81-5936-a941-fc0d01dba26d '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1474_demographic Dead '-- '-- '-- '-- 21234 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 332 '-- '-- '-- b25cd618-4a70-4b9a-a75d-227666c21295 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1474_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1474_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1474_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bfd3390d-341a-4fc4-b025-402d4c49ecf4 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV d7b3156d-672a-4a55-868d-9ca6a09fcb0f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1474 57 false '-- '-- '-- '-- -20902 676 4812aee4-fa81-5936-a941-fc0d01dba26d '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1474_demographic Dead '-- '-- '-- '-- 20902 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ed25dede-8f3b-53e0-b342-842614bc07b4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1474_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 123 18 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1474_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4050 '-- mg '-- '-- '-- '-- 25df8049-5e75-4965-b4d5-a2e0a68723c0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d7b3156d-672a-4a55-868d-9ca6a09fcb0f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1474 57 false '-- '-- '-- '-- -20902 676 4812aee4-fa81-5936-a941-fc0d01dba26d '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1474_demographic Dead '-- '-- '-- '-- 20902 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ed25dede-8f3b-53e0-b342-842614bc07b4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1474_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 635 454 '-- '-- Progressive Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1474_treatment Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 2365 '-- mg '-- '-- '-- '-- 3e543b09-92f6-5b4d-874c-2a0176cd2714 '-- yes '-- '-- Chemotherapy +TCGA-OV d7b3156d-672a-4a55-868d-9ca6a09fcb0f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1474 57 false '-- '-- '-- '-- -20902 676 4812aee4-fa81-5936-a941-fc0d01dba26d '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1474_demographic Dead '-- '-- '-- '-- 20902 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ed25dede-8f3b-53e0-b342-842614bc07b4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1474_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 431 350 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1474_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- 57 '-- mg '-- '-- '-- '-- 6362ad1d-0f4e-4fc2-84f7-1519c9879f1f '-- yes '-- '-- Chemotherapy +TCGA-OV d7b3156d-672a-4a55-868d-9ca6a09fcb0f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1474 57 false '-- '-- '-- '-- -20902 676 4812aee4-fa81-5936-a941-fc0d01dba26d '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1474_demographic Dead '-- '-- '-- '-- 20902 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ed25dede-8f3b-53e0-b342-842614bc07b4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1474_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 123 18 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1474_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1962 '-- mg '-- '-- '-- '-- 795fdfcc-8fac-4a82-a3bc-fb52816ff1ff Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d7b3156d-672a-4a55-868d-9ca6a09fcb0f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1474 57 false '-- '-- '-- '-- -20902 676 4812aee4-fa81-5936-a941-fc0d01dba26d '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1474_demographic Dead '-- '-- '-- '-- 20902 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ed25dede-8f3b-53e0-b342-842614bc07b4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1474_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 635 454 '-- '-- Progressive Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1474_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 302 '-- mg '-- '-- '-- '-- a7c4853e-fd2a-457c-a158-f87ad16c520c '-- yes '-- '-- Chemotherapy +TCGA-OV d7b3156d-672a-4a55-868d-9ca6a09fcb0f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1474 57 false '-- '-- '-- '-- -20902 676 4812aee4-fa81-5936-a941-fc0d01dba26d '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1474_demographic Dead '-- '-- '-- '-- 20902 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ed25dede-8f3b-53e0-b342-842614bc07b4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1474_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1474_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f40c73b3-b41a-44bb-8fe1-2ac291e5ec81 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV d8d13aa4-45d5-4e1a-a6cf-895bdf05e7b2 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0760 63 false '-- '-- '-- '-- -23036 351 a21a3737-2000-5301-893e-32381b15763d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0760_demographic Dead '-- '-- '-- '-- 23036 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d11f1746-a660-5998-8830-1b5d634182a1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0760_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0760_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 16d4d5b9-a87f-5014-9c9d-f47adced18a6 Adjuvant yes Not Reported '-- Pharmaceutical Therapy, NOS +TCGA-OV d8d13aa4-45d5-4e1a-a6cf-895bdf05e7b2 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0760 63 false '-- '-- '-- '-- -23036 351 a21a3737-2000-5301-893e-32381b15763d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0760_demographic Dead '-- '-- '-- '-- 23036 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d11f1746-a660-5998-8830-1b5d634182a1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0760_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0760_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c9190dfd-69f9-479e-8a38-2b4468687132 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV da274941-3edd-420b-9262-bbd959923c67 Informed Consent 1016 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1946 30 false '-- '-- '-- '-- -11146 '-- 52037f73-8727-533e-ad4c-c42bb53d20a2 '-- not reported female '-- '-- '-- '-- not reported TCGA-31-1946_demographic Alive '-- '-- '-- '-- 11810 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 664 '-- '-- '-- 1a230ef7-744d-4447-94df-5244ee86153e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-31-1946_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-31-1946_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1946_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0be5c320-def7-4c0c-b75b-b69213cb6b8f '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV da274941-3edd-420b-9262-bbd959923c67 Informed Consent 1016 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1946 30 false '-- '-- '-- '-- -11146 '-- 52037f73-8727-533e-ad4c-c42bb53d20a2 '-- not reported female '-- '-- '-- '-- not reported TCGA-31-1946_demographic Alive '-- '-- '-- '-- 11810 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 664 '-- '-- '-- 1a230ef7-744d-4447-94df-5244ee86153e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-31-1946_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-31-1946_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1946_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f72bc4a1-188f-4c8c-8d87-b1413d8f74cb '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV da274941-3edd-420b-9262-bbd959923c67 Informed Consent 1016 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1946 30 false '-- '-- '-- '-- -11146 '-- 52037f73-8727-533e-ad4c-c42bb53d20a2 '-- not reported female '-- '-- '-- '-- not reported TCGA-31-1946_demographic Alive '-- '-- '-- '-- 11146 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c421708e-784f-5520-8391-a1d9ce7ae6ae true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1946_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 828 771 '-- '-- Not Reported '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1946_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1500 '-- mg '-- '-- '-- '-- 0672d8f5-da7e-40d4-8d24-1f6d0a52605b Not Reported yes '-- '-- Chemotherapy +TCGA-OV da274941-3edd-420b-9262-bbd959923c67 Informed Consent 1016 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1946 30 false '-- '-- '-- '-- -11146 '-- 52037f73-8727-533e-ad4c-c42bb53d20a2 '-- not reported female '-- '-- '-- '-- not reported TCGA-31-1946_demographic Alive '-- '-- '-- '-- 11146 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c421708e-784f-5520-8391-a1d9ce7ae6ae true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1946_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 743 687 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1946_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 144 '-- mg '-- '-- '-- '-- 22bbe37d-d684-4830-9bc1-2c9b70b647c6 '-- yes '-- '-- Chemotherapy +TCGA-OV da274941-3edd-420b-9262-bbd959923c67 Informed Consent 1016 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1946 30 false '-- '-- '-- '-- -11146 '-- 52037f73-8727-533e-ad4c-c42bb53d20a2 '-- not reported female '-- '-- '-- '-- not reported TCGA-31-1946_demographic Alive '-- '-- '-- '-- 11146 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c421708e-784f-5520-8391-a1d9ce7ae6ae true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1946_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 148 64 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1946_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2200 '-- mg '-- '-- '-- '-- 2511b853-c1cf-4eb1-90c1-d692b2390e54 '-- yes '-- '-- Chemotherapy +TCGA-OV da274941-3edd-420b-9262-bbd959923c67 Informed Consent 1016 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1946 30 false '-- '-- '-- '-- -11146 '-- 52037f73-8727-533e-ad4c-c42bb53d20a2 '-- not reported female '-- '-- '-- '-- not reported TCGA-31-1946_demographic Alive '-- '-- '-- '-- 11146 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c421708e-784f-5520-8391-a1d9ce7ae6ae true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1946_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1946_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a27306c3-6700-4ed0-80d6-7f3e42da196b Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV da274941-3edd-420b-9262-bbd959923c67 Informed Consent 1016 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1946 30 false '-- '-- '-- '-- -11146 '-- 52037f73-8727-533e-ad4c-c42bb53d20a2 '-- not reported female '-- '-- '-- '-- not reported TCGA-31-1946_demographic Alive '-- '-- '-- '-- 11146 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c421708e-784f-5520-8391-a1d9ce7ae6ae true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1946_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 148 64 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1946_treatment Gemcitabine '-- '-- '-- '-- '-- '-- '-- 12000 '-- mg '-- '-- '-- '-- d8c671d0-213e-5d91-af1a-cdb539436e7b '-- yes '-- '-- Chemotherapy +TCGA-OV da274941-3edd-420b-9262-bbd959923c67 Informed Consent 1016 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1946 30 false '-- '-- '-- '-- -11146 '-- 52037f73-8727-533e-ad4c-c42bb53d20a2 '-- not reported female '-- '-- '-- '-- not reported TCGA-31-1946_demographic Alive '-- '-- '-- '-- 11146 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c421708e-784f-5520-8391-a1d9ce7ae6ae true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1946_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 743 687 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1946_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 180 '-- mg '-- '-- '-- '-- f6870cd7-c1ed-4e5a-b774-739ed4c30964 '-- yes '-- '-- Chemotherapy +TCGA-OV da274941-3edd-420b-9262-bbd959923c67 Informed Consent 1016 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1946 30 false '-- '-- '-- '-- -11146 '-- 52037f73-8727-533e-ad4c-c42bb53d20a2 '-- not reported female '-- '-- '-- '-- not reported TCGA-31-1946_demographic Alive '-- '-- '-- '-- 11146 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c421708e-784f-5520-8391-a1d9ce7ae6ae true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1946_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 43 22 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1946_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1400 '-- mg '-- '-- '-- '-- fa81c8cb-7b9c-4e02-985e-e49a8ee44ee4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV da274941-3edd-420b-9262-bbd959923c67 Informed Consent 1016 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1946 30 false '-- '-- '-- '-- -11146 '-- 52037f73-8727-533e-ad4c-c42bb53d20a2 '-- not reported female '-- '-- '-- '-- not reported TCGA-31-1946_demographic Alive '-- '-- '-- '-- 11146 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c421708e-784f-5520-8391-a1d9ce7ae6ae true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1946_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 43 22 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1946_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 260 '-- mg '-- '-- '-- '-- fde92d83-d06b-4bdc-8f02-ecbefcb546c1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV dac96910-0cb2-44ea-b108-2d6d51b07112 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1510 62 false '-- '-- '-- '-- -22708 1359 d5a00182-83dc-5ef7-9d6a-3caf42ebc893 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1510_demographic Dead '-- '-- '-- '-- 23897 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 1189 '-- '-- '-- c87ea609-1d93-4150-a138-6bb571e1c677 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1510_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1510_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV dac96910-0cb2-44ea-b108-2d6d51b07112 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1510 62 false '-- '-- '-- '-- -22708 1359 d5a00182-83dc-5ef7-9d6a-3caf42ebc893 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1510_demographic Dead '-- '-- '-- '-- 22708 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f0fc4512-b8f5-52b9-848e-eb15cdedcf49 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1510_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 174 62 '-- '-- '-- '-- '-- '-- '-- 6 '-- 300.0 mg '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1510_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8268f7cf-25f4-4e4f-96f0-8c6e533ee305 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV dac96910-0cb2-44ea-b108-2d6d51b07112 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1510 62 false '-- '-- '-- '-- -22708 1359 d5a00182-83dc-5ef7-9d6a-3caf42ebc893 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1510_demographic Dead '-- '-- '-- '-- 22708 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f0fc4512-b8f5-52b9-848e-eb15cdedcf49 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1510_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1510_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ec3494c9-2b41-4cff-b5c2-cbe4bd63e713 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV dac96910-0cb2-44ea-b108-2d6d51b07112 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1510 62 false '-- '-- '-- '-- -22708 1359 d5a00182-83dc-5ef7-9d6a-3caf42ebc893 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1510_demographic Dead '-- '-- '-- '-- 22708 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f0fc4512-b8f5-52b9-848e-eb15cdedcf49 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1510_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 174 62 '-- '-- '-- '-- '-- '-- '-- 6 '-- 325.0 mg '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1510_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fe1299cf-07a6-5314-b980-6d27541634b1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV dc5a6ce7-01e5-408d-812e-e3e0ddc1cde5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2109 40 false '-- '-- '-- '-- -14900 629 0fc3268e-adb3-5388-9bfd-2e6056af74e5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2109_demographic Dead '-- '-- '-- '-- 15365 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 465 '-- '-- '-- a2ece225-4550-4e28-9886-2e5365ae0ba4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2109_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2109_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2109_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c1820c5b-aca9-46e0-baae-34b9dda4af74 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV dc5a6ce7-01e5-408d-812e-e3e0ddc1cde5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2109 40 false '-- '-- '-- '-- -14900 629 0fc3268e-adb3-5388-9bfd-2e6056af74e5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2109_demographic Dead '-- '-- '-- '-- 15365 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 465 '-- '-- '-- a2ece225-4550-4e28-9886-2e5365ae0ba4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2109_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2109_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2109_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c34bb3cc-3f21-47bb-99bf-0963814c3ac3 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV dc5a6ce7-01e5-408d-812e-e3e0ddc1cde5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2109 40 false '-- '-- '-- '-- -14900 629 0fc3268e-adb3-5388-9bfd-2e6056af74e5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2109_demographic Dead '-- '-- '-- '-- 14900 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d7e955fc-4cf9-5b0a-8555-41d566bd4e64 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2109_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 601 486 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2109_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 325 '-- mg '-- '-- '-- '-- 15d4f003-5ff6-4832-8d80-c7ad7b725d95 '-- yes '-- '-- Chemotherapy +TCGA-OV dc5a6ce7-01e5-408d-812e-e3e0ddc1cde5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2109 40 false '-- '-- '-- '-- -14900 629 0fc3268e-adb3-5388-9bfd-2e6056af74e5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2109_demographic Dead '-- '-- '-- '-- 14900 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d7e955fc-4cf9-5b0a-8555-41d566bd4e64 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2109_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 253 14 '-- '-- '-- '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2109_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 8910 '-- mg '-- '-- '-- '-- 24b59162-47f1-4964-a377-e28e7b3899ba Adjuvant yes '-- '-- Chemotherapy +TCGA-OV dc5a6ce7-01e5-408d-812e-e3e0ddc1cde5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2109 40 false '-- '-- '-- '-- -14900 629 0fc3268e-adb3-5388-9bfd-2e6056af74e5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2109_demographic Dead '-- '-- '-- '-- 14900 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d7e955fc-4cf9-5b0a-8555-41d566bd4e64 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2109_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2109_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3fecd6a1-1427-4755-a6fd-48951ea65340 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV dc5a6ce7-01e5-408d-812e-e3e0ddc1cde5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2109 40 false '-- '-- '-- '-- -14900 629 0fc3268e-adb3-5388-9bfd-2e6056af74e5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2109_demographic Dead '-- '-- '-- '-- 14900 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d7e955fc-4cf9-5b0a-8555-41d566bd4e64 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2109_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 601 486 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2109_treatment4 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 9060 '-- mg '-- '-- '-- '-- f63632de-dc36-4eff-a518-0dd9ff52d6b9 '-- yes '-- '-- Chemotherapy +TCGA-OV dc5a6ce7-01e5-408d-812e-e3e0ddc1cde5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2109 40 false '-- '-- '-- '-- -14900 629 0fc3268e-adb3-5388-9bfd-2e6056af74e5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2109_demographic Dead '-- '-- '-- '-- 14900 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d7e955fc-4cf9-5b0a-8555-41d566bd4e64 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2109_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 253 14 '-- '-- '-- '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2109_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 3125 '-- mg '-- '-- '-- '-- f75efd48-3565-5fc6-9030-02c5b62923d7 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV dce71741-ccbe-40b7-a0b8-2048d07187a4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2409 71 false '-- '-- '-- '-- -26267 821 5897f462-2f0f-5340-b4d1-bff091eb649b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2409_demographic Dead '-- '-- '-- '-- 26571 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 304 '-- '-- '-- 34c4ee2c-8725-4f00-b402-a071d821e8b8 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-2409_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-2409_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2409_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7df3b163-c263-4cec-ad78-54032c4b8d19 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV dce71741-ccbe-40b7-a0b8-2048d07187a4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2409 71 false '-- '-- '-- '-- -26267 821 5897f462-2f0f-5340-b4d1-bff091eb649b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2409_demographic Dead '-- '-- '-- '-- 26571 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 304 '-- '-- '-- 34c4ee2c-8725-4f00-b402-a071d821e8b8 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-2409_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-2409_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2409_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- af661944-a9d6-4eb2-8006-dc15b02d309a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV dce71741-ccbe-40b7-a0b8-2048d07187a4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2409 71 false '-- '-- '-- '-- -26267 821 5897f462-2f0f-5340-b4d1-bff091eb649b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2409_demographic Dead '-- '-- '-- '-- 26267 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c8d48465-069c-5154-9bae-9ce289ab10d4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2409_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 182 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2409_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0d88f9fe-f9d8-494e-85ce-1de4b85f4285 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV dce71741-ccbe-40b7-a0b8-2048d07187a4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2409 71 false '-- '-- '-- '-- -26267 821 5897f462-2f0f-5340-b4d1-bff091eb649b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2409_demographic Dead '-- '-- '-- '-- 26267 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c8d48465-069c-5154-9bae-9ce289ab10d4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2409_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 182 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2409_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 45822b90-dc03-52ff-8615-95d34501c53e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV dce71741-ccbe-40b7-a0b8-2048d07187a4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2409 71 false '-- '-- '-- '-- -26267 821 5897f462-2f0f-5340-b4d1-bff091eb649b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2409_demographic Dead '-- '-- '-- '-- 26267 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c8d48465-069c-5154-9bae-9ce289ab10d4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2409_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2409_treatment2 Tamoxifen '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6d3b0422-d4dc-4d3c-b48c-4b8812b5ba28 '-- yes '-- '-- Hormone Therapy +TCGA-OV dce71741-ccbe-40b7-a0b8-2048d07187a4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2409 71 false '-- '-- '-- '-- -26267 821 5897f462-2f0f-5340-b4d1-bff091eb649b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2409_demographic Dead '-- '-- '-- '-- 26267 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c8d48465-069c-5154-9bae-9ce289ab10d4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2409_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2409_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d5d30283-622e-4a19-a932-ea7d12a0aa9b Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV de548bdd-14ca-486b-bd16-a6fbdd5b50d2 Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1568 52 false '-- '-- '-- '-- -19311 '-- 357b0c19-bb6c-588d-a652-1d4bf67cc0c4 '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1568_demographic Alive '-- '-- '-- '-- 19311 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f0ac6623-6d2a-5f87-a515-fe563d907b98 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1568_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 737 624 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1568_treatment Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 286 '-- mg '-- '-- '-- '-- 2a0802da-d09e-5156-bca8-f7f3f8d78cb7 '-- yes '-- '-- Chemotherapy +TCGA-OV de548bdd-14ca-486b-bd16-a6fbdd5b50d2 Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1568 52 false '-- '-- '-- '-- -19311 '-- 357b0c19-bb6c-588d-a652-1d4bf67cc0c4 '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1568_demographic Alive '-- '-- '-- '-- 19311 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f0ac6623-6d2a-5f87-a515-fe563d907b98 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1568_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 123 10 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1568_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1257 '-- mg '-- '-- '-- '-- 487170b3-8753-45ab-9bb3-67e1e2bc9bff Adjuvant yes '-- '-- Chemotherapy +TCGA-OV de548bdd-14ca-486b-bd16-a6fbdd5b50d2 Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1568 52 false '-- '-- '-- '-- -19311 '-- 357b0c19-bb6c-588d-a652-1d4bf67cc0c4 '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1568_demographic Alive '-- '-- '-- '-- 19311 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f0ac6623-6d2a-5f87-a515-fe563d907b98 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1568_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1568_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 77e10bbe-63a9-456c-8668-43aab839981c Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV de548bdd-14ca-486b-bd16-a6fbdd5b50d2 Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1568 52 false '-- '-- '-- '-- -19311 '-- 357b0c19-bb6c-588d-a652-1d4bf67cc0c4 '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1568_demographic Alive '-- '-- '-- '-- 19311 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f0ac6623-6d2a-5f87-a515-fe563d907b98 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1568_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 123 10 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1568_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2610 '-- mg '-- '-- '-- '-- 8a4c0d5f-6264-4df9-b0a3-6db46d6f0876 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV de548bdd-14ca-486b-bd16-a6fbdd5b50d2 Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1568 52 false '-- '-- '-- '-- -19311 '-- 357b0c19-bb6c-588d-a652-1d4bf67cc0c4 '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1568_demographic Alive '-- '-- '-- '-- 19859 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 548 '-- '-- '-- f75931d8-f937-4378-b48c-f1d0730a756c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-36-1568_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-36-1568_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1568_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 296b498c-de39-487b-8ab6-69b839bf1864 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV de548bdd-14ca-486b-bd16-a6fbdd5b50d2 Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1568 52 false '-- '-- '-- '-- -19311 '-- 357b0c19-bb6c-588d-a652-1d4bf67cc0c4 '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1568_demographic Alive '-- '-- '-- '-- 19859 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 548 '-- '-- '-- f75931d8-f937-4378-b48c-f1d0730a756c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-36-1568_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-36-1568_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1568_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7770314a-e7d6-45b0-bbb6-581f09a8df8c '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- 16018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 26b720a3-88e1-5202-a2e2-08f958ebe521 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1028_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1461 1363 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1028_treatment13 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2667 '-- mg '-- '-- '-- '-- 071eb24a-94ac-4c74-8375-7aaec1eeb119 '-- yes '-- '-- Chemotherapy +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- 16018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 26b720a3-88e1-5202-a2e2-08f958ebe521 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1028_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1335 1112 '-- '-- Progressive Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1028_treatment4 Doxorubicin '-- '-- '-- '-- '-- '-- '-- 418 '-- mg '-- '-- '-- '-- 07d18b90-62cf-4ef7-ab04-775e709e852c '-- yes '-- '-- Chemotherapy +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- 16018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 26b720a3-88e1-5202-a2e2-08f958ebe521 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1028_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 110 26 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1028_treatment12 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1600 '-- mg '-- '-- '-- '-- 1c95739b-b7c9-479a-be12-ec9e9cf74001 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- 16018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 26b720a3-88e1-5202-a2e2-08f958ebe521 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1028_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 859 749 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1028_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2802 '-- mg '-- '-- '-- '-- 518d9ab4-2ac4-4edb-9229-0796f5598b73 '-- yes '-- '-- Chemotherapy +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- 16018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 26b720a3-88e1-5202-a2e2-08f958ebe521 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1028_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1153 1140 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1028_treatment11 Topotecan '-- '-- '-- '-- '-- '-- '-- 10 '-- mg '-- '-- '-- '-- 549dc9d3-e2f5-4d8a-b9e3-136c21f18f69 '-- yes '-- '-- Chemotherapy +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- 16018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 26b720a3-88e1-5202-a2e2-08f958ebe521 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1028_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 859 749 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1028_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 846 '-- mg '-- '-- '-- '-- 9d88e2ab-cba3-43bc-b301-4d1eb26a70e1 '-- yes '-- '-- Chemotherapy +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- 16018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 26b720a3-88e1-5202-a2e2-08f958ebe521 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1028_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1006 908 '-- '-- Progressive Disease '-- '-- '-- '-- 11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1028_treatment10 Topotecan '-- '-- '-- '-- '-- '-- '-- 41 '-- mg '-- '-- '-- '-- a6463587-2697-4b7a-aaab-8c5421cd004f '-- yes '-- '-- Chemotherapy +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- 16018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 26b720a3-88e1-5202-a2e2-08f958ebe521 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1028_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 229 173 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1028_treatment Doxorubicin '-- '-- '-- '-- '-- '-- '-- 201 '-- mg '-- '-- '-- '-- a66174fd-178d-511f-9c97-9a42c2cc621e '-- yes '-- '-- Chemotherapy +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- 16018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 26b720a3-88e1-5202-a2e2-08f958ebe521 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1028_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1461 1461 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1028_treatment6 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1552 '-- mg '-- '-- '-- '-- a864308f-df06-42cd-91a0-e44041f064af '-- yes '-- '-- Chemotherapy +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- 16018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 26b720a3-88e1-5202-a2e2-08f958ebe521 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1028_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1461 1461 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1028_treatment9 Carboplatin '-- '-- '-- '-- '-- '-- '-- 525 '-- mg '-- '-- '-- '-- b6c8f3f0-3016-474f-9f61-a9d43c88afef '-- yes '-- '-- Chemotherapy +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- 16018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 26b720a3-88e1-5202-a2e2-08f958ebe521 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1028_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1028_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cc10f5ee-35f6-4c47-9e4a-329b8a04c42f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- 16018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 26b720a3-88e1-5202-a2e2-08f958ebe521 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1028_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1489 1468 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1028_treatment8 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 3100 '-- mg '-- '-- '-- '-- ce925375-3896-4368-b001-78846a003960 '-- yes '-- '-- Chemotherapy +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- 16018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 26b720a3-88e1-5202-a2e2-08f958ebe521 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1028_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 110 26 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1028_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2900 '-- mg '-- '-- '-- '-- d701e49c-97b4-4cc0-871b-da37cca160a4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- 16018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 26b720a3-88e1-5202-a2e2-08f958ebe521 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1028_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1489 1468 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1028_treatment5 Cisplatin '-- '-- '-- '-- '-- '-- '-- 100 '-- mg '-- '-- '-- '-- d854e904-ce09-43f8-b801-e642fc1200b0 '-- yes '-- '-- Chemotherapy +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- 16151 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 133 '-- '-- '-- 85c471dd-c814-4fc8-9da0-6ce8dd374a81 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1028_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1028_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1028_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 00af1382-1232-4501-8d64-b346a7756ce4 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- 16151 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 133 '-- '-- '-- 85c471dd-c814-4fc8-9da0-6ce8dd374a81 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1028_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1028_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1028_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9f78d003-9357-4abe-9094-b8e162173428 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b8e5f493-11f8-470a-818e-35d717818586 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1028_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1028_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1028_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 25ca20ed-f042-4591-8569-bc64c5107a7a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b8e5f493-11f8-470a-818e-35d717818586 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1028_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1028_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 133 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1028_treatment19 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 39d347a3-368c-43cd-b3b2-0a64ad92bca1 '-- yes '-- '-- Surgery, NOS +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b8e5f493-11f8-470a-818e-35d717818586 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1028_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1028_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1028_treatment18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 821e0dec-373a-4256-b4cc-be9aa62d27d7 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV e07a61e2-bcd2-4a96-80df-97e04aafbd32 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0931 44 false '-- '-- '-- '-- -16262 1000 9d30f62d-cadc-5d3f-8505-00561713c897 '-- not reported female '-- '-- '-- '-- white TCGA-10-0931_demographic Dead '-- '-- '-- '-- 16262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- da8e8e22-7514-538e-8029-9f2dd1dbf55e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0931_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 509 386 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0931_treatment8 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1632 '-- mg/m2 '-- '-- '-- '-- 01f9dd21-25c9-454b-9205-f2c458d2f8a7 '-- yes '-- '-- Chemotherapy +TCGA-OV e07a61e2-bcd2-4a96-80df-97e04aafbd32 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0931 44 false '-- '-- '-- '-- -16262 1000 9d30f62d-cadc-5d3f-8505-00561713c897 '-- not reported female '-- '-- '-- '-- white TCGA-10-0931_demographic Dead '-- '-- '-- '-- 16262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- da8e8e22-7514-538e-8029-9f2dd1dbf55e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0931_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 124 19 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0931_treatment2 Trastuzumab '-- '-- '-- '-- '-- '-- '-- 2268 '-- mg/m2 '-- '-- '-- '-- 0c1dc48a-b18e-4b8e-bd35-b4822eb06c5e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e07a61e2-bcd2-4a96-80df-97e04aafbd32 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0931 44 false '-- '-- '-- '-- -16262 1000 9d30f62d-cadc-5d3f-8505-00561713c897 '-- not reported female '-- '-- '-- '-- white TCGA-10-0931_demographic Dead '-- '-- '-- '-- 16262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- da8e8e22-7514-538e-8029-9f2dd1dbf55e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0931_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 666 538 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0931_treatment6 Docetaxel '-- '-- '-- '-- '-- '-- '-- 420 '-- mg '-- '-- '-- '-- 14c75b55-acf4-417b-a32c-8552bc9f43e5 '-- yes '-- '-- Chemotherapy +TCGA-OV e07a61e2-bcd2-4a96-80df-97e04aafbd32 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0931 44 false '-- '-- '-- '-- -16262 1000 9d30f62d-cadc-5d3f-8505-00561713c897 '-- not reported female '-- '-- '-- '-- white TCGA-10-0931_demographic Dead '-- '-- '-- '-- 16262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- da8e8e22-7514-538e-8029-9f2dd1dbf55e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0931_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 932 876 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0931_treatment9 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 231 '-- mg/m2 '-- '-- '-- '-- 16c1e0eb-78f8-4707-9119-7dd2969fe7b1 '-- yes '-- '-- Chemotherapy +TCGA-OV e07a61e2-bcd2-4a96-80df-97e04aafbd32 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0931 44 false '-- '-- '-- '-- -16262 1000 9d30f62d-cadc-5d3f-8505-00561713c897 '-- not reported female '-- '-- '-- '-- white TCGA-10-0931_demographic Dead '-- '-- '-- '-- 16262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- da8e8e22-7514-538e-8029-9f2dd1dbf55e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0931_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 383 335 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0931_treatment7 Tamoxifen '-- '-- '-- '-- '-- '-- '-- 1880 '-- mg/m2 '-- '-- '-- '-- 1e8264ab-317c-4d55-b2f6-9ed253448e4e '-- yes '-- '-- Hormone Therapy +TCGA-OV e07a61e2-bcd2-4a96-80df-97e04aafbd32 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0931 44 false '-- '-- '-- '-- -16262 1000 9d30f62d-cadc-5d3f-8505-00561713c897 '-- not reported female '-- '-- '-- '-- white TCGA-10-0931_demographic Dead '-- '-- '-- '-- 16262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- da8e8e22-7514-538e-8029-9f2dd1dbf55e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0931_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 124 19 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0931_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 24db6c59-4d7d-47fb-8e7d-1a19c5bfa33d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e07a61e2-bcd2-4a96-80df-97e04aafbd32 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0931 44 false '-- '-- '-- '-- -16262 1000 9d30f62d-cadc-5d3f-8505-00561713c897 '-- not reported female '-- '-- '-- '-- white TCGA-10-0931_demographic Dead '-- '-- '-- '-- 16262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- da8e8e22-7514-538e-8029-9f2dd1dbf55e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0931_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 124 19 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0931_treatment11 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2430 '-- mg/m2 '-- '-- '-- '-- 587aee78-3f41-4627-8417-5ed3e096e1f8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e07a61e2-bcd2-4a96-80df-97e04aafbd32 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0931 44 false '-- '-- '-- '-- -16262 1000 9d30f62d-cadc-5d3f-8505-00561713c897 '-- not reported female '-- '-- '-- '-- white TCGA-10-0931_demographic Dead '-- '-- '-- '-- 16262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- da8e8e22-7514-538e-8029-9f2dd1dbf55e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0931_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 666 538 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0931_treatment10 Docetaxel '-- '-- '-- '-- '-- '-- '-- 440 '-- mg/m2 '-- '-- '-- '-- 7889d6e0-a465-4848-8999-ab4007017d3d '-- yes '-- '-- Chemotherapy +TCGA-OV e07a61e2-bcd2-4a96-80df-97e04aafbd32 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0931 44 false '-- '-- '-- '-- -16262 1000 9d30f62d-cadc-5d3f-8505-00561713c897 '-- not reported female '-- '-- '-- '-- white TCGA-10-0931_demographic Dead '-- '-- '-- '-- 16262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- da8e8e22-7514-538e-8029-9f2dd1dbf55e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0931_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 848 792 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0931_treatment12 Topotecan '-- '-- '-- '-- '-- '-- '-- 24 '-- mg/m2 '-- '-- '-- '-- 8d683a71-955c-40a9-98d6-28d8a94b9a23 '-- yes '-- '-- Chemotherapy +TCGA-OV e07a61e2-bcd2-4a96-80df-97e04aafbd32 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0931 44 false '-- '-- '-- '-- -16262 1000 9d30f62d-cadc-5d3f-8505-00561713c897 '-- not reported female '-- '-- '-- '-- white TCGA-10-0931_demographic Dead '-- '-- '-- '-- 16262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- da8e8e22-7514-538e-8029-9f2dd1dbf55e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0931_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 666 538 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0931_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1840 '-- mg/m2 '-- '-- '-- '-- 96b3fa9a-cc3d-4568-83e2-6acd1c365980 '-- yes '-- '-- Chemotherapy +TCGA-OV e07a61e2-bcd2-4a96-80df-97e04aafbd32 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0931 44 false '-- '-- '-- '-- -16262 1000 9d30f62d-cadc-5d3f-8505-00561713c897 '-- not reported female '-- '-- '-- '-- white TCGA-10-0931_demographic Dead '-- '-- '-- '-- 16262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- da8e8e22-7514-538e-8029-9f2dd1dbf55e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0931_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 509 386 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0931_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 3240 '-- mg/m2 '-- '-- '-- '-- 9f28ef7c-ec38-53e3-9538-b454efcde173 '-- yes '-- '-- Chemotherapy +TCGA-OV e07a61e2-bcd2-4a96-80df-97e04aafbd32 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0931 44 false '-- '-- '-- '-- -16262 1000 9d30f62d-cadc-5d3f-8505-00561713c897 '-- not reported female '-- '-- '-- '-- white TCGA-10-0931_demographic Dead '-- '-- '-- '-- 16262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- da8e8e22-7514-538e-8029-9f2dd1dbf55e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0931_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 848 792 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0931_treatment4 Gefitinib '-- '-- '-- '-- '-- '-- '-- 14000 '-- mg/m2 '-- '-- '-- '-- b93e42be-0cd0-4690-8542-dc74d9256e59 '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV e07a61e2-bcd2-4a96-80df-97e04aafbd32 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0931 44 false '-- '-- '-- '-- -16262 1000 9d30f62d-cadc-5d3f-8505-00561713c897 '-- not reported female '-- '-- '-- '-- white TCGA-10-0931_demographic Dead '-- '-- '-- '-- 16262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- da8e8e22-7514-538e-8029-9f2dd1dbf55e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0931_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0931_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- febc92cf-e3cb-4f90-ac0a-82b326cee6e3 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV e07a61e2-bcd2-4a96-80df-97e04aafbd32 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0931 44 false '-- '-- '-- '-- -16262 1000 9d30f62d-cadc-5d3f-8505-00561713c897 '-- not reported female '-- '-- '-- '-- white TCGA-10-0931_demographic Dead '-- '-- '-- '-- 16562 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 300 '-- '-- '-- e89fe2b1-15a7-46aa-88e6-6e2f3bcf195c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0931_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0931_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0931_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3c878a0b-d81d-41bb-a7c9-36b93feaca66 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV e07a61e2-bcd2-4a96-80df-97e04aafbd32 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0931 44 false '-- '-- '-- '-- -16262 1000 9d30f62d-cadc-5d3f-8505-00561713c897 '-- not reported female '-- '-- '-- '-- white TCGA-10-0931_demographic Dead '-- '-- '-- '-- 16562 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 300 '-- '-- '-- e89fe2b1-15a7-46aa-88e6-6e2f3bcf195c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0931_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0931_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0931_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 59b9546c-1455-4555-a350-23828dd981d8 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV e1158102-06f2-47bb-9fe0-49b57f070755 Informed Consent 1524 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1956 60 false '-- '-- '-- '-- -22100 '-- 567cb496-8b1d-54e3-bfa7-401b51d6b3fd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1956_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7321be07-41a7-4b72-b725-86fcf0f519ff false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-31-1956_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-31-1956_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 119 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1956_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 48bc3ec7-6be9-4bb4-b2b3-b566a19dda78 '-- yes '-- '-- Surgery, NOS +TCGA-OV e1158102-06f2-47bb-9fe0-49b57f070755 Informed Consent 1524 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1956 60 false '-- '-- '-- '-- -22100 '-- 567cb496-8b1d-54e3-bfa7-401b51d6b3fd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1956_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7321be07-41a7-4b72-b725-86fcf0f519ff false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-31-1956_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-31-1956_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1956_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dec21502-9d88-4a3d-83c3-4c075eef88e3 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV e1158102-06f2-47bb-9fe0-49b57f070755 Informed Consent 1524 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1956 60 false '-- '-- '-- '-- -22100 '-- 567cb496-8b1d-54e3-bfa7-401b51d6b3fd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1956_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7321be07-41a7-4b72-b725-86fcf0f519ff false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-31-1956_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-31-1956_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1956_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f0b3cc76-100f-43ee-a5b6-28f9ba37c7a3 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV e1158102-06f2-47bb-9fe0-49b57f070755 Informed Consent 1524 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1956 60 false '-- '-- '-- '-- -22100 '-- 567cb496-8b1d-54e3-bfa7-401b51d6b3fd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1956_demographic Alive '-- '-- '-- '-- 22100 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- cfbadd21-1fd9-5470-bec1-e14b76ad9ae8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1956_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 188 34 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1956_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 5150 '-- mg '-- '-- '-- '-- 01a71b58-c55c-5270-b629-f123096449bb Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e1158102-06f2-47bb-9fe0-49b57f070755 Informed Consent 1524 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1956 60 false '-- '-- '-- '-- -22100 '-- 567cb496-8b1d-54e3-bfa7-401b51d6b3fd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1956_demographic Alive '-- '-- '-- '-- 22100 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- cfbadd21-1fd9-5470-bec1-e14b76ad9ae8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1956_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1956_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4c1c6e8f-c47a-4d01-8494-f793c9d47751 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV e1158102-06f2-47bb-9fe0-49b57f070755 Informed Consent 1524 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1956 60 false '-- '-- '-- '-- -22100 '-- 567cb496-8b1d-54e3-bfa7-401b51d6b3fd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1956_demographic Alive '-- '-- '-- '-- 22100 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- cfbadd21-1fd9-5470-bec1-e14b76ad9ae8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1956_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 188 34 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1956_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1590 '-- mg '-- '-- '-- '-- 52f3f740-72e7-4802-90cc-155c02b2f757 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e20ea417-7296-4da8-9fdb-71cd1f45153a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2020 67 false '-- '-- '-- '-- -24682 4624 bc3036a7-e795-5db4-9293-f25c1dd954ff '-- not reported female '-- '-- '-- '-- white TCGA-24-2020_demographic Dead '-- '-- '-- '-- 24682 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2a7a1bf4-1fe5-5d1d-ad8f-a06bdfbe0774 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2020_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2020_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 37b13ff2-7b4e-490b-bb86-231abe506b08 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV e20ea417-7296-4da8-9fdb-71cd1f45153a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2020 67 false '-- '-- '-- '-- -24682 4624 bc3036a7-e795-5db4-9293-f25c1dd954ff '-- not reported female '-- '-- '-- '-- white TCGA-24-2020_demographic Dead '-- '-- '-- '-- 24682 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2a7a1bf4-1fe5-5d1d-ad8f-a06bdfbe0774 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2020_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 2757 2593 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2020_treatment8 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 485e1f0b-2921-43cc-9209-2d289735c0f9 '-- yes '-- '-- Chemotherapy +TCGA-OV e20ea417-7296-4da8-9fdb-71cd1f45153a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2020 67 false '-- '-- '-- '-- -24682 4624 bc3036a7-e795-5db4-9293-f25c1dd954ff '-- not reported female '-- '-- '-- '-- white TCGA-24-2020_demographic Dead '-- '-- '-- '-- 24682 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2a7a1bf4-1fe5-5d1d-ad8f-a06bdfbe0774 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2020_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 2085 1905 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2020_treatment Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 504 '-- mg '-- '-- '-- '-- 5170fed0-6c99-5fee-a14e-53b3d62e774d '-- yes '-- '-- Chemotherapy +TCGA-OV e20ea417-7296-4da8-9fdb-71cd1f45153a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2020 67 false '-- '-- '-- '-- -24682 4624 bc3036a7-e795-5db4-9293-f25c1dd954ff '-- not reported female '-- '-- '-- '-- white TCGA-24-2020_demographic Dead '-- '-- '-- '-- 24682 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2a7a1bf4-1fe5-5d1d-ad8f-a06bdfbe0774 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2020_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 940 745 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2020_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2496 '-- mg '-- '-- '-- '-- 539cfdca-9d99-4b0b-92fd-3b136b0cf7e0 '-- yes '-- '-- Chemotherapy +TCGA-OV e20ea417-7296-4da8-9fdb-71cd1f45153a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2020 67 false '-- '-- '-- '-- -24682 4624 bc3036a7-e795-5db4-9293-f25c1dd954ff '-- not reported female '-- '-- '-- '-- white TCGA-24-2020_demographic Dead '-- '-- '-- '-- 24682 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2a7a1bf4-1fe5-5d1d-ad8f-a06bdfbe0774 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2020_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 940 745 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2020_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 3024 '-- mg '-- '-- '-- '-- 6ecb12ae-a87d-49b2-a057-0e300cb64100 '-- yes '-- '-- Chemotherapy +TCGA-OV e20ea417-7296-4da8-9fdb-71cd1f45153a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2020 67 false '-- '-- '-- '-- -24682 4624 bc3036a7-e795-5db4-9293-f25c1dd954ff '-- not reported female '-- '-- '-- '-- white TCGA-24-2020_demographic Dead '-- '-- '-- '-- 24682 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2a7a1bf4-1fe5-5d1d-ad8f-a06bdfbe0774 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2020_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 414 274 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2020_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1836 '-- mg '-- '-- '-- '-- 7bcb2ad1-0358-4292-b39d-cf30b526ed1f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e20ea417-7296-4da8-9fdb-71cd1f45153a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2020 67 false '-- '-- '-- '-- -24682 4624 bc3036a7-e795-5db4-9293-f25c1dd954ff '-- not reported female '-- '-- '-- '-- white TCGA-24-2020_demographic Dead '-- '-- '-- '-- 24682 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2a7a1bf4-1fe5-5d1d-ad8f-a06bdfbe0774 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2020_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 1555 1381 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2020_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- 77 '-- mg '-- '-- '-- '-- 94253363-d734-4718-9d22-037b23016f8d '-- yes '-- '-- Chemotherapy +TCGA-OV e20ea417-7296-4da8-9fdb-71cd1f45153a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2020 67 false '-- '-- '-- '-- -24682 4624 bc3036a7-e795-5db4-9293-f25c1dd954ff '-- not reported female '-- '-- '-- '-- white TCGA-24-2020_demographic Dead '-- '-- '-- '-- 24682 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2a7a1bf4-1fe5-5d1d-ad8f-a06bdfbe0774 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2020_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 414 274 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2020_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2013 '-- mg '-- '-- '-- '-- 9e3a2702-dbfc-4b15-af2d-c48988f0b6ef Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e20ea417-7296-4da8-9fdb-71cd1f45153a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2020 67 false '-- '-- '-- '-- -24682 4624 bc3036a7-e795-5db4-9293-f25c1dd954ff '-- not reported female '-- '-- '-- '-- white TCGA-24-2020_demographic Dead '-- '-- '-- '-- 24682 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2a7a1bf4-1fe5-5d1d-ad8f-a06bdfbe0774 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2020_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 176 44 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2020_treatment9 Cisplatin '-- '-- '-- '-- '-- '-- '-- 1032 '-- mg '-- '-- '-- '-- f6979143-7316-4283-8bd7-8fd901aa60b4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e20ea417-7296-4da8-9fdb-71cd1f45153a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2020 67 false '-- '-- '-- '-- -24682 4624 bc3036a7-e795-5db4-9293-f25c1dd954ff '-- not reported female '-- '-- '-- '-- white TCGA-24-2020_demographic Dead '-- '-- '-- '-- 24682 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2a7a1bf4-1fe5-5d1d-ad8f-a06bdfbe0774 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2020_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 2298 2235 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2020_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1225 '-- mg '-- '-- '-- '-- fe7267ee-a46c-4d51-af0c-e4262812853a '-- yes '-- '-- Chemotherapy +TCGA-OV e20ea417-7296-4da8-9fdb-71cd1f45153a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2020 67 false '-- '-- '-- '-- -24682 4624 bc3036a7-e795-5db4-9293-f25c1dd954ff '-- not reported female '-- '-- '-- '-- white TCGA-24-2020_demographic Dead '-- '-- '-- '-- 25405 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 723 '-- '-- '-- 651958c0-ded4-4cfb-8e8f-4ccf5dae4e01 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2020_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2020_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2020_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 267157ae-7de6-4177-ab87-da4e717e94fc '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV e20ea417-7296-4da8-9fdb-71cd1f45153a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2020 67 false '-- '-- '-- '-- -24682 4624 bc3036a7-e795-5db4-9293-f25c1dd954ff '-- not reported female '-- '-- '-- '-- white TCGA-24-2020_demographic Dead '-- '-- '-- '-- 25405 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 723 '-- '-- '-- 651958c0-ded4-4cfb-8e8f-4ccf5dae4e01 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2020_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2020_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2020_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a7f11bb3-1013-4433-9a2d-fe19c3987207 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV e294b940-2828-499c-be24-47ef6c2e9035 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1577 43 false '-- '-- '-- '-- -15804 '-- 0aeca69b-62e8-51ea-b312-dc3e2ba3237c '-- not reported female '-- '-- '-- '-- asian TCGA-36-1577_demographic Alive '-- '-- '-- '-- 15804 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e3059d66-192a-578d-8167-ccefae83a110 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1577_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 156 111 '-- '-- '-- '-- '-- '-- '-- '-- 22.0 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1577_treatment2 '-- '-- '-- '-- '-- '-- Primary Tumor Field '-- 2250 '-- cGy '-- '-- '-- '-- 2d6749d7-4bc8-4941-8193-d5d76ba4a5c2 Adjuvant yes '-- '-- Radiation, External Beam +TCGA-OV e294b940-2828-499c-be24-47ef6c2e9035 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1577 43 false '-- '-- '-- '-- -15804 '-- 0aeca69b-62e8-51ea-b312-dc3e2ba3237c '-- not reported female '-- '-- '-- '-- asian TCGA-36-1577_demographic Alive '-- '-- '-- '-- 15804 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e3059d66-192a-578d-8167-ccefae83a110 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1577_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 84 28 '-- '-- '-- '-- '-- '-- '-- 3 '-- 611.0 mg '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1577_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1833 '-- mg '-- '-- '-- '-- 32939098-9279-4c7a-afa3-a74bab651621 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e294b940-2828-499c-be24-47ef6c2e9035 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1577 43 false '-- '-- '-- '-- -15804 '-- 0aeca69b-62e8-51ea-b312-dc3e2ba3237c '-- not reported female '-- '-- '-- '-- asian TCGA-36-1577_demographic Alive '-- '-- '-- '-- 15804 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e3059d66-192a-578d-8167-ccefae83a110 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1577_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 156 111 '-- '-- '-- '-- '-- '-- '-- '-- 11.0 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1577_treatment '-- '-- '-- '-- '-- '-- Primary Tumor Field '-- 2250 '-- cGy '-- '-- '-- '-- cfd3536f-c38b-5edf-a9c8-7361ace4c9f7 Adjuvant yes '-- '-- Radiation, External Beam +TCGA-OV e294b940-2828-499c-be24-47ef6c2e9035 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1577 43 false '-- '-- '-- '-- -15804 '-- 0aeca69b-62e8-51ea-b312-dc3e2ba3237c '-- not reported female '-- '-- '-- '-- asian TCGA-36-1577_demographic Alive '-- '-- '-- '-- 15804 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- e3059d66-192a-578d-8167-ccefae83a110 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1577_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 84 28 '-- '-- '-- '-- '-- '-- '-- 3 '-- 248.0 mg '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1577_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 744 '-- mg '-- '-- '-- '-- ee6fcda8-ac96-492a-9b68-5cd3b1ed2d21 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e35b2813-427e-4e83-95f6-4f0281f42a59 Informed Consent 53 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-3P-A9WA 55 false '-- '-- '-- United States -20211 '-- edad4644-d80b-5b6f-9928-cd2b29f1035b '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-3P-A9WA_demographic Alive '-- '-- '-- '-- 20215 '-- '-- '-- '-- MX N0 '-- T2b '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Synchronous primary '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- 8fdd4a53-c065-4923-93c3-1111e4140dab false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- '-- '-- '-- '-- '-- Not Reported '-- '-- TCGA-3P-A9WA_diagnosis2 '-- '-- Uterus, NOS '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-3P-A9WA_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e3f10f8a-e44b-4416-86a8-10cf273b1af1 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV e35b2813-427e-4e83-95f6-4f0281f42a59 Informed Consent 53 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-3P-A9WA 55 false '-- '-- '-- United States -20211 '-- edad4644-d80b-5b6f-9928-cd2b29f1035b '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-3P-A9WA_demographic Alive '-- '-- '-- '-- 20215 '-- '-- '-- '-- MX N0 '-- T2b '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Synchronous primary '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- 8fdd4a53-c065-4923-93c3-1111e4140dab false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- '-- '-- '-- '-- '-- Not Reported '-- '-- TCGA-3P-A9WA_diagnosis2 '-- '-- Uterus, NOS '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-3P-A9WA_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e9a5289c-8b46-4518-b1d4-f825d3f8a4ff '-- no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV e35b2813-427e-4e83-95f6-4f0281f42a59 Informed Consent 53 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-3P-A9WA 55 false '-- '-- '-- United States -20211 '-- edad4644-d80b-5b6f-9928-cd2b29f1035b '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-3P-A9WA_demographic Alive '-- '-- '-- '-- 20215 '-- '-- '-- '-- MX N0 '-- T2b '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Synchronous primary '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- 8fdd4a53-c065-4923-93c3-1111e4140dab false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- '-- '-- '-- '-- '-- Not Reported '-- '-- TCGA-3P-A9WA_diagnosis2 '-- '-- Uterus, NOS '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 54 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-3P-A9WA_treatment6 '-- '-- '-- '-- '-- '-- Uterus '-- '-- '-- '-- '-- '-- '-- '-- f92ff414-5657-40ca-9d28-d0c339b15661 '-- yes '-- '-- Surgery, NOS +TCGA-OV e35b2813-427e-4e83-95f6-4f0281f42a59 Informed Consent 53 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-3P-A9WA 55 false '-- '-- '-- United States -20211 '-- edad4644-d80b-5b6f-9928-cd2b29f1035b '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-3P-A9WA_demographic Alive '-- '-- '-- '-- 20211 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a9e4580c-412c-5325-a91d-50fd125a515b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Dilation and Curettage Procedure '-- '-- '-- 8440/3 '-- '-- '-- '-- '-- '-- Cystadenocarcinoma, NOS '-- '-- no No '-- RX '-- '-- Ovary '-- '-- TCGA-3P-A9WA_diagnosis '-- Yes Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2013 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-3P-A9WA_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5487a273-499a-4b60-9f0b-16106c385025 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV e35b2813-427e-4e83-95f6-4f0281f42a59 Informed Consent 53 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-3P-A9WA 55 false '-- '-- '-- United States -20211 '-- edad4644-d80b-5b6f-9928-cd2b29f1035b '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-3P-A9WA_demographic Alive '-- '-- '-- '-- 20211 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a9e4580c-412c-5325-a91d-50fd125a515b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Dilation and Curettage Procedure '-- '-- '-- 8440/3 '-- '-- '-- '-- '-- '-- Cystadenocarcinoma, NOS '-- '-- no No '-- RX '-- '-- Ovary '-- '-- TCGA-3P-A9WA_diagnosis '-- Yes Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2013 '-- No '-- 212 92 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-3P-A9WA_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- df053a38-d0b5-4cf5-9ac3-b1cf904661f7 '-- yes Complete Response '-- Chemotherapy +TCGA-OV e35b2813-427e-4e83-95f6-4f0281f42a59 Informed Consent 53 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-3P-A9WA 55 false '-- '-- '-- United States -20211 '-- edad4644-d80b-5b6f-9928-cd2b29f1035b '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-3P-A9WA_demographic Alive '-- '-- '-- '-- 20211 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a9e4580c-412c-5325-a91d-50fd125a515b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Dilation and Curettage Procedure '-- '-- '-- 8440/3 '-- '-- '-- '-- '-- '-- Cystadenocarcinoma, NOS '-- '-- no No '-- RX '-- '-- Ovary '-- '-- TCGA-3P-A9WA_diagnosis '-- Yes Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2013 '-- No '-- 212 92 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-3P-A9WA_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f2773402-3591-5a4f-b4ec-53932172e017 '-- yes Complete Response '-- Chemotherapy +TCGA-OV e43d3769-e25f-4fb7-9080-ea26defaf094 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0906 50 false '-- '-- '-- '-- -18383 '-- 2669e329-d864-59c4-b6a0-2629d82ac5ee '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0906_demographic Alive '-- '-- '-- '-- 18383 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 74976cb2-5ac3-5764-a813-40be781e4353 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0906_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 147 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0906_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- 53bebc61-4550-5f45-bb1b-f109e2496117 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e43d3769-e25f-4fb7-9080-ea26defaf094 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0906 50 false '-- '-- '-- '-- -18383 '-- 2669e329-d864-59c4-b6a0-2629d82ac5ee '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0906_demographic Alive '-- '-- '-- '-- 18383 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 74976cb2-5ac3-5764-a813-40be781e4353 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0906_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 147 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0906_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- 5d2f76d6-1761-42dc-b6f2-bb30d355449b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e43d3769-e25f-4fb7-9080-ea26defaf094 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0906 50 false '-- '-- '-- '-- -18383 '-- 2669e329-d864-59c4-b6a0-2629d82ac5ee '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0906_demographic Alive '-- '-- '-- '-- 18383 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 74976cb2-5ac3-5764-a813-40be781e4353 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0906_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0906_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7fc17858-a4f7-4e8d-85cb-1c0a05dd500d Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV e43d3769-e25f-4fb7-9080-ea26defaf094 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0906 50 false '-- '-- '-- '-- -18383 '-- 2669e329-d864-59c4-b6a0-2629d82ac5ee '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0906_demographic Alive '-- '-- '-- '-- 18383 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 74976cb2-5ac3-5764-a813-40be781e4353 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0906_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 147 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0906_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- cf09a65a-765f-48a4-be44-cb61301af5d0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e5a329ec-e50e-4786-901d-b58474f8ea65 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1496 65 false '-- '-- '-- '-- -23993 129 4d5dbb4c-1d7f-5cdf-b9db-1585b9627eb6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1496_demographic Dead '-- '-- '-- '-- 23993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7a1b6225-2e8d-59d5-a142-bc7ed5306fb5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1496_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 33 33 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1496_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1339ccd3-c639-5b24-b8b2-186a748b9abb Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e5a329ec-e50e-4786-901d-b58474f8ea65 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1496 65 false '-- '-- '-- '-- -23993 129 4d5dbb4c-1d7f-5cdf-b9db-1585b9627eb6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1496_demographic Dead '-- '-- '-- '-- 23993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7a1b6225-2e8d-59d5-a142-bc7ed5306fb5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1496_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1496_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2f9b5970-3b7f-42a3-ab40-bdb9b72f3e5e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV e5a329ec-e50e-4786-901d-b58474f8ea65 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1496 65 false '-- '-- '-- '-- -23993 129 4d5dbb4c-1d7f-5cdf-b9db-1585b9627eb6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1496_demographic Dead '-- '-- '-- '-- 23993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 7a1b6225-2e8d-59d5-a142-bc7ed5306fb5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1496_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 33 33 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1496_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 5a6c364b-1dcc-4750-8142-2bcb8db9c98c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e641aed9-1dd8-4c30-b231-f12b20a76df0 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0926 63 false '-- '-- '-- '-- -23307 788 4b183665-721a-5e26-a141-269b36017af8 '-- not reported female '-- '-- '-- '-- white TCGA-10-0926_demographic Dead '-- '-- '-- '-- 23307 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 71ac222a-9ac1-59e1-9ee0-70f90b4db4f0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0926_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 143 8 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0926_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4500 '-- mg '-- '-- '-- '-- 2347024d-46c4-4b07-8934-ffe89e89dbe8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e641aed9-1dd8-4c30-b231-f12b20a76df0 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0926 63 false '-- '-- '-- '-- -23307 788 4b183665-721a-5e26-a141-269b36017af8 '-- not reported female '-- '-- '-- '-- white TCGA-10-0926_demographic Dead '-- '-- '-- '-- 23307 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 71ac222a-9ac1-59e1-9ee0-70f90b4db4f0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0926_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- 273 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0926_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3da69122-0d80-507f-80d5-7c5abfc59d16 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV e641aed9-1dd8-4c30-b231-f12b20a76df0 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0926 63 false '-- '-- '-- '-- -23307 788 4b183665-721a-5e26-a141-269b36017af8 '-- not reported female '-- '-- '-- '-- white TCGA-10-0926_demographic Dead '-- '-- '-- '-- 23307 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 71ac222a-9ac1-59e1-9ee0-70f90b4db4f0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0926_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 143 8 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0926_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 860 '-- mg '-- '-- '-- '-- 59f9bd8d-11dc-4d69-b653-e427394e44c9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e641aed9-1dd8-4c30-b231-f12b20a76df0 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0926 63 false '-- '-- '-- '-- -23307 788 4b183665-721a-5e26-a141-269b36017af8 '-- not reported female '-- '-- '-- '-- white TCGA-10-0926_demographic Dead '-- '-- '-- '-- 23307 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 71ac222a-9ac1-59e1-9ee0-70f90b4db4f0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0926_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 729 290 '-- '-- Recurrent Disease '-- '-- '-- '-- 13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0926_treatment2 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 975 '-- mg '-- '-- '-- '-- abca861c-ffaa-4953-9ab6-14e39e88f66f '-- yes '-- '-- Chemotherapy +TCGA-OV e641aed9-1dd8-4c30-b231-f12b20a76df0 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0926 63 false '-- '-- '-- '-- -23307 788 4b183665-721a-5e26-a141-269b36017af8 '-- not reported female '-- '-- '-- '-- white TCGA-10-0926_demographic Dead '-- '-- '-- '-- 23307 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 71ac222a-9ac1-59e1-9ee0-70f90b4db4f0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0926_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- 232 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0926_treatment5 Recombinant Interleukin-12 '-- '-- '-- '-- '-- '-- '-- 22920 '-- mg '-- '-- '-- '-- af0d1a91-3030-46ef-a3b1-10fbd6440d16 Adjuvant yes '-- '-- Immunotherapy (Including Vaccines) +TCGA-OV e641aed9-1dd8-4c30-b231-f12b20a76df0 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0926 63 false '-- '-- '-- '-- -23307 788 4b183665-721a-5e26-a141-269b36017af8 '-- not reported female '-- '-- '-- '-- white TCGA-10-0926_demographic Dead '-- '-- '-- '-- 23594 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 287 '-- '-- '-- bddcffbd-65a5-42ab-a520-5761286da636 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0926_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0926_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0926_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5b870af1-a48c-4ede-9fde-63e8ddb127ee '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV e641aed9-1dd8-4c30-b231-f12b20a76df0 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0926 63 false '-- '-- '-- '-- -23307 788 4b183665-721a-5e26-a141-269b36017af8 '-- not reported female '-- '-- '-- '-- white TCGA-10-0926_demographic Dead '-- '-- '-- '-- 23594 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 287 '-- '-- '-- bddcffbd-65a5-42ab-a520-5761286da636 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0926_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0926_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0926_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7568fd5b-579a-468e-bc3d-2f54fed13cbf '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV e732f81c-9b7d-44bd-a905-ff53fbed5009 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0768 73 false '-- '-- '-- '-- -26999 1784 966cbbef-f952-52c3-b48d-c694642a69ee '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0768_demographic Dead '-- '-- '-- '-- 26999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d5398208-3c8b-5148-b69e-9f403cbb7786 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0768_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 57 36 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0768_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 151c75bf-68c3-4213-9b6e-dd33808d6557 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e732f81c-9b7d-44bd-a905-ff53fbed5009 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0768 73 false '-- '-- '-- '-- -26999 1784 966cbbef-f952-52c3-b48d-c694642a69ee '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0768_demographic Dead '-- '-- '-- '-- 26999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d5398208-3c8b-5148-b69e-9f403cbb7786 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0768_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0768_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 51fa9a90-8b83-4dc6-8ec1-d6934c2fb6a8 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV e732f81c-9b7d-44bd-a905-ff53fbed5009 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0768 73 false '-- '-- '-- '-- -26999 1784 966cbbef-f952-52c3-b48d-c694642a69ee '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0768_demographic Dead '-- '-- '-- '-- 26999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d5398208-3c8b-5148-b69e-9f403cbb7786 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0768_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 148 78 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0768_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- 9f5ff0e6-3960-49d4-8fb6-ed40245b5721 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e732f81c-9b7d-44bd-a905-ff53fbed5009 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0768 73 false '-- '-- '-- '-- -26999 1784 966cbbef-f952-52c3-b48d-c694642a69ee '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0768_demographic Dead '-- '-- '-- '-- 26999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d5398208-3c8b-5148-b69e-9f403cbb7786 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0768_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 148 78 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0768_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- a48cad23-2a24-4d09-bfab-5217a57ec9f9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e732f81c-9b7d-44bd-a905-ff53fbed5009 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0768 73 false '-- '-- '-- '-- -26999 1784 966cbbef-f952-52c3-b48d-c694642a69ee '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0768_demographic Dead '-- '-- '-- '-- 26999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d5398208-3c8b-5148-b69e-9f403cbb7786 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0768_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 148 78 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0768_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- b31b0776-fe73-5a8b-ae73-4dc7822bd957 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e732f81c-9b7d-44bd-a905-ff53fbed5009 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0768 73 false '-- '-- '-- '-- -26999 1784 966cbbef-f952-52c3-b48d-c694642a69ee '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0768_demographic Dead '-- '-- '-- '-- 26999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d5398208-3c8b-5148-b69e-9f403cbb7786 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0768_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 57 36 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0768_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- b64a1235-0040-4df5-97f7-2faf1babbed2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e732f81c-9b7d-44bd-a905-ff53fbed5009 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0768 73 false '-- '-- '-- '-- -26999 1784 966cbbef-f952-52c3-b48d-c694642a69ee '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0768_demographic Dead '-- '-- '-- '-- 27397 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 398 '-- '-- '-- d5fbd196-d1ef-42ac-99e1-5769fa312072 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0768_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0768_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 17946 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1221 '-- '-- '-- 05b21b27-5b8b-4cfc-9e24-c2adcd31a2ed false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1514_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1514_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1514_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 583f8f13-68fe-4363-84a9-845f71857dfd '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 17946 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1221 '-- '-- '-- 05b21b27-5b8b-4cfc-9e24-c2adcd31a2ed false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1514_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1514_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1514_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b046b9c7-204d-43b6-8d90-fd8134b47310 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 16725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 79a5c305-99a7-5b90-b77c-918193fb98fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1514_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1587 1525 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1514_treatment3 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- 336 '-- mg '-- '-- '-- '-- 2cf64766-16e9-48a7-ae63-33d797e55478 '-- yes '-- '-- Chemotherapy +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 16725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 79a5c305-99a7-5b90-b77c-918193fb98fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1514_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1514_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2e5f6377-31b2-43fc-b739-777f9c86d311 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 16725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 79a5c305-99a7-5b90-b77c-918193fb98fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1514_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 185 126 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-04-1514_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 4412c714-d6b9-48d1-bd93-061e575f2419 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 16725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 79a5c305-99a7-5b90-b77c-918193fb98fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1514_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 185 126 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-04-1514_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 333 '-- mg '-- '-- '-- '-- 4e5f80d0-410c-43e0-9cbe-a8ef1b2b72a7 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 16725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 79a5c305-99a7-5b90-b77c-918193fb98fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1514_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1434 1372 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1514_treatment12 Patupilone '-- '-- '-- '-- '-- '-- '-- 51 '-- mg '-- '-- '-- '-- 5e148176-5b7a-44a0-bf80-4b3a52765633 '-- yes '-- '-- Chemotherapy +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 16725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 79a5c305-99a7-5b90-b77c-918193fb98fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1514_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1342 1221 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1514_treatment14 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 685afe77-7408-43a2-a680-6b9aee490ad3 '-- yes '-- '-- Chemotherapy +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 16725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 79a5c305-99a7-5b90-b77c-918193fb98fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1514_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1342 1221 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1514_treatment5 Docetaxel '-- '-- '-- '-- '-- '-- '-- 665 '-- mg '-- '-- '-- '-- 7186afbf-dd50-4b7a-80ed-81f8e41b5a30 '-- yes '-- '-- Chemotherapy +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 16725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 79a5c305-99a7-5b90-b77c-918193fb98fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1514_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1495 1434 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1514_treatment6 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 201 '-- mg '-- '-- '-- '-- 7d09e2dc-879b-4646-9176-9a2ee8087bd3 '-- yes '-- '-- Chemotherapy +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 16725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 79a5c305-99a7-5b90-b77c-918193fb98fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1514_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 126 34 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-04-1514_treatment10 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 494 '-- mg '-- '-- '-- '-- 92ae1d51-49c0-4eb5-930e-7110e63e6197 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 16725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 79a5c305-99a7-5b90-b77c-918193fb98fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1514_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1676 1615 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1514_treatment9 Cisplatin '-- '-- '-- '-- '-- '-- '-- 292 '-- mg '-- '-- '-- '-- abc927bd-b785-4232-bd90-84b300005969 '-- yes '-- '-- Chemotherapy +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 16725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 79a5c305-99a7-5b90-b77c-918193fb98fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1514_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 185 34 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1514_treatment13 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1112 '-- mg '-- '-- '-- '-- adc227f9-0aa9-4bc9-9d59-4a4e47c4c626 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 16725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 79a5c305-99a7-5b90-b77c-918193fb98fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1514_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1676 1615 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1514_treatment11 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 7792 '-- mg '-- '-- '-- '-- c3d7863e-934a-4667-b476-baf133b00de8 '-- yes '-- '-- Chemotherapy +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 16725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 79a5c305-99a7-5b90-b77c-918193fb98fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1514_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1587 1525 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1514_treatment8 Topotecan '-- '-- '-- '-- '-- '-- '-- 34 '-- mg '-- '-- '-- '-- c9c5d82e-3566-4b81-a30a-fcff825eb048 '-- yes '-- '-- Chemotherapy +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 16725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 79a5c305-99a7-5b90-b77c-918193fb98fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1514_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1587 1464 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1514_treatment7 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 1750 '-- mg '-- '-- '-- '-- d530dc0c-4e53-4c12-b567-000472b7f6fb '-- yes '-- '-- Chemotherapy +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 16725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 79a5c305-99a7-5b90-b77c-918193fb98fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1514_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 126 34 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-04-1514_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 617 '-- mg '-- '-- '-- '-- f647827c-59b6-586c-b904-2f635ea833ac Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a60c79bd-b5b3-4563-a7d2-dcde2222ecdc false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1514_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1514_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1514_treatment18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9f6093e2-67d7-4b1c-9d4a-8486dd05f5f7 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a60c79bd-b5b3-4563-a7d2-dcde2222ecdc false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1514_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1514_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1514_treatment19 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cc776e5e-4cea-4996-bcf8-be3027153333 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a60c79bd-b5b3-4563-a7d2-dcde2222ecdc false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1514_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1514_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1284 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1514_treatment20 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d4ed50a9-110c-45f6-8f7e-357cb1fb5c85 '-- yes '-- '-- Surgery, NOS +TCGA-OV e978a457-92ff-4eab-b759-ec6e74d973e8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2350 44 false '-- '-- '-- '-- '-- 679 acbb0dbd-a668-5906-9c1c-4d880389bda6 '-- not reported female '-- '-- '-- '-- not reported TCGA-59-2350_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 211 '-- '-- '-- 12541090-8820-409f-b5de-201518523efe false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-59-2350_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-59-2350_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV e978a457-92ff-4eab-b759-ec6e74d973e8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2350 44 false '-- '-- '-- '-- '-- 679 acbb0dbd-a668-5906-9c1c-4d880389bda6 '-- not reported female '-- '-- '-- '-- not reported TCGA-59-2350_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ad6e91d2-df71-5fea-b6c5-59d3ea208c19 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-59-2350_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV e978a457-92ff-4eab-b759-ec6e74d973e8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2350 44 false '-- '-- '-- '-- '-- 679 acbb0dbd-a668-5906-9c1c-4d880389bda6 '-- not reported female '-- '-- '-- '-- not reported TCGA-59-2350_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cf0c4acf-6b1b-4e14-835a-21b269717653 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-59-2350_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-59-2350_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 211 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-2350_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 74ecd533-9738-40ac-a0e5-1ef60656e020 '-- yes '-- '-- Surgery, NOS +TCGA-OV e9b5336e-d724-4e7d-8c81-1147abd0a80d Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis Yes Ovary TCGA-04-1519 48 false '-- '-- '-- '-- -17671 '-- 3f483df1-55d7-5848-ad8c-8ba70f3f0607 '-- not reported female '-- '-- '-- '-- not reported TCGA-04-1519_demographic Alive '-- '-- '-- '-- 17671 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 942ad6a8-7831-5c90-9f54-5783643971c4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1519_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1519_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cc88078d-f903-5f2e-8c76-a5404d8c8966 Adjuvant unknown '-- '-- Radiation Therapy, NOS +TCGA-OV ea605be2-6578-4e01-8ec3-bbd84c0b7f1d Informed Consent 1071 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2053 72 false '-- '-- '-- '-- -26433 '-- bb80c4c4-c773-51f5-99e1-61f3b1610405 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2053_demographic Alive '-- '-- '-- '-- 26433 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0517938d-2b87-5aae-a33c-e315635ccbe5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2053_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2053_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 436eb7e2-6c39-4450-9eed-5d5f6f2c2924 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ea605be2-6578-4e01-8ec3-bbd84c0b7f1d Informed Consent 1071 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2053 72 false '-- '-- '-- '-- -26433 '-- bb80c4c4-c773-51f5-99e1-61f3b1610405 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2053_demographic Alive '-- '-- '-- '-- 26433 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0517938d-2b87-5aae-a33c-e315635ccbe5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2053_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 138 34 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2053_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 727de4af-4e11-5739-930d-233dbc34ad1f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ea605be2-6578-4e01-8ec3-bbd84c0b7f1d Informed Consent 1071 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2053 72 false '-- '-- '-- '-- -26433 '-- bb80c4c4-c773-51f5-99e1-61f3b1610405 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2053_demographic Alive '-- '-- '-- '-- 26433 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0517938d-2b87-5aae-a33c-e315635ccbe5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2053_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 138 34 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2053_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- cb331bbc-43e2-4be5-82ab-fc5c62265858 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ea6405c4-0fe4-4f37-bef2-275072f91e39 Informed Consent 249 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2056 62 false '-- '-- '-- '-- -22864 '-- 639a1216-bb98-5a39-8290-2bc82db55e29 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-09-2056_demographic Alive '-- '-- '-- '-- 22864 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 70e65ccc-6f17-52fe-a1e7-1f828967cdaf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2056_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2056_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 27b20fb0-2d59-4b6f-9090-999dd23150d8 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ea6405c4-0fe4-4f37-bef2-275072f91e39 Informed Consent 249 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2056 62 false '-- '-- '-- '-- -22864 '-- 639a1216-bb98-5a39-8290-2bc82db55e29 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-09-2056_demographic Alive '-- '-- '-- '-- 22864 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 70e65ccc-6f17-52fe-a1e7-1f828967cdaf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2056_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 147 25 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2056_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 58e398e1-041f-5ea9-b2bc-71395883c72d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ea6405c4-0fe4-4f37-bef2-275072f91e39 Informed Consent 249 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2056 62 false '-- '-- '-- '-- -22864 '-- 639a1216-bb98-5a39-8290-2bc82db55e29 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-09-2056_demographic Alive '-- '-- '-- '-- 22864 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 70e65ccc-6f17-52fe-a1e7-1f828967cdaf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2056_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 147 25 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2056_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5b53e0df-2de7-48f1-83bc-8d30304dd3ad Adjuvant yes '-- '-- Chemotherapy +TCGA-OV eb7c3b35-7a5e-4621-b31f-9775c51f9a23 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2098 62 false '-- '-- '-- '-- -22876 '-- cf4091c2-42a1-5de2-ae37-e74fa4824373 '-- not reported female '-- '-- '-- '-- white TCGA-61-2098_demographic Alive '-- '-- '-- '-- 22876 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 00f8ee1c-618f-530e-8d64-954aff8478aa true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2098_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2098_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 07c803a9-f6fe-420c-8d6c-421e9267dd79 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV eb7c3b35-7a5e-4621-b31f-9775c51f9a23 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2098 62 false '-- '-- '-- '-- -22876 '-- cf4091c2-42a1-5de2-ae37-e74fa4824373 '-- not reported female '-- '-- '-- '-- white TCGA-61-2098_demographic Alive '-- '-- '-- '-- 22876 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 00f8ee1c-618f-530e-8d64-954aff8478aa true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2098_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 145 14 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2098_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2988bc18-b975-53a3-b1b9-338cb73f5f51 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV eb7c3b35-7a5e-4621-b31f-9775c51f9a23 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2098 62 false '-- '-- '-- '-- -22876 '-- cf4091c2-42a1-5de2-ae37-e74fa4824373 '-- not reported female '-- '-- '-- '-- white TCGA-61-2098_demographic Alive '-- '-- '-- '-- 22876 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 00f8ee1c-618f-530e-8d64-954aff8478aa true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2098_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 145 14 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2098_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 859b65b1-3911-417b-bf10-5e751aef53a5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ebe677e6-94b6-45be-a58d-eaae4cf63d12 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2078 66 false '-- '-- '-- '-- -24223 '-- ff617d73-37ba-5c86-9928-ca9ee553692f '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2078_demographic Alive '-- '-- '-- '-- 24223 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2d20c4d9-3e33-5e7a-90e1-7a4f1dbae09a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2078_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 149 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2078_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 3240 '-- mg '-- '-- '-- '-- 17e4fc0d-a5b6-5818-bdc4-8e2779727abd Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ebe677e6-94b6-45be-a58d-eaae4cf63d12 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2078 66 false '-- '-- '-- '-- -24223 '-- ff617d73-37ba-5c86-9928-ca9ee553692f '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2078_demographic Alive '-- '-- '-- '-- 24223 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2d20c4d9-3e33-5e7a-90e1-7a4f1dbae09a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2078_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2078_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8cc24f53-23fc-4940-9e5c-c8bb120448b3 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ebe677e6-94b6-45be-a58d-eaae4cf63d12 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2078 66 false '-- '-- '-- '-- -24223 '-- ff617d73-37ba-5c86-9928-ca9ee553692f '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2078_demographic Alive '-- '-- '-- '-- 24223 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 2d20c4d9-3e33-5e7a-90e1-7a4f1dbae09a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2078_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 149 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2078_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1980 '-- mg '-- '-- '-- '-- 94101f76-ccda-47fe-9a21-ed770e8c5da3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ed21615c-0de3-421c-9e8d-8996026c4431 Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1584 47 false '-- '-- '-- '-- -17263 '-- 7330b127-a51c-583d-a55b-d390f16ea0c2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1584_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0fa8841b-323a-44df-93f5-deb6fab06394 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-57-1584_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-57-1584_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 532 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1584_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8d324b0b-68c6-4b1c-813e-158b65799c06 '-- yes '-- '-- Surgery, NOS +TCGA-OV ed21615c-0de3-421c-9e8d-8996026c4431 Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1584 47 false '-- '-- '-- '-- -17263 '-- 7330b127-a51c-583d-a55b-d390f16ea0c2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1584_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0fa8841b-323a-44df-93f5-deb6fab06394 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-57-1584_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-57-1584_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1584_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9d6b8912-62bf-49f4-bc6e-a9b7b31b27af '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ed21615c-0de3-421c-9e8d-8996026c4431 Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1584 47 false '-- '-- '-- '-- -17263 '-- 7330b127-a51c-583d-a55b-d390f16ea0c2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1584_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0fa8841b-323a-44df-93f5-deb6fab06394 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-57-1584_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-57-1584_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1584_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f7f40dc2-3ba5-490e-af78-28a1aaa0b7e1 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV ed21615c-0de3-421c-9e8d-8996026c4431 Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1584 47 false '-- '-- '-- '-- -17263 '-- 7330b127-a51c-583d-a55b-d390f16ea0c2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1584_demographic Alive '-- '-- '-- '-- 17263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6d0c4029-6165-5461-9759-8581bfb6c538 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1584_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 573 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-57-1584_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 415882ce-7c35-4122-a330-6ab8d69b6c2d '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV ed21615c-0de3-421c-9e8d-8996026c4431 Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1584 47 false '-- '-- '-- '-- -17263 '-- 7330b127-a51c-583d-a55b-d390f16ea0c2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1584_demographic Alive '-- '-- '-- '-- 17263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6d0c4029-6165-5461-9759-8581bfb6c538 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1584_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1584_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c069213e-d9ee-4de8-a742-edb56fa4a99c Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ed21615c-0de3-421c-9e8d-8996026c4431 Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1584 47 false '-- '-- '-- '-- -17263 '-- 7330b127-a51c-583d-a55b-d390f16ea0c2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1584_demographic Alive '-- '-- '-- '-- 17263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6d0c4029-6165-5461-9759-8581bfb6c538 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1584_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 573 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-57-1584_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- ff36a589-56d2-535a-9593-1cd26c63b156 '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV ed21615c-0de3-421c-9e8d-8996026c4431 Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1584 47 false '-- '-- '-- '-- -17263 '-- 7330b127-a51c-583d-a55b-d390f16ea0c2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1584_demographic Alive '-- '-- '-- '-- 17793 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 530 '-- '-- '-- ab4e6ff6-1e67-46c8-9dc1-38652818d3ba false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-57-1584_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-57-1584_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1584_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 41239417-2fc5-4f74-be92-7ffa1e4cfed6 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ed21615c-0de3-421c-9e8d-8996026c4431 Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1584 47 false '-- '-- '-- '-- -17263 '-- 7330b127-a51c-583d-a55b-d390f16ea0c2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1584_demographic Alive '-- '-- '-- '-- 17793 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 530 '-- '-- '-- ab4e6ff6-1e67-46c8-9dc1-38652818d3ba false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-57-1584_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-57-1584_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1584_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 46567458-02a2-4024-964d-b208cd3b6808 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV ee0a4a13-613e-4c5d-96c3-8083a013702d '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0890 56 false '-- '-- '-- '-- -20770 '-- 6960bb68-8fae-5be5-9d7e-982396e47b8d '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0890_demographic Alive '-- '-- '-- '-- 20770 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a88cf420-1c97-5791-903a-e746648a710e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0890_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0890_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 27d66f61-05ad-4f02-ba95-7982abf1c196 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ee0a4a13-613e-4c5d-96c3-8083a013702d '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0890 56 false '-- '-- '-- '-- -20770 '-- 6960bb68-8fae-5be5-9d7e-982396e47b8d '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0890_demographic Alive '-- '-- '-- '-- 20770 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a88cf420-1c97-5791-903a-e746648a710e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0890_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 235 15 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0890_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2ca3a348-8e6c-5023-8007-6ba8914c17bc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ee0a4a13-613e-4c5d-96c3-8083a013702d '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0890 56 false '-- '-- '-- '-- -20770 '-- 6960bb68-8fae-5be5-9d7e-982396e47b8d '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0890_demographic Alive '-- '-- '-- '-- 20770 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- a88cf420-1c97-5791-903a-e746648a710e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0890_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 235 15 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0890_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- cc27f9c2-e3aa-42eb-8daa-f765372cb45d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV eeb9d147-608d-4692-8adf-2f601d23a8ff Informed Consent -17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1574 48 false '-- '-- '-- '-- -17847 '-- 46847140-fc89-5fa9-934e-d1c3ec70f956 '-- not reported female '-- '-- '-- '-- asian TCGA-36-1574_demographic Alive '-- '-- '-- '-- 17847 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c26a3c0e-765f-5b6f-be27-9e886aeaad31 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1574_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1574_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 68db22fe-7b9b-4009-8ea8-a2bc99445a65 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV eeb9d147-608d-4692-8adf-2f601d23a8ff Informed Consent -17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1574 48 false '-- '-- '-- '-- -17847 '-- 46847140-fc89-5fa9-934e-d1c3ec70f956 '-- not reported female '-- '-- '-- '-- asian TCGA-36-1574_demographic Alive '-- '-- '-- '-- 17847 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c26a3c0e-765f-5b6f-be27-9e886aeaad31 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1574_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 204 15 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1574_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cf439282-6042-4e32-9385-9a871347dca3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV eeb9d147-608d-4692-8adf-2f601d23a8ff Informed Consent -17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1574 48 false '-- '-- '-- '-- -17847 '-- 46847140-fc89-5fa9-934e-d1c3ec70f956 '-- not reported female '-- '-- '-- '-- asian TCGA-36-1574_demographic Alive '-- '-- '-- '-- 17847 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c26a3c0e-765f-5b6f-be27-9e886aeaad31 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1574_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 204 15 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1574_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fa6eed8c-3187-56b6-83a7-e6424af3c8ae Adjuvant yes '-- '-- Chemotherapy +TCGA-OV eeb9d147-608d-4692-8adf-2f601d23a8ff Informed Consent -17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1574 48 false '-- '-- '-- '-- -17847 '-- 46847140-fc89-5fa9-934e-d1c3ec70f956 '-- not reported female '-- '-- '-- '-- asian TCGA-36-1574_demographic Alive '-- '-- '-- '-- 18495 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 648 '-- '-- '-- f9cc14f5-985d-4db4-a7b2-6fe6d67cb091 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-36-1574_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-36-1574_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1574_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 17ecb53e-b797-481f-a741-f99cdadbea3d '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV eeb9d147-608d-4692-8adf-2f601d23a8ff Informed Consent -17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1574 48 false '-- '-- '-- '-- -17847 '-- 46847140-fc89-5fa9-934e-d1c3ec70f956 '-- not reported female '-- '-- '-- '-- asian TCGA-36-1574_demographic Alive '-- '-- '-- '-- 18495 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 648 '-- '-- '-- f9cc14f5-985d-4db4-a7b2-6fe6d67cb091 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-36-1574_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-36-1574_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1574_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 30baa3be-5edf-4f18-b241-e789ed03a224 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV eec69ea9-ceb8-456a-aff4-41fb8a261e36 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2261 76 false '-- '-- '-- '-- -27897 24 ff97c3b6-41e4-5f1e-a06b-1dfb04a62127 '-- not reported female '-- '-- '-- '-- white TCGA-24-2261_demographic Dead '-- '-- '-- '-- 27897 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 98810cc1-7704-5e6c-8b7c-fbd3eaa7803b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2261_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2261_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6ca13c64-9d4e-436b-9258-49ce72526334 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV eec69ea9-ceb8-456a-aff4-41fb8a261e36 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2261 76 false '-- '-- '-- '-- -27897 24 ff97c3b6-41e4-5f1e-a06b-1dfb04a62127 '-- not reported female '-- '-- '-- '-- white TCGA-24-2261_demographic Dead '-- '-- '-- '-- 27897 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 98810cc1-7704-5e6c-8b7c-fbd3eaa7803b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2261_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2261_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- be9eddb1-e95e-5731-90c8-be143d3f79d6 Adjuvant no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV ef57bc45-858f-4d4e-8407-b7eadfa43be5 Informed Consent 3653 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2077 45 false '-- '-- '-- '-- -16552 '-- 0710e66b-9d53-5515-b2cb-efd06694efa5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-2077_demographic Alive '-- '-- '-- '-- 16552 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 11764381-ed45-5beb-b0c8-dec64df1b651 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2077_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1622 1622 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2077_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 275 '-- mg '-- '-- '-- '-- 1fc0c417-516c-472e-a684-b7880cadbe50 '-- yes '-- '-- Chemotherapy +TCGA-OV ef57bc45-858f-4d4e-8407-b7eadfa43be5 Informed Consent 3653 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2077 45 false '-- '-- '-- '-- -16552 '-- 0710e66b-9d53-5515-b2cb-efd06694efa5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-2077_demographic Alive '-- '-- '-- '-- 16552 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 11764381-ed45-5beb-b0c8-dec64df1b651 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2077_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1758 1653 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2077_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2206 '-- mg '-- '-- '-- '-- 8ded9bb3-ca7f-413f-8f27-598d4b792898 '-- yes '-- '-- Chemotherapy +TCGA-OV ef57bc45-858f-4d4e-8407-b7eadfa43be5 Informed Consent 3653 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2077 45 false '-- '-- '-- '-- -16552 '-- 0710e66b-9d53-5515-b2cb-efd06694efa5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-2077_demographic Alive '-- '-- '-- '-- 16552 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 11764381-ed45-5beb-b0c8-dec64df1b651 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2077_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2077_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8e36b9d2-5015-4d75-9e6c-00f64f833902 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ef57bc45-858f-4d4e-8407-b7eadfa43be5 Informed Consent 3653 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2077 45 false '-- '-- '-- '-- -16552 '-- 0710e66b-9d53-5515-b2cb-efd06694efa5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-2077_demographic Alive '-- '-- '-- '-- 16552 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 11764381-ed45-5beb-b0c8-dec64df1b651 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2077_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 155 22 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2077_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 751 '-- mg '-- '-- '-- '-- b3dafbc4-eb4d-5509-9216-2626b9466861 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ef57bc45-858f-4d4e-8407-b7eadfa43be5 Informed Consent 3653 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2077 45 false '-- '-- '-- '-- -16552 '-- 0710e66b-9d53-5515-b2cb-efd06694efa5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-2077_demographic Alive '-- '-- '-- '-- 16552 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 11764381-ed45-5beb-b0c8-dec64df1b651 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2077_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1622 1622 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2077_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 460 '-- mg '-- '-- '-- '-- c45adac0-26bf-4fc7-af9f-115ae721985c '-- yes '-- '-- Chemotherapy +TCGA-OV ef57bc45-858f-4d4e-8407-b7eadfa43be5 Informed Consent 3653 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2077 45 false '-- '-- '-- '-- -16552 '-- 0710e66b-9d53-5515-b2cb-efd06694efa5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-2077_demographic Alive '-- '-- '-- '-- 16552 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 11764381-ed45-5beb-b0c8-dec64df1b651 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2077_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1758 1653 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2077_treatment5 Docetaxel '-- '-- '-- '-- '-- '-- '-- 600 '-- mg '-- '-- '-- '-- dcca4279-b91b-4bf7-9313-453b52df4e10 '-- yes '-- '-- Chemotherapy +TCGA-OV ef57bc45-858f-4d4e-8407-b7eadfa43be5 Informed Consent 3653 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2077 45 false '-- '-- '-- '-- -16552 '-- 0710e66b-9d53-5515-b2cb-efd06694efa5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-2077_demographic Alive '-- '-- '-- '-- 16552 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 11764381-ed45-5beb-b0c8-dec64df1b651 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2077_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 155 22 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2077_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3300 '-- mg '-- '-- '-- '-- e98a1cf7-811b-462d-8d2e-00410e8df3d3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ef57bc45-858f-4d4e-8407-b7eadfa43be5 Informed Consent 3653 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2077 45 false '-- '-- '-- '-- -16552 '-- 0710e66b-9d53-5515-b2cb-efd06694efa5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-2077_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 67adbca3-04f6-4857-a3ae-e1b4df0b1bd0 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-2077_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-2077_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2077_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3888e50d-ff19-44bc-8657-2f1de4416313 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV ef57bc45-858f-4d4e-8407-b7eadfa43be5 Informed Consent 3653 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2077 45 false '-- '-- '-- '-- -16552 '-- 0710e66b-9d53-5515-b2cb-efd06694efa5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-2077_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 67adbca3-04f6-4857-a3ae-e1b4df0b1bd0 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-2077_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-2077_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2077_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- af2a92b8-97c1-4863-b64b-a308b377729e '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ef57bc45-858f-4d4e-8407-b7eadfa43be5 Informed Consent 3653 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2077 45 false '-- '-- '-- '-- -16552 '-- 0710e66b-9d53-5515-b2cb-efd06694efa5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-2077_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 67adbca3-04f6-4857-a3ae-e1b4df0b1bd0 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-2077_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-2077_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1345 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2077_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b4692742-e016-4919-87bb-54b2739dc1bf '-- yes '-- '-- Surgery, NOS +TCGA-OV ef57bc45-858f-4d4e-8407-b7eadfa43be5 Informed Consent 3653 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2077 45 false '-- '-- '-- '-- -16552 '-- 0710e66b-9d53-5515-b2cb-efd06694efa5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-2077_demographic Alive '-- '-- '-- '-- 17784 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1232 '-- '-- '-- cc11ab82-a810-4d00-b99a-100af23db921 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-2077_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-2077_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2077_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 191ebf99-5d88-4ec2-ac0f-23cd4db55895 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV ef57bc45-858f-4d4e-8407-b7eadfa43be5 Informed Consent 3653 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2077 45 false '-- '-- '-- '-- -16552 '-- 0710e66b-9d53-5515-b2cb-efd06694efa5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-2077_demographic Alive '-- '-- '-- '-- 17784 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1232 '-- '-- '-- cc11ab82-a810-4d00-b99a-100af23db921 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-2077_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-2077_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2077_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9a4b245e-06b3-40e8-8dd3-7ee6b6f4582e '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ef5e85cf-2d82-4d52-a02c-fed5c76e4cec Informed Consent -26 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1581 63 false '-- '-- '-- '-- -23272 '-- 45b3ff78-a16c-5228-a88f-e0777a316c9f '-- not reported female '-- '-- '-- '-- white TCGA-36-1581_demographic Alive '-- '-- '-- '-- 23272 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 241ae640-2769-5065-97aa-05298c7b1b9b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1581_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 141 29 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1581_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 4639 '-- mg '-- '-- '-- '-- 0adc4703-4ee1-52fa-b1ca-e461ad689029 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ef5e85cf-2d82-4d52-a02c-fed5c76e4cec Informed Consent -26 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1581 63 false '-- '-- '-- '-- -23272 '-- 45b3ff78-a16c-5228-a88f-e0777a316c9f '-- not reported female '-- '-- '-- '-- white TCGA-36-1581_demographic Alive '-- '-- '-- '-- 23272 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 241ae640-2769-5065-97aa-05298c7b1b9b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1581_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1581_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 186d095c-78c0-4f35-bdb3-aea0ece8763e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ef5e85cf-2d82-4d52-a02c-fed5c76e4cec Informed Consent -26 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1581 63 false '-- '-- '-- '-- -23272 '-- 45b3ff78-a16c-5228-a88f-e0777a316c9f '-- not reported female '-- '-- '-- '-- white TCGA-36-1581_demographic Alive '-- '-- '-- '-- 23272 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 241ae640-2769-5065-97aa-05298c7b1b9b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1581_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 141 29 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1581_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2313 '-- mg '-- '-- '-- '-- 72788b35-1c77-430b-b38f-deac68b164c6 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ef5e85cf-2d82-4d52-a02c-fed5c76e4cec Informed Consent -26 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1581 63 false '-- '-- '-- '-- -23272 '-- 45b3ff78-a16c-5228-a88f-e0777a316c9f '-- not reported female '-- '-- '-- '-- white TCGA-36-1581_demographic Alive '-- '-- '-- '-- 23974 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 702 '-- '-- '-- eed15e9e-9a4f-4a5f-a9ae-8d8db9ede639 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-36-1581_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-36-1581_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1581_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 746a847b-00ba-4204-80ac-62f8239d491c '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV ef5e85cf-2d82-4d52-a02c-fed5c76e4cec Informed Consent -26 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1581 63 false '-- '-- '-- '-- -23272 '-- 45b3ff78-a16c-5228-a88f-e0777a316c9f '-- not reported female '-- '-- '-- '-- white TCGA-36-1581_demographic Alive '-- '-- '-- '-- 23974 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 702 '-- '-- '-- eed15e9e-9a4f-4a5f-a9ae-8d8db9ede639 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-36-1581_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-36-1581_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1581_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 842ee8e6-968b-461d-99ed-81e3ba59bdaa '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ef653772-e5d2-46ec-8610-f81d75d7353c Informed Consent -23 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1900 51 false '-- '-- '-- '-- -18963 '-- 22cfffda-6e29-57b4-9e79-7c5e73abe719 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-61-1900_demographic Alive '-- '-- '-- '-- 18963 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c6b4d84c-73bf-54db-b28c-a0e675a19216 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1900_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 76 35 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-1900_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 75 '-- mg '-- '-- '-- '-- 50d4f01f-a356-572e-8d49-b21789af5f5b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ef653772-e5d2-46ec-8610-f81d75d7353c Informed Consent -23 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1900 51 false '-- '-- '-- '-- -18963 '-- 22cfffda-6e29-57b4-9e79-7c5e73abe719 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-61-1900_demographic Alive '-- '-- '-- '-- 18963 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c6b4d84c-73bf-54db-b28c-a0e675a19216 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1900_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1900_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 675fec84-a1c9-42c2-a4c4-923784df645b Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ef653772-e5d2-46ec-8610-f81d75d7353c Informed Consent -23 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1900 51 false '-- '-- '-- '-- -18963 '-- 22cfffda-6e29-57b4-9e79-7c5e73abe719 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-61-1900_demographic Alive '-- '-- '-- '-- 18963 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c6b4d84c-73bf-54db-b28c-a0e675a19216 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1900_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 76 35 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-1900_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 250 '-- mg '-- '-- '-- '-- b4f25a47-e370-40c1-b662-22fae2723eec Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ef653772-e5d2-46ec-8610-f81d75d7353c Informed Consent -23 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1900 51 false '-- '-- '-- '-- -18963 '-- 22cfffda-6e29-57b4-9e79-7c5e73abe719 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-61-1900_demographic Alive '-- '-- '-- '-- 18963 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- c6b4d84c-73bf-54db-b28c-a0e675a19216 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1900_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 76 35 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-1900_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 135 '-- mg '-- '-- '-- '-- f39a623b-d142-4681-bf05-214dcd67cb7b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f007fa7a-7da9-4cb0-8aea-623af1a122c5 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1686 75 false '-- '-- '-- '-- -27588 '-- 197ab3f9-6726-5731-bfc7-6b08ced01e17 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1686_demographic Alive '-- '-- '-- '-- 27588 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1ed1ad50-2936-5821-988a-f9c6e3f2728f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1686_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 131 26 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-1686_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 216371a2-e571-542c-bb72-ee0f63f7346e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f007fa7a-7da9-4cb0-8aea-623af1a122c5 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1686 75 false '-- '-- '-- '-- -27588 '-- 197ab3f9-6726-5731-bfc7-6b08ced01e17 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1686_demographic Alive '-- '-- '-- '-- 27588 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1ed1ad50-2936-5821-988a-f9c6e3f2728f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1686_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 131 26 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-1686_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 726f0f27-86ba-4ca4-bc53-c607f8ce649d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f007fa7a-7da9-4cb0-8aea-623af1a122c5 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1686 75 false '-- '-- '-- '-- -27588 '-- 197ab3f9-6726-5731-bfc7-6b08ced01e17 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1686_demographic Alive '-- '-- '-- '-- 27588 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1ed1ad50-2936-5821-988a-f9c6e3f2728f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1686_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-20-1686_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 99f01ed4-9620-4c8a-a46f-0eb787128ac6 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f0c353fd-947c-41e2-b643-3ecc0d69796c Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1347 81 false '-- '-- '-- '-- -29695 '-- cef50119-cfb0-5a18-84b4-6b9a87c26e3f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1347_demographic Alive '-- '-- '-- '-- 29695 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 603b066e-4598-53b0-8ea1-c4772b8e2165 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1347_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 173 19 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1347_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2400 '-- mg '-- '-- '-- '-- 4ae6ca26-c093-4f6d-a861-b02fad2ca673 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f0c353fd-947c-41e2-b643-3ecc0d69796c Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1347 81 false '-- '-- '-- '-- -29695 '-- cef50119-cfb0-5a18-84b4-6b9a87c26e3f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1347_demographic Alive '-- '-- '-- '-- 29695 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 603b066e-4598-53b0-8ea1-c4772b8e2165 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1347_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 173 19 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1347_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1764 '-- mg '-- '-- '-- '-- 767a0eff-c49f-561c-9def-532f6d7b1aeb Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f0c353fd-947c-41e2-b643-3ecc0d69796c Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1347 81 false '-- '-- '-- '-- -29695 '-- cef50119-cfb0-5a18-84b4-6b9a87c26e3f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1347_demographic Alive '-- '-- '-- '-- 29695 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 603b066e-4598-53b0-8ea1-c4772b8e2165 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1347_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 173 19 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1347_treatment4 Docetaxel '-- '-- '-- '-- '-- '-- '-- 200 '-- mg '-- '-- '-- '-- 96a0affe-342c-445d-90cf-a6212780da1b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f0c353fd-947c-41e2-b643-3ecc0d69796c Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1347 81 false '-- '-- '-- '-- -29695 '-- cef50119-cfb0-5a18-84b4-6b9a87c26e3f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1347_demographic Alive '-- '-- '-- '-- 29695 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 603b066e-4598-53b0-8ea1-c4772b8e2165 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1347_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1347_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d4a03c3a-8c0c-4f2b-97ff-078a9a0f98af Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f0c353fd-947c-41e2-b643-3ecc0d69796c Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1347 81 false '-- '-- '-- '-- -29695 '-- cef50119-cfb0-5a18-84b4-6b9a87c26e3f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1347_demographic Alive '-- '-- '-- '-- 29695 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 603b066e-4598-53b0-8ea1-c4772b8e2165 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1347_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 173 19 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1347_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 750 '-- mg '-- '-- '-- '-- d7846e08-b0c6-4b33-b3a8-bd1c3553084a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f2dcf4cc-609d-4532-a90d-6ae2bbb53365 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1407 51 false '-- '-- '-- '-- -18896 '-- ce1b2666-1364-5381-ae68-062a3cc7e5d5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1407_demographic Alive '-- '-- '-- '-- 18896 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3b851cf3-1472-5cb5-8f7a-4543fadcd62d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1407_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 184 42 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1407_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 4f45a2d2-8d3a-4e75-8279-2659fa84efc4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f2dcf4cc-609d-4532-a90d-6ae2bbb53365 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1407 51 false '-- '-- '-- '-- -18896 '-- ce1b2666-1364-5381-ae68-062a3cc7e5d5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1407_demographic Alive '-- '-- '-- '-- 18896 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3b851cf3-1472-5cb5-8f7a-4543fadcd62d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1407_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1407_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 816c4cf7-823c-4a1d-92c4-8b40d4b295b0 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f2dcf4cc-609d-4532-a90d-6ae2bbb53365 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1407 51 false '-- '-- '-- '-- -18896 '-- ce1b2666-1364-5381-ae68-062a3cc7e5d5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1407_demographic Alive '-- '-- '-- '-- 18896 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3b851cf3-1472-5cb5-8f7a-4543fadcd62d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1407_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 184 42 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1407_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c01352be-2ef4-5b20-9594-a127ad0d4767 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f2dcf4cc-609d-4532-a90d-6ae2bbb53365 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1407 51 false '-- '-- '-- '-- -18896 '-- ce1b2666-1364-5381-ae68-062a3cc7e5d5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1407_demographic Alive '-- '-- '-- '-- 20229 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 1333 '-- '-- '-- 46962aed-2782-4dc5-b9b9-2b6ca9578d71 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1407_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1407_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV f2ec64f5-a414-4c34-99c7-d59bc4e831e0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1545 69 false '-- '-- '-- '-- -25460 1746 1d9ea521-4431-55d4-8082-d86421ddebe7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1545_demographic Dead '-- '-- '-- '-- 26321 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 861 '-- '-- '-- ea41988c-1e9c-4a6f-8ac4-1e492cbd7607 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1545_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1545_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1545_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b792d936-d07a-4d06-8976-e9c2acb26f5c '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV f2ec64f5-a414-4c34-99c7-d59bc4e831e0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1545 69 false '-- '-- '-- '-- -25460 1746 1d9ea521-4431-55d4-8082-d86421ddebe7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1545_demographic Dead '-- '-- '-- '-- 26321 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 861 '-- '-- '-- ea41988c-1e9c-4a6f-8ac4-1e492cbd7607 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1545_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1545_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1545_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cb1c4334-ced3-4b64-93d5-4a216dee2729 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV f2ec64f5-a414-4c34-99c7-d59bc4e831e0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1545 69 false '-- '-- '-- '-- -25460 1746 1d9ea521-4431-55d4-8082-d86421ddebe7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1545_demographic Dead '-- '-- '-- '-- 25460 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f4ff0564-e1c9-5baa-805d-e0331fd5245c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1545_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1238 1203 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1545_treatment7 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- 215 '-- mg '-- '-- '-- '-- 0d866a8f-7043-4006-84eb-ba01b47e4fbc '-- yes '-- '-- Chemotherapy +TCGA-OV f2ec64f5-a414-4c34-99c7-d59bc4e831e0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1545 69 false '-- '-- '-- '-- -25460 1746 1d9ea521-4431-55d4-8082-d86421ddebe7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1545_demographic Dead '-- '-- '-- '-- 25460 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f4ff0564-e1c9-5baa-805d-e0331fd5245c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1545_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 285 14 '-- '-- '-- '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1545_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2520 '-- mg '-- '-- '-- '-- 92fe51b2-9040-5c9a-af61-f7f023ffef76 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f2ec64f5-a414-4c34-99c7-d59bc4e831e0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1545 69 false '-- '-- '-- '-- -25460 1746 1d9ea521-4431-55d4-8082-d86421ddebe7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1545_demographic Dead '-- '-- '-- '-- 25460 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f4ff0564-e1c9-5baa-805d-e0331fd5245c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1545_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 285 14 '-- '-- '-- '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1545_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5750 '-- mg '-- '-- '-- '-- 96c3d17a-d6f4-4113-8ec4-0398f55cee51 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f2ec64f5-a414-4c34-99c7-d59bc4e831e0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1545 69 false '-- '-- '-- '-- -25460 1746 1d9ea521-4431-55d4-8082-d86421ddebe7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1545_demographic Dead '-- '-- '-- '-- 25460 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f4ff0564-e1c9-5baa-805d-e0331fd5245c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1545_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1545_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 98f368f3-ae86-4063-832d-c1ae65ba1927 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f2ec64f5-a414-4c34-99c7-d59bc4e831e0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1545 69 false '-- '-- '-- '-- -25460 1746 1d9ea521-4431-55d4-8082-d86421ddebe7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1545_demographic Dead '-- '-- '-- '-- 25460 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f4ff0564-e1c9-5baa-805d-e0331fd5245c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1545_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1169 1056 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1545_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3068 '-- mg '-- '-- '-- '-- d7716845-07c3-49bd-8ef3-55d844a854be '-- yes '-- '-- Chemotherapy +TCGA-OV f2ec64f5-a414-4c34-99c7-d59bc4e831e0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1545 69 false '-- '-- '-- '-- -25460 1746 1d9ea521-4431-55d4-8082-d86421ddebe7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1545_demographic Dead '-- '-- '-- '-- 25460 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f4ff0564-e1c9-5baa-805d-e0331fd5245c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1545_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 951 867 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1545_treatment4 Topotecan '-- '-- '-- '-- '-- '-- '-- 42 '-- mg '-- '-- '-- '-- e5fb8aed-d0f0-452f-b9a6-dc1e9998625c '-- yes '-- '-- Chemotherapy +TCGA-OV f2ec64f5-a414-4c34-99c7-d59bc4e831e0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1545 69 false '-- '-- '-- '-- -25460 1746 1d9ea521-4431-55d4-8082-d86421ddebe7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1545_demographic Dead '-- '-- '-- '-- 25460 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f4ff0564-e1c9-5baa-805d-e0331fd5245c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1545_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1169 1056 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1545_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1476 '-- mg '-- '-- '-- '-- edabc08b-7fdd-4a09-b759-3a992e3f8070 '-- yes '-- '-- Chemotherapy +TCGA-OV f2ec64f5-a414-4c34-99c7-d59bc4e831e0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1545 69 false '-- '-- '-- '-- -25460 1746 1d9ea521-4431-55d4-8082-d86421ddebe7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1545_demographic Dead '-- '-- '-- '-- 25460 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- f4ff0564-e1c9-5baa-805d-e0331fd5245c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1545_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1028 973 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1545_treatment6 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 165 '-- mg '-- '-- '-- '-- f48eaf76-f73c-43df-8449-3775b243776e '-- yes '-- '-- Chemotherapy +TCGA-OV f34aa3b6-e966-49c6-bc55-130545772c53 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1103 50 false '-- '-- '-- '-- -18583 1646 70b9fc46-3ebc-5ab0-adbb-162e6a4ea01c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1103_demographic Dead '-- '-- '-- '-- 19261 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 678 '-- '-- '-- a4629077-3ff3-41ff-8358-6170f333c4b1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1103_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1103_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1103_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 328fcd73-4ced-46d9-b38a-6d7487379303 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV f34aa3b6-e966-49c6-bc55-130545772c53 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1103 50 false '-- '-- '-- '-- -18583 1646 70b9fc46-3ebc-5ab0-adbb-162e6a4ea01c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1103_demographic Dead '-- '-- '-- '-- 19261 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 678 '-- '-- '-- a4629077-3ff3-41ff-8358-6170f333c4b1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1103_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1103_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1103_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- adc181a0-bbd5-439c-b5d8-5902d06d0e60 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV f34aa3b6-e966-49c6-bc55-130545772c53 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1103 50 false '-- '-- '-- '-- -18583 1646 70b9fc46-3ebc-5ab0-adbb-162e6a4ea01c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1103_demographic Dead '-- '-- '-- '-- 18583 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d8c22b70-6252-5c9a-ad92-ede1bb3d8804 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1103_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 127 19 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1103_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2210 '-- mg '-- '-- '-- '-- 10570db3-ed4c-45bf-8a35-b54063eb4a81 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f34aa3b6-e966-49c6-bc55-130545772c53 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1103 50 false '-- '-- '-- '-- -18583 1646 70b9fc46-3ebc-5ab0-adbb-162e6a4ea01c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1103_demographic Dead '-- '-- '-- '-- 18583 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d8c22b70-6252-5c9a-ad92-ede1bb3d8804 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1103_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1127 1016 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1103_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- 756 '-- mg '-- '-- '-- '-- 1bea8dd8-0255-4e01-a63f-9719814dc8ad '-- yes '-- '-- Chemotherapy +TCGA-OV f34aa3b6-e966-49c6-bc55-130545772c53 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1103 50 false '-- '-- '-- '-- -18583 1646 70b9fc46-3ebc-5ab0-adbb-162e6a4ea01c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1103_demographic Dead '-- '-- '-- '-- 18583 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d8c22b70-6252-5c9a-ad92-ede1bb3d8804 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1103_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1127 1016 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1103_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2322 '-- mg '-- '-- '-- '-- 298387b5-b2e4-4b62-843b-d4ee3aa1f41b '-- yes '-- '-- Chemotherapy +TCGA-OV f34aa3b6-e966-49c6-bc55-130545772c53 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1103 50 false '-- '-- '-- '-- -18583 1646 70b9fc46-3ebc-5ab0-adbb-162e6a4ea01c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1103_demographic Dead '-- '-- '-- '-- 18583 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d8c22b70-6252-5c9a-ad92-ede1bb3d8804 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1103_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1103_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4b8ab6df-351a-4ff4-8722-e0a3b8bfea48 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f34aa3b6-e966-49c6-bc55-130545772c53 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1103 50 false '-- '-- '-- '-- -18583 1646 70b9fc46-3ebc-5ab0-adbb-162e6a4ea01c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1103_demographic Dead '-- '-- '-- '-- 18583 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d8c22b70-6252-5c9a-ad92-ede1bb3d8804 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1103_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- 1625 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-24-1103_treatment8 Docetaxel '-- '-- '-- '-- '-- '-- '-- 130 '-- mg '-- '-- '-- '-- 5b9df73c-9cc0-4fef-ac09-f07597e83311 '-- yes '-- '-- Chemotherapy +TCGA-OV f34aa3b6-e966-49c6-bc55-130545772c53 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1103 50 false '-- '-- '-- '-- -18583 1646 70b9fc46-3ebc-5ab0-adbb-162e6a4ea01c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1103_demographic Dead '-- '-- '-- '-- 18583 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d8c22b70-6252-5c9a-ad92-ede1bb3d8804 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1103_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 910 694 '-- '-- Recurrent Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1103_treatment2 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- 816 '-- mg '-- '-- '-- '-- 89724fd2-44aa-49b4-9041-d88d87a9e52f '-- yes '-- '-- Chemotherapy +TCGA-OV f34aa3b6-e966-49c6-bc55-130545772c53 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1103 50 false '-- '-- '-- '-- -18583 1646 70b9fc46-3ebc-5ab0-adbb-162e6a4ea01c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1103_demographic Dead '-- '-- '-- '-- 18583 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d8c22b70-6252-5c9a-ad92-ede1bb3d8804 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1103_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- 1625 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-24-1103_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 347 '-- mg '-- '-- '-- '-- a56a89ae-fe6c-471e-a722-929ee69abaff '-- yes '-- '-- Chemotherapy +TCGA-OV f34aa3b6-e966-49c6-bc55-130545772c53 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1103 50 false '-- '-- '-- '-- -18583 1646 70b9fc46-3ebc-5ab0-adbb-162e6a4ea01c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1103_demographic Dead '-- '-- '-- '-- 18583 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d8c22b70-6252-5c9a-ad92-ede1bb3d8804 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1103_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 127 19 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1103_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1920 '-- mg '-- '-- '-- '-- a5babda3-555d-45a7-9f3d-17157f965c7d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f34aa3b6-e966-49c6-bc55-130545772c53 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1103 50 false '-- '-- '-- '-- -18583 1646 70b9fc46-3ebc-5ab0-adbb-162e6a4ea01c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1103_demographic Dead '-- '-- '-- '-- 18583 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d8c22b70-6252-5c9a-ad92-ede1bb3d8804 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1103_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 910 694 '-- '-- Recurrent Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1103_treatment Topotecan '-- '-- '-- '-- '-- '-- '-- 43 '-- mg '-- '-- '-- '-- bb613be8-961d-5e06-a8fd-8cf0bbb11dac '-- yes '-- '-- Chemotherapy +TCGA-OV f3618472-32dc-4c90-a407-90050f68be85 Informed Consent -20 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-13-A5FT 67 false '-- '-- '-- United States -24743 '-- 496656d8-5645-5852-b629-f8e4c3b9647e '-- not reported female '-- '-- '-- '-- black or african american TCGA-13-A5FT_demographic Alive '-- '-- '-- '-- 24743 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 46512cdd-749b-5942-92b7-1bce1b8021a2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- no No '-- RX '-- '-- Ovary '-- '-- TCGA-13-A5FT_diagnosis '-- No Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- No '-- 117 48 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-A5FT_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 16eb8992-7b14-4758-894d-0df608b37e05 '-- yes Complete Response '-- Chemotherapy +TCGA-OV f3618472-32dc-4c90-a407-90050f68be85 Informed Consent -20 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-13-A5FT 67 false '-- '-- '-- United States -24743 '-- 496656d8-5645-5852-b629-f8e4c3b9647e '-- not reported female '-- '-- '-- '-- black or african american TCGA-13-A5FT_demographic Alive '-- '-- '-- '-- 24743 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 46512cdd-749b-5942-92b7-1bce1b8021a2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- no No '-- RX '-- '-- Ovary '-- '-- TCGA-13-A5FT_diagnosis '-- No Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- No '-- 111 49 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-A5FT_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 762c2a4d-d8c9-5cca-bb9a-17112fcc9206 '-- yes Complete Response '-- Chemotherapy +TCGA-OV f3618472-32dc-4c90-a407-90050f68be85 Informed Consent -20 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-13-A5FT 67 false '-- '-- '-- United States -24743 '-- 496656d8-5645-5852-b629-f8e4c3b9647e '-- not reported female '-- '-- '-- '-- black or african american TCGA-13-A5FT_demographic Alive '-- '-- '-- '-- 24743 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 46512cdd-749b-5942-92b7-1bce1b8021a2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- no No '-- RX '-- '-- Ovary '-- '-- TCGA-13-A5FT_diagnosis '-- No Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-A5FT_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8ec70f47-d30b-4348-b010-c5a2b59d67af Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f3af727e-b592-4828-94f5-22008666cf8c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1482 52 false '-- '-- '-- '-- -19178 1877 5bce3e7c-4446-514f-bcfe-66719143e11c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1482_demographic Dead '-- '-- '-- '-- 19780 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 602 '-- '-- '-- 48b4aca0-1d7e-432c-9e26-973999a36969 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1482_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1482_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1482_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4f90be16-fb8a-47ec-bd81-2a10f00cd49e '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV f3af727e-b592-4828-94f5-22008666cf8c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1482 52 false '-- '-- '-- '-- -19178 1877 5bce3e7c-4446-514f-bcfe-66719143e11c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1482_demographic Dead '-- '-- '-- '-- 19780 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 602 '-- '-- '-- 48b4aca0-1d7e-432c-9e26-973999a36969 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1482_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1482_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1482_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 54cb99cf-dc18-4d07-ac27-0795bcb6a14e '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV f3af727e-b592-4828-94f5-22008666cf8c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1482 52 false '-- '-- '-- '-- -19178 1877 5bce3e7c-4446-514f-bcfe-66719143e11c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1482_demographic Dead '-- '-- '-- '-- 19178 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ca932ee8-4c96-5161-b508-2be33bc85b22 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1482_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1482_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3a79dd55-38c8-4bb2-9c81-0f634a30efa6 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f3af727e-b592-4828-94f5-22008666cf8c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1482 52 false '-- '-- '-- '-- -19178 1877 5bce3e7c-4446-514f-bcfe-66719143e11c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1482_demographic Dead '-- '-- '-- '-- 19178 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ca932ee8-4c96-5161-b508-2be33bc85b22 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1482_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 152 33 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1482_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- b123e1bb-4d75-5f6b-b843-485cae1de357 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f3af727e-b592-4828-94f5-22008666cf8c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1482 52 false '-- '-- '-- '-- -19178 1877 5bce3e7c-4446-514f-bcfe-66719143e11c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1482_demographic Dead '-- '-- '-- '-- 19178 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ca932ee8-4c96-5161-b508-2be33bc85b22 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1482_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 152 33 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1482_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d3339571-ac35-4a78-a1f6-7c2b2f3f475c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f4d95c8e-fb84-46ca-acc0-827015cc9d0a Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2363 40 false '-- '-- '-- '-- '-- '-- 70e5088b-a97a-527d-8705-0671fabd9fdb '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-59-2363_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 219b42b0-2897-5644-adb6-0bd82706bdac true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R0 '-- '-- Ovary '-- '-- TCGA-59-2363_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-2363_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0f0a6ccf-861a-43d3-8bbd-2c92bac2b952 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f4d95c8e-fb84-46ca-acc0-827015cc9d0a Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2363 40 false '-- '-- '-- '-- '-- '-- 70e5088b-a97a-527d-8705-0671fabd9fdb '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-59-2363_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 219b42b0-2897-5644-adb6-0bd82706bdac true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R0 '-- '-- Ovary '-- '-- TCGA-59-2363_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-2363_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 15958777-9f8e-50af-995d-a42f6d60595c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f4d95c8e-fb84-46ca-acc0-827015cc9d0a Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2363 40 false '-- '-- '-- '-- '-- '-- 70e5088b-a97a-527d-8705-0671fabd9fdb '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-59-2363_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 219b42b0-2897-5644-adb6-0bd82706bdac true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R0 '-- '-- Ovary '-- '-- TCGA-59-2363_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-2363_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f67577e8-014a-4fc4-b59a-af125c84474e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f5033d52-ec36-4e67-88d8-b6d898b81b2f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2391 57 false '-- '-- '-- '-- -20939 1492 8b704245-4ea7-56dc-bc6e-04c1ea8b05a8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2391_demographic Dead '-- '-- '-- '-- 20939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 33b6e169-a746-5ca1-ab5c-eeaa38b79c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2391_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 153 31 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2391_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0e489603-9d4e-4e3d-a436-97d44d20f02b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f5033d52-ec36-4e67-88d8-b6d898b81b2f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2391 57 false '-- '-- '-- '-- -20939 1492 8b704245-4ea7-56dc-bc6e-04c1ea8b05a8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2391_demographic Dead '-- '-- '-- '-- 20939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 33b6e169-a746-5ca1-ab5c-eeaa38b79c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2391_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 153 31 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2391_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 42ae62e3-b52d-5a77-b8f1-a4b696c24efa Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f5033d52-ec36-4e67-88d8-b6d898b81b2f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2391 57 false '-- '-- '-- '-- -20939 1492 8b704245-4ea7-56dc-bc6e-04c1ea8b05a8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2391_demographic Dead '-- '-- '-- '-- 20939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 33b6e169-a746-5ca1-ab5c-eeaa38b79c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2391_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2391_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 93b988af-e9a2-4600-93be-2b8ec798655f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f5033d52-ec36-4e67-88d8-b6d898b81b2f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2391 57 false '-- '-- '-- '-- -20939 1492 8b704245-4ea7-56dc-bc6e-04c1ea8b05a8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2391_demographic Dead '-- '-- '-- '-- 20939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 33b6e169-a746-5ca1-ab5c-eeaa38b79c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2391_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 153 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2391_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e236dda1-afdf-469f-8744-19374fd1263f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f58e49fc-9641-4b46-be4c-766445ec70a3 Informed Consent 877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1711 45 false '-- '-- '-- '-- -16485 '-- 8281281b-4e5e-598a-b5f4-68ff6e315138 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1711_demographic Alive '-- '-- '-- '-- 16485 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- eda2964c-ca2e-5949-a47e-bde81da98557 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1711_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1711_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 039b1e9f-245c-445e-88cd-25ba82934dfc Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f58e49fc-9641-4b46-be4c-766445ec70a3 Informed Consent 877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1711 45 false '-- '-- '-- '-- -16485 '-- 8281281b-4e5e-598a-b5f4-68ff6e315138 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1711_demographic Alive '-- '-- '-- '-- 16485 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- eda2964c-ca2e-5949-a47e-bde81da98557 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1711_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 234 30 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1711_treatment Bevacizumab '-- '-- '-- '-- '-- '-- '-- 1863 '-- mg '-- '-- '-- '-- 440d246c-0fd0-58e7-be8a-18e0015a9589 Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV f58e49fc-9641-4b46-be4c-766445ec70a3 Informed Consent 877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1711 45 false '-- '-- '-- '-- -16485 '-- 8281281b-4e5e-598a-b5f4-68ff6e315138 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1711_demographic Alive '-- '-- '-- '-- 16485 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- eda2964c-ca2e-5949-a47e-bde81da98557 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1711_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 136 30 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1711_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- 150 '-- mg '-- '-- '-- '-- c3899088-1e6c-4d14-8f8c-6b07aaa0a052 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f58e49fc-9641-4b46-be4c-766445ec70a3 Informed Consent 877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1711 45 false '-- '-- '-- '-- -16485 '-- 8281281b-4e5e-598a-b5f4-68ff6e315138 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1711_demographic Alive '-- '-- '-- '-- 16485 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- eda2964c-ca2e-5949-a47e-bde81da98557 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1711_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 136 30 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1711_treatment2 Oxaliplatin '-- '-- '-- '-- '-- '-- '-- 170 '-- mg '-- '-- '-- '-- f387fd70-16f3-4dd5-b0bb-54eb257fdd01 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f64ebc7f-0e5a-42b4-af57-6cdb90d24f90 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1423 61 false '-- '-- '-- '-- -22281 '-- a4ae248f-d90b-5ced-a3c7-bf5619b4bffd '-- not reported female '-- '-- '-- '-- white TCGA-24-1423_demographic Alive '-- '-- '-- '-- 22281 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4b898782-211b-5014-b4fc-29731d9e4489 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1423_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1423_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1b8f7954-3135-441b-bad3-64223712c36e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f64ebc7f-0e5a-42b4-af57-6cdb90d24f90 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1423 61 false '-- '-- '-- '-- -22281 '-- a4ae248f-d90b-5ced-a3c7-bf5619b4bffd '-- not reported female '-- '-- '-- '-- white TCGA-24-1423_demographic Alive '-- '-- '-- '-- 22281 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4b898782-211b-5014-b4fc-29731d9e4489 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1423_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 151 21 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1423_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 532 '-- mg '-- '-- '-- '-- 4c58edb9-2eb9-4477-8d86-89464d0da3bd Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f64ebc7f-0e5a-42b4-af57-6cdb90d24f90 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1423 61 false '-- '-- '-- '-- -22281 '-- a4ae248f-d90b-5ced-a3c7-bf5619b4bffd '-- not reported female '-- '-- '-- '-- white TCGA-24-1423_demographic Alive '-- '-- '-- '-- 22281 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4b898782-211b-5014-b4fc-29731d9e4489 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1423_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 151 21 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1423_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1703 '-- mg '-- '-- '-- '-- daf9c3a2-fdd8-55fa-aeed-0b37b8fd4d57 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f64ebc7f-0e5a-42b4-af57-6cdb90d24f90 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1423 61 false '-- '-- '-- '-- -22281 '-- a4ae248f-d90b-5ced-a3c7-bf5619b4bffd '-- not reported female '-- '-- '-- '-- white TCGA-24-1423_demographic Alive '-- '-- '-- '-- 22281 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 4b898782-211b-5014-b4fc-29731d9e4489 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1423_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 151 21 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1423_treatment2 Doxorubicin '-- '-- '-- '-- '-- '-- '-- 477 '-- mg '-- '-- '-- '-- ef12c30b-8bb0-4b39-826a-307687066c02 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f65f2e78-c001-4ef3-ae88-3e4f83c7aceb Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1578 63 false '-- '-- '-- '-- -23329 '-- 753ed5fb-e73a-5641-941d-45f244e4c82e '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-36-1578_demographic Alive '-- '-- '-- '-- 23639 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 310 '-- '-- '-- c6993902-a6e8-4742-b549-5e7cfc22a72f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-36-1578_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-36-1578_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1578_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 616147d4-ed52-4658-85a8-2d9e14ff138e '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV f65f2e78-c001-4ef3-ae88-3e4f83c7aceb Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1578 63 false '-- '-- '-- '-- -23329 '-- 753ed5fb-e73a-5641-941d-45f244e4c82e '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-36-1578_demographic Alive '-- '-- '-- '-- 23639 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 310 '-- '-- '-- c6993902-a6e8-4742-b549-5e7cfc22a72f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-36-1578_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-36-1578_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1578_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b100c3e7-e85e-47d4-b548-fa3a8cc447e6 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV f65f2e78-c001-4ef3-ae88-3e4f83c7aceb Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1578 63 false '-- '-- '-- '-- -23329 '-- 753ed5fb-e73a-5641-941d-45f244e4c82e '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-36-1578_demographic Alive '-- '-- '-- '-- 23329 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d74b9bf5-e84c-53ac-84a4-1a646a896e4f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1578_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 212 15 '-- '-- '-- '-- '-- '-- '-- 11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1578_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4830 '-- mg '-- '-- '-- '-- 17fa792f-1966-4417-aff3-2220e2544484 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f65f2e78-c001-4ef3-ae88-3e4f83c7aceb Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1578 63 false '-- '-- '-- '-- -23329 '-- 753ed5fb-e73a-5641-941d-45f244e4c82e '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-36-1578_demographic Alive '-- '-- '-- '-- 23329 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d74b9bf5-e84c-53ac-84a4-1a646a896e4f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1578_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 212 15 '-- '-- '-- '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1578_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2013 '-- mg '-- '-- '-- '-- 2bd17957-04de-40ce-ab0b-ab72a79614fb Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f65f2e78-c001-4ef3-ae88-3e4f83c7aceb Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1578 63 false '-- '-- '-- '-- -23329 '-- 753ed5fb-e73a-5641-941d-45f244e4c82e '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-36-1578_demographic Alive '-- '-- '-- '-- 23329 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d74b9bf5-e84c-53ac-84a4-1a646a896e4f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1578_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 345 321 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1578_treatment Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 136 '-- mg '-- '-- '-- '-- 3b2f7435-8ce2-5f3a-aad9-c4fb3a9696e4 '-- yes '-- '-- Chemotherapy +TCGA-OV f65f2e78-c001-4ef3-ae88-3e4f83c7aceb Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1578 63 false '-- '-- '-- '-- -23329 '-- 753ed5fb-e73a-5641-941d-45f244e4c82e '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-36-1578_demographic Alive '-- '-- '-- '-- 23329 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d74b9bf5-e84c-53ac-84a4-1a646a896e4f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1578_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1578_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6a928fec-2ae2-4334-a43e-28bbbb440a9e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f6ebf3a7-31c6-4f4c-9a0b-74cf35bfedf6 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1781 69 false '-- '-- '-- '-- -25404 '-- 34cdc2c3-656e-598f-98cd-ba99fa210ff2 '-- not reported female '-- '-- '-- '-- white TCGA-29-1781_demographic Alive '-- '-- '-- '-- 25404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d76e4af6-34c3-5b30-9645-83c9a06479ea true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1781_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1781_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 140465ac-f47c-4869-b318-9c16fe9bd10c Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f6ebf3a7-31c6-4f4c-9a0b-74cf35bfedf6 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1781 69 false '-- '-- '-- '-- -25404 '-- 34cdc2c3-656e-598f-98cd-ba99fa210ff2 '-- not reported female '-- '-- '-- '-- white TCGA-29-1781_demographic Alive '-- '-- '-- '-- 25404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d76e4af6-34c3-5b30-9645-83c9a06479ea true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1781_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 255 52 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1781_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 2970 '-- mg '-- '-- '-- '-- 32792d93-6714-57b9-a3dc-5bc59a18a6f1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f6ebf3a7-31c6-4f4c-9a0b-74cf35bfedf6 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1781 69 false '-- '-- '-- '-- -25404 '-- 34cdc2c3-656e-598f-98cd-ba99fa210ff2 '-- not reported female '-- '-- '-- '-- white TCGA-29-1781_demographic Alive '-- '-- '-- '-- 25404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- d76e4af6-34c3-5b30-9645-83c9a06479ea true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1781_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 255 52 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1781_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2322 '-- mg '-- '-- '-- '-- 65a5ee47-84fd-4688-b691-434b3daf00c5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f7752d6e-f9cd-4dc9-ab01-3ab87acb21e4 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1348 44 false '-- '-- '-- '-- -16236 1483 6c0da9cf-4281-50f8-8be6-cdae39813f3b '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1348_demographic Dead '-- '-- '-- '-- 16811 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 575 '-- '-- '-- 40655e62-6371-44b4-884f-db83ec4e47f9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1348_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1348_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1348_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5665f199-e877-49d1-84ee-c6e4e05e509e '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV f7752d6e-f9cd-4dc9-ab01-3ab87acb21e4 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1348 44 false '-- '-- '-- '-- -16236 1483 6c0da9cf-4281-50f8-8be6-cdae39813f3b '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1348_demographic Dead '-- '-- '-- '-- 16811 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 575 '-- '-- '-- 40655e62-6371-44b4-884f-db83ec4e47f9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1348_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1348_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1348_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- afb9566a-60a3-4e0d-97de-50feb52cecf7 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV f7752d6e-f9cd-4dc9-ab01-3ab87acb21e4 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1348 44 false '-- '-- '-- '-- -16236 1483 6c0da9cf-4281-50f8-8be6-cdae39813f3b '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1348_demographic Dead '-- '-- '-- '-- 16236 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 97f080aa-d9d0-5451-b6d1-71fab2c5a759 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1348_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1157 1006 '-- '-- Recurrent Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1348_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0c865d84-cae7-4eb7-8bb1-846206467d5a '-- yes '-- '-- Chemotherapy +TCGA-OV f7752d6e-f9cd-4dc9-ab01-3ab87acb21e4 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1348 44 false '-- '-- '-- '-- -16236 1483 6c0da9cf-4281-50f8-8be6-cdae39813f3b '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1348_demographic Dead '-- '-- '-- '-- 16236 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 97f080aa-d9d0-5451-b6d1-71fab2c5a759 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1348_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1348_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3986ec29-9fe8-4ab6-ae53-c8b7d4ee4848 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f7752d6e-f9cd-4dc9-ab01-3ab87acb21e4 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1348 44 false '-- '-- '-- '-- -16236 1483 6c0da9cf-4281-50f8-8be6-cdae39813f3b '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1348_demographic Dead '-- '-- '-- '-- 16236 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 97f080aa-d9d0-5451-b6d1-71fab2c5a759 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1348_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1157 1006 '-- '-- Recurrent Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1348_treatment4 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3d32e77a-0000-41de-b3c3-153f4786a26e '-- yes '-- '-- Chemotherapy +TCGA-OV f7752d6e-f9cd-4dc9-ab01-3ab87acb21e4 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1348 44 false '-- '-- '-- '-- -16236 1483 6c0da9cf-4281-50f8-8be6-cdae39813f3b '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1348_demographic Dead '-- '-- '-- '-- 16236 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 97f080aa-d9d0-5451-b6d1-71fab2c5a759 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1348_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1249 1218 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1348_treatment7 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 503c46a7-d74e-4a74-9a1f-aa113c638782 '-- yes '-- '-- Chemotherapy +TCGA-OV f7752d6e-f9cd-4dc9-ab01-3ab87acb21e4 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1348 44 false '-- '-- '-- '-- -16236 1483 6c0da9cf-4281-50f8-8be6-cdae39813f3b '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1348_demographic Dead '-- '-- '-- '-- 16236 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 97f080aa-d9d0-5451-b6d1-71fab2c5a759 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1348_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 976 884 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1348_treatment Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 723636c3-1416-5ecd-adf8-fe85c73c12f6 '-- yes '-- '-- Chemotherapy +TCGA-OV f7752d6e-f9cd-4dc9-ab01-3ab87acb21e4 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1348 44 false '-- '-- '-- '-- -16236 1483 6c0da9cf-4281-50f8-8be6-cdae39813f3b '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1348_demographic Dead '-- '-- '-- '-- 16236 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 97f080aa-d9d0-5451-b6d1-71fab2c5a759 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1348_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 184 2 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1348_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9664a283-5d6b-4a7b-9ef0-d7a71a0ee5a3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f7752d6e-f9cd-4dc9-ab01-3ab87acb21e4 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1348 44 false '-- '-- '-- '-- -16236 1483 6c0da9cf-4281-50f8-8be6-cdae39813f3b '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1348_demographic Dead '-- '-- '-- '-- 16236 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 97f080aa-d9d0-5451-b6d1-71fab2c5a759 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1348_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 184 2 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1348_treatment8 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cae60ade-792b-4a6a-80cf-18a1906c7971 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f7752d6e-f9cd-4dc9-ab01-3ab87acb21e4 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1348 44 false '-- '-- '-- '-- -16236 1483 6c0da9cf-4281-50f8-8be6-cdae39813f3b '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1348_demographic Dead '-- '-- '-- '-- 16236 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 97f080aa-d9d0-5451-b6d1-71fab2c5a759 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1348_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 853 672 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1348_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cc926d29-da18-4d07-a379-eee347ac391a '-- yes '-- '-- Chemotherapy +TCGA-OV f7752d6e-f9cd-4dc9-ab01-3ab87acb21e4 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1348 44 false '-- '-- '-- '-- -16236 1483 6c0da9cf-4281-50f8-8be6-cdae39813f3b '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1348_demographic Dead '-- '-- '-- '-- 16236 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 97f080aa-d9d0-5451-b6d1-71fab2c5a759 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1348_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1432 1279 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1348_treatment6 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fa271f27-9266-4db5-9bd4-8a0320037262 '-- yes '-- '-- Chemotherapy +TCGA-OV f7752d6e-f9cd-4dc9-ab01-3ab87acb21e4 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1348 44 false '-- '-- '-- '-- -16236 1483 6c0da9cf-4281-50f8-8be6-cdae39813f3b '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1348_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b4f9c9ec-32b0-4f10-80d7-fdca1c3df9a7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1348_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1348_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1463 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1348_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 082672d8-dd45-41ec-876b-44bed9da182c '-- yes '-- '-- Surgery, NOS +TCGA-OV f7752d6e-f9cd-4dc9-ab01-3ab87acb21e4 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1348 44 false '-- '-- '-- '-- -16236 1483 6c0da9cf-4281-50f8-8be6-cdae39813f3b '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1348_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b4f9c9ec-32b0-4f10-80d7-fdca1c3df9a7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1348_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1348_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1348_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 78075864-3c4f-48ec-a5b5-91f9fa5f5112 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV f7752d6e-f9cd-4dc9-ab01-3ab87acb21e4 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1348 44 false '-- '-- '-- '-- -16236 1483 6c0da9cf-4281-50f8-8be6-cdae39813f3b '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1348_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b4f9c9ec-32b0-4f10-80d7-fdca1c3df9a7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1348_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1348_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1348_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7b29c5c9-4682-415d-9886-791d68a9c112 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV f8a5547f-f1bc-4c01-8b68-25b5ee0caeab Consent by Death 1380 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1655 49 false '-- '-- '-- '-- -17988 1380 f5f5b470-d479-571a-9747-9f299b78084b '-- not reported female '-- '-- '-- '-- white TCGA-04-1655_demographic Dead '-- '-- '-- '-- 18807 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 819 '-- '-- '-- 751fa9ad-d1b7-4963-ad79-e260badb795d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1655_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1655_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1655_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 03e6dcdf-19cc-4849-9dd4-82ab5aa75878 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV f8a5547f-f1bc-4c01-8b68-25b5ee0caeab Consent by Death 1380 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1655 49 false '-- '-- '-- '-- -17988 1380 f5f5b470-d479-571a-9747-9f299b78084b '-- not reported female '-- '-- '-- '-- white TCGA-04-1655_demographic Dead '-- '-- '-- '-- 18807 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 819 '-- '-- '-- 751fa9ad-d1b7-4963-ad79-e260badb795d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1655_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1655_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1655_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 60afafb6-a148-483b-b041-8c3454f0e188 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV f8a5547f-f1bc-4c01-8b68-25b5ee0caeab Consent by Death 1380 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1655 49 false '-- '-- '-- '-- -17988 1380 f5f5b470-d479-571a-9747-9f299b78084b '-- not reported female '-- '-- '-- '-- white TCGA-04-1655_demographic Dead '-- '-- '-- '-- 17988 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 776c7f23-897d-51d4-8cf1-95e17ae2cf79 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1655_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1655_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0d78c24d-9b48-4d5e-be53-da820288450c Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f8a5547f-f1bc-4c01-8b68-25b5ee0caeab Consent by Death 1380 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1655 49 false '-- '-- '-- '-- -17988 1380 f5f5b470-d479-571a-9747-9f299b78084b '-- not reported female '-- '-- '-- '-- white TCGA-04-1655_demographic Dead '-- '-- '-- '-- 17988 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 776c7f23-897d-51d4-8cf1-95e17ae2cf79 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1655_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 184 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1655_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1d3188cd-a323-450d-9680-9af7b22d023c '-- yes '-- '-- Chemotherapy +TCGA-OV f8a5547f-f1bc-4c01-8b68-25b5ee0caeab Consent by Death 1380 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1655 49 false '-- '-- '-- '-- -17988 1380 f5f5b470-d479-571a-9747-9f299b78084b '-- not reported female '-- '-- '-- '-- white TCGA-04-1655_demographic Dead '-- '-- '-- '-- 17988 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 776c7f23-897d-51d4-8cf1-95e17ae2cf79 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1655_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 839 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1655_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3114df13-f8c0-4e65-9676-a45fec69b63a '-- yes '-- '-- Chemotherapy +TCGA-OV f8a5547f-f1bc-4c01-8b68-25b5ee0caeab Consent by Death 1380 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1655 49 false '-- '-- '-- '-- -17988 1380 f5f5b470-d479-571a-9747-9f299b78084b '-- not reported female '-- '-- '-- '-- white TCGA-04-1655_demographic Dead '-- '-- '-- '-- 17988 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 776c7f23-897d-51d4-8cf1-95e17ae2cf79 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1655_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 139 34 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-04-1655_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 574 '-- mg '-- '-- '-- '-- 8bd2df47-a05d-47a8-b40c-4905aae66ced Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f8a5547f-f1bc-4c01-8b68-25b5ee0caeab Consent by Death 1380 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1655 49 false '-- '-- '-- '-- -17988 1380 f5f5b470-d479-571a-9747-9f299b78084b '-- not reported female '-- '-- '-- '-- white TCGA-04-1655_demographic Dead '-- '-- '-- '-- 17988 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 776c7f23-897d-51d4-8cf1-95e17ae2cf79 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1655_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 139 34 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-04-1655_treatment5 Cisplatin '-- '-- '-- '-- '-- '-- '-- 953 '-- mg '-- '-- '-- '-- e176ecba-6f4c-4457-9db8-0850d69d2e8a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f8a5547f-f1bc-4c01-8b68-25b5ee0caeab Consent by Death 1380 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1655 49 false '-- '-- '-- '-- -17988 1380 f5f5b470-d479-571a-9747-9f299b78084b '-- not reported female '-- '-- '-- '-- white TCGA-04-1655_demographic Dead '-- '-- '-- '-- 17988 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 776c7f23-897d-51d4-8cf1-95e17ae2cf79 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1655_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 139 34 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1655_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1288 '-- mg '-- '-- '-- '-- ea73130c-0d24-5dbd-bb73-eb3208584a6f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f8e9d538-7291-4fe7-b3f2-d01676a027f9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1661 75 false '-- '-- '-- '-- -27486 1169 7d5dcebc-ff09-52ee-aedc-34d4ec8683e2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1661_demographic Dead '-- '-- '-- '-- 27486 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 28f74326-0db8-5d53-bab2-b64acfa0aa64 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1661_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 940 828 '-- '-- '-- '-- '-- '-- '-- 17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1661_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 70 '-- mg/m2 '-- '-- '-- '-- 1d474cd7-e665-48cf-b123-d3533280e587 '-- yes '-- '-- Chemotherapy +TCGA-OV f8e9d538-7291-4fe7-b3f2-d01676a027f9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1661 75 false '-- '-- '-- '-- -27486 1169 7d5dcebc-ff09-52ee-aedc-34d4ec8683e2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1661_demographic Dead '-- '-- '-- '-- 27486 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 28f74326-0db8-5d53-bab2-b64acfa0aa64 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1661_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 165 58 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1661_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg '-- '-- '-- '-- 3b4c753c-2b7c-5f2d-8b7d-751e0bc8d35e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f8e9d538-7291-4fe7-b3f2-d01676a027f9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1661 75 false '-- '-- '-- '-- -27486 1169 7d5dcebc-ff09-52ee-aedc-34d4ec8683e2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1661_demographic Dead '-- '-- '-- '-- 27486 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 28f74326-0db8-5d53-bab2-b64acfa0aa64 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1661_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 332 213 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1661_treatment7 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 40 '-- mg/m2 '-- '-- '-- '-- 4b8e0ef8-443b-4f9d-b68a-d31488563ce7 '-- yes '-- '-- Chemotherapy +TCGA-OV f8e9d538-7291-4fe7-b3f2-d01676a027f9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1661 75 false '-- '-- '-- '-- -27486 1169 7d5dcebc-ff09-52ee-aedc-34d4ec8683e2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1661_demographic Dead '-- '-- '-- '-- 27486 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 28f74326-0db8-5d53-bab2-b64acfa0aa64 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1661_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 165 58 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1661_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 192 '-- mg '-- '-- '-- '-- 7a641015-f525-455e-85a1-c9cf32636532 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f8e9d538-7291-4fe7-b3f2-d01676a027f9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1661 75 false '-- '-- '-- '-- -27486 1169 7d5dcebc-ff09-52ee-aedc-34d4ec8683e2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1661_demographic Dead '-- '-- '-- '-- 27486 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 28f74326-0db8-5d53-bab2-b64acfa0aa64 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1661_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 641 498 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1661_treatment8 Tamoxifen '-- '-- '-- '-- '-- '-- '-- 20 '-- mg '-- '-- '-- '-- 7bebb859-d3b3-4885-bb05-860a4aa4a0c4 '-- yes '-- '-- Hormone Therapy +TCGA-OV f8e9d538-7291-4fe7-b3f2-d01676a027f9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1661 75 false '-- '-- '-- '-- -27486 1169 7d5dcebc-ff09-52ee-aedc-34d4ec8683e2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1661_demographic Dead '-- '-- '-- '-- 27486 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 28f74326-0db8-5d53-bab2-b64acfa0aa64 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1661_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 766 758 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1661_treatment2 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 800 '-- mg/m2 '-- '-- '-- '-- 8911f2be-7326-41ba-8e5b-bbb363a96a07 '-- yes '-- '-- Chemotherapy +TCGA-OV f8e9d538-7291-4fe7-b3f2-d01676a027f9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1661 75 false '-- '-- '-- '-- -27486 1169 7d5dcebc-ff09-52ee-aedc-34d4ec8683e2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1661_demographic Dead '-- '-- '-- '-- 27486 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 28f74326-0db8-5d53-bab2-b64acfa0aa64 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1661_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1052 1017 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1661_treatment6 Docetaxel '-- '-- '-- '-- '-- '-- '-- 30 '-- mg/m2 '-- '-- '-- '-- aed3a0df-8a3e-4f4a-ac5a-19ae36357ecf '-- yes '-- '-- Chemotherapy +TCGA-OV f8e9d538-7291-4fe7-b3f2-d01676a027f9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1661 75 false '-- '-- '-- '-- -27486 1169 7d5dcebc-ff09-52ee-aedc-34d4ec8683e2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1661_demographic Dead '-- '-- '-- '-- 27486 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 28f74326-0db8-5d53-bab2-b64acfa0aa64 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1661_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1661_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cd501125-82b2-4e46-8c95-103d89e3ef02 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f8e9d538-7291-4fe7-b3f2-d01676a027f9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1661 75 false '-- '-- '-- '-- -27486 1169 7d5dcebc-ff09-52ee-aedc-34d4ec8683e2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1661_demographic Dead '-- '-- '-- '-- 27486 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 28f74326-0db8-5d53-bab2-b64acfa0aa64 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1661_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 709 641 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1661_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d9fd26e3-4729-4cce-af9d-8bc8dd985f14 '-- yes '-- '-- Chemotherapy +TCGA-OV f9793a4b-c0e7-4475-bf80-69543b7ee2f6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1416 34 false '-- '-- '-- '-- -12772 '-- 37d34efc-4522-5f67-89af-6ad888895583 '-- not reported female '-- '-- '-- '-- white TCGA-24-1416_demographic Alive '-- '-- '-- '-- 12772 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3bef7a6b-f7be-543c-a896-f3126e11480c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1416_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 170 16 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1416_treatment4 Docetaxel '-- '-- '-- '-- '-- '-- '-- 934 '-- mg '-- '-- '-- '-- 07056a2b-c1b3-441a-ac0c-23f4d3093223 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f9793a4b-c0e7-4475-bf80-69543b7ee2f6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1416 34 false '-- '-- '-- '-- -12772 '-- 37d34efc-4522-5f67-89af-6ad888895583 '-- not reported female '-- '-- '-- '-- white TCGA-24-1416_demographic Alive '-- '-- '-- '-- 12772 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3bef7a6b-f7be-543c-a896-f3126e11480c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1416_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 170 16 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1416_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 647 '-- mg '-- '-- '-- '-- 17efca41-1fce-439d-8745-9e3e824638f7 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f9793a4b-c0e7-4475-bf80-69543b7ee2f6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1416 34 false '-- '-- '-- '-- -12772 '-- 37d34efc-4522-5f67-89af-6ad888895583 '-- not reported female '-- '-- '-- '-- white TCGA-24-1416_demographic Alive '-- '-- '-- '-- 12772 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3bef7a6b-f7be-543c-a896-f3126e11480c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1416_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1416_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3306f9c6-9b1c-4bdb-8628-f3dc44fae9c4 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f9793a4b-c0e7-4475-bf80-69543b7ee2f6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1416 34 false '-- '-- '-- '-- -12772 '-- 37d34efc-4522-5f67-89af-6ad888895583 '-- not reported female '-- '-- '-- '-- white TCGA-24-1416_demographic Alive '-- '-- '-- '-- 12772 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3bef7a6b-f7be-543c-a896-f3126e11480c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1416_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 170 16 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1416_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 946 '-- mg '-- '-- '-- '-- b6c3d59a-b00d-5004-b272-f08a9ae2aee4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f9793a4b-c0e7-4475-bf80-69543b7ee2f6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1416 34 false '-- '-- '-- '-- -12772 '-- 37d34efc-4522-5f67-89af-6ad888895583 '-- not reported female '-- '-- '-- '-- white TCGA-24-1416_demographic Alive '-- '-- '-- '-- 12772 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3bef7a6b-f7be-543c-a896-f3126e11480c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1416_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 170 16 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1416_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 422 '-- mg '-- '-- '-- '-- eec655d9-88e0-4bd8-915b-e5d27f2fdd30 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f9c835db-2ab6-4bf5-826f-48723493c0ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1705 47 false '-- '-- '-- '-- -17530 555 3d81138a-577c-5983-a1ce-b5d08a9a5faa '-- not reported female '-- '-- '-- '-- white TCGA-29-1705_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 615ac7f3-d11f-45e7-8888-d1cfae3e1a95 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1705_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1705_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1705_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6075c3d5-72ff-4c45-8bce-36e51d8b325b '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV f9c835db-2ab6-4bf5-826f-48723493c0ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1705 47 false '-- '-- '-- '-- -17530 555 3d81138a-577c-5983-a1ce-b5d08a9a5faa '-- not reported female '-- '-- '-- '-- white TCGA-29-1705_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 615ac7f3-d11f-45e7-8888-d1cfae3e1a95 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1705_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1705_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1705_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ab593490-c14a-4f92-8e8d-c0182cc4c341 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV f9c835db-2ab6-4bf5-826f-48723493c0ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1705 47 false '-- '-- '-- '-- -17530 555 3d81138a-577c-5983-a1ce-b5d08a9a5faa '-- not reported female '-- '-- '-- '-- white TCGA-29-1705_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 615ac7f3-d11f-45e7-8888-d1cfae3e1a95 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1705_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1705_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 434 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1705_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dbb1ab80-2d73-427e-bc48-c34784986d76 '-- yes '-- '-- Surgery, NOS +TCGA-OV f9c835db-2ab6-4bf5-826f-48723493c0ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1705 47 false '-- '-- '-- '-- -17530 555 3d81138a-577c-5983-a1ce-b5d08a9a5faa '-- not reported female '-- '-- '-- '-- white TCGA-29-1705_demographic Dead '-- '-- '-- '-- 17530 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- cdcf923e-15c6-5ee7-9cac-bda5bcaad9b7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1705_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 356 287 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1705_treatment5 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 2000 '-- mg '-- '-- '-- '-- 3c611fc9-808b-4a1d-84f3-7e1292294a5f '-- yes '-- '-- Chemotherapy +TCGA-OV f9c835db-2ab6-4bf5-826f-48723493c0ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1705 47 false '-- '-- '-- '-- -17530 555 3d81138a-577c-5983-a1ce-b5d08a9a5faa '-- not reported female '-- '-- '-- '-- white TCGA-29-1705_demographic Dead '-- '-- '-- '-- 17530 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- cdcf923e-15c6-5ee7-9cac-bda5bcaad9b7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1705_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 118 76 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1705_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- 450 '-- mg '-- '-- '-- '-- 41aa04ab-c1bc-57e4-99c3-5de2f16cf42a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f9c835db-2ab6-4bf5-826f-48723493c0ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1705 47 false '-- '-- '-- '-- -17530 555 3d81138a-577c-5983-a1ce-b5d08a9a5faa '-- not reported female '-- '-- '-- '-- white TCGA-29-1705_demographic Dead '-- '-- '-- '-- 17530 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- cdcf923e-15c6-5ee7-9cac-bda5bcaad9b7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1705_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 356 287 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1705_treatment6 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 990 '-- mg '-- '-- '-- '-- 5863e1ad-604d-4f57-95fd-a5eeb4ea5ce9 '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV f9c835db-2ab6-4bf5-826f-48723493c0ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1705 47 false '-- '-- '-- '-- -17530 555 3d81138a-577c-5983-a1ce-b5d08a9a5faa '-- not reported female '-- '-- '-- '-- white TCGA-29-1705_demographic Dead '-- '-- '-- '-- 17530 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- cdcf923e-15c6-5ee7-9cac-bda5bcaad9b7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1705_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 55 13 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1705_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1050 '-- mg '-- '-- '-- '-- 8b99fcf4-26e1-44c1-80b5-3e6bf6b4c49c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f9c835db-2ab6-4bf5-826f-48723493c0ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1705 47 false '-- '-- '-- '-- -17530 555 3d81138a-577c-5983-a1ce-b5d08a9a5faa '-- not reported female '-- '-- '-- '-- white TCGA-29-1705_demographic Dead '-- '-- '-- '-- 17530 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- cdcf923e-15c6-5ee7-9cac-bda5bcaad9b7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1705_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 167 13 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1705_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4905 '-- mg '-- '-- '-- '-- 916a93e4-adaf-4d7a-9bae-88aad535b1c1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f9c835db-2ab6-4bf5-826f-48723493c0ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1705 47 false '-- '-- '-- '-- -17530 555 3d81138a-577c-5983-a1ce-b5d08a9a5faa '-- not reported female '-- '-- '-- '-- white TCGA-29-1705_demographic Dead '-- '-- '-- '-- 17530 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- cdcf923e-15c6-5ee7-9cac-bda5bcaad9b7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1705_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 489 416 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1705_treatment7 Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 80 '-- mg '-- '-- '-- '-- be820e69-1471-4b28-9c6d-6b367057c955 '-- yes '-- '-- Chemotherapy +TCGA-OV f9c835db-2ab6-4bf5-826f-48723493c0ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1705 47 false '-- '-- '-- '-- -17530 555 3d81138a-577c-5983-a1ce-b5d08a9a5faa '-- not reported female '-- '-- '-- '-- white TCGA-29-1705_demographic Dead '-- '-- '-- '-- 17530 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- cdcf923e-15c6-5ee7-9cac-bda5bcaad9b7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1705_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1705_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- beb43fed-46ae-456f-94f1-0ec1b114e1d2 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f9c835db-2ab6-4bf5-826f-48723493c0ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1705 47 false '-- '-- '-- '-- -17530 555 3d81138a-577c-5983-a1ce-b5d08a9a5faa '-- not reported female '-- '-- '-- '-- white TCGA-29-1705_demographic Dead '-- '-- '-- '-- 17530 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- cdcf923e-15c6-5ee7-9cac-bda5bcaad9b7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1705_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 524 524 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1705_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 725 '-- mg '-- '-- '-- '-- fa704f49-2b3d-47ed-8e8c-e9d1bc8e7fd0 '-- yes '-- '-- Chemotherapy +TCGA-OV f9c835db-2ab6-4bf5-826f-48723493c0ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1705 47 false '-- '-- '-- '-- -17530 555 3d81138a-577c-5983-a1ce-b5d08a9a5faa '-- not reported female '-- '-- '-- '-- white TCGA-29-1705_demographic Dead '-- '-- '-- '-- 17813 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 283 '-- '-- '-- dc23bc77-8f34-4f98-8154-67e5df9436ca false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1705_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1705_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1705_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 22c7d0c2-1a66-4fba-aa37-f4fd8ecdab15 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV f9c835db-2ab6-4bf5-826f-48723493c0ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1705 47 false '-- '-- '-- '-- -17530 555 3d81138a-577c-5983-a1ce-b5d08a9a5faa '-- not reported female '-- '-- '-- '-- white TCGA-29-1705_demographic Dead '-- '-- '-- '-- 17813 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 283 '-- '-- '-- dc23bc77-8f34-4f98-8154-67e5df9436ca false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1705_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1705_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1705_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7b69e406-09ef-494c-848c-13971d0590f6 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV f9f44f86-10c7-4473-b156-5afbfa9a2ad0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1104 56 false '-- '-- '-- '-- -20527 1933 2ab1be5c-ffea-5f82-b277-6ac057112641 '-- not reported female '-- '-- '-- '-- white TCGA-24-1104_demographic Dead '-- '-- '-- '-- 21486 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 959 '-- '-- '-- 0873cccd-2a97-4273-853e-70877183474b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1104_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1104_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1104_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6a4aa787-279c-41ca-bc7e-06a39efa9ce1 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV f9f44f86-10c7-4473-b156-5afbfa9a2ad0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1104 56 false '-- '-- '-- '-- -20527 1933 2ab1be5c-ffea-5f82-b277-6ac057112641 '-- not reported female '-- '-- '-- '-- white TCGA-24-1104_demographic Dead '-- '-- '-- '-- 21486 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 959 '-- '-- '-- 0873cccd-2a97-4273-853e-70877183474b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1104_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1104_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1104_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aee42219-aa22-4f9f-8344-ff29a4f1268d '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV f9f44f86-10c7-4473-b156-5afbfa9a2ad0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1104 56 false '-- '-- '-- '-- -20527 1933 2ab1be5c-ffea-5f82-b277-6ac057112641 '-- not reported female '-- '-- '-- '-- white TCGA-24-1104_demographic Dead '-- '-- '-- '-- 20527 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ac7b7a1d-8dbb-502b-bd62-6f2ca7f711c4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1104_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1113 1001 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1104_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 402 '-- mg '-- '-- '-- '-- 296fa800-601e-4606-ab08-d88101cf3005 '-- yes '-- '-- Chemotherapy +TCGA-OV f9f44f86-10c7-4473-b156-5afbfa9a2ad0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1104 56 false '-- '-- '-- '-- -20527 1933 2ab1be5c-ffea-5f82-b277-6ac057112641 '-- not reported female '-- '-- '-- '-- white TCGA-24-1104_demographic Dead '-- '-- '-- '-- 20527 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ac7b7a1d-8dbb-502b-bd62-6f2ca7f711c4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1104_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1113 1001 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1104_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1800 '-- mg '-- '-- '-- '-- 3be90a53-45fa-411e-bc9e-f0fc95f9e5d1 '-- yes '-- '-- Chemotherapy +TCGA-OV f9f44f86-10c7-4473-b156-5afbfa9a2ad0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1104 56 false '-- '-- '-- '-- -20527 1933 2ab1be5c-ffea-5f82-b277-6ac057112641 '-- not reported female '-- '-- '-- '-- white TCGA-24-1104_demographic Dead '-- '-- '-- '-- 20527 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ac7b7a1d-8dbb-502b-bd62-6f2ca7f711c4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1104_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- 969 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1104_treatment '-- '-- '-- '-- '-- '-- Distant Site '-- '-- '-- '-- '-- '-- '-- '-- 4b77d291-8bc5-5c6b-8245-beef617493f5 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV f9f44f86-10c7-4473-b156-5afbfa9a2ad0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1104 56 false '-- '-- '-- '-- -20527 1933 2ab1be5c-ffea-5f82-b277-6ac057112641 '-- not reported female '-- '-- '-- '-- white TCGA-24-1104_demographic Dead '-- '-- '-- '-- 20527 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ac7b7a1d-8dbb-502b-bd62-6f2ca7f711c4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1104_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1589 1526 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1104_treatment2 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 190 '-- mg '-- '-- '-- '-- 7dc75866-8764-4a58-a404-02dc51103fda '-- yes '-- '-- Chemotherapy +TCGA-OV f9f44f86-10c7-4473-b156-5afbfa9a2ad0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1104 56 false '-- '-- '-- '-- -20527 1933 2ab1be5c-ffea-5f82-b277-6ac057112641 '-- not reported female '-- '-- '-- '-- white TCGA-24-1104_demographic Dead '-- '-- '-- '-- 20527 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ac7b7a1d-8dbb-502b-bd62-6f2ca7f711c4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1104_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 175 30 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1104_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1518 '-- mg '-- '-- '-- '-- b7c6bcf5-45f4-4e56-af71-bdb4fee14f54 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f9f44f86-10c7-4473-b156-5afbfa9a2ad0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1104 56 false '-- '-- '-- '-- -20527 1933 2ab1be5c-ffea-5f82-b277-6ac057112641 '-- not reported female '-- '-- '-- '-- white TCGA-24-1104_demographic Dead '-- '-- '-- '-- 20527 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ac7b7a1d-8dbb-502b-bd62-6f2ca7f711c4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1104_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 175 30 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1104_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 250 '-- mg '-- '-- '-- '-- c7b292a4-cf27-4eee-aa40-edde2e410d7b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f9f44f86-10c7-4473-b156-5afbfa9a2ad0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1104 56 false '-- '-- '-- '-- -20527 1933 2ab1be5c-ffea-5f82-b277-6ac057112641 '-- not reported female '-- '-- '-- '-- white TCGA-24-1104_demographic Dead '-- '-- '-- '-- 20527 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ac7b7a1d-8dbb-502b-bd62-6f2ca7f711c4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1104_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1876 1858 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1104_treatment8 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 438 '-- mg '-- '-- '-- '-- efaddf61-43e7-45b5-be68-3fe3ca7049a9 '-- yes '-- '-- Chemotherapy +TCGA-OV f9f44f86-10c7-4473-b156-5afbfa9a2ad0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1104 56 false '-- '-- '-- '-- -20527 1933 2ab1be5c-ffea-5f82-b277-6ac057112641 '-- not reported female '-- '-- '-- '-- white TCGA-24-1104_demographic Dead '-- '-- '-- '-- 20527 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- ac7b7a1d-8dbb-502b-bd62-6f2ca7f711c4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1104_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 175 30 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1104_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2007 '-- mg '-- '-- '-- '-- f5929fd6-cbf4-4798-9318-49e4dbcd0b6e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV fbb45305-de8d-4baf-8bd0-047b29c2e9d9 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0924 45 false '-- '-- '-- '-- -16670 '-- 2bf5429c-69b5-528e-ba15-0b4626f97010 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0924_demographic Alive '-- '-- '-- '-- 16670 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5fece8ec-73b8-509c-8a0c-0f513822d210 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0924_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0924_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1c2a9638-4ab5-4cf9-9d22-fe9987229d06 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV fbb45305-de8d-4baf-8bd0-047b29c2e9d9 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0924 45 false '-- '-- '-- '-- -16670 '-- 2bf5429c-69b5-528e-ba15-0b4626f97010 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0924_demographic Alive '-- '-- '-- '-- 16670 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5fece8ec-73b8-509c-8a0c-0f513822d210 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0924_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 143 60 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0924_treatment Clinical Trial '-- '-- '-- '-- '-- '-- '-- 920 '-- mg '-- '-- '-- '-- 2faff6a9-9bea-53eb-9127-0273d6838332 Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV fbb45305-de8d-4baf-8bd0-047b29c2e9d9 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0924 45 false '-- '-- '-- '-- -16670 '-- 2bf5429c-69b5-528e-ba15-0b4626f97010 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0924_demographic Alive '-- '-- '-- '-- 16670 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5fece8ec-73b8-509c-8a0c-0f513822d210 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0924_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 143 38 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0924_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3474d606-293a-4fa9-b71b-4777f36bdedd Adjuvant yes '-- '-- Chemotherapy +TCGA-OV fbb45305-de8d-4baf-8bd0-047b29c2e9d9 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0924 45 false '-- '-- '-- '-- -16670 '-- 2bf5429c-69b5-528e-ba15-0b4626f97010 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0924_demographic Alive '-- '-- '-- '-- 16670 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5fece8ec-73b8-509c-8a0c-0f513822d210 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0924_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 143 38 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0924_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- c4f7b9e7-5c58-4e3b-aa1d-d8b100c51126 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV fbb45305-de8d-4baf-8bd0-047b29c2e9d9 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0924 45 false '-- '-- '-- '-- -16670 '-- 2bf5429c-69b5-528e-ba15-0b4626f97010 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0924_demographic Alive '-- '-- '-- '-- 16670 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 5fece8ec-73b8-509c-8a0c-0f513822d210 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0924_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 213 164 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0924_treatment4 Clinical Trial '-- '-- '-- '-- '-- '-- '-- 15 '-- mg/kg '-- '-- '-- '-- d2949494-eeb4-437a-bf83-d9be85c8d223 Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV fbb45305-de8d-4baf-8bd0-047b29c2e9d9 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0924 45 false '-- '-- '-- '-- -16670 '-- 2bf5429c-69b5-528e-ba15-0b4626f97010 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0924_demographic Alive '-- '-- '-- '-- 17632 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 962 '-- '-- '-- ea5ebba5-b3ae-4336-bfd9-92da3a601159 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0924_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0924_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV fd4740db-76a8-4362-be71-7b609479bb67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2398 71 false '-- '-- '-- '-- -26267 1369 f3608d2c-1467-5436-8977-622ae51edd70 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2398_demographic Dead '-- '-- '-- '-- 26844 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 577 '-- '-- '-- 3dcb35de-69ee-4f99-9f32-038132c3e383 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-2398_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-2398_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2398_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 008f743b-1fcf-4a1b-84c7-0a49b29ae784 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV fd4740db-76a8-4362-be71-7b609479bb67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2398 71 false '-- '-- '-- '-- -26267 1369 f3608d2c-1467-5436-8977-622ae51edd70 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2398_demographic Dead '-- '-- '-- '-- 26844 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 577 '-- '-- '-- 3dcb35de-69ee-4f99-9f32-038132c3e383 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-2398_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-2398_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2398_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 771ed1df-5ba6-484e-a768-6d8dd3e380d3 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV fd4740db-76a8-4362-be71-7b609479bb67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2398 71 false '-- '-- '-- '-- -26267 1369 f3608d2c-1467-5436-8977-622ae51edd70 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2398_demographic Dead '-- '-- '-- '-- 26267 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b83acbb5-bdc4-5596-ae26-e11bf4b79790 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2398_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 638 603 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2398_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 545fec3a-d48e-437f-9d81-840f1f9be7ad '-- yes '-- '-- Chemotherapy +TCGA-OV fd4740db-76a8-4362-be71-7b609479bb67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2398 71 false '-- '-- '-- '-- -26267 1369 f3608d2c-1467-5436-8977-622ae51edd70 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2398_demographic Dead '-- '-- '-- '-- 26267 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b83acbb5-bdc4-5596-ae26-e11bf4b79790 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2398_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 151 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2398_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7001d3c4-a429-4f6a-a50e-984375dc7363 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV fd4740db-76a8-4362-be71-7b609479bb67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2398 71 false '-- '-- '-- '-- -26267 1369 f3608d2c-1467-5436-8977-622ae51edd70 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2398_demographic Dead '-- '-- '-- '-- 26267 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b83acbb5-bdc4-5596-ae26-e11bf4b79790 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2398_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2398_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ac0f159b-3ac5-4b0f-a8f0-04ebdcc8de75 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV fd4740db-76a8-4362-be71-7b609479bb67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2398 71 false '-- '-- '-- '-- -26267 1369 f3608d2c-1467-5436-8977-622ae51edd70 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2398_demographic Dead '-- '-- '-- '-- 26267 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b83acbb5-bdc4-5596-ae26-e11bf4b79790 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2398_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 151 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2398_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c11261eb-5820-4638-9745-62da5eeb72cb Adjuvant yes '-- '-- Chemotherapy +TCGA-OV fd4740db-76a8-4362-be71-7b609479bb67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2398 71 false '-- '-- '-- '-- -26267 1369 f3608d2c-1467-5436-8977-622ae51edd70 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2398_demographic Dead '-- '-- '-- '-- 26267 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- b83acbb5-bdc4-5596-ae26-e11bf4b79790 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2398_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 638 608 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2398_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d4a15da1-ef9a-5d35-804f-0da34e4d7b6b '-- yes '-- '-- Chemotherapy +TCGA-OV fdf83fdf-dfbb-4306-9a1b-b4487d18b402 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1120 60 false '-- '-- '-- '-- -22148 '-- 46d2a0a9-20fb-5a03-b80b-113e9217d392 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1120_demographic Alive '-- '-- '-- '-- 22148 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- efacf32e-acbf-5aa1-bc08-b71cd624aea2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1120_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1120_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 00993f0c-e31e-4e16-a6c8-dc730268d924 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV fdf83fdf-dfbb-4306-9a1b-b4487d18b402 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1120 60 false '-- '-- '-- '-- -22148 '-- 46d2a0a9-20fb-5a03-b80b-113e9217d392 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1120_demographic Alive '-- '-- '-- '-- 22148 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- efacf32e-acbf-5aa1-bc08-b71cd624aea2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1120_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 146 63 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-23-1120_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 700 '-- mg '-- '-- '-- '-- 0c6ffdd4-bb6f-404d-99a9-215713236262 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV fdf83fdf-dfbb-4306-9a1b-b4487d18b402 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1120 60 false '-- '-- '-- '-- -22148 '-- 46d2a0a9-20fb-5a03-b80b-113e9217d392 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1120_demographic Alive '-- '-- '-- '-- 22148 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- efacf32e-acbf-5aa1-bc08-b71cd624aea2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1120_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 146 63 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-23-1120_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2090 '-- mg '-- '-- '-- '-- b15fe942-b529-546b-a2da-c3bc718654e9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV fe0e3851-d8cb-4533-9536-b4826cd25f87 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1699 57 false '-- '-- '-- '-- -21130 1106 5ee5fdf5-f33a-5bd5-81e5-568f5772b628 '-- not reported female '-- '-- '-- '-- white TCGA-29-1699_demographic Dead '-- '-- '-- '-- 21130 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 1bd094f3-6920-5234-b706-e5a90b2cdf6c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1699_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV fe402983-70da-44db-b7b1-c32702ddde26 Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1509 64 false '-- '-- '-- '-- -23481 '-- 1c90a4f4-86be-5c63-81d0-0a48ef654c51 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1509_demographic Alive '-- '-- '-- '-- 24059 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 578 '-- '-- '-- 306eeedd-1dfc-4655-9336-6a54dd578e5f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1509_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1509_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV fe402983-70da-44db-b7b1-c32702ddde26 Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1509 64 false '-- '-- '-- '-- -23481 '-- 1c90a4f4-86be-5c63-81d0-0a48ef654c51 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1509_demographic Alive '-- '-- '-- '-- 23481 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 67fe78ea-3168-5753-80bf-85495328d780 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1509_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1509_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 827ca0a6-8be5-44a1-ab5d-041102f50bc1 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV fe402983-70da-44db-b7b1-c32702ddde26 Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1509 64 false '-- '-- '-- '-- -23481 '-- 1c90a4f4-86be-5c63-81d0-0a48ef654c51 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1509_demographic Alive '-- '-- '-- '-- 23481 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 67fe78ea-3168-5753-80bf-85495328d780 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1509_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 127 21 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1509_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 87c1a7a8-25cc-545d-977d-350a3fdf0993 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV fe402983-70da-44db-b7b1-c32702ddde26 Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1509 64 false '-- '-- '-- '-- -23481 '-- 1c90a4f4-86be-5c63-81d0-0a48ef654c51 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1509_demographic Alive '-- '-- '-- '-- 23481 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 67fe78ea-3168-5753-80bf-85495328d780 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1509_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 127 21 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1509_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b047d2c0-19f6-4fad-97bf-8f7797e9a05c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV feda41d8-ca56-425d-b149-4d5485328107 Informed Consent 75 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1357 52 false '-- '-- '-- '-- -18999 '-- d7683fcc-e135-5577-a315-c40ebae61ab8 '-- not reported female '-- '-- '-- '-- not reported TCGA-04-1357_demographic Alive '-- '-- '-- '-- 18999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8c7d9620-74be-55aa-a89c-500df4e535a1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1357_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1357_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8cb06eb9-9055-4e88-95c8-0246feec2116 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV feda41d8-ca56-425d-b149-4d5485328107 Informed Consent 75 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1357 52 false '-- '-- '-- '-- -18999 '-- d7683fcc-e135-5577-a315-c40ebae61ab8 '-- not reported female '-- '-- '-- '-- not reported TCGA-04-1357_demographic Alive '-- '-- '-- '-- 18999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8c7d9620-74be-55aa-a89c-500df4e535a1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1357_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1357_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ad9e2c2c-271c-5716-a98c-7fd282c7ccfd Adjuvant yes Not Reported '-- Pharmaceutical Therapy, NOS +TCGA-OV fef1696c-a8f4-4db6-8615-e486522baaaa Informed Consent 110 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0966 78 false '-- '-- '-- '-- -28529 '-- 385531c7-4f02-5ce6-97f6-56ec690678d5 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-24-0966_demographic Alive '-- '-- '-- '-- 28529 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6068ff26-e91d-597d-ae69-4436a0c104bb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0966_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 120 21 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0966_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1390 '-- mg '-- '-- '-- '-- 4fab6540-16a7-4932-9250-e19a266325bf Adjuvant yes '-- '-- Chemotherapy +TCGA-OV fef1696c-a8f4-4db6-8615-e486522baaaa Informed Consent 110 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0966 78 false '-- '-- '-- '-- -28529 '-- 385531c7-4f02-5ce6-97f6-56ec690678d5 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-24-0966_demographic Alive '-- '-- '-- '-- 28529 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6068ff26-e91d-597d-ae69-4436a0c104bb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0966_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 120 71 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-0966_treatment3 Clinical Trial '-- '-- '-- '-- '-- '-- '-- 2457 '-- mg '-- '-- '-- '-- 5bee2a4e-1181-4b5f-aea1-9d59f47cddf1 Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV fef1696c-a8f4-4db6-8615-e486522baaaa Informed Consent 110 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0966 78 false '-- '-- '-- '-- -28529 '-- 385531c7-4f02-5ce6-97f6-56ec690678d5 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-24-0966_demographic Alive '-- '-- '-- '-- 28529 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6068ff26-e91d-597d-ae69-4436a0c104bb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0966_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 120 21 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0966_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 2456 '-- mg '-- '-- '-- '-- ce67b43c-ed64-51ef-999f-c4ee5733ecb5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV fef1696c-a8f4-4db6-8615-e486522baaaa Informed Consent 110 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0966 78 false '-- '-- '-- '-- -28529 '-- 385531c7-4f02-5ce6-97f6-56ec690678d5 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-24-0966_demographic Alive '-- '-- '-- '-- 28529 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 6068ff26-e91d-597d-ae69-4436a0c104bb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0966_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-0966_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f674f495-d0fb-4ea3-a40e-3a2ba11c54be Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ff844242-7559-4b07-b09e-69ea40e5ac6b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1871 70 false '-- '-- '-- '-- -25627 760 11b4e5ef-b402-56df-93fc-234b9948ff8a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1871_demographic Dead '-- '-- '-- '-- 25857 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 230 '-- '-- '-- 37eccca5-4beb-49c7-84b5-5129d14e6849 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1871_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1871_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1871_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 56d06c30-3b07-44ef-a483-4152623bf442 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV ff844242-7559-4b07-b09e-69ea40e5ac6b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1871 70 false '-- '-- '-- '-- -25627 760 11b4e5ef-b402-56df-93fc-234b9948ff8a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1871_demographic Dead '-- '-- '-- '-- 25857 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 230 '-- '-- '-- 37eccca5-4beb-49c7-84b5-5129d14e6849 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1871_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1871_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1871_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6dab0372-aa5c-4ccd-9faf-ff4d7449d634 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ff844242-7559-4b07-b09e-69ea40e5ac6b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1871 70 false '-- '-- '-- '-- -25627 760 11b4e5ef-b402-56df-93fc-234b9948ff8a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1871_demographic Dead '-- '-- '-- '-- 25627 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3ad77def-4237-50a7-8713-aced286f9033 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1871_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- 233 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1871_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 62d764a9-0294-43d6-9664-196dc6ed387e '-- yes '-- '-- Chemotherapy +TCGA-OV ff844242-7559-4b07-b09e-69ea40e5ac6b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1871 70 false '-- '-- '-- '-- -25627 760 11b4e5ef-b402-56df-93fc-234b9948ff8a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1871_demographic Dead '-- '-- '-- '-- 25627 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3ad77def-4237-50a7-8713-aced286f9033 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1871_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- 47 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1871_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c49b41bb-35a6-4c68-99bc-4ea808db78f9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ff844242-7559-4b07-b09e-69ea40e5ac6b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1871 70 false '-- '-- '-- '-- -25627 760 11b4e5ef-b402-56df-93fc-234b9948ff8a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1871_demographic Dead '-- '-- '-- '-- 25627 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3ad77def-4237-50a7-8713-aced286f9033 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1871_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- 47 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1871_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cc5e28af-74cd-5bc1-90fe-341af0a76949 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ff844242-7559-4b07-b09e-69ea40e5ac6b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1871 70 false '-- '-- '-- '-- -25627 760 11b4e5ef-b402-56df-93fc-234b9948ff8a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1871_demographic Dead '-- '-- '-- '-- 25627 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 3ad77def-4237-50a7-8713-aced286f9033 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1871_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1871_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d71645e1-797c-479f-ac2d-4797991b2377 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ff844242-7559-4b07-b09e-69ea40e5ac6b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1871 70 false '-- '-- '-- '-- -25627 760 11b4e5ef-b402-56df-93fc-234b9948ff8a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1871_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d3ba9a3b-20d8-4e8a-8b6f-315377fd8c3a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1871_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1871_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 334 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1871_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1761cea5-8221-4b91-b9f2-00fdd40f9a74 '-- yes '-- '-- Surgery, NOS +TCGA-OV ff844242-7559-4b07-b09e-69ea40e5ac6b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1871 70 false '-- '-- '-- '-- -25627 760 11b4e5ef-b402-56df-93fc-234b9948ff8a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1871_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d3ba9a3b-20d8-4e8a-8b6f-315377fd8c3a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1871_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1871_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1871_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 26023094-7eee-4a87-8c5b-3c007007cccb '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ff844242-7559-4b07-b09e-69ea40e5ac6b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1871 70 false '-- '-- '-- '-- -25627 760 11b4e5ef-b402-56df-93fc-234b9948ff8a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1871_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d3ba9a3b-20d8-4e8a-8b6f-315377fd8c3a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1871_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1871_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1871_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 90a35a6e-d07f-4e6d-845a-e5f2510068c5 '-- yes '-- '-- Pharmaceutical Therapy, NOS diff --git a/combine-subtypes.R b/combine-subtypes.R new file mode 100644 index 0000000..e661034 --- /dev/null +++ b/combine-subtypes.R @@ -0,0 +1,84 @@ +clinical <- read.delim("data/clinical.cart.2025-04-08/clinical.tsv", header = TRUE, sep = "\t", comment.char = "#") +clinical <- clinical[, !sapply(clinical, function(col) all(col == "'--"))] + +# Identify which columns are fixed across all rows +is_fixed <- sapply(clinical, function(col) length(unique(col)) == 1) + +# Split the dataframe +clinical_fixed <- clinical[, is_fixed, drop = FALSE] +clinical_var <- clinical[, !is_fixed, drop = FALSE] + + +library(ggplot2) +library(dplyr) +library(stringr) +library(purrr) + +### Step 1: Extract sample IDs from rownames / names for all subtype systems + +# Helland +helland_ids <- rownames(helland.subtypes$subtype.scores) %>% + str_extract("^[^\\.]+") +helland_df <- data.frame( + case_id = helland_ids, + Helland = helland.subtypes$Helland.subtypes, + Helland_score = helland.subtypes$subtype.scores +) + +# Konecny +konecny_ids <- rownames(konecny.subtypes$spearman.cc.vals) %>% + str_extract("^[^\\.]+") +konecny_df <- data.frame( + case_id = konecny_ids, + Konecny = konecny.subtypes$Konecny.subtypes, + Konecny_corr = konecny.subtypes$spearman.cc.vals +) + +# Bentink +bentink_ids <- names(bentink.subtypes$angio$score) %>% + str_extract("^[^\\.]+") +bentink_df <- data.frame( + case_id = bentink_ids, + Bentink = bentink.subtypes$angio$subtype +) + +# Verhaak +verhaak_ids <- row.names(verhaak.subtypes$gsva.out) %>% + str_extract("^[^\\.]+") +verhaak_df <- data.frame( + case_id = verhaak_ids, + Verhaak = verhaak.subtypes$Verhaak.subtypes, + Verhaak_gsva = verhaak.subtypes$gsva.out +) + +# Consensus +consensus_ids <- row.names(conc.subtypes$rf.probs) %>% + str_extract("^[^\\.]+") +conc_df <- data.frame( + case_id = consensus_ids, + ConsensusOV = conc.subtypes$consensusOV.subtypes, + ConsensusOV_probs = conc.subtypes$rf.probs +) + + +### Step 2: Combine all subtype assignments into one data frame + +subtype_df <- reduce( + list(helland_df, bentink_df, verhaak_df, konecny_df, conc_df), + full_join, + by = "case_id" +) + +write.csv(subtype_df, "rna/subtypes.csv") + + +# Possible clinical variables of interest: +# diagnoses.primary_diagnosis +# diagnoses.tumor_grade +# diagnoses.year_of_diagnosis +# diagnoses.tissue_or_organ_of_origin +# demographic.days_to_birth +# demogragphipc.days_to_death + + + diff --git a/convert.R b/convert.R new file mode 100644 index 0000000..c16c79e --- /dev/null +++ b/convert.R @@ -0,0 +1,46 @@ +library(dplyr) + +mart <- biomaRt::useMart(biomart = "ENSEMBL_MART_ENSEMBL", + dataset = "hsapiens_gene_ensembl", + host = "https://www.ensembl.org") + +genes <- getBM( + filters = "ensembl_gene_id", + attributes = c("ensembl_gene_id", "entrezgene_id", "hgnc_symbol"), + values = rna_expression_combined$ensembl_gene_id, + mart = mart +) + +# Check for duplicated values in the entrez or gene symbol columns +genes %>% + group_by(ensembl_gene_id) %>% + summarise( + n_entrez = n_distinct(entrezgene_id, na.rm = TRUE), + n_symbol = n_distinct(hgnc_symbol, na.rm = TRUE), + .groups = "drop" + ) %>% + filter(n_entrez > 1 | n_symbol > 1) + +# Remove duplicated ENSEMBL --> entrez mappings by retaining the shortest +# entrez id (most likely to not be a LOC) +genes_clean <- genes %>% + mutate(entrez_length = nchar(as.character(entrezgene_id))) %>% + group_by(ensembl_gene_id) %>% + slice_min(entrez_length, with_ties = FALSE) %>% + ungroup() %>% + select(-entrez_length) # drop helper column + +# Check for duplicated values in the entrez or gene symbol columns +# (should hopefully be empty now) +genes_clean %>% + group_by(ensembl_gene_id) %>% + summarise( + n_entrez = n_distinct(entrezgene_id, na.rm = TRUE), + n_symbol = n_distinct(hgnc_symbol, na.rm = TRUE), + .groups = "drop" + ) %>% + filter(n_entrez > 1 | n_symbol > 1) + + # Join to add 'name' from lookup table into df1 +rna_expression_combined <- rna_expression_combined %>% + left_join(genes_clean, by = "ensembl_gene_id") diff --git a/data/jnci_JNCI_14_0249_s05.xls b/data/jnci_JNCI_14_0249_s05.xls new file mode 100644 index 0000000..9f7b75c Binary files /dev/null and b/data/jnci_JNCI_14_0249_s05.xls differ diff --git a/mirna_clinical.tsv b/mirna_clinical.tsv new file mode 100644 index 0000000..cdb8949 --- /dev/null +++ b/mirna_clinical.tsv @@ -0,0 +1,3670 @@ +project.project_id cases.case_id cases.consent_type cases.days_to_consent cases.days_to_lost_to_followup cases.disease_type cases.index_date cases.lost_to_followup cases.primary_site cases.submitter_id demographic.age_at_index demographic.age_is_obfuscated demographic.cause_of_death demographic.cause_of_death_source demographic.country_of_birth demographic.country_of_residence_at_enrollment demographic.days_to_birth demographic.days_to_death demographic.demographic_id demographic.education_level demographic.ethnicity demographic.gender demographic.marital_status demographic.occupation_duration_years demographic.population_group demographic.premature_at_birth demographic.race demographic.submitter_id demographic.vital_status demographic.weeks_gestation_at_birth demographic.year_of_birth demographic.year_of_death diagnoses.adrenal_hormone diagnoses.age_at_diagnosis diagnoses.ajcc_clinical_m diagnoses.ajcc_clinical_n diagnoses.ajcc_clinical_stage diagnoses.ajcc_clinical_t diagnoses.ajcc_pathologic_m diagnoses.ajcc_pathologic_n diagnoses.ajcc_pathologic_stage diagnoses.ajcc_pathologic_t diagnoses.ajcc_serum_tumor_markers diagnoses.ajcc_staging_system_edition diagnoses.ann_arbor_b_symptoms diagnoses.ann_arbor_b_symptoms_described diagnoses.ann_arbor_clinical_stage diagnoses.ann_arbor_extranodal_involvement diagnoses.ann_arbor_pathologic_stage diagnoses.best_overall_response diagnoses.burkitt_lymphoma_clinical_variant diagnoses.calgb_risk_group diagnoses.cancer_detection_method diagnoses.child_pugh_classification diagnoses.clark_level diagnoses.classification_of_tumor diagnoses.cog_liver_stage diagnoses.cog_neuroblastoma_risk_group diagnoses.cog_renal_stage diagnoses.cog_rhabdomyosarcoma_risk_group diagnoses.contiguous_organ_invaded diagnoses.days_to_best_overall_response diagnoses.days_to_diagnosis diagnoses.days_to_last_follow_up diagnoses.days_to_last_known_disease_status diagnoses.days_to_recurrence diagnoses.diagnosis_id diagnoses.diagnosis_is_primary_disease diagnoses.double_expressor_lymphoma diagnoses.double_hit_lymphoma diagnoses.eln_risk_classification diagnoses.enneking_msts_grade diagnoses.enneking_msts_metastasis diagnoses.enneking_msts_stage diagnoses.enneking_msts_tumor_site diagnoses.ensat_clinical_m diagnoses.ensat_pathologic_n diagnoses.ensat_pathologic_stage diagnoses.ensat_pathologic_t diagnoses.esophageal_columnar_dysplasia_degree diagnoses.esophageal_columnar_metaplasia_present diagnoses.fab_morphology_code diagnoses.figo_stage diagnoses.figo_staging_edition_year diagnoses.first_symptom_longest_duration diagnoses.first_symptom_prior_to_diagnosis diagnoses.gastric_esophageal_junction_involvement diagnoses.gleason_grade_group diagnoses.gleason_grade_tertiary diagnoses.gleason_patterns_percent diagnoses.gleason_score diagnoses.goblet_cells_columnar_mucosa_present diagnoses.icd_10_code diagnoses.igcccg_stage diagnoses.inpc_grade diagnoses.inpc_histologic_group diagnoses.inrg_stage diagnoses.inss_stage diagnoses.international_prognostic_index diagnoses.irs_group diagnoses.irs_stage diagnoses.ishak_fibrosis_score diagnoses.iss_stage diagnoses.last_known_disease_status diagnoses.laterality diagnoses.margin_distance diagnoses.margins_involved_site diagnoses.masaoka_stage diagnoses.max_tumor_bulk_site diagnoses.medulloblastoma_molecular_classification diagnoses.melanoma_known_primary diagnoses.metastasis_at_diagnosis diagnoses.metastasis_at_diagnosis_site diagnoses.method_of_diagnosis diagnoses.micropapillary_features diagnoses.mitosis_karyorrhexis_index diagnoses.mitotic_count diagnoses.morphology diagnoses.ovarian_specimen_status diagnoses.ovarian_surface_involvement diagnoses.papillary_renal_cell_type diagnoses.pediatric_kidney_staging diagnoses.peritoneal_fluid_cytological_status diagnoses.pregnant_at_diagnosis diagnoses.primary_diagnosis diagnoses.primary_disease diagnoses.primary_gleason_grade diagnoses.prior_malignancy diagnoses.prior_treatment diagnoses.progression_or_recurrence diagnoses.residual_disease diagnoses.satellite_nodule_present diagnoses.secondary_gleason_grade diagnoses.site_of_resection_or_biopsy diagnoses.sites_of_involvement diagnoses.sites_of_involvement_count diagnoses.submitter_id diagnoses.supratentorial_localization diagnoses.synchronous_malignancy diagnoses.tissue_or_organ_of_origin diagnoses.tumor_burden diagnoses.tumor_confined_to_organ_of_origin diagnoses.tumor_depth diagnoses.tumor_focality diagnoses.tumor_grade diagnoses.tumor_grade_category diagnoses.tumor_of_origin diagnoses.tumor_regression_grade diagnoses.uicc_clinical_m diagnoses.uicc_clinical_n diagnoses.uicc_clinical_stage diagnoses.uicc_clinical_t diagnoses.uicc_pathologic_m diagnoses.uicc_pathologic_n diagnoses.uicc_pathologic_stage diagnoses.uicc_pathologic_t diagnoses.uicc_staging_system_edition diagnoses.ulceration_indicator diagnoses.weiss_assessment_findings diagnoses.weiss_assessment_score diagnoses.who_cns_grade diagnoses.who_nte_grade diagnoses.wilms_tumor_histologic_subtype diagnoses.year_of_diagnosis treatments.chemo_concurrent_to_radiation treatments.clinical_trial_indicator treatments.course_number treatments.days_to_treatment_end treatments.days_to_treatment_start treatments.drug_category treatments.embolic_agent treatments.initial_disease_status treatments.lesions_treated_number treatments.margin_distance treatments.margin_status treatments.margins_involved_site treatments.number_of_cycles treatments.number_of_fractions treatments.prescribed_dose treatments.prescribed_dose_units treatments.pretreatment treatments.protocol_identifier treatments.radiosensitizing_agent treatments.reason_treatment_ended treatments.reason_treatment_not_given treatments.regimen_or_line_of_therapy treatments.residual_disease treatments.route_of_administration treatments.submitter_id treatments.therapeutic_agents treatments.therapeutic_level_achieved treatments.therapeutic_levels_achieved treatments.therapeutic_target_level treatments.timepoint_category treatments.treatment_anatomic_site treatments.treatment_anatomic_sites treatments.treatment_arm treatments.treatment_dose treatments.treatment_dose_max treatments.treatment_dose_units treatments.treatment_duration treatments.treatment_effect treatments.treatment_effect_indicator treatments.treatment_frequency treatments.treatment_id treatments.treatment_intent_type treatments.treatment_or_therapy treatments.treatment_outcome treatments.treatment_outcome_duration treatments.treatment_type +TCGA-OV 005a6517-2e5a-4ea3-ab36-531522723607 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1740 71 false '-- '-- '-- '-- -26169 74 e5fbcd98-33f9-575e-880d-cb5bb82420cb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1740_demographic Dead '-- '-- '-- '-- 26169 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 74.0 '-- '-- 6bce9673-5223-59f5-b869-2366b5e46652 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1740_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 74 23 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1740_treatment Tamoxifen '-- '-- '-- '-- '-- '-- '-- 1020 '-- mg '-- '-- '-- '-- cb2dc0c4-bd49-58f3-aa30-fc5f15c8fd08 Adjuvant yes '-- '-- Hormone Therapy +TCGA-OV 005a6517-2e5a-4ea3-ab36-531522723607 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1740 71 false '-- '-- '-- '-- -26169 74 e5fbcd98-33f9-575e-880d-cb5bb82420cb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1740_demographic Dead '-- '-- '-- '-- 26169 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 74.0 '-- '-- 6bce9673-5223-59f5-b869-2366b5e46652 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1740_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1740_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e458f367-1154-49ad-9075-b5ab3b8393f7 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 00630714-7ab3-44e1-afff-186300edae44 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0761 51 false '-- '-- '-- '-- -18697 1156 c2d49c44-eb7d-580a-8822-56bef7ab51ab '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0761_demographic Dead '-- '-- '-- '-- 19121 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 424 '-- '-- '-- 6e210a80-985b-457d-903f-65cdb7101cce false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0761_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0761_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 00630714-7ab3-44e1-afff-186300edae44 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0761 51 false '-- '-- '-- '-- -18697 1156 c2d49c44-eb7d-580a-8822-56bef7ab51ab '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0761_demographic Dead '-- '-- '-- '-- 19121 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 424 '-- '-- '-- f12065b8-bf43-4d3d-a6b2-f3e42796d92f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0761_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0761_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0761_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bc3f7a1c-f368-4b1d-9a38-d7d137243d40 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 00630714-7ab3-44e1-afff-186300edae44 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0761 51 false '-- '-- '-- '-- -18697 1156 c2d49c44-eb7d-580a-8822-56bef7ab51ab '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0761_demographic Dead '-- '-- '-- '-- 19121 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 424 '-- '-- '-- f12065b8-bf43-4d3d-a6b2-f3e42796d92f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0761_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0761_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0761_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cf790fb7-935d-4d36-8b0f-e82fba6b0241 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 00630714-7ab3-44e1-afff-186300edae44 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0761 51 false '-- '-- '-- '-- -18697 1156 c2d49c44-eb7d-580a-8822-56bef7ab51ab '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0761_demographic Dead '-- '-- '-- '-- 18697 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1156.0 '-- '-- fa91f476-c060-5d7c-8454-e8724950c497 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0761_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0761_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7d185e00-771d-4f4a-93a3-3628a29aaef3 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 00630714-7ab3-44e1-afff-186300edae44 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0761 51 false '-- '-- '-- '-- -18697 1156 c2d49c44-eb7d-580a-8822-56bef7ab51ab '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0761_demographic Dead '-- '-- '-- '-- 18697 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1156.0 '-- '-- fa91f476-c060-5d7c-8454-e8724950c497 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0761_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 221 53 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0761_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- 81b6f385-a045-55be-a833-6cdd9f23fedc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 00630714-7ab3-44e1-afff-186300edae44 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0761 51 false '-- '-- '-- '-- -18697 1156 c2d49c44-eb7d-580a-8822-56bef7ab51ab '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0761_demographic Dead '-- '-- '-- '-- 18697 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1156.0 '-- '-- fa91f476-c060-5d7c-8454-e8724950c497 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0761_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 221 53 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0761_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cb05f768-4d89-41e7-ac65-9c40b0e86af7 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 02594e5e-8751-47c1-9245-90c66984b665 Informed Consent 1787 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2051 42 false '-- '-- '-- '-- -15650 '-- d24768bc-31cf-5dee-8acb-c094538cc104 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-09-2051_demographic Alive '-- '-- '-- '-- 16233 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 583 '-- '-- '-- 11f82d0c-412a-4a32-97fd-947a654dd675 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-2051_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-2051_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2051_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3bacd4bf-071c-4f2d-bbd1-f46f72d3da6c '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 02594e5e-8751-47c1-9245-90c66984b665 Informed Consent 1787 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2051 42 false '-- '-- '-- '-- -15650 '-- d24768bc-31cf-5dee-8acb-c094538cc104 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-09-2051_demographic Alive '-- '-- '-- '-- 16233 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 583 '-- '-- '-- 11f82d0c-412a-4a32-97fd-947a654dd675 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-2051_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-2051_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2051_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 738babb1-270f-4688-b6ad-476cbbedd568 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 02594e5e-8751-47c1-9245-90c66984b665 Informed Consent 1787 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2051 42 false '-- '-- '-- '-- -15650 '-- d24768bc-31cf-5dee-8acb-c094538cc104 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-09-2051_demographic Alive '-- '-- '-- '-- 15650 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1919.0 '-- '-- 1d60ab6b-010d-5421-9e30-11b38b71be6e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2051_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1024 947 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2051_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 016cc344-a106-5152-a0c4-a64a22a43942 '-- yes '-- '-- Chemotherapy +TCGA-OV 02594e5e-8751-47c1-9245-90c66984b665 Informed Consent 1787 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2051 42 false '-- '-- '-- '-- -15650 '-- d24768bc-31cf-5dee-8acb-c094538cc104 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-09-2051_demographic Alive '-- '-- '-- '-- 15650 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1919.0 '-- '-- 1d60ab6b-010d-5421-9e30-11b38b71be6e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2051_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 155 8 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2051_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 02c5b353-13f8-4807-a70f-209f2490dd6f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 02594e5e-8751-47c1-9245-90c66984b665 Informed Consent 1787 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2051 42 false '-- '-- '-- '-- -15650 '-- d24768bc-31cf-5dee-8acb-c094538cc104 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-09-2051_demographic Alive '-- '-- '-- '-- 15650 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1919.0 '-- '-- 1d60ab6b-010d-5421-9e30-11b38b71be6e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2051_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2051_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 75b95e89-533b-47d5-bf7a-a81adb356f97 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 02594e5e-8751-47c1-9245-90c66984b665 Informed Consent 1787 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2051 42 false '-- '-- '-- '-- -15650 '-- d24768bc-31cf-5dee-8acb-c094538cc104 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-09-2051_demographic Alive '-- '-- '-- '-- 15650 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1919.0 '-- '-- 1d60ab6b-010d-5421-9e30-11b38b71be6e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2051_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 941 913 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2051_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 80d2f072-9130-43c0-a2b1-a080cb36b50b '-- yes '-- '-- Chemotherapy +TCGA-OV 02594e5e-8751-47c1-9245-90c66984b665 Informed Consent 1787 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2051 42 false '-- '-- '-- '-- -15650 '-- d24768bc-31cf-5dee-8acb-c094538cc104 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-09-2051_demographic Alive '-- '-- '-- '-- 15650 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1919.0 '-- '-- 1d60ab6b-010d-5421-9e30-11b38b71be6e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2051_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 941 913 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2051_treatment8 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 962e54d6-e283-43ac-9d96-65fae9c4054a '-- yes '-- '-- Chemotherapy +TCGA-OV 02594e5e-8751-47c1-9245-90c66984b665 Informed Consent 1787 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2051 42 false '-- '-- '-- '-- -15650 '-- d24768bc-31cf-5dee-8acb-c094538cc104 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-09-2051_demographic Alive '-- '-- '-- '-- 15650 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1919.0 '-- '-- 1d60ab6b-010d-5421-9e30-11b38b71be6e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2051_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1698 1586 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2051_treatment9 Carboplatin '-- '-- '-- '-- '-- '-- '-- 376 '-- mg '-- '-- '-- '-- 9f3a9498-b83e-403f-b857-a2e97bb64895 '-- yes '-- '-- Chemotherapy +TCGA-OV 02594e5e-8751-47c1-9245-90c66984b665 Informed Consent 1787 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2051 42 false '-- '-- '-- '-- -15650 '-- d24768bc-31cf-5dee-8acb-c094538cc104 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-09-2051_demographic Alive '-- '-- '-- '-- 15650 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1919.0 '-- '-- 1d60ab6b-010d-5421-9e30-11b38b71be6e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2051_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1698 1586 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2051_treatment7 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 1380 '-- mg '-- '-- '-- '-- b6c537e1-81b7-41c7-8371-d3bedf8da43f '-- yes '-- '-- Chemotherapy +TCGA-OV 02594e5e-8751-47c1-9245-90c66984b665 Informed Consent 1787 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2051 42 false '-- '-- '-- '-- -15650 '-- d24768bc-31cf-5dee-8acb-c094538cc104 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-09-2051_demographic Alive '-- '-- '-- '-- 15650 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1919.0 '-- '-- 1d60ab6b-010d-5421-9e30-11b38b71be6e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2051_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- 191 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2051_treatment5 Oregovomab '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c15a8ffe-81ea-4dfb-987d-149468436539 Consolidation Therapy yes '-- '-- Chemotherapy +TCGA-OV 02594e5e-8751-47c1-9245-90c66984b665 Informed Consent 1787 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2051 42 false '-- '-- '-- '-- -15650 '-- d24768bc-31cf-5dee-8acb-c094538cc104 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-09-2051_demographic Alive '-- '-- '-- '-- 15650 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1919.0 '-- '-- 1d60ab6b-010d-5421-9e30-11b38b71be6e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2051_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1024 947 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2051_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d283488f-dc25-44d2-ba56-411d306e65fb '-- yes '-- '-- Chemotherapy +TCGA-OV 02594e5e-8751-47c1-9245-90c66984b665 Informed Consent 1787 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2051 42 false '-- '-- '-- '-- -15650 '-- d24768bc-31cf-5dee-8acb-c094538cc104 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-09-2051_demographic Alive '-- '-- '-- '-- 15650 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1919.0 '-- '-- 1d60ab6b-010d-5421-9e30-11b38b71be6e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2051_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 155 8 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2051_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- e5506921-2e8f-4d6d-8a72-ae92f6bafdf0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 02594e5e-8751-47c1-9245-90c66984b665 Informed Consent 1787 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2051 42 false '-- '-- '-- '-- -15650 '-- d24768bc-31cf-5dee-8acb-c094538cc104 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-09-2051_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8e70a52a-42a3-4436-b32d-8220d4bae894 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-2051_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-2051_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2051_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3448609c-fee8-4e29-96ba-e2c4dd13d462 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 02594e5e-8751-47c1-9245-90c66984b665 Informed Consent 1787 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2051 42 false '-- '-- '-- '-- -15650 '-- d24768bc-31cf-5dee-8acb-c094538cc104 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-09-2051_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8e70a52a-42a3-4436-b32d-8220d4bae894 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-2051_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-2051_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2051_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 86ad1643-6715-4a09-bb1e-7429c8f14229 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 02594e5e-8751-47c1-9245-90c66984b665 Informed Consent 1787 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2051 42 false '-- '-- '-- '-- -15650 '-- d24768bc-31cf-5dee-8acb-c094538cc104 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-09-2051_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8e70a52a-42a3-4436-b32d-8220d4bae894 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-2051_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-2051_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 875 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2051_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b4f10e7d-5de8-4c55-8877-e97a2768deca '-- yes '-- '-- Surgery, NOS +TCGA-OV 02d9aa2e-b16a-48ea-a420-5daed9fd51a6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1427 58 false '-- '-- '-- '-- -21423 '-- ec306cf2-62ba-5e6a-b350-fab228fd3b76 '-- not reported female '-- '-- '-- '-- not reported TCGA-24-1427_demographic Alive '-- '-- '-- '-- 21423 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 147.0 '-- '-- 6adf251d-ef48-5413-8547-40f40921f744 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1427_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 147 14 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1427_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1996 '-- mg '-- '-- '-- '-- 38d34d79-35b6-4cd5-8661-9c7d686a9b5f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 02d9aa2e-b16a-48ea-a420-5daed9fd51a6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1427 58 false '-- '-- '-- '-- -21423 '-- ec306cf2-62ba-5e6a-b350-fab228fd3b76 '-- not reported female '-- '-- '-- '-- not reported TCGA-24-1427_demographic Alive '-- '-- '-- '-- 21423 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 147.0 '-- '-- 6adf251d-ef48-5413-8547-40f40921f744 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1427_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 147 14 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1427_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 3848 '-- mg '-- '-- '-- '-- 61d7052b-b5bb-5959-991d-9fab45e4ff79 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 02d9aa2e-b16a-48ea-a420-5daed9fd51a6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1427 58 false '-- '-- '-- '-- -21423 '-- ec306cf2-62ba-5e6a-b350-fab228fd3b76 '-- not reported female '-- '-- '-- '-- not reported TCGA-24-1427_demographic Alive '-- '-- '-- '-- 21423 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 147.0 '-- '-- 6adf251d-ef48-5413-8547-40f40921f744 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1427_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1427_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 82cc6d34-c9cc-45df-9a04-7b6ce8fa5edf Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0484a929-7a7f-4926-8d25-470ddab082ec Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1365 87 true '-- '-- '-- '-- -31925 '-- ad52a183-6a6a-50ad-8f74-a12962008af9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1365_demographic Alive '-- '-- '-- '-- 31925 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 947.0 '-- '-- 2dd073be-5331-55f3-bb9b-aa2a4a04d8b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1365_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 947 947 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1365_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 12f9ff7b-605d-48d4-b8f7-a4e563beca3b '-- yes '-- '-- Chemotherapy +TCGA-OV 0484a929-7a7f-4926-8d25-470ddab082ec Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1365 87 true '-- '-- '-- '-- -31925 '-- ad52a183-6a6a-50ad-8f74-a12962008af9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1365_demographic Alive '-- '-- '-- '-- 31925 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 947.0 '-- '-- 2dd073be-5331-55f3-bb9b-aa2a4a04d8b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1365_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 189 21 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1365_treatment5 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 11760 '-- mg '-- '-- '-- '-- 30ad66dd-c720-4e90-8888-2194448007d4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0484a929-7a7f-4926-8d25-470ddab082ec Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1365 87 true '-- '-- '-- '-- -31925 '-- ad52a183-6a6a-50ad-8f74-a12962008af9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1365_demographic Alive '-- '-- '-- '-- 31925 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 947.0 '-- '-- 2dd073be-5331-55f3-bb9b-aa2a4a04d8b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1365_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 189 21 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1365_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 5c924e77-3ff0-5b67-9f21-44d930d43e93 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0484a929-7a7f-4926-8d25-470ddab082ec Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1365 87 true '-- '-- '-- '-- -31925 '-- ad52a183-6a6a-50ad-8f74-a12962008af9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1365_demographic Alive '-- '-- '-- '-- 31925 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 947.0 '-- '-- 2dd073be-5331-55f3-bb9b-aa2a4a04d8b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1365_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 947 947 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1365_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4 '-- AUC '-- '-- '-- '-- adec6593-fcc4-4d16-990d-0a532622e53e '-- yes '-- '-- Chemotherapy +TCGA-OV 0484a929-7a7f-4926-8d25-470ddab082ec Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1365 87 true '-- '-- '-- '-- -31925 '-- ad52a183-6a6a-50ad-8f74-a12962008af9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1365_demographic Alive '-- '-- '-- '-- 31925 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 947.0 '-- '-- 2dd073be-5331-55f3-bb9b-aa2a4a04d8b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1365_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1365_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b6223261-6c6c-4e89-b19a-2f28564c4f29 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0484a929-7a7f-4926-8d25-470ddab082ec Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1365 87 true '-- '-- '-- '-- -31925 '-- ad52a183-6a6a-50ad-8f74-a12962008af9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1365_demographic Alive '-- '-- '-- '-- 31925 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 947.0 '-- '-- 2dd073be-5331-55f3-bb9b-aa2a4a04d8b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1365_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 947 947 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1365_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- c763474e-aef7-48d5-ba9c-1d5e0c70bfb1 '-- yes '-- '-- Chemotherapy +TCGA-OV 0484a929-7a7f-4926-8d25-470ddab082ec Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1365 87 true '-- '-- '-- '-- -31925 '-- ad52a183-6a6a-50ad-8f74-a12962008af9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1365_demographic Alive '-- '-- '-- '-- 31925 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 947.0 '-- '-- 2dd073be-5331-55f3-bb9b-aa2a4a04d8b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1365_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 947 947 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1365_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- c78558fa-3293-4b2a-816b-9ad3e54d2ff3 '-- yes '-- '-- Chemotherapy +TCGA-OV 0484a929-7a7f-4926-8d25-470ddab082ec Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1365 87 true '-- '-- '-- '-- -31925 '-- ad52a183-6a6a-50ad-8f74-a12962008af9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1365_demographic Alive '-- '-- '-- '-- 32872 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 947 '-- '-- '-- 8567c351-9463-4e64-b968-07a9cbae1e7b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1365_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1365_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1365_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5fec7896-8d8b-4150-8dfe-332b0db7d233 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 0484a929-7a7f-4926-8d25-470ddab082ec Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1365 87 true '-- '-- '-- '-- -31925 '-- ad52a183-6a6a-50ad-8f74-a12962008af9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1365_demographic Alive '-- '-- '-- '-- 32872 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 947 '-- '-- '-- 8567c351-9463-4e64-b968-07a9cbae1e7b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1365_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1365_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1365_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a001a74d-afe2-43b8-ab11-4ad985d43553 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 04ecaf38-0232-4dcd-9242-308a22cc1331 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1733 71 false '-- '-- '-- '-- -26180 '-- 84a893c5-e066-5859-b953-0c02021e7041 '-- not reported female '-- '-- '-- '-- white TCGA-61-1733_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 63c1e491-a690-4a13-a158-4cf3ab1ec63b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1733_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1733_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1733_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 67fef56c-df5e-4080-ad7e-2ccaa439b467 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 04ecaf38-0232-4dcd-9242-308a22cc1331 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1733 71 false '-- '-- '-- '-- -26180 '-- 84a893c5-e066-5859-b953-0c02021e7041 '-- not reported female '-- '-- '-- '-- white TCGA-61-1733_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 63c1e491-a690-4a13-a158-4cf3ab1ec63b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1733_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1733_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 175 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1733_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 985fd474-a1d4-4b3f-bf43-fcd1827c059b '-- yes '-- '-- Surgery, NOS +TCGA-OV 04ecaf38-0232-4dcd-9242-308a22cc1331 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1733 71 false '-- '-- '-- '-- -26180 '-- 84a893c5-e066-5859-b953-0c02021e7041 '-- not reported female '-- '-- '-- '-- white TCGA-61-1733_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 63c1e491-a690-4a13-a158-4cf3ab1ec63b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1733_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1733_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1733_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 99f9377c-c928-45cf-9f53-1fed7b60a0a7 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 04ecaf38-0232-4dcd-9242-308a22cc1331 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1733 71 false '-- '-- '-- '-- -26180 '-- 84a893c5-e066-5859-b953-0c02021e7041 '-- not reported female '-- '-- '-- '-- white TCGA-61-1733_demographic Alive '-- '-- '-- '-- 26180 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 967.0 '-- '-- a285514c-8992-5900-abf4-fa923c71587d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1733_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 625 484 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-1733_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 390 '-- mg '-- '-- '-- '-- 06638246-c709-445d-bef8-566221d6a6bc '-- yes '-- '-- Chemotherapy +TCGA-OV 04ecaf38-0232-4dcd-9242-308a22cc1331 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1733 71 false '-- '-- '-- '-- -26180 '-- 84a893c5-e066-5859-b953-0c02021e7041 '-- not reported female '-- '-- '-- '-- white TCGA-61-1733_demographic Alive '-- '-- '-- '-- 26180 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 967.0 '-- '-- a285514c-8992-5900-abf4-fa923c71587d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1733_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 625 484 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-1733_treatment5 Cisplatin '-- '-- '-- '-- '-- '-- '-- 720 '-- mg '-- '-- '-- '-- 1de4bc60-c345-4861-af9b-f84dffef0b13 '-- yes '-- '-- Chemotherapy +TCGA-OV 04ecaf38-0232-4dcd-9242-308a22cc1331 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1733 71 false '-- '-- '-- '-- -26180 '-- 84a893c5-e066-5859-b953-0c02021e7041 '-- not reported female '-- '-- '-- '-- white TCGA-61-1733_demographic Alive '-- '-- '-- '-- 26180 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 967.0 '-- '-- a285514c-8992-5900-abf4-fa923c71587d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1733_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 625 484 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-1733_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 582 '-- mg '-- '-- '-- '-- 8d610eee-dd81-4c5d-9515-f7e165d4ba42 '-- yes '-- '-- Chemotherapy +TCGA-OV 04ecaf38-0232-4dcd-9242-308a22cc1331 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1733 71 false '-- '-- '-- '-- -26180 '-- 84a893c5-e066-5859-b953-0c02021e7041 '-- not reported female '-- '-- '-- '-- white TCGA-61-1733_demographic Alive '-- '-- '-- '-- 26180 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 967.0 '-- '-- a285514c-8992-5900-abf4-fa923c71587d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1733_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 127 22 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1733_treatment6 Docetaxel '-- '-- '-- '-- '-- '-- '-- 638 '-- mg '-- '-- '-- '-- a4f4c31c-c369-4903-ab74-d007227711f4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 04ecaf38-0232-4dcd-9242-308a22cc1331 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1733 71 false '-- '-- '-- '-- -26180 '-- 84a893c5-e066-5859-b953-0c02021e7041 '-- not reported female '-- '-- '-- '-- white TCGA-61-1733_demographic Alive '-- '-- '-- '-- 26180 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 967.0 '-- '-- a285514c-8992-5900-abf4-fa923c71587d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1733_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 127 22 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1733_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3924 '-- mg '-- '-- '-- '-- bf774c9d-152f-4256-be2b-24eb96f9eb8a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 04ecaf38-0232-4dcd-9242-308a22cc1331 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1733 71 false '-- '-- '-- '-- -26180 '-- 84a893c5-e066-5859-b953-0c02021e7041 '-- not reported female '-- '-- '-- '-- white TCGA-61-1733_demographic Alive '-- '-- '-- '-- 26180 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 967.0 '-- '-- a285514c-8992-5900-abf4-fa923c71587d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1733_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 372 231 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1733_treatment Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 482 '-- mg '-- '-- '-- '-- c1f9e9f5-8b41-509f-ab2c-ef451286bf24 '-- yes '-- '-- Chemotherapy +TCGA-OV 04ecaf38-0232-4dcd-9242-308a22cc1331 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1733 71 false '-- '-- '-- '-- -26180 '-- 84a893c5-e066-5859-b953-0c02021e7041 '-- not reported female '-- '-- '-- '-- white TCGA-61-1733_demographic Alive '-- '-- '-- '-- 26180 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 967.0 '-- '-- a285514c-8992-5900-abf4-fa923c71587d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1733_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1733_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fcf6f9bf-046c-48f1-8062-690037814279 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 04ecaf38-0232-4dcd-9242-308a22cc1331 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1733 71 false '-- '-- '-- '-- -26180 '-- 84a893c5-e066-5859-b953-0c02021e7041 '-- not reported female '-- '-- '-- '-- white TCGA-61-1733_demographic Alive '-- '-- '-- '-- 26355 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 175 '-- '-- '-- e012df40-5194-4d56-a8ad-24d14eaf99fd false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1733_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1733_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1733_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 892cd39e-fdb7-4142-8559-e83bcf8051f0 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 04ecaf38-0232-4dcd-9242-308a22cc1331 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1733 71 false '-- '-- '-- '-- -26180 '-- 84a893c5-e066-5859-b953-0c02021e7041 '-- not reported female '-- '-- '-- '-- white TCGA-61-1733_demographic Alive '-- '-- '-- '-- 26355 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 175 '-- '-- '-- e012df40-5194-4d56-a8ad-24d14eaf99fd false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1733_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1733_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1733_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9d32df55-87b4-4e87-947c-131d717f8891 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2400.0 '-- '-- 167fdc87-5221-5292-9ca8-de9c2fc60e5b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1688_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- 2235 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1688_treatment '-- '-- '-- '-- '-- '-- Distant Site '-- '-- '-- '-- '-- '-- '-- '-- 041496d3-ca85-527c-8ad9-c68f439ff33e Palliative yes '-- '-- Radiation, External Beam +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2400.0 '-- '-- 167fdc87-5221-5292-9ca8-de9c2fc60e5b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1688_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- 1719 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1688_treatment4 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 057af198-d6ec-4ee9-87db-7a3043dacc9c '-- yes '-- '-- Chemotherapy +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2400.0 '-- '-- 167fdc87-5221-5292-9ca8-de9c2fc60e5b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1688_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- 197 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1688_treatment7 Etoposide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1c70ec62-b18b-4083-867d-9831176ec26e '-- yes '-- '-- Chemotherapy +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2400.0 '-- '-- 167fdc87-5221-5292-9ca8-de9c2fc60e5b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1688_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- 197 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1688_treatment15 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3118faa4-87df-4734-a129-3cd741f62f62 '-- yes '-- '-- Chemotherapy +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2400.0 '-- '-- 167fdc87-5221-5292-9ca8-de9c2fc60e5b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1688_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1688_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 46118353-3f79-4b57-b926-a3847cf8b62d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2400.0 '-- '-- 167fdc87-5221-5292-9ca8-de9c2fc60e5b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1688_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-29-1688_treatment9 Etoposide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 49a3ef4a-1529-4c32-9c4f-464c2ea241ae '-- yes '-- '-- Chemotherapy +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2400.0 '-- '-- 167fdc87-5221-5292-9ca8-de9c2fc60e5b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1688_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1688_treatment16 Etoposide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 81a67a72-8505-4b6d-8635-5b20eece7e11 '-- yes '-- '-- Chemotherapy +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2400.0 '-- '-- 167fdc87-5221-5292-9ca8-de9c2fc60e5b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1688_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- 743 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1688_treatment12 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 97ce1490-775a-4c72-a418-814605a38385 '-- yes '-- '-- Chemotherapy +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2400.0 '-- '-- 167fdc87-5221-5292-9ca8-de9c2fc60e5b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1688_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- 743 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1688_treatment10 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 99b621da-b576-4308-a607-81abea762a3f '-- yes '-- '-- Chemotherapy +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2400.0 '-- '-- 167fdc87-5221-5292-9ca8-de9c2fc60e5b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1688_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- 2395 '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1688_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9debaa58-8658-4a2a-8d58-6ababcbb5e17 '-- yes '-- '-- Chemotherapy +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2400.0 '-- '-- 167fdc87-5221-5292-9ca8-de9c2fc60e5b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1688_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- 1900 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1688_treatment8 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- a2d86c89-3d5a-4053-b65f-a04dfaab0f3a '-- yes '-- '-- Chemotherapy +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2400.0 '-- '-- 167fdc87-5221-5292-9ca8-de9c2fc60e5b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1688_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1688_treatment13 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a462ed40-249b-43a0-b524-5cfdc5f9099b '-- yes '-- '-- Chemotherapy +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2400.0 '-- '-- 167fdc87-5221-5292-9ca8-de9c2fc60e5b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1688_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- 1900 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1688_treatment14 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- b3671444-b9b7-44b1-a136-c22aa86f6744 '-- yes '-- '-- Chemotherapy +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2400.0 '-- '-- 167fdc87-5221-5292-9ca8-de9c2fc60e5b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1688_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- 2395 '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1688_treatment6 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c05c99f0-8278-4419-83f0-78017841a298 '-- yes '-- '-- Chemotherapy +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2400.0 '-- '-- 167fdc87-5221-5292-9ca8-de9c2fc60e5b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1688_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1688_treatment3 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c811e457-a297-436b-a7d2-c967fda9c42d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2400.0 '-- '-- 167fdc87-5221-5292-9ca8-de9c2fc60e5b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1688_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1688_treatment11 Altretamine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dcb21ccb-96d9-429c-9117-3b3186fb4a85 '-- yes '-- '-- Chemotherapy +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2c445b11-e0a4-45b5-9356-3909dc91c101 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1688_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1688_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1688_treatment19 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4ba06afb-24d4-42b9-920c-1aaff6c7fc93 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2c445b11-e0a4-45b5-9356-3909dc91c101 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1688_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1688_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 184 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1688_treatment21 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b140dfaf-6832-430b-9a4b-b485676c9875 '-- yes '-- '-- Surgery, NOS +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2c445b11-e0a4-45b5-9356-3909dc91c101 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1688_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1688_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1688_treatment20 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b397a651-340c-448f-9a5a-839484fb65c0 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14758 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 184 '-- '-- '-- a532a364-aae6-40f9-b258-45e606ef2f5c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1688_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1688_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1688_treatment18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dda3cc17-3726-4c48-a59b-ca06f0e537c7 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 05019013-7ea5-4905-ac79-901146ba2ee2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1688 39 false '-- '-- '-- '-- -14574 2400 99a2d09f-0a52-5f26-8588-75ce3c50c76b '-- not reported female '-- '-- '-- '-- white TCGA-29-1688_demographic Dead '-- '-- '-- '-- 14758 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 184 '-- '-- '-- a532a364-aae6-40f9-b258-45e606ef2f5c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1688_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1688_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1688_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f07d9918-b25d-4d3e-819f-f2d4312c2057 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 05263959-c4f5-4540-b6d2-d8c8a128861f Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2104 53 false '-- '-- '-- '-- -19432 '-- f30ef53b-8af1-5eac-93f1-59318e77e83b '-- not reported female '-- '-- '-- '-- white TCGA-61-2104_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0db77645-2e1d-4d38-bc54-320f5e465b27 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2104_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2104_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2104_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0a2cceca-690f-4031-9e9b-3aacf2ac6f31 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 05263959-c4f5-4540-b6d2-d8c8a128861f Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2104 53 false '-- '-- '-- '-- -19432 '-- f30ef53b-8af1-5eac-93f1-59318e77e83b '-- not reported female '-- '-- '-- '-- white TCGA-61-2104_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0db77645-2e1d-4d38-bc54-320f5e465b27 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2104_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2104_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2104_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 610fa5b3-2954-48e0-8acf-96a934869db6 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 05263959-c4f5-4540-b6d2-d8c8a128861f Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2104 53 false '-- '-- '-- '-- -19432 '-- f30ef53b-8af1-5eac-93f1-59318e77e83b '-- not reported female '-- '-- '-- '-- white TCGA-61-2104_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0db77645-2e1d-4d38-bc54-320f5e465b27 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2104_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2104_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1680 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2104_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e3c8b210-cd81-4aff-9094-a943c3fbcfa7 '-- yes '-- '-- Surgery, NOS +TCGA-OV 05263959-c4f5-4540-b6d2-d8c8a128861f Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2104 53 false '-- '-- '-- '-- -19432 '-- f30ef53b-8af1-5eac-93f1-59318e77e83b '-- not reported female '-- '-- '-- '-- white TCGA-61-2104_demographic Alive '-- '-- '-- '-- 21112 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1680 '-- '-- '-- 3ef1e18c-ab6c-4dd6-8a12-87499ee63bd5 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2104_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2104_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2104_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 17099a7a-db0c-413e-9878-2411a359e127 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 05263959-c4f5-4540-b6d2-d8c8a128861f Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2104 53 false '-- '-- '-- '-- -19432 '-- f30ef53b-8af1-5eac-93f1-59318e77e83b '-- not reported female '-- '-- '-- '-- white TCGA-61-2104_demographic Alive '-- '-- '-- '-- 21112 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1680 '-- '-- '-- 3ef1e18c-ab6c-4dd6-8a12-87499ee63bd5 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2104_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2104_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2104_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 19a71bee-d7be-415b-8643-6ef797fa49c1 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 05263959-c4f5-4540-b6d2-d8c8a128861f Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2104 53 false '-- '-- '-- '-- -19432 '-- f30ef53b-8af1-5eac-93f1-59318e77e83b '-- not reported female '-- '-- '-- '-- white TCGA-61-2104_demographic Alive '-- '-- '-- '-- 19432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2338.0 '-- '-- d4287397-a95b-595b-8b83-3bc606532e4f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2104_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2104_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 05f00603-033d-4f9f-aacb-c6930473ef5a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 05263959-c4f5-4540-b6d2-d8c8a128861f Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2104 53 false '-- '-- '-- '-- -19432 '-- f30ef53b-8af1-5eac-93f1-59318e77e83b '-- not reported female '-- '-- '-- '-- white TCGA-61-2104_demographic Alive '-- '-- '-- '-- 19432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2338.0 '-- '-- d4287397-a95b-595b-8b83-3bc606532e4f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2104_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2104_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 27f4f46d-7396-4834-b230-099d5788a046 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 05263959-c4f5-4540-b6d2-d8c8a128861f Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2104 53 false '-- '-- '-- '-- -19432 '-- f30ef53b-8af1-5eac-93f1-59318e77e83b '-- not reported female '-- '-- '-- '-- white TCGA-61-2104_demographic Alive '-- '-- '-- '-- 19432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2338.0 '-- '-- d4287397-a95b-595b-8b83-3bc606532e4f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2104_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 1197 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2104_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 333972f9-33b6-4816-8f56-4d3871fff237 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 05263959-c4f5-4540-b6d2-d8c8a128861f Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2104 53 false '-- '-- '-- '-- -19432 '-- f30ef53b-8af1-5eac-93f1-59318e77e83b '-- not reported female '-- '-- '-- '-- white TCGA-61-2104_demographic Alive '-- '-- '-- '-- 19432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2338.0 '-- '-- d4287397-a95b-595b-8b83-3bc606532e4f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2104_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 1197 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2104_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 50049cf8-eb1d-497c-94ad-7ef834c15686 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 05263959-c4f5-4540-b6d2-d8c8a128861f Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2104 53 false '-- '-- '-- '-- -19432 '-- f30ef53b-8af1-5eac-93f1-59318e77e83b '-- not reported female '-- '-- '-- '-- white TCGA-61-2104_demographic Alive '-- '-- '-- '-- 19432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2338.0 '-- '-- d4287397-a95b-595b-8b83-3bc606532e4f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2104_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 1681 1680 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-61-2104_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 200 '-- mg '-- '-- '-- '-- dbddac35-5f96-5ee1-80a7-39d98af27eaf '-- yes '-- '-- Chemotherapy +TCGA-OV 05263959-c4f5-4540-b6d2-d8c8a128861f Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2104 53 false '-- '-- '-- '-- -19432 '-- f30ef53b-8af1-5eac-93f1-59318e77e83b '-- not reported female '-- '-- '-- '-- white TCGA-61-2104_demographic Alive '-- '-- '-- '-- 19432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2338.0 '-- '-- d4287397-a95b-595b-8b83-3bc606532e4f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2104_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2104_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e319d572-4089-4adf-ab37-9bc1a3136a23 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 05263959-c4f5-4540-b6d2-d8c8a128861f Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2104 53 false '-- '-- '-- '-- -19432 '-- f30ef53b-8af1-5eac-93f1-59318e77e83b '-- not reported female '-- '-- '-- '-- white TCGA-61-2104_demographic Alive '-- '-- '-- '-- 19432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2338.0 '-- '-- d4287397-a95b-595b-8b83-3bc606532e4f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2104_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 2338 1838 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2104_treatment5 Taxane Compound '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e7124674-3c23-49cf-9a30-b3246f7ad6c7 '-- yes '-- '-- Chemotherapy +TCGA-OV 05ba5839-e00a-4a9e-8ba3-ecb490781e62 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1422 82 false '-- '-- '-- '-- -30234 23 838591b6-cdae-547d-adfe-1dfcc60db703 '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1422_demographic Dead '-- '-- '-- '-- 30234 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 23.0 '-- '-- f2ffb8cb-705b-5752-84dd-53e3f9fab12b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1422_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1422_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8a06f721-acc6-4f57-b56a-60f8f3987d3f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 05ba5839-e00a-4a9e-8ba3-ecb490781e62 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1422 82 false '-- '-- '-- '-- -30234 23 838591b6-cdae-547d-adfe-1dfcc60db703 '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1422_demographic Dead '-- '-- '-- '-- 30234 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 23.0 '-- '-- f2ffb8cb-705b-5752-84dd-53e3f9fab12b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1422_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1422_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a9ea5705-2622-5dc2-b25c-5610263acf81 Adjuvant no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 05eb8bd5-d31b-4595-921a-366e53ea5a8b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2049 64 false '-- '-- '-- '-- -23410 '-- 496231fa-ebc5-581d-b4dd-eff19bbbc5a0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2049_demographic Alive '-- '-- '-- '-- 23410 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3419.0 '-- '-- 1ac44f44-0217-5773-9fd4-ede8304b4576 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2049_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 172 42 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2049_treatment9 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 2e22dcf3-978b-403d-8db3-c8ab6b4addbd Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 05eb8bd5-d31b-4595-921a-366e53ea5a8b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2049 64 false '-- '-- '-- '-- -23410 '-- 496231fa-ebc5-581d-b4dd-eff19bbbc5a0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2049_demographic Alive '-- '-- '-- '-- 23410 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3419.0 '-- '-- 1ac44f44-0217-5773-9fd4-ede8304b4576 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2049_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 995 995 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2049_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 322 '-- mg '-- '-- '-- '-- 2e93058a-f6c7-5757-974f-9f23d90e08bc '-- yes '-- '-- Chemotherapy +TCGA-OV 05eb8bd5-d31b-4595-921a-366e53ea5a8b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2049 64 false '-- '-- '-- '-- -23410 '-- 496231fa-ebc5-581d-b4dd-eff19bbbc5a0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2049_demographic Alive '-- '-- '-- '-- 23410 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3419.0 '-- '-- 1ac44f44-0217-5773-9fd4-ede8304b4576 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2049_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1431 1410 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2049_treatment5 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 304e74d6-3e46-45f0-9daf-8780c9d5963d '-- yes '-- '-- Chemotherapy +TCGA-OV 05eb8bd5-d31b-4595-921a-366e53ea5a8b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2049 64 false '-- '-- '-- '-- -23410 '-- 496231fa-ebc5-581d-b4dd-eff19bbbc5a0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2049_demographic Alive '-- '-- '-- '-- 23410 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3419.0 '-- '-- 1ac44f44-0217-5773-9fd4-ede8304b4576 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2049_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1110 1017 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2049_treatment10 Topotecan '-- '-- '-- '-- '-- '-- '-- 2 '-- mg '-- '-- '-- '-- 3434cac9-e665-4d3c-9bd4-efca4f07f988 '-- yes '-- '-- Chemotherapy +TCGA-OV 05eb8bd5-d31b-4595-921a-366e53ea5a8b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2049 64 false '-- '-- '-- '-- -23410 '-- 496231fa-ebc5-581d-b4dd-eff19bbbc5a0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2049_demographic Alive '-- '-- '-- '-- 23410 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3419.0 '-- '-- 1ac44f44-0217-5773-9fd4-ede8304b4576 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2049_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 981 962 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2049_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 92 '-- mg '-- '-- '-- '-- 726fdbdf-5f79-49e3-8bd9-1f7a24cfab3b '-- yes '-- '-- Chemotherapy +TCGA-OV 05eb8bd5-d31b-4595-921a-366e53ea5a8b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2049 64 false '-- '-- '-- '-- -23410 '-- 496231fa-ebc5-581d-b4dd-eff19bbbc5a0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2049_demographic Alive '-- '-- '-- '-- 23410 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3419.0 '-- '-- 1ac44f44-0217-5773-9fd4-ede8304b4576 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2049_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2049_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a620fdaf-ce4d-4315-a93a-40b13e4f87d8 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 05eb8bd5-d31b-4595-921a-366e53ea5a8b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2049 64 false '-- '-- '-- '-- -23410 '-- 496231fa-ebc5-581d-b4dd-eff19bbbc5a0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2049_demographic Alive '-- '-- '-- '-- 23410 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3419.0 '-- '-- 1ac44f44-0217-5773-9fd4-ede8304b4576 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2049_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1768 1712 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2049_treatment11 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1600 '-- mg '-- '-- '-- '-- b7be51c1-8a4f-42c0-a082-ce90f7d93dc5 '-- yes '-- '-- Chemotherapy +TCGA-OV 05eb8bd5-d31b-4595-921a-366e53ea5a8b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2049 64 false '-- '-- '-- '-- -23410 '-- 496231fa-ebc5-581d-b4dd-eff19bbbc5a0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2049_demographic Alive '-- '-- '-- '-- 23410 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3419.0 '-- '-- 1ac44f44-0217-5773-9fd4-ede8304b4576 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2049_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1964 1779 '-- '-- Progressive Disease '-- '-- '-- '-- 20 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2049_treatment6 Docetaxel '-- '-- '-- '-- '-- '-- '-- 46 '-- mg '-- '-- '-- '-- c480a8c2-b1c0-4651-bd36-ff8f3f699cc9 '-- yes '-- '-- Chemotherapy +TCGA-OV 05eb8bd5-d31b-4595-921a-366e53ea5a8b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2049 64 false '-- '-- '-- '-- -23410 '-- 496231fa-ebc5-581d-b4dd-eff19bbbc5a0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2049_demographic Alive '-- '-- '-- '-- 23410 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3419.0 '-- '-- 1ac44f44-0217-5773-9fd4-ede8304b4576 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2049_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 981 962 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2049_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 218 '-- mg '-- '-- '-- '-- c5636aaf-fc4e-4836-822b-2fe55c9f9481 '-- yes '-- '-- Chemotherapy +TCGA-OV 05eb8bd5-d31b-4595-921a-366e53ea5a8b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2049 64 false '-- '-- '-- '-- -23410 '-- 496231fa-ebc5-581d-b4dd-eff19bbbc5a0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2049_demographic Alive '-- '-- '-- '-- 23410 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3419.0 '-- '-- 1ac44f44-0217-5773-9fd4-ede8304b4576 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2049_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 995 995 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2049_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 649 '-- mg '-- '-- '-- '-- e821e830-bae9-4d98-88e9-fb1ac9dddd7d '-- yes '-- '-- Chemotherapy +TCGA-OV 05eb8bd5-d31b-4595-921a-366e53ea5a8b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2049 64 false '-- '-- '-- '-- -23410 '-- 496231fa-ebc5-581d-b4dd-eff19bbbc5a0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2049_demographic Alive '-- '-- '-- '-- 23410 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3419.0 '-- '-- 1ac44f44-0217-5773-9fd4-ede8304b4576 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2049_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1431 1410 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2049_treatment8 Gemcitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ea3d8b84-541a-4193-b6a4-49d79879947f '-- yes '-- '-- Chemotherapy +TCGA-OV 05eb8bd5-d31b-4595-921a-366e53ea5a8b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2049 64 false '-- '-- '-- '-- -23410 '-- 496231fa-ebc5-581d-b4dd-eff19bbbc5a0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2049_demographic Alive '-- '-- '-- '-- 23410 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3419.0 '-- '-- 1ac44f44-0217-5773-9fd4-ede8304b4576 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2049_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 172 42 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2049_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- f30621f7-99b6-4646-8bb6-3011ba730832 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 05eb8bd5-d31b-4595-921a-366e53ea5a8b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2049 64 false '-- '-- '-- '-- -23410 '-- 496231fa-ebc5-581d-b4dd-eff19bbbc5a0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2049_demographic Alive '-- '-- '-- '-- 24363 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 953 '-- '-- '-- d4e40e8a-6273-40d0-8fea-f66cf71ee9ee false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-2049_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-2049_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2049_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a5d4abbc-d768-429d-95d9-057f1d830e1b '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 05eb8bd5-d31b-4595-921a-366e53ea5a8b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2049 64 false '-- '-- '-- '-- -23410 '-- 496231fa-ebc5-581d-b4dd-eff19bbbc5a0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2049_demographic Alive '-- '-- '-- '-- 24363 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 953 '-- '-- '-- d4e40e8a-6273-40d0-8fea-f66cf71ee9ee false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-2049_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-2049_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2049_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b8e5f236-4edb-4ae8-bba8-e4623c1cf269 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 062982f8-9f49-425a-99e9-008af5ed9040 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2035 65 false '-- '-- '-- '-- -23855 857 07018a25-f50f-5622-ac08-b364ea38ff12 '-- not reported female '-- '-- '-- '-- white TCGA-24-2035_demographic Dead '-- '-- '-- '-- 23855 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 857.0 '-- '-- 0e6482de-13e4-5907-b7c0-18515ebd9c3d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2035_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2035_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 052a1ab0-3690-46b0-93a9-5ec33b9e099b Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 062982f8-9f49-425a-99e9-008af5ed9040 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2035 65 false '-- '-- '-- '-- -23855 857 07018a25-f50f-5622-ac08-b364ea38ff12 '-- not reported female '-- '-- '-- '-- white TCGA-24-2035_demographic Dead '-- '-- '-- '-- 23855 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 857.0 '-- '-- 0e6482de-13e4-5907-b7c0-18515ebd9c3d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2035_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2035_treatment4 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2c437e8c-ef7c-4307-808d-6a26d821976f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 062982f8-9f49-425a-99e9-008af5ed9040 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2035 65 false '-- '-- '-- '-- -23855 857 07018a25-f50f-5622-ac08-b364ea38ff12 '-- not reported female '-- '-- '-- '-- white TCGA-24-2035_demographic Dead '-- '-- '-- '-- 23855 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 857.0 '-- '-- 0e6482de-13e4-5907-b7c0-18515ebd9c3d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2035_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- 688 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-2035_treatment7 Etoposide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5b0af149-7523-4f85-97a8-2eb00593caae '-- yes '-- '-- Chemotherapy +TCGA-OV 062982f8-9f49-425a-99e9-008af5ed9040 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2035 65 false '-- '-- '-- '-- -23855 857 07018a25-f50f-5622-ac08-b364ea38ff12 '-- not reported female '-- '-- '-- '-- white TCGA-24-2035_demographic Dead '-- '-- '-- '-- 23855 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 857.0 '-- '-- 0e6482de-13e4-5907-b7c0-18515ebd9c3d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2035_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 679 343 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2035_treatment6 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7cab499b-45bd-4160-82a0-4531c6437cb2 '-- yes '-- '-- Chemotherapy +TCGA-OV 062982f8-9f49-425a-99e9-008af5ed9040 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2035 65 false '-- '-- '-- '-- -23855 857 07018a25-f50f-5622-ac08-b364ea38ff12 '-- not reported female '-- '-- '-- '-- white TCGA-24-2035_demographic Dead '-- '-- '-- '-- 23855 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 857.0 '-- '-- 0e6482de-13e4-5907-b7c0-18515ebd9c3d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2035_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2035_treatment3 Valspodar '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7f982705-4e3a-4708-8ef0-eb0625c051a4 '-- yes '-- '-- Chemotherapy +TCGA-OV 062982f8-9f49-425a-99e9-008af5ed9040 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2035 65 false '-- '-- '-- '-- -23855 857 07018a25-f50f-5622-ac08-b364ea38ff12 '-- not reported female '-- '-- '-- '-- white TCGA-24-2035_demographic Dead '-- '-- '-- '-- 23855 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 857.0 '-- '-- 0e6482de-13e4-5907-b7c0-18515ebd9c3d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2035_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2035_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 87ee65f0-37d3-4a36-8e82-bdf885d45b95 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 062982f8-9f49-425a-99e9-008af5ed9040 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2035 65 false '-- '-- '-- '-- -23855 857 07018a25-f50f-5622-ac08-b364ea38ff12 '-- not reported female '-- '-- '-- '-- white TCGA-24-2035_demographic Dead '-- '-- '-- '-- 23855 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 857.0 '-- '-- 0e6482de-13e4-5907-b7c0-18515ebd9c3d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2035_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2035_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d183dbca-1016-5ed6-8e50-f554c32c5b76 '-- yes '-- '-- Chemotherapy +TCGA-OV 062982f8-9f49-425a-99e9-008af5ed9040 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2035 65 false '-- '-- '-- '-- -23855 857 07018a25-f50f-5622-ac08-b364ea38ff12 '-- not reported female '-- '-- '-- '-- white TCGA-24-2035_demographic Dead '-- '-- '-- '-- 23855 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 857.0 '-- '-- 0e6482de-13e4-5907-b7c0-18515ebd9c3d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2035_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- 688 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-2035_treatment2 Ifosfamide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e70859dd-6c5f-4eab-bf4a-41257869f24f '-- yes '-- '-- Chemotherapy +TCGA-OV 062982f8-9f49-425a-99e9-008af5ed9040 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2035 65 false '-- '-- '-- '-- -23855 857 07018a25-f50f-5622-ac08-b364ea38ff12 '-- not reported female '-- '-- '-- '-- white TCGA-24-2035_demographic Dead '-- '-- '-- '-- 24142 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 287 '-- '-- '-- cbfcccd6-6b5c-4ea2-84ef-a3518ee747c4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2035_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2035_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2035_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 14914e7f-43dc-413e-a435-aaef673aba48 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 062982f8-9f49-425a-99e9-008af5ed9040 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2035 65 false '-- '-- '-- '-- -23855 857 07018a25-f50f-5622-ac08-b364ea38ff12 '-- not reported female '-- '-- '-- '-- white TCGA-24-2035_demographic Dead '-- '-- '-- '-- 24142 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 287 '-- '-- '-- cbfcccd6-6b5c-4ea2-84ef-a3518ee747c4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2035_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2035_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2035_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 156633c7-eb54-425b-8464-17d53a115b77 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 0724f800-e873-45d0-bc56-809d0ec4f6e9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1861 74 false '-- '-- '-- '-- -27103 1058 306e3132-57a0-51fc-87e4-1d00bf8466d0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1861_demographic Dead '-- '-- '-- '-- 27103 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1058.0 '-- '-- 4df9c324-0ddb-5e04-beb7-a6c37bf5e8a8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1861_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 0740321b-f8a5-4e1d-b390-ca6187598fac '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0891 73 false '-- '-- '-- '-- -26886 3128 2fbefc9e-1e10-5799-9005-b6fe7e10fd13 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0891_demographic Dead '-- '-- '-- '-- 26886 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3128.0 '-- '-- 3d1dbced-2a51-54ba-b21b-6492adf26960 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0891_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 183 71 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0891_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1050 '-- mg/m2 '-- '-- '-- '-- aec64362-cf2b-4571-81b2-62a23feb6881 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0740321b-f8a5-4e1d-b390-ca6187598fac '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0891 73 false '-- '-- '-- '-- -26886 3128 2fbefc9e-1e10-5799-9005-b6fe7e10fd13 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0891_demographic Dead '-- '-- '-- '-- 26886 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3128.0 '-- '-- 3d1dbced-2a51-54ba-b21b-6492adf26960 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0891_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 183 71 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0891_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ba25d659-2194-544e-8781-bbbc25a11f2a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0740321b-f8a5-4e1d-b390-ca6187598fac '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0891 73 false '-- '-- '-- '-- -26886 3128 2fbefc9e-1e10-5799-9005-b6fe7e10fd13 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0891_demographic Dead '-- '-- '-- '-- 26886 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3128.0 '-- '-- 3d1dbced-2a51-54ba-b21b-6492adf26960 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0891_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0891_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e59429a3-2fbe-463e-9670-34f9587f0194 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0740321b-f8a5-4e1d-b390-ca6187598fac '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0891 73 false '-- '-- '-- '-- -26886 3128 2fbefc9e-1e10-5799-9005-b6fe7e10fd13 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0891_demographic Dead '-- '-- '-- '-- 27648 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 762 '-- '-- '-- 56146f35-f5e1-4943-8ddc-17ddb51d5cf4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0891_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0891_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 0740321b-f8a5-4e1d-b390-ca6187598fac '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0891 73 false '-- '-- '-- '-- -26886 3128 2fbefc9e-1e10-5799-9005-b6fe7e10fd13 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0891_demographic Dead '-- '-- '-- '-- 27648 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 762 '-- '-- '-- dc1636d6-55b4-4750-bf8c-0a9e13f46373 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0891_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0891_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0891_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 00c4332e-5d04-4e70-8fd7-414326e43981 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 0740321b-f8a5-4e1d-b390-ca6187598fac '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0891 73 false '-- '-- '-- '-- -26886 3128 2fbefc9e-1e10-5799-9005-b6fe7e10fd13 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0891_demographic Dead '-- '-- '-- '-- 27648 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 762 '-- '-- '-- dc1636d6-55b4-4750-bf8c-0a9e13f46373 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0891_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0891_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0891_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0e787ac1-5ff4-4137-9629-7d3353e11d44 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 077079c3-6877-467b-b9cc-5c650aae4f07 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1877 81 false '-- '-- '-- '-- -29615 730 b10665a5-1955-5d79-92f4-5917a33bfa22 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1877_demographic Dead '-- '-- '-- '-- 29615 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 730.0 '-- '-- 96598802-b58e-538b-a149-13802533384c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1877_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1877_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0236fb9f-5b83-493f-bd81-622d93ec11a2 '-- yes '-- '-- Chemotherapy +TCGA-OV 077079c3-6877-467b-b9cc-5c650aae4f07 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1877 81 false '-- '-- '-- '-- -29615 730 b10665a5-1955-5d79-92f4-5917a33bfa22 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1877_demographic Dead '-- '-- '-- '-- 29615 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 730.0 '-- '-- 96598802-b58e-538b-a149-13802533384c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1877_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1877_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1b1923a4-ea51-47ea-ac3d-c332529058a4 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 077079c3-6877-467b-b9cc-5c650aae4f07 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1877 81 false '-- '-- '-- '-- -29615 730 b10665a5-1955-5d79-92f4-5917a33bfa22 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1877_demographic Dead '-- '-- '-- '-- 29615 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 730.0 '-- '-- 96598802-b58e-538b-a149-13802533384c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1877_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- 31 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1877_treatment Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- db1814cc-564c-5d6c-b21d-ce6dc60a5b57 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 077079c3-6877-467b-b9cc-5c650aae4f07 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1877 81 false '-- '-- '-- '-- -29615 730 b10665a5-1955-5d79-92f4-5917a33bfa22 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1877_demographic Dead '-- '-- '-- '-- 29615 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 730.0 '-- '-- 96598802-b58e-538b-a149-13802533384c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1877_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- 31 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1877_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f45810bf-0df7-49e5-89a5-12ad17252585 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 077079c3-6877-467b-b9cc-5c650aae4f07 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1877 81 false '-- '-- '-- '-- -29615 730 b10665a5-1955-5d79-92f4-5917a33bfa22 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1877_demographic Dead '-- '-- '-- '-- 30164 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 549 '-- '-- '-- f7caa21c-9210-44fc-bd83-09de43029041 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1877_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1877_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1877_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 390c2520-c3e0-4509-8ec7-11a564c53953 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 077079c3-6877-467b-b9cc-5c650aae4f07 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1877 81 false '-- '-- '-- '-- -29615 730 b10665a5-1955-5d79-92f4-5917a33bfa22 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1877_demographic Dead '-- '-- '-- '-- 30164 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 549 '-- '-- '-- f7caa21c-9210-44fc-bd83-09de43029041 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1877_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1877_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1877_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e73ab2cd-bb31-4295-b86b-bff6384fe4b9 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 07a859fc-6f78-4905-9035-90e2403dbe8d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1326 61 false '-- '-- '-- '-- -22339 1249 64e2c7b4-6061-5765-b200-5ae4c9836b78 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1326_demographic Dead '-- '-- '-- '-- 22735 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 396 '-- '-- '-- 9e71118d-7fb5-4f0b-b005-2a56cafa47d1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1326_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1326_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1326_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 107ef6a2-38d6-4714-84c2-16e28b8b0407 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 07a859fc-6f78-4905-9035-90e2403dbe8d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1326 61 false '-- '-- '-- '-- -22339 1249 64e2c7b4-6061-5765-b200-5ae4c9836b78 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1326_demographic Dead '-- '-- '-- '-- 22735 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 396 '-- '-- '-- 9e71118d-7fb5-4f0b-b005-2a56cafa47d1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1326_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1326_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1326_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9ab8ca43-4d1d-4e08-8347-456ce14545ee '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 07a859fc-6f78-4905-9035-90e2403dbe8d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1326 61 false '-- '-- '-- '-- -22339 1249 64e2c7b4-6061-5765-b200-5ae4c9836b78 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1326_demographic Dead '-- '-- '-- '-- 22339 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1249.0 '-- '-- ea06b490-4522-5521-8124-5f077e608a8a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1326_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 518 396 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1326_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1df02ff0-49fe-4919-869e-855fb55d9456 '-- yes '-- '-- Chemotherapy +TCGA-OV 07a859fc-6f78-4905-9035-90e2403dbe8d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1326 61 false '-- '-- '-- '-- -22339 1249 64e2c7b4-6061-5765-b200-5ae4c9836b78 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1326_demographic Dead '-- '-- '-- '-- 22339 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1249.0 '-- '-- ea06b490-4522-5521-8124-5f077e608a8a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1326_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 153 31 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1326_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 611953da-651f-5fa7-b92a-89fdd2c73eb3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 07a859fc-6f78-4905-9035-90e2403dbe8d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1326 61 false '-- '-- '-- '-- -22339 1249 64e2c7b4-6061-5765-b200-5ae4c9836b78 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1326_demographic Dead '-- '-- '-- '-- 22339 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1249.0 '-- '-- ea06b490-4522-5521-8124-5f077e608a8a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1326_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 153 31 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1326_treatment4 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aa7d846d-0c31-4047-9757-84078fa43f33 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 07a859fc-6f78-4905-9035-90e2403dbe8d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1326 61 false '-- '-- '-- '-- -22339 1249 64e2c7b4-6061-5765-b200-5ae4c9836b78 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1326_demographic Dead '-- '-- '-- '-- 22339 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1249.0 '-- '-- ea06b490-4522-5521-8124-5f077e608a8a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1326_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1326_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cbb187e2-bd6e-49cd-b3d7-b2ffe79c35f2 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 07a859fc-6f78-4905-9035-90e2403dbe8d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1326 61 false '-- '-- '-- '-- -22339 1249 64e2c7b4-6061-5765-b200-5ae4c9836b78 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1326_demographic Dead '-- '-- '-- '-- 22339 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1249.0 '-- '-- ea06b490-4522-5521-8124-5f077e608a8a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1326_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 153 31 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1326_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e39586f8-4821-4ee4-8eca-50284adfdd7d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 07fbdb3c-8337-4319-8255-f2363f8a031e Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1728 59 false '-- '-- '-- '-- -21582 '-- 3a226523-d211-5c33-ab72-74b052e22634 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1728_demographic Alive '-- '-- '-- '-- 21582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 848.0 '-- '-- 947ce4f7-c76d-587a-af7d-533e4eeb9b1f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1728_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 204 43 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1728_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2000 '-- mg '-- '-- '-- '-- 01845e5b-e916-474f-beec-3539158a4453 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 07fbdb3c-8337-4319-8255-f2363f8a031e Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1728 59 false '-- '-- '-- '-- -21582 '-- 3a226523-d211-5c33-ab72-74b052e22634 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1728_demographic Alive '-- '-- '-- '-- 21582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 848.0 '-- '-- 947ce4f7-c76d-587a-af7d-533e4eeb9b1f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1728_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 848 246 '-- '-- Recurrent Disease '-- '-- '-- '-- 20 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1728_treatment2 Vosaroxin '-- '-- '-- '-- '-- '-- '-- 1920 '-- mg '-- '-- '-- '-- b04063f1-386e-4ed4-8e9d-32ef5ccf0fb2 '-- yes '-- '-- Chemotherapy +TCGA-OV 07fbdb3c-8337-4319-8255-f2363f8a031e Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1728 59 false '-- '-- '-- '-- -21582 '-- 3a226523-d211-5c33-ab72-74b052e22634 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1728_demographic Alive '-- '-- '-- '-- 21582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 848.0 '-- '-- 947ce4f7-c76d-587a-af7d-533e4eeb9b1f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1728_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1728_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c3b52cb2-dbed-4760-bf4a-62a0c6168485 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 07fbdb3c-8337-4319-8255-f2363f8a031e Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1728 59 false '-- '-- '-- '-- -21582 '-- 3a226523-d211-5c33-ab72-74b052e22634 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1728_demographic Alive '-- '-- '-- '-- 21582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 848.0 '-- '-- 947ce4f7-c76d-587a-af7d-533e4eeb9b1f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1728_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 204 43 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1728_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 5280 '-- mg '-- '-- '-- '-- f656a5c5-3c82-5dc0-b931-b7ca5d849549 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 07fbdb3c-8337-4319-8255-f2363f8a031e Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1728 59 false '-- '-- '-- '-- -21582 '-- 3a226523-d211-5c33-ab72-74b052e22634 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1728_demographic Alive '-- '-- '-- '-- 22115 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 533 '-- '-- '-- 96e62970-1d25-4351-a196-5ffa99c0a552 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1728_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1728_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1728_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 45d72406-811f-4720-b1cd-1d2e4981d98b '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 07fbdb3c-8337-4319-8255-f2363f8a031e Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1728 59 false '-- '-- '-- '-- -21582 '-- 3a226523-d211-5c33-ab72-74b052e22634 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1728_demographic Alive '-- '-- '-- '-- 22115 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 533 '-- '-- '-- 96e62970-1d25-4351-a196-5ffa99c0a552 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1728_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1728_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1728_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8e8f74f2-194b-47e1-9d13-d44da30a7036 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 07fbdb3c-8337-4319-8255-f2363f8a031e Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1728 59 false '-- '-- '-- '-- -21582 '-- 3a226523-d211-5c33-ab72-74b052e22634 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1728_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cc896154-f115-41d1-ba14-9fc2b31c2a5c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1728_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1728_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1728_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8b2d16b7-7fc1-4052-a9ba-f2a75ce37e97 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 07fbdb3c-8337-4319-8255-f2363f8a031e Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1728 59 false '-- '-- '-- '-- -21582 '-- 3a226523-d211-5c33-ab72-74b052e22634 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1728_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cc896154-f115-41d1-ba14-9fc2b31c2a5c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1728_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1728_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 533 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1728_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a8f65526-e198-4d31-bb27-e72ea3c99b02 '-- yes '-- '-- Surgery, NOS +TCGA-OV 07fbdb3c-8337-4319-8255-f2363f8a031e Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1728 59 false '-- '-- '-- '-- -21582 '-- 3a226523-d211-5c33-ab72-74b052e22634 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1728_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cc896154-f115-41d1-ba14-9fc2b31c2a5c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1728_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1728_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1728_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c5e2d4af-b932-4e24-a254-7f433d06dbc0 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 08c64000-d320-4e4d-974b-da503d48890c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1553 53 false '-- '-- '-- '-- -19393 1767 f6ba61ac-3f98-557c-ac57-f0a30a3dc22b '-- not reported female '-- '-- '-- '-- white TCGA-24-1553_demographic Dead '-- '-- '-- '-- 19393 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1767.0 '-- '-- 0f6394e0-ad6b-55a6-bb34-cb34cbc020ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1553_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1283 864 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1553_treatment9 Topotecan '-- '-- '-- '-- '-- '-- '-- 70 '-- mg '-- '-- '-- '-- 131b477e-dcc0-44d6-be1b-145a8512206b '-- yes '-- '-- Chemotherapy +TCGA-OV 08c64000-d320-4e4d-974b-da503d48890c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1553 53 false '-- '-- '-- '-- -19393 1767 f6ba61ac-3f98-557c-ac57-f0a30a3dc22b '-- not reported female '-- '-- '-- '-- white TCGA-24-1553_demographic Dead '-- '-- '-- '-- 19393 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1767.0 '-- '-- 0f6394e0-ad6b-55a6-bb34-cb34cbc020ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1553_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1691 1659 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-1553_treatment6 Capecitabine '-- '-- '-- '-- '-- '-- '-- 6000 '-- mg '-- '-- '-- '-- 1cf6111d-abb6-47fa-9acb-583cfb52940a '-- yes '-- '-- Chemotherapy +TCGA-OV 08c64000-d320-4e4d-974b-da503d48890c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1553 53 false '-- '-- '-- '-- -19393 1767 f6ba61ac-3f98-557c-ac57-f0a30a3dc22b '-- not reported female '-- '-- '-- '-- white TCGA-24-1553_demographic Dead '-- '-- '-- '-- 19393 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1767.0 '-- '-- 0f6394e0-ad6b-55a6-bb34-cb34cbc020ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1553_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1293 1243 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-1553_treatment Tamoxifen '-- '-- '-- '-- '-- '-- '-- 20 '-- mg '-- '-- '-- '-- 2013ed67-c225-52e5-91aa-e926eaa05f58 '-- yes '-- '-- Hormone Therapy +TCGA-OV 08c64000-d320-4e4d-974b-da503d48890c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1553 53 false '-- '-- '-- '-- -19393 1767 f6ba61ac-3f98-557c-ac57-f0a30a3dc22b '-- not reported female '-- '-- '-- '-- white TCGA-24-1553_demographic Dead '-- '-- '-- '-- 19393 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1767.0 '-- '-- 0f6394e0-ad6b-55a6-bb34-cb34cbc020ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1553_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1735 1735 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1553_treatment12 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 63 '-- mg '-- '-- '-- '-- 24202c42-3f55-4d47-b66b-ef5950862010 '-- yes '-- '-- Chemotherapy +TCGA-OV 08c64000-d320-4e4d-974b-da503d48890c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1553 53 false '-- '-- '-- '-- -19393 1767 f6ba61ac-3f98-557c-ac57-f0a30a3dc22b '-- not reported female '-- '-- '-- '-- white TCGA-24-1553_demographic Dead '-- '-- '-- '-- 19393 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1767.0 '-- '-- 0f6394e0-ad6b-55a6-bb34-cb34cbc020ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1553_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1623 1309 '-- '-- Progressive Disease '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1553_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3800 '-- mg '-- '-- '-- '-- 317af912-2313-4000-ba8a-e5b16d6b73c0 '-- yes '-- '-- Chemotherapy +TCGA-OV 08c64000-d320-4e4d-974b-da503d48890c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1553 53 false '-- '-- '-- '-- -19393 1767 f6ba61ac-3f98-557c-ac57-f0a30a3dc22b '-- not reported female '-- '-- '-- '-- white TCGA-24-1553_demographic Dead '-- '-- '-- '-- 19393 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1767.0 '-- '-- 0f6394e0-ad6b-55a6-bb34-cb34cbc020ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1553_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1224 944 '-- '-- Progressive Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1553_treatment5 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 29746 '-- mg '-- '-- '-- '-- 33034fe3-cff7-43be-95cc-4deeca965302 '-- yes '-- '-- Chemotherapy +TCGA-OV 08c64000-d320-4e4d-974b-da503d48890c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1553 53 false '-- '-- '-- '-- -19393 1767 f6ba61ac-3f98-557c-ac57-f0a30a3dc22b '-- not reported female '-- '-- '-- '-- white TCGA-24-1553_demographic Dead '-- '-- '-- '-- 19393 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1767.0 '-- '-- 0f6394e0-ad6b-55a6-bb34-cb34cbc020ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1553_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1224 944 '-- '-- Progressive Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1553_treatment8 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 448 '-- mg '-- '-- '-- '-- 399217ff-15dc-49ab-81a1-83d8c69ecedf '-- yes '-- '-- Chemotherapy +TCGA-OV 08c64000-d320-4e4d-974b-da503d48890c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1553 53 false '-- '-- '-- '-- -19393 1767 f6ba61ac-3f98-557c-ac57-f0a30a3dc22b '-- not reported female '-- '-- '-- '-- white TCGA-24-1553_demographic Dead '-- '-- '-- '-- 19393 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1767.0 '-- '-- 0f6394e0-ad6b-55a6-bb34-cb34cbc020ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1553_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 735 566 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1553_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1740 '-- mg '-- '-- '-- '-- 8b1bd283-3b31-448e-938e-d456a7371ad1 '-- yes '-- '-- Chemotherapy +TCGA-OV 08c64000-d320-4e4d-974b-da503d48890c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1553 53 false '-- '-- '-- '-- -19393 1767 f6ba61ac-3f98-557c-ac57-f0a30a3dc22b '-- not reported female '-- '-- '-- '-- white TCGA-24-1553_demographic Dead '-- '-- '-- '-- 19393 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1767.0 '-- '-- 0f6394e0-ad6b-55a6-bb34-cb34cbc020ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1553_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 154 17 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1553_treatment11 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2715 '-- mg '-- '-- '-- '-- 8b3d425a-5ec8-46f9-aea6-694f29ac43d0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 08c64000-d320-4e4d-974b-da503d48890c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1553 53 false '-- '-- '-- '-- -19393 1767 f6ba61ac-3f98-557c-ac57-f0a30a3dc22b '-- not reported female '-- '-- '-- '-- white TCGA-24-1553_demographic Dead '-- '-- '-- '-- 19393 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1767.0 '-- '-- 0f6394e0-ad6b-55a6-bb34-cb34cbc020ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1553_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 154 17 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1553_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1732 '-- mg '-- '-- '-- '-- 9984b132-5bb0-4bee-9597-a2c2d900ee10 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 08c64000-d320-4e4d-974b-da503d48890c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1553 53 false '-- '-- '-- '-- -19393 1767 f6ba61ac-3f98-557c-ac57-f0a30a3dc22b '-- not reported female '-- '-- '-- '-- white TCGA-24-1553_demographic Dead '-- '-- '-- '-- 19393 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1767.0 '-- '-- 0f6394e0-ad6b-55a6-bb34-cb34cbc020ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1553_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1553_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a1d09b82-b9a9-4b7d-a1ce-5bae251f8397 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 08c64000-d320-4e4d-974b-da503d48890c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1553 53 false '-- '-- '-- '-- -19393 1767 f6ba61ac-3f98-557c-ac57-f0a30a3dc22b '-- not reported female '-- '-- '-- '-- white TCGA-24-1553_demographic Dead '-- '-- '-- '-- 19393 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1767.0 '-- '-- 0f6394e0-ad6b-55a6-bb34-cb34cbc020ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1553_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1623 1309 '-- '-- Progressive Disease '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1553_treatment10 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 3360 '-- mg '-- '-- '-- '-- c98cdc9f-6df6-468d-9946-02530b2787f5 '-- yes '-- '-- Chemotherapy +TCGA-OV 08c64000-d320-4e4d-974b-da503d48890c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1553 53 false '-- '-- '-- '-- -19393 1767 f6ba61ac-3f98-557c-ac57-f0a30a3dc22b '-- not reported female '-- '-- '-- '-- white TCGA-24-1553_demographic Dead '-- '-- '-- '-- 19393 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1767.0 '-- '-- 0f6394e0-ad6b-55a6-bb34-cb34cbc020ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1553_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 735 566 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1553_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3360 '-- mg '-- '-- '-- '-- ca153da3-c183-4212-939c-29d64d9f954b '-- yes '-- '-- Chemotherapy +TCGA-OV 08c64000-d320-4e4d-974b-da503d48890c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1553 53 false '-- '-- '-- '-- -19393 1767 f6ba61ac-3f98-557c-ac57-f0a30a3dc22b '-- not reported female '-- '-- '-- '-- white TCGA-24-1553_demographic Dead '-- '-- '-- '-- 19946 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 553 '-- '-- '-- 977c20e1-b040-4d19-851d-f5ae5af930de false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1553_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1553_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1553_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1bf442da-aa00-4859-af88-12ff0fdf3d82 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 08c64000-d320-4e4d-974b-da503d48890c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1553 53 false '-- '-- '-- '-- -19393 1767 f6ba61ac-3f98-557c-ac57-f0a30a3dc22b '-- not reported female '-- '-- '-- '-- white TCGA-24-1553_demographic Dead '-- '-- '-- '-- 19946 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 553 '-- '-- '-- 977c20e1-b040-4d19-851d-f5ae5af930de false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1553_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1553_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1553_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bc86ba36-6493-4f82-89af-15de6becad6f '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 09820a33-80b1-42d0-8366-a0ddaf94b122 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1714 68 false '-- '-- '-- '-- -25032 1158 490023f5-f2f1-5600-b594-3718d8334148 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-30-1714_demographic Dead '-- '-- '-- '-- 25273 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 241 '-- '-- '-- 829b4b09-c75f-4290-96a6-a51c5f2183ce false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1714_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1714_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1714_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9f6d0128-d129-4fe9-ae0a-941540c4e5d0 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 09820a33-80b1-42d0-8366-a0ddaf94b122 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1714 68 false '-- '-- '-- '-- -25032 1158 490023f5-f2f1-5600-b594-3718d8334148 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-30-1714_demographic Dead '-- '-- '-- '-- 25273 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 241 '-- '-- '-- 829b4b09-c75f-4290-96a6-a51c5f2183ce false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1714_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1714_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1714_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c3d71106-d773-4469-9ed4-09ae295c8ae7 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 09820a33-80b1-42d0-8366-a0ddaf94b122 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1714 68 false '-- '-- '-- '-- -25032 1158 490023f5-f2f1-5600-b594-3718d8334148 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-30-1714_demographic Dead '-- '-- '-- '-- 25032 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1158.0 '-- '-- 8d5d54a4-1e71-57dd-aac3-36c47e241a56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 283 246 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1714_treatment14 Anastrozole '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 03f57761-af0a-41f3-9e66-25afbefc4633 '-- yes '-- '-- Hormone Therapy +TCGA-OV 09820a33-80b1-42d0-8366-a0ddaf94b122 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1714 68 false '-- '-- '-- '-- -25032 1158 490023f5-f2f1-5600-b594-3718d8334148 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-30-1714_demographic Dead '-- '-- '-- '-- 25032 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1158.0 '-- '-- 8d5d54a4-1e71-57dd-aac3-36c47e241a56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 955 906 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1714_treatment10 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 700 '-- mg/m2 '-- '-- '-- '-- 09e8de2f-8b50-4844-a0d6-2ca554e034ca '-- yes '-- '-- Chemotherapy +TCGA-OV 09820a33-80b1-42d0-8366-a0ddaf94b122 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1714 68 false '-- '-- '-- '-- -25032 1158 490023f5-f2f1-5600-b594-3718d8334148 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-30-1714_demographic Dead '-- '-- '-- '-- 25032 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1158.0 '-- '-- 8d5d54a4-1e71-57dd-aac3-36c47e241a56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1075 1002 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1714_treatment9 Carboplatin '-- '-- '-- '-- '-- '-- '-- 343 '-- mg/m2 '-- '-- '-- '-- 19f010cc-2053-4de4-8360-870875f3a777 '-- yes '-- '-- Chemotherapy +TCGA-OV 09820a33-80b1-42d0-8366-a0ddaf94b122 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1714 68 false '-- '-- '-- '-- -25032 1158 490023f5-f2f1-5600-b594-3718d8334148 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-30-1714_demographic Dead '-- '-- '-- '-- 25032 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1158.0 '-- '-- 8d5d54a4-1e71-57dd-aac3-36c47e241a56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 123 15 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1714_treatment8 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 1dd4d72d-d439-40ca-a22a-ff176e660cc6 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 09820a33-80b1-42d0-8366-a0ddaf94b122 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1714 68 false '-- '-- '-- '-- -25032 1158 490023f5-f2f1-5600-b594-3718d8334148 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-30-1714_demographic Dead '-- '-- '-- '-- 25032 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1158.0 '-- '-- 8d5d54a4-1e71-57dd-aac3-36c47e241a56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 700 555 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1714_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 278 '-- mg/m2 '-- '-- '-- '-- 22671607-dda1-46f5-853a-34867362feae '-- yes '-- '-- Chemotherapy +TCGA-OV 09820a33-80b1-42d0-8366-a0ddaf94b122 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1714 68 false '-- '-- '-- '-- -25032 1158 490023f5-f2f1-5600-b594-3718d8334148 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-30-1714_demographic Dead '-- '-- '-- '-- 25032 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1158.0 '-- '-- 8d5d54a4-1e71-57dd-aac3-36c47e241a56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 700 555 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1714_treatment12 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 228bf37f-054c-4706-92a1-d30e3e829d27 '-- yes '-- '-- Chemotherapy +TCGA-OV 09820a33-80b1-42d0-8366-a0ddaf94b122 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1714 68 false '-- '-- '-- '-- -25032 1158 490023f5-f2f1-5600-b594-3718d8334148 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-30-1714_demographic Dead '-- '-- '-- '-- 25032 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1158.0 '-- '-- 8d5d54a4-1e71-57dd-aac3-36c47e241a56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 700 555 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1714_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 343 '-- mg/m2 '-- '-- '-- '-- 2483fb69-67fb-46ca-a978-d020f6a5b552 '-- yes '-- '-- Chemotherapy +TCGA-OV 09820a33-80b1-42d0-8366-a0ddaf94b122 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1714 68 false '-- '-- '-- '-- -25032 1158 490023f5-f2f1-5600-b594-3718d8334148 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-30-1714_demographic Dead '-- '-- '-- '-- 25032 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1158.0 '-- '-- 8d5d54a4-1e71-57dd-aac3-36c47e241a56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 990 973 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-30-1714_treatment7 Etoposide '-- '-- '-- '-- '-- '-- '-- 50 '-- mg '-- '-- '-- '-- 475c28bd-fb88-4548-a893-69b1a585adb7 '-- yes '-- '-- Chemotherapy +TCGA-OV 09820a33-80b1-42d0-8366-a0ddaf94b122 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1714 68 false '-- '-- '-- '-- -25032 1158 490023f5-f2f1-5600-b594-3718d8334148 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-30-1714_demographic Dead '-- '-- '-- '-- 25032 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1158.0 '-- '-- 8d5d54a4-1e71-57dd-aac3-36c47e241a56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 955 906 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1714_treatment5 Docetaxel '-- '-- '-- '-- '-- '-- '-- 30 '-- mg/m2 '-- '-- '-- '-- 5c8de676-8882-4053-a12b-510262831c32 '-- yes '-- '-- Chemotherapy +TCGA-OV 09820a33-80b1-42d0-8366-a0ddaf94b122 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1714 68 false '-- '-- '-- '-- -25032 1158 490023f5-f2f1-5600-b594-3718d8334148 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-30-1714_demographic Dead '-- '-- '-- '-- 25032 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1158.0 '-- '-- 8d5d54a4-1e71-57dd-aac3-36c47e241a56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1081 1002 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1714_treatment13 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- 5f16d2cf-b3e7-4616-a482-bb17cd0c0344 '-- yes '-- '-- Chemotherapy +TCGA-OV 09820a33-80b1-42d0-8366-a0ddaf94b122 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1714 68 false '-- '-- '-- '-- -25032 1158 490023f5-f2f1-5600-b594-3718d8334148 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-30-1714_demographic Dead '-- '-- '-- '-- 25032 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1158.0 '-- '-- 8d5d54a4-1e71-57dd-aac3-36c47e241a56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 521 424 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1714_treatment4 Topotecan '-- '-- '-- '-- '-- '-- '-- 3 '-- mg/m2 '-- '-- '-- '-- 6eaa1488-aa24-4ed4-80af-50bf5fb46076 '-- yes '-- '-- Chemotherapy +TCGA-OV 09820a33-80b1-42d0-8366-a0ddaf94b122 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1714 68 false '-- '-- '-- '-- -25032 1158 490023f5-f2f1-5600-b594-3718d8334148 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-30-1714_demographic Dead '-- '-- '-- '-- 25032 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1158.0 '-- '-- 8d5d54a4-1e71-57dd-aac3-36c47e241a56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 417 314 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1714_treatment11 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 40 '-- mg/m2 '-- '-- '-- '-- 7b85224c-53f6-4de6-aaba-a371bb0277d1 '-- yes '-- '-- Chemotherapy +TCGA-OV 09820a33-80b1-42d0-8366-a0ddaf94b122 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1714 68 false '-- '-- '-- '-- -25032 1158 490023f5-f2f1-5600-b594-3718d8334148 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-30-1714_demographic Dead '-- '-- '-- '-- 25032 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1158.0 '-- '-- 8d5d54a4-1e71-57dd-aac3-36c47e241a56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- 777 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1714_treatment '-- '-- '-- '-- '-- '-- Distant Site '-- '-- '-- '-- '-- '-- '-- '-- b1df4a94-84bb-5f56-9709-b3580d2dcb0c Adjuvant yes '-- '-- Radiation, External Beam +TCGA-OV 09820a33-80b1-42d0-8366-a0ddaf94b122 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1714 68 false '-- '-- '-- '-- -25032 1158 490023f5-f2f1-5600-b594-3718d8334148 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-30-1714_demographic Dead '-- '-- '-- '-- 25032 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1158.0 '-- '-- 8d5d54a4-1e71-57dd-aac3-36c47e241a56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 123 15 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1714_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bf5e2b82-3232-441c-ad8e-1609ce6c83f8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 098acb76-0bf5-44e5-bcae-f919cf5fa5e5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1466 74 false '-- '-- '-- '-- -27307 1373 f8852777-cffb-5a8e-8740-3ec59247350c '-- not reported female '-- '-- '-- '-- white TCGA-24-1466_demographic Dead '-- '-- '-- '-- 27798 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 491 '-- '-- '-- 076ba4d7-408e-4e3a-a5ba-b7a286e6a451 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1466_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1466_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1466_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3b838fa1-61ed-41e4-87fb-4a36bc92f25a '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 098acb76-0bf5-44e5-bcae-f919cf5fa5e5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1466 74 false '-- '-- '-- '-- -27307 1373 f8852777-cffb-5a8e-8740-3ec59247350c '-- not reported female '-- '-- '-- '-- white TCGA-24-1466_demographic Dead '-- '-- '-- '-- 27798 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 491 '-- '-- '-- 076ba4d7-408e-4e3a-a5ba-b7a286e6a451 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1466_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1466_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1466_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fd404b06-ec68-4fb0-afa9-6fe786e04f1f '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 098acb76-0bf5-44e5-bcae-f919cf5fa5e5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1466 74 false '-- '-- '-- '-- -27307 1373 f8852777-cffb-5a8e-8740-3ec59247350c '-- not reported female '-- '-- '-- '-- white TCGA-24-1466_demographic Dead '-- '-- '-- '-- 27307 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1373.0 '-- '-- dcd5fd19-300f-512c-8f28-af16937946d5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1466_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 145 12 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1466_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1715 '-- mg '-- '-- '-- '-- 1421d6b2-c1af-41ae-a721-34121bb5ffda Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 098acb76-0bf5-44e5-bcae-f919cf5fa5e5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1466 74 false '-- '-- '-- '-- -27307 1373 f8852777-cffb-5a8e-8740-3ec59247350c '-- not reported female '-- '-- '-- '-- white TCGA-24-1466_demographic Dead '-- '-- '-- '-- 27307 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1373.0 '-- '-- dcd5fd19-300f-512c-8f28-af16937946d5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1466_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 680 483 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1466_treatment7 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1904 '-- mg '-- '-- '-- '-- 39b786e5-3382-41f2-8440-849d3e27c252 '-- yes '-- '-- Chemotherapy +TCGA-OV 098acb76-0bf5-44e5-bcae-f919cf5fa5e5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1466 74 false '-- '-- '-- '-- -27307 1373 f8852777-cffb-5a8e-8740-3ec59247350c '-- not reported female '-- '-- '-- '-- white TCGA-24-1466_demographic Dead '-- '-- '-- '-- 27307 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1373.0 '-- '-- dcd5fd19-300f-512c-8f28-af16937946d5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1466_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- '-- 1227 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-1466_treatment8 Tamoxifen '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3a5bb0a1-4d19-4902-bd89-d54f6dd05b6e '-- yes '-- '-- Hormone Therapy +TCGA-OV 098acb76-0bf5-44e5-bcae-f919cf5fa5e5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1466 74 false '-- '-- '-- '-- -27307 1373 f8852777-cffb-5a8e-8740-3ec59247350c '-- not reported female '-- '-- '-- '-- white TCGA-24-1466_demographic Dead '-- '-- '-- '-- 27307 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1373.0 '-- '-- dcd5fd19-300f-512c-8f28-af16937946d5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1466_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 680 483 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1466_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 3820 '-- mg '-- '-- '-- '-- 480dd78d-65a2-5e1e-9727-5cf74ef445f4 '-- yes '-- '-- Chemotherapy +TCGA-OV 098acb76-0bf5-44e5-bcae-f919cf5fa5e5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1466 74 false '-- '-- '-- '-- -27307 1373 f8852777-cffb-5a8e-8740-3ec59247350c '-- not reported female '-- '-- '-- '-- white TCGA-24-1466_demographic Dead '-- '-- '-- '-- 27307 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1373.0 '-- '-- dcd5fd19-300f-512c-8f28-af16937946d5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1466_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1216 1081 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1466_treatment2 Topotecan '-- '-- '-- '-- '-- '-- '-- 58 '-- mg '-- '-- '-- '-- 534b9f77-dd48-4c18-8baf-faee5dab04f0 '-- yes '-- '-- Chemotherapy +TCGA-OV 098acb76-0bf5-44e5-bcae-f919cf5fa5e5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1466 74 false '-- '-- '-- '-- -27307 1373 f8852777-cffb-5a8e-8740-3ec59247350c '-- not reported female '-- '-- '-- '-- white TCGA-24-1466_demographic Dead '-- '-- '-- '-- 27307 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1373.0 '-- '-- dcd5fd19-300f-512c-8f28-af16937946d5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1466_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 852 670 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-1466_treatment5 Tamoxifen '-- '-- '-- '-- '-- '-- '-- 20 '-- mg/day '-- '-- '-- '-- 717e554d-5c5f-4110-a38c-00e529287475 '-- yes '-- '-- Hormone Therapy +TCGA-OV 098acb76-0bf5-44e5-bcae-f919cf5fa5e5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1466 74 false '-- '-- '-- '-- -27307 1373 f8852777-cffb-5a8e-8740-3ec59247350c '-- not reported female '-- '-- '-- '-- white TCGA-24-1466_demographic Dead '-- '-- '-- '-- 27307 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1373.0 '-- '-- dcd5fd19-300f-512c-8f28-af16937946d5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1466_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1466_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 785cfbe9-0132-4417-bee8-22e2385e8f78 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 098acb76-0bf5-44e5-bcae-f919cf5fa5e5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1466 74 false '-- '-- '-- '-- -27307 1373 f8852777-cffb-5a8e-8740-3ec59247350c '-- not reported female '-- '-- '-- '-- white TCGA-24-1466_demographic Dead '-- '-- '-- '-- 27307 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1373.0 '-- '-- dcd5fd19-300f-512c-8f28-af16937946d5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1466_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1020 880 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1466_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3110 '-- mg '-- '-- '-- '-- 85422271-d29f-4a41-9711-190d122ac8f3 '-- yes '-- '-- Chemotherapy +TCGA-OV 098acb76-0bf5-44e5-bcae-f919cf5fa5e5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1466 74 false '-- '-- '-- '-- -27307 1373 f8852777-cffb-5a8e-8740-3ec59247350c '-- not reported female '-- '-- '-- '-- white TCGA-24-1466_demographic Dead '-- '-- '-- '-- 27307 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1373.0 '-- '-- dcd5fd19-300f-512c-8f28-af16937946d5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1466_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 145 12 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1466_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3502 '-- mg '-- '-- '-- '-- a7465a29-3ca3-436c-add8-2e9f476487ce Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 098acb76-0bf5-44e5-bcae-f919cf5fa5e5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1466 74 false '-- '-- '-- '-- -27307 1373 f8852777-cffb-5a8e-8740-3ec59247350c '-- not reported female '-- '-- '-- '-- white TCGA-24-1466_demographic Dead '-- '-- '-- '-- 27307 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1373.0 '-- '-- dcd5fd19-300f-512c-8f28-af16937946d5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1466_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1020 880 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1466_treatment9 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1564 '-- mg '-- '-- '-- '-- f38fbf45-2a3a-41c4-aabd-54573f1b7b0f '-- yes '-- '-- Chemotherapy +TCGA-OV 09c77947-a333-4392-b18d-a6c1f08764a1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1842 49 false '-- '-- '-- '-- -18227 '-- 1002b6b2-c01e-55fc-80a0-ffb1512d7c36 '-- not reported female '-- '-- '-- '-- white TCGA-24-1842_demographic Alive '-- '-- '-- '-- 18227 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 253.0 '-- '-- 53645a91-09b0-52fe-a6c3-029904ef194e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1842_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 253 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1842_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4355 '-- mg '-- '-- '-- '-- 127e6b3e-d997-41e1-aaaa-003ef60b1b63 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 09c77947-a333-4392-b18d-a6c1f08764a1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1842 49 false '-- '-- '-- '-- -18227 '-- 1002b6b2-c01e-55fc-80a0-ffb1512d7c36 '-- not reported female '-- '-- '-- '-- white TCGA-24-1842_demographic Alive '-- '-- '-- '-- 18227 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 253.0 '-- '-- 53645a91-09b0-52fe-a6c3-029904ef194e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1842_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1842_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 605c71cc-1e60-4059-bc6a-fc9a0f52914f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 09c77947-a333-4392-b18d-a6c1f08764a1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1842 49 false '-- '-- '-- '-- -18227 '-- 1002b6b2-c01e-55fc-80a0-ffb1512d7c36 '-- not reported female '-- '-- '-- '-- white TCGA-24-1842_demographic Alive '-- '-- '-- '-- 18227 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 253.0 '-- '-- 53645a91-09b0-52fe-a6c3-029904ef194e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1842_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 253 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1842_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2043 '-- mg '-- '-- '-- '-- 835bdafc-d17f-4cf8-9f88-11991c1b0b0a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 09c77947-a333-4392-b18d-a6c1f08764a1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1842 49 false '-- '-- '-- '-- -18227 '-- 1002b6b2-c01e-55fc-80a0-ffb1512d7c36 '-- not reported female '-- '-- '-- '-- white TCGA-24-1842_demographic Alive '-- '-- '-- '-- 18227 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 253.0 '-- '-- 53645a91-09b0-52fe-a6c3-029904ef194e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1842_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 253 43 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1842_treatment Clinical Trial '-- '-- '-- '-- '-- '-- '-- 14331 '-- mg '-- '-- '-- '-- c994f920-7c4b-5e02-8f9e-f14efe9b945e Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV 0a2d29de-869a-4dc8-ad11-6ee0d0a3a895 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1736 45 false '-- '-- '-- '-- -16613 1484 939d1efe-bdfb-577a-94ee-c8c9e51b5fe6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1736_demographic Dead '-- '-- '-- '-- 16613 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1484.0 '-- '-- 06cbb2ff-f89f-5c49-a700-1241cb4fa9f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1736_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 138 34 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1736_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 26cdbde5-ebec-5818-8d7a-29010209e452 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0a2d29de-869a-4dc8-ad11-6ee0d0a3a895 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1736 45 false '-- '-- '-- '-- -16613 1484 939d1efe-bdfb-577a-94ee-c8c9e51b5fe6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1736_demographic Dead '-- '-- '-- '-- 16613 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1484.0 '-- '-- 06cbb2ff-f89f-5c49-a700-1241cb4fa9f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1736_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1736_treatment4 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5cc20747-d14a-4a76-b448-e37ac91a6070 '-- yes '-- '-- Chemotherapy +TCGA-OV 0a2d29de-869a-4dc8-ad11-6ee0d0a3a895 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1736 45 false '-- '-- '-- '-- -16613 1484 939d1efe-bdfb-577a-94ee-c8c9e51b5fe6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1736_demographic Dead '-- '-- '-- '-- 16613 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1484.0 '-- '-- 06cbb2ff-f89f-5c49-a700-1241cb4fa9f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1736_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 138 34 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1736_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 95410298-1ce8-494d-8e95-9f10c6c0e860 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0a2d29de-869a-4dc8-ad11-6ee0d0a3a895 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1736 45 false '-- '-- '-- '-- -16613 1484 939d1efe-bdfb-577a-94ee-c8c9e51b5fe6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1736_demographic Dead '-- '-- '-- '-- 16613 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1484.0 '-- '-- 06cbb2ff-f89f-5c49-a700-1241cb4fa9f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1736_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1736_treatment5 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aae02639-70cd-4a5b-8f89-032999ac473b '-- yes '-- '-- Chemotherapy +TCGA-OV 0a2d29de-869a-4dc8-ad11-6ee0d0a3a895 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1736 45 false '-- '-- '-- '-- -16613 1484 939d1efe-bdfb-577a-94ee-c8c9e51b5fe6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1736_demographic Dead '-- '-- '-- '-- 16613 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1484.0 '-- '-- 06cbb2ff-f89f-5c49-a700-1241cb4fa9f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1736_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- 946 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1736_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cb0d37d1-df4b-474b-845e-1f62091fd964 '-- yes '-- '-- Chemotherapy +TCGA-OV 0a2d29de-869a-4dc8-ad11-6ee0d0a3a895 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1736 45 false '-- '-- '-- '-- -16613 1484 939d1efe-bdfb-577a-94ee-c8c9e51b5fe6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1736_demographic Dead '-- '-- '-- '-- 16613 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1484.0 '-- '-- 06cbb2ff-f89f-5c49-a700-1241cb4fa9f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1736_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1736_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e642e5c4-6725-4287-b1ef-401a001bc3c7 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0a2d29de-869a-4dc8-ad11-6ee0d0a3a895 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1736 45 false '-- '-- '-- '-- -16613 1484 939d1efe-bdfb-577a-94ee-c8c9e51b5fe6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1736_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5463dc21-cbdd-465c-ad53-128b5d4b181f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1736_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1736_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 812 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1736_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 27a5e875-3f31-4e36-8d67-7ebd87e24c19 '-- yes '-- '-- Surgery, NOS +TCGA-OV 0a2d29de-869a-4dc8-ad11-6ee0d0a3a895 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1736 45 false '-- '-- '-- '-- -16613 1484 939d1efe-bdfb-577a-94ee-c8c9e51b5fe6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1736_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5463dc21-cbdd-465c-ad53-128b5d4b181f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1736_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1736_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1736_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4882be94-0b95-454a-8b33-4ec2747a40dd '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 0a2d29de-869a-4dc8-ad11-6ee0d0a3a895 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1736 45 false '-- '-- '-- '-- -16613 1484 939d1efe-bdfb-577a-94ee-c8c9e51b5fe6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1736_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5463dc21-cbdd-465c-ad53-128b5d4b181f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1736_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1736_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1736_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5aae0f59-2c3b-4ca6-a8a9-b49977290867 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 0a2d29de-869a-4dc8-ad11-6ee0d0a3a895 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1736 45 false '-- '-- '-- '-- -16613 1484 939d1efe-bdfb-577a-94ee-c8c9e51b5fe6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1736_demographic Dead '-- '-- '-- '-- 17377 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 764 '-- '-- '-- 7066c7ee-ee6e-4953-a0d3-59ea7847fcfb false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1736_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1736_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1736_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 76c2851c-ac0c-431c-8a03-59ebb6a75e9b '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 0a2d29de-869a-4dc8-ad11-6ee0d0a3a895 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1736 45 false '-- '-- '-- '-- -16613 1484 939d1efe-bdfb-577a-94ee-c8c9e51b5fe6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1736_demographic Dead '-- '-- '-- '-- 17377 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 764 '-- '-- '-- 7066c7ee-ee6e-4953-a0d3-59ea7847fcfb false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1736_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1736_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1736_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aee1fd06-e11c-410a-9d1f-d9bfdce45265 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 0a48873a-092a-4b25-822b-b0b3c18c08a8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2024 72 false '-- '-- '-- '-- -26476 1769 7d734828-adb9-5d7e-966d-8e0043300194 '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-2024_demographic Dead '-- '-- '-- '-- 26897 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 421 '-- '-- '-- d5ea7a05-cb2b-491d-abcd-c7daa8cce177 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2024_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2024_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2024_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0bd5424e-fc61-4cb2-922e-d6a21649d954 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 0a48873a-092a-4b25-822b-b0b3c18c08a8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2024 72 false '-- '-- '-- '-- -26476 1769 7d734828-adb9-5d7e-966d-8e0043300194 '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-2024_demographic Dead '-- '-- '-- '-- 26897 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 421 '-- '-- '-- d5ea7a05-cb2b-491d-abcd-c7daa8cce177 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2024_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2024_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2024_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a671333f-6470-48d6-8534-e23336721bf8 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 0a48873a-092a-4b25-822b-b0b3c18c08a8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2024 72 false '-- '-- '-- '-- -26476 1769 7d734828-adb9-5d7e-966d-8e0043300194 '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-2024_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e3a37e53-51ae-4970-88ad-6b62e829af95 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2024_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2024_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 419 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2024_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 10067186-80fe-4c2e-9934-1c842c1f2aaf '-- yes '-- '-- Surgery, NOS +TCGA-OV 0a48873a-092a-4b25-822b-b0b3c18c08a8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2024 72 false '-- '-- '-- '-- -26476 1769 7d734828-adb9-5d7e-966d-8e0043300194 '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-2024_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e3a37e53-51ae-4970-88ad-6b62e829af95 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2024_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2024_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2024_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7a6dd18c-3797-4c90-8ab7-e7f982a2abc3 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 0a48873a-092a-4b25-822b-b0b3c18c08a8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2024 72 false '-- '-- '-- '-- -26476 1769 7d734828-adb9-5d7e-966d-8e0043300194 '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-2024_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e3a37e53-51ae-4970-88ad-6b62e829af95 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2024_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2024_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2024_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9184e481-aaef-4c18-9d01-a5ed5128a0a0 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 0a48873a-092a-4b25-822b-b0b3c18c08a8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2024 72 false '-- '-- '-- '-- -26476 1769 7d734828-adb9-5d7e-966d-8e0043300194 '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-2024_demographic Dead '-- '-- '-- '-- 26476 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1769.0 '-- '-- f6efd774-9d62-56da-95f2-00366dfc8c27 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2024_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 120 10 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2024_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1573 '-- mg '-- '-- '-- '-- 0c6679e4-1e24-4b16-b37f-54312b515c84 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0a48873a-092a-4b25-822b-b0b3c18c08a8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2024 72 false '-- '-- '-- '-- -26476 1769 7d734828-adb9-5d7e-966d-8e0043300194 '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-2024_demographic Dead '-- '-- '-- '-- 26476 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1769.0 '-- '-- f6efd774-9d62-56da-95f2-00366dfc8c27 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2024_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 568 456 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2024_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2444 '-- mg '-- '-- '-- '-- 524d94c1-5cb2-48be-958e-977565d622af '-- yes '-- '-- Chemotherapy +TCGA-OV 0a48873a-092a-4b25-822b-b0b3c18c08a8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2024 72 false '-- '-- '-- '-- -26476 1769 7d734828-adb9-5d7e-966d-8e0043300194 '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-2024_demographic Dead '-- '-- '-- '-- 26476 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1769.0 '-- '-- f6efd774-9d62-56da-95f2-00366dfc8c27 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2024_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 120 10 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2024_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 3348 '-- mg '-- '-- '-- '-- 823f6596-b65d-5519-86f6-a5c4e5181b3b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0a48873a-092a-4b25-822b-b0b3c18c08a8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2024 72 false '-- '-- '-- '-- -26476 1769 7d734828-adb9-5d7e-966d-8e0043300194 '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-2024_demographic Dead '-- '-- '-- '-- 26476 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1769.0 '-- '-- f6efd774-9d62-56da-95f2-00366dfc8c27 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2024_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2024_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a1f3b445-3fd2-4e71-8d2e-d0666887042c Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0a48873a-092a-4b25-822b-b0b3c18c08a8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2024 72 false '-- '-- '-- '-- -26476 1769 7d734828-adb9-5d7e-966d-8e0043300194 '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-2024_demographic Dead '-- '-- '-- '-- 26476 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1769.0 '-- '-- f6efd774-9d62-56da-95f2-00366dfc8c27 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2024_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 568 456 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2024_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3533 '-- mg '-- '-- '-- '-- cccd4550-91cc-49e8-bc29-1a0beb01283c '-- yes '-- '-- Chemotherapy +TCGA-OV 0aa020cb-69d2-4235-a609-c279a133d8bb Informed Consent 14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1737 42 false '-- '-- '-- '-- -15515 '-- 7a541ca2-8c30-58c9-ad7e-ff1f0d75aa14 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1737_demographic Alive '-- '-- '-- '-- 15515 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1364.0 '-- '-- 12f72a04-d096-517f-b4d6-c4369f4a1bf6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1737_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 176 127 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-1737_treatment6 Cisplatin '-- '-- '-- '-- '-- '-- '-- 372 '-- mg '-- '-- '-- '-- 1125bf50-97a7-43e9-8297-c7863272df73 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0aa020cb-69d2-4235-a609-c279a133d8bb Informed Consent 14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1737 42 false '-- '-- '-- '-- -15515 '-- 7a541ca2-8c30-58c9-ad7e-ff1f0d75aa14 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1737_demographic Alive '-- '-- '-- '-- 15515 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1364.0 '-- '-- 12f72a04-d096-517f-b4d6-c4369f4a1bf6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1737_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1737_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1385a320-bfc5-4da4-914c-c682bb5c36cc Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0aa020cb-69d2-4235-a609-c279a133d8bb Informed Consent 14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1737 42 false '-- '-- '-- '-- -15515 '-- 7a541ca2-8c30-58c9-ad7e-ff1f0d75aa14 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1737_demographic Alive '-- '-- '-- '-- 15515 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1364.0 '-- '-- 12f72a04-d096-517f-b4d6-c4369f4a1bf6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1737_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- 582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1737_treatment3 Tamoxifen '-- '-- '-- '-- '-- '-- '-- 19000 '-- mg/day '-- '-- '-- '-- 440d0d89-80b4-41d3-84b7-5deb3cae6438 Adjuvant yes Treatment Ongoing '-- Hormone Therapy +TCGA-OV 0aa020cb-69d2-4235-a609-c279a133d8bb Informed Consent 14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1737 42 false '-- '-- '-- '-- -15515 '-- 7a541ca2-8c30-58c9-ad7e-ff1f0d75aa14 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1737_demographic Alive '-- '-- '-- '-- 15515 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1364.0 '-- '-- 12f72a04-d096-517f-b4d6-c4369f4a1bf6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1737_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 176 127 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-1737_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 270 '-- mg '-- '-- '-- '-- b0b08730-81d3-4e63-baee-f4210547ae89 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0aa020cb-69d2-4235-a609-c279a133d8bb Informed Consent 14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1737 42 false '-- '-- '-- '-- -15515 '-- 7a541ca2-8c30-58c9-ad7e-ff1f0d75aa14 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1737_demographic Alive '-- '-- '-- '-- 15515 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1364.0 '-- '-- 12f72a04-d096-517f-b4d6-c4369f4a1bf6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1737_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 106 43 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1737_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2600 '-- mg '-- '-- '-- '-- b3e3a376-78cb-47a9-adb3-3e31e0a7ee90 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0aa020cb-69d2-4235-a609-c279a133d8bb Informed Consent 14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1737 42 false '-- '-- '-- '-- -15515 '-- 7a541ca2-8c30-58c9-ad7e-ff1f0d75aa14 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1737_demographic Alive '-- '-- '-- '-- 15515 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1364.0 '-- '-- 12f72a04-d096-517f-b4d6-c4369f4a1bf6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1737_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 106 43 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1737_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- 480 '-- mg '-- '-- '-- '-- bf28a79c-0327-5f7a-9371-c7dcce64526c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0aa020cb-69d2-4235-a609-c279a133d8bb Informed Consent 14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1737 42 false '-- '-- '-- '-- -15515 '-- 7a541ca2-8c30-58c9-ad7e-ff1f0d75aa14 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1737_demographic Alive '-- '-- '-- '-- 15515 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1364.0 '-- '-- 12f72a04-d096-517f-b4d6-c4369f4a1bf6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1737_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 176 127 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1737_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 198 '-- mg '-- '-- '-- '-- f3ba530c-7b74-4a48-b762-d05f3c3eb91a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0adadf17-c4b6-48b0-a326-21450de3e144 Informed Consent -18 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1915 50 false '-- '-- '-- '-- -18424 '-- c4ac71ca-82e7-5199-979a-87254d8cbb09 '-- not reported female '-- '-- '-- '-- white TCGA-61-1915_demographic Alive '-- '-- '-- '-- 18424 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2061.0 '-- '-- ee05ceef-be91-5a39-8bc5-c34dd9f8782d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1915_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 143 25 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1915_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 3300 '-- mg '-- '-- '-- '-- 4e75528f-ed0d-5f86-b1b5-858f704ead2f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0adadf17-c4b6-48b0-a326-21450de3e144 Informed Consent -18 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1915 50 false '-- '-- '-- '-- -18424 '-- c4ac71ca-82e7-5199-979a-87254d8cbb09 '-- not reported female '-- '-- '-- '-- white TCGA-61-1915_demographic Alive '-- '-- '-- '-- 18424 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2061.0 '-- '-- ee05ceef-be91-5a39-8bc5-c34dd9f8782d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1915_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 143 25 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1915_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1560 '-- mg '-- '-- '-- '-- 932abc22-4f87-4b63-92f1-02927dfac6a7 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0adadf17-c4b6-48b0-a326-21450de3e144 Informed Consent -18 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1915 50 false '-- '-- '-- '-- -18424 '-- c4ac71ca-82e7-5199-979a-87254d8cbb09 '-- not reported female '-- '-- '-- '-- white TCGA-61-1915_demographic Alive '-- '-- '-- '-- 18424 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2061.0 '-- '-- ee05ceef-be91-5a39-8bc5-c34dd9f8782d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1915_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1915_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 99d65e61-e23d-4cbe-99c0-3fd4c8b04606 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0b2ea4b7-98bb-4190-b682-2c75b447c90a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1314 42 false '-- '-- '-- '-- -15462 1004 e600b6c2-88c6-5447-835f-a71c482c6c16 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1314_demographic Dead '-- '-- '-- '-- 15736 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 274 '-- '-- '-- 21d8ec03-5fae-439d-83c1-94488c75f843 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1314_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1314_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1314_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 93609a03-5c16-4a58-be54-7cf798c41beb '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 0b2ea4b7-98bb-4190-b682-2c75b447c90a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1314 42 false '-- '-- '-- '-- -15462 1004 e600b6c2-88c6-5447-835f-a71c482c6c16 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1314_demographic Dead '-- '-- '-- '-- 15736 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 274 '-- '-- '-- 21d8ec03-5fae-439d-83c1-94488c75f843 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1314_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1314_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1314_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fedfc2d5-ba54-4568-a286-7f34a9deac26 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 0b2ea4b7-98bb-4190-b682-2c75b447c90a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1314 42 false '-- '-- '-- '-- -15462 1004 e600b6c2-88c6-5447-835f-a71c482c6c16 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1314_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f600ecf6-b9c5-41df-ba27-761b457269e3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1314_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1314_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1314_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 345e07b8-0be3-45dc-a091-b426ad9ef8c2 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 0b2ea4b7-98bb-4190-b682-2c75b447c90a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1314 42 false '-- '-- '-- '-- -15462 1004 e600b6c2-88c6-5447-835f-a71c482c6c16 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1314_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f600ecf6-b9c5-41df-ba27-761b457269e3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1314_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1314_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1314_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7cffbb96-d766-4ba6-8e1d-e7f513562eaa '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 0b2ea4b7-98bb-4190-b682-2c75b447c90a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1314 42 false '-- '-- '-- '-- -15462 1004 e600b6c2-88c6-5447-835f-a71c482c6c16 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1314_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f600ecf6-b9c5-41df-ba27-761b457269e3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1314_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1314_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 274 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1314_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9bac625e-a3e2-44e6-9eb5-5e8751a9c901 '-- yes '-- '-- Surgery, NOS +TCGA-OV 0b2ea4b7-98bb-4190-b682-2c75b447c90a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1314 42 false '-- '-- '-- '-- -15462 1004 e600b6c2-88c6-5447-835f-a71c482c6c16 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1314_demographic Dead '-- '-- '-- '-- 15462 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1004.0 '-- '-- f7caf6fe-7ab2-57f8-946d-0f328ad4f7c2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1314_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1314_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 28bbfaef-289e-53bc-8bb0-f2e5cb461bf9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0b2ea4b7-98bb-4190-b682-2c75b447c90a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1314 42 false '-- '-- '-- '-- -15462 1004 e600b6c2-88c6-5447-835f-a71c482c6c16 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1314_demographic Dead '-- '-- '-- '-- 15462 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1004.0 '-- '-- f7caf6fe-7ab2-57f8-946d-0f328ad4f7c2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1314_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- 31 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1314_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 60aa02fa-7705-467a-8c07-1285ca475f26 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0b2ea4b7-98bb-4190-b682-2c75b447c90a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1314 42 false '-- '-- '-- '-- -15462 1004 e600b6c2-88c6-5447-835f-a71c482c6c16 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1314_demographic Dead '-- '-- '-- '-- 15462 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1004.0 '-- '-- f7caf6fe-7ab2-57f8-946d-0f328ad4f7c2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1314_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- 31 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1314_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bd6d993a-0d91-4758-946b-dbeb52b6fedc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0b2ea4b7-98bb-4190-b682-2c75b447c90a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1314 42 false '-- '-- '-- '-- -15462 1004 e600b6c2-88c6-5447-835f-a71c482c6c16 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1314_demographic Dead '-- '-- '-- '-- 15462 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1004.0 '-- '-- f7caf6fe-7ab2-57f8-946d-0f328ad4f7c2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1314_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 425 274 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1314_treatment2 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d04edc52-5e4e-4224-a567-29096f673297 '-- yes '-- '-- Chemotherapy +TCGA-OV 0b2ea4b7-98bb-4190-b682-2c75b447c90a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1314 42 false '-- '-- '-- '-- -15462 1004 e600b6c2-88c6-5447-835f-a71c482c6c16 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1314_demographic Dead '-- '-- '-- '-- 15462 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1004.0 '-- '-- f7caf6fe-7ab2-57f8-946d-0f328ad4f7c2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1314_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1314_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dfcfc093-aa12-485f-af29-107465f53289 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0b519c08-9f23-4ceb-9a13-e16509ca55d7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0904 63 false '-- '-- '-- '-- -23278 1532 7ca63c52-f179-5190-accd-98e90ee0ae94 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0904_demographic Dead '-- '-- '-- '-- 23608 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 330 '-- '-- '-- 76cfe2fe-be56-42c2-9508-06ee1ed63585 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0904_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0904_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 0b519c08-9f23-4ceb-9a13-e16509ca55d7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0904 63 false '-- '-- '-- '-- -23278 1532 7ca63c52-f179-5190-accd-98e90ee0ae94 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0904_demographic Dead '-- '-- '-- '-- 23278 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1532.0 '-- '-- d0d88591-a061-54b9-85a6-4948dcc403d5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0904_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 251 105 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0904_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0bd935c0-06be-403f-b8bf-61e506f79cdc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0b519c08-9f23-4ceb-9a13-e16509ca55d7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0904 63 false '-- '-- '-- '-- -23278 1532 7ca63c52-f179-5190-accd-98e90ee0ae94 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0904_demographic Dead '-- '-- '-- '-- 23278 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1532.0 '-- '-- d0d88591-a061-54b9-85a6-4948dcc403d5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0904_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0904_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2e7fb3b0-6345-491f-8a20-b4cad179ebb0 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0b519c08-9f23-4ceb-9a13-e16509ca55d7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0904 63 false '-- '-- '-- '-- -23278 1532 7ca63c52-f179-5190-accd-98e90ee0ae94 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0904_demographic Dead '-- '-- '-- '-- 23278 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1532.0 '-- '-- d0d88591-a061-54b9-85a6-4948dcc403d5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0904_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 84 63 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0904_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 5811e7e8-268a-4975-b433-6b43246d53d4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0b519c08-9f23-4ceb-9a13-e16509ca55d7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0904 63 false '-- '-- '-- '-- -23278 1532 7ca63c52-f179-5190-accd-98e90ee0ae94 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0904_demographic Dead '-- '-- '-- '-- 23278 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1532.0 '-- '-- d0d88591-a061-54b9-85a6-4948dcc403d5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0904_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 84 63 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0904_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b4fe16c6-ab19-5e66-962a-dddc30729f2e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0b519c08-9f23-4ceb-9a13-e16509ca55d7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0904 63 false '-- '-- '-- '-- -23278 1532 7ca63c52-f179-5190-accd-98e90ee0ae94 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0904_demographic Dead '-- '-- '-- '-- 23278 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1532.0 '-- '-- d0d88591-a061-54b9-85a6-4948dcc403d5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0904_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 251 105 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0904_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e804093d-cc02-47f2-be03-7372effd7570 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0b519c08-9f23-4ceb-9a13-e16509ca55d7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0904 63 false '-- '-- '-- '-- -23278 1532 7ca63c52-f179-5190-accd-98e90ee0ae94 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0904_demographic Dead '-- '-- '-- '-- 23608 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 330 '-- '-- '-- f49e63a1-2d35-48bf-9e48-128c9e4a3b84 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0904_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0904_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0904_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b6766e54-fdeb-4477-8ab8-23424347da1a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 0b519c08-9f23-4ceb-9a13-e16509ca55d7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0904 63 false '-- '-- '-- '-- -23278 1532 7ca63c52-f179-5190-accd-98e90ee0ae94 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0904_demographic Dead '-- '-- '-- '-- 23608 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 330 '-- '-- '-- f49e63a1-2d35-48bf-9e48-128c9e4a3b84 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0904_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0904_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0904_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- db94b001-277b-47cc-8839-90c1a1773496 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 0ba7b6cc-e5f5-47d7-859a-24e31aa336ab '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0908 58 false '-- '-- '-- '-- -21422 1843 0efe3097-e953-59c4-8eb1-a4d8d5c68285 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0908_demographic Dead '-- '-- '-- '-- 21974 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 552 '-- '-- '-- 481009f9-c3d0-4cc5-8dc9-ddf1a3ce0a9f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0908_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0908_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 0ba7b6cc-e5f5-47d7-859a-24e31aa336ab '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0908 58 false '-- '-- '-- '-- -21422 1843 0efe3097-e953-59c4-8eb1-a4d8d5c68285 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0908_demographic Dead '-- '-- '-- '-- 21974 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 552 '-- '-- '-- 5eab3056-7ac2-4d05-93eb-43797fdef698 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0908_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0908_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0908_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3fa96dab-7f11-43a8-9dde-511c8a579d5f '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 0ba7b6cc-e5f5-47d7-859a-24e31aa336ab '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0908 58 false '-- '-- '-- '-- -21422 1843 0efe3097-e953-59c4-8eb1-a4d8d5c68285 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0908_demographic Dead '-- '-- '-- '-- 21974 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 552 '-- '-- '-- 5eab3056-7ac2-4d05-93eb-43797fdef698 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0908_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0908_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0908_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 50298854-b8a8-44a4-87d2-698a65384b94 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 0ba7b6cc-e5f5-47d7-859a-24e31aa336ab '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0908 58 false '-- '-- '-- '-- -21422 1843 0efe3097-e953-59c4-8eb1-a4d8d5c68285 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0908_demographic Dead '-- '-- '-- '-- 21422 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1843.0 '-- '-- c01d98f7-34f8-57cb-9d1c-53780e4956b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0908_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0908_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5c8e27f6-e07e-4ef5-af44-ea4aa302e6ab Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0ba7b6cc-e5f5-47d7-859a-24e31aa336ab '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0908 58 false '-- '-- '-- '-- -21422 1843 0efe3097-e953-59c4-8eb1-a4d8d5c68285 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0908_demographic Dead '-- '-- '-- '-- 21422 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1843.0 '-- '-- c01d98f7-34f8-57cb-9d1c-53780e4956b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0908_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 244 198 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0908_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 70 '-- mg/m2 '-- '-- '-- '-- 7b194fb9-e566-4986-a236-e2f84758a955 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0ba7b6cc-e5f5-47d7-859a-24e31aa336ab '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0908 58 false '-- '-- '-- '-- -21422 1843 0efe3097-e953-59c4-8eb1-a4d8d5c68285 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0908_demographic Dead '-- '-- '-- '-- 21422 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1843.0 '-- '-- c01d98f7-34f8-57cb-9d1c-53780e4956b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0908_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 135 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0908_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- b1adcf6a-97c0-5251-8054-aa11a5482e16 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0ba7b6cc-e5f5-47d7-859a-24e31aa336ab '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0908 58 false '-- '-- '-- '-- -21422 1843 0efe3097-e953-59c4-8eb1-a4d8d5c68285 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0908_demographic Dead '-- '-- '-- '-- 21422 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1843.0 '-- '-- c01d98f7-34f8-57cb-9d1c-53780e4956b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0908_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 135 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0908_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f825ccfa-96a0-450e-950f-d2ebf3f06b3e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2561.0 '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 167 2 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1542_treatment9 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 17378 '-- mg '-- '-- '-- '-- 08899f5f-8c88-4218-9cf9-1a02f4975a11 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2561.0 '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2268 2207 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1542_treatment8 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 275064ed-db5f-4c96-97f3-2abf24c1602a '-- yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2561.0 '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2176 2115 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1542_treatment10 Docetaxel '-- '-- '-- '-- '-- '-- '-- 124 '-- mg '-- '-- '-- '-- 2d88345d-ffe6-48f8-a643-0e0a5f3dda1f '-- yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2561.0 '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1781 1564 '-- '-- Recurrent Disease '-- '-- '-- '-- 11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1542_treatment2 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 32496 '-- mg '-- '-- '-- '-- 2e4f1a88-6118-4af5-a3d0-beab5ffdba2e '-- yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2561.0 '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1781 1564 '-- '-- Recurrent Disease '-- '-- '-- '-- 11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1542_treatment11 Cisplatin '-- '-- '-- '-- '-- '-- '-- 11300 '-- mg '-- '-- '-- '-- 2f8b229d-8290-4f81-ac9e-f1a19fc15a75 '-- yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2561.0 '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 167 2 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1542_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2534 '-- mg '-- '-- '-- '-- 38e25d4e-a949-58c6-a84d-461f854c58fc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2561.0 '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1294 1051 '-- '-- Recurrent Disease '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1542_treatment15 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 4004 '-- mg '-- '-- '-- '-- 407aa31a-0ff4-4833-9577-a197409e732f '-- yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2561.0 '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2512 2328 '-- '-- Recurrent Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1542_treatment5 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 28756 '-- mg '-- '-- '-- '-- 54a99eac-b72d-4877-8a8d-ea23a0c9812b '-- yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2561.0 '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1542_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 58d4b26a-a818-4463-9534-b3c6e34f844a Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2561.0 '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1487 1322 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1542_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 122 '-- mg '-- '-- '-- '-- 662b7067-7c7e-4751-a7a7-dfae159dd469 '-- yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2561.0 '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2512 2328 '-- '-- Recurrent Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1542_treatment13 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 2870 '-- mg '-- '-- '-- '-- 7145fdd2-6c7e-4076-b2be-2ab7a347fc56 '-- yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2561.0 '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2176 2115 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1542_treatment7 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 4875 '-- mg '-- '-- '-- '-- 78fd13bd-ec0b-4474-a8b0-0a158ee58c89 '-- yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2561.0 '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2328 2268 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1542_treatment14 Doxorubicin '-- '-- '-- '-- '-- '-- '-- 343 '-- mg '-- '-- '-- '-- 861d72c4-2fff-4597-a940-d1538d2f89be '-- yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2561.0 '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 167 2 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1542_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- a9cdaff0-4b9d-48bb-bc5c-0e8cb1939eb9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2561.0 '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2106 1993 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1542_treatment12 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 7398 '-- mg '-- '-- '-- '-- bbb5175d-b4b5-49a4-8360-f4474c270d77 '-- yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2561.0 '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1529 1501 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1542_treatment16 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 159 '-- mg '-- '-- '-- '-- c76084a3-5478-471d-8ba0-2931fb65a3c7 '-- yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 19263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2561.0 '-- '-- 5c54e4c7-4168-5896-9e70-26530bcbb200 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1542_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1294 1051 '-- '-- Recurrent Disease '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1542_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- e4568f8b-e61a-4d62-b392-2de7d43fcf66 '-- yes '-- '-- Chemotherapy +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 20283 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1020 '-- '-- '-- 5d9b0e32-57f6-482b-b58e-bbd7b0ba2394 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1542_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1542_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1542_treatment19 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 617d8c1f-3154-40fd-9ac2-e86ccd78f894 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 0c1a2e7d-e7e4-481e-a012-ef214c444497 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1542 52 false '-- '-- '-- '-- -19263 2561 fb7f748c-1e48-553a-aa93-63181a69f871 '-- not reported female '-- '-- '-- '-- white TCGA-04-1542_demographic Dead '-- '-- '-- '-- 20283 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1020 '-- '-- '-- 5d9b0e32-57f6-482b-b58e-bbd7b0ba2394 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1542_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1542_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1542_treatment18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f4406411-41a1-4f89-b5c5-1dba6c3da6d6 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 0d15e5aa-2483-4f81-973a-ff469296c911 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2071 63 false '-- '-- '-- '-- -23367 773 175f4d5b-3829-5883-92c3-a460446aca0b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-2071_demographic Dead '-- '-- '-- '-- 23367 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 773.0 '-- '-- eb7a1570-9311-537d-8aa9-11174c4319fd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2071_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-2071_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 05922a6a-a79f-440e-b0df-4a83dc741004 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0d15e5aa-2483-4f81-973a-ff469296c911 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2071 63 false '-- '-- '-- '-- -23367 773 175f4d5b-3829-5883-92c3-a460446aca0b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-2071_demographic Dead '-- '-- '-- '-- 23367 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 773.0 '-- '-- eb7a1570-9311-537d-8aa9-11174c4319fd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2071_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 146 41 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-2071_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a02d67cc-00f8-5adb-b2a1-d207991ee611 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0d15e5aa-2483-4f81-973a-ff469296c911 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2071 63 false '-- '-- '-- '-- -23367 773 175f4d5b-3829-5883-92c3-a460446aca0b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-2071_demographic Dead '-- '-- '-- '-- 23367 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 773.0 '-- '-- eb7a1570-9311-537d-8aa9-11174c4319fd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2071_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 146 41 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-2071_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d6f6e5f6-f2b8-43b7-81e7-c1524ed9e74b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0d15e5aa-2483-4f81-973a-ff469296c911 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2071 63 false '-- '-- '-- '-- -23367 773 175f4d5b-3829-5883-92c3-a460446aca0b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-2071_demographic Dead '-- '-- '-- '-- 23689 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 322 '-- '-- '-- ff33d54d-9e49-469c-a06c-77013265bf4e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-2071_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-2071_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 0d23fa5b-95f8-4626-a4d2-c72ad3cc553b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0720 48 false '-- '-- '-- '-- -17799 1355 4361c0b6-dffe-5928-aabe-49e87f1a9447 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0720_demographic Dead '-- '-- '-- '-- 17799 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1355.0 '-- '-- 2946e499-dcfb-57a8-8e37-07c35d2228f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0720_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0720_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0f5122e9-1454-4ed6-8f15-06a74b7d89fd Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0d23fa5b-95f8-4626-a4d2-c72ad3cc553b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0720 48 false '-- '-- '-- '-- -17799 1355 4361c0b6-dffe-5928-aabe-49e87f1a9447 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0720_demographic Dead '-- '-- '-- '-- 17799 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1355.0 '-- '-- 2946e499-dcfb-57a8-8e37-07c35d2228f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0720_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 180 7 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0720_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 52c3f16b-43d6-5f3b-b00b-54f81ff2d588 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0d23fa5b-95f8-4626-a4d2-c72ad3cc553b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0720 48 false '-- '-- '-- '-- -17799 1355 4361c0b6-dffe-5928-aabe-49e87f1a9447 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0720_demographic Dead '-- '-- '-- '-- 17799 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1355.0 '-- '-- 2946e499-dcfb-57a8-8e37-07c35d2228f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0720_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 292 239 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0720_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 560 '-- mg/m2 '-- '-- '-- '-- 9d88b2bb-bc92-412f-98de-989a4818e932 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0d23fa5b-95f8-4626-a4d2-c72ad3cc553b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0720 48 false '-- '-- '-- '-- -17799 1355 4361c0b6-dffe-5928-aabe-49e87f1a9447 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0720_demographic Dead '-- '-- '-- '-- 17799 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1355.0 '-- '-- 2946e499-dcfb-57a8-8e37-07c35d2228f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0720_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 180 7 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0720_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- f8880274-08b2-41d8-86da-bf1d1b4a4ef3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0d23fa5b-95f8-4626-a4d2-c72ad3cc553b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0720 48 false '-- '-- '-- '-- -17799 1355 4361c0b6-dffe-5928-aabe-49e87f1a9447 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0720_demographic Dead '-- '-- '-- '-- 18091 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 292 '-- '-- '-- bf0c74de-0e9c-4619-a0f6-437f3021ea4d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0720_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0720_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0720_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5714ddf4-0b91-4780-aa1b-e8353d2dca6f '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 0d23fa5b-95f8-4626-a4d2-c72ad3cc553b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0720 48 false '-- '-- '-- '-- -17799 1355 4361c0b6-dffe-5928-aabe-49e87f1a9447 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0720_demographic Dead '-- '-- '-- '-- 18091 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 292 '-- '-- '-- bf0c74de-0e9c-4619-a0f6-437f3021ea4d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0720_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0720_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0720_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bbfc26f2-0eb8-4776-98fc-db2bf19f0e92 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 0d5e232d-5aa2-4f6f-be58-ffd5f15ee0b8 Informed Consent 251 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1403 48 false '-- '-- '-- '-- -17697 2345 cd835f8d-6b5c-5b52-b9f3-6392a04c6f1e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1403_demographic Dead '-- '-- '-- '-- 17697 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2345.0 '-- '-- 2bb5937a-3659-5c77-a650-35e461810f1f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1403_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 142 27 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-13-1403_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- 0809387c-642c-42e0-81d7-d3679368a7ce Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0d5e232d-5aa2-4f6f-be58-ffd5f15ee0b8 Informed Consent 251 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1403 48 false '-- '-- '-- '-- -17697 2345 cd835f8d-6b5c-5b52-b9f3-6392a04c6f1e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1403_demographic Dead '-- '-- '-- '-- 17697 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2345.0 '-- '-- 2bb5937a-3659-5c77-a650-35e461810f1f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1403_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 142 27 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-13-1403_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- 71a4ee5b-ad87-5777-a700-f569bd948d39 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0d5e232d-5aa2-4f6f-be58-ffd5f15ee0b8 Informed Consent 251 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1403 48 false '-- '-- '-- '-- -17697 2345 cd835f8d-6b5c-5b52-b9f3-6392a04c6f1e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1403_demographic Dead '-- '-- '-- '-- 17697 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2345.0 '-- '-- 2bb5937a-3659-5c77-a650-35e461810f1f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1403_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1403_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c32d0c82-c4b7-4300-b1a8-578a75b821e3 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0d5e232d-5aa2-4f6f-be58-ffd5f15ee0b8 Informed Consent 251 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1403 48 false '-- '-- '-- '-- -17697 2345 cd835f8d-6b5c-5b52-b9f3-6392a04c6f1e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1403_demographic Dead '-- '-- '-- '-- 17697 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2345.0 '-- '-- 2bb5937a-3659-5c77-a650-35e461810f1f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1403_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 142 27 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-13-1403_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- f75c0b46-f64d-4ea1-a26b-42768cc90fb1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0d5e232d-5aa2-4f6f-be58-ffd5f15ee0b8 Informed Consent 251 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1403 48 false '-- '-- '-- '-- -17697 2345 cd835f8d-6b5c-5b52-b9f3-6392a04c6f1e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1403_demographic Dead '-- '-- '-- '-- 18115 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 418 '-- '-- '-- 82c6de2f-ab66-4831-b4d8-38cef2265b2b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1403_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1403_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 0dd95368-0713-45f0-84f4-c91af9cbba74 Informed Consent -35 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1895 52 false '-- '-- '-- '-- -19060 '-- 25324350-a8bf-5f61-9eac-058ff4de57c1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1895_demographic Alive '-- '-- '-- '-- 19060 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 44.0 '-- '-- 302c3f5e-c4df-587d-91c4-996189de1441 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1895_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 156 44 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1895_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 3780 '-- mg '-- '-- '-- '-- 25f1c86b-09be-5cad-a701-2a4c9d846551 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0dd95368-0713-45f0-84f4-c91af9cbba74 Informed Consent -35 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1895 52 false '-- '-- '-- '-- -19060 '-- 25324350-a8bf-5f61-9eac-058ff4de57c1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1895_demographic Alive '-- '-- '-- '-- 19060 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 44.0 '-- '-- 302c3f5e-c4df-587d-91c4-996189de1441 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1895_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 156 44 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1895_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 400 '-- mg '-- '-- '-- '-- 3a11e5a2-e42e-428d-9ff2-c5b4e243d28f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0dd95368-0713-45f0-84f4-c91af9cbba74 Informed Consent -35 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1895 52 false '-- '-- '-- '-- -19060 '-- 25324350-a8bf-5f61-9eac-058ff4de57c1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1895_demographic Alive '-- '-- '-- '-- 19060 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 44.0 '-- '-- 302c3f5e-c4df-587d-91c4-996189de1441 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1895_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1895_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 72a38ff4-7e6a-405a-9aff-cff7d37d180f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0de910b1-edaf-47e4-a265-727ee12ac1c3 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0797 49 false '-- '-- '-- '-- -18051 '-- 000181a9-73a5-5da4-9bf0-5e025cfce047 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0797_demographic Alive '-- '-- '-- '-- 18051 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2121.0 '-- '-- 1721bac4-b2e8-508d-8b99-aed22fef7600 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0797_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 146 42 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0797_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- 2987e269-6b99-4fa3-a726-e6c26f410e21 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0de910b1-edaf-47e4-a265-727ee12ac1c3 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0797 49 false '-- '-- '-- '-- -18051 '-- 000181a9-73a5-5da4-9bf0-5e025cfce047 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0797_demographic Alive '-- '-- '-- '-- 18051 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2121.0 '-- '-- 1721bac4-b2e8-508d-8b99-aed22fef7600 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0797_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0797_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8931d609-610b-4514-ad22-95ba578e55b7 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0de910b1-edaf-47e4-a265-727ee12ac1c3 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0797 49 false '-- '-- '-- '-- -18051 '-- 000181a9-73a5-5da4-9bf0-5e025cfce047 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0797_demographic Alive '-- '-- '-- '-- 18051 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2121.0 '-- '-- 1721bac4-b2e8-508d-8b99-aed22fef7600 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0797_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 146 42 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0797_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 599 '-- mg '-- '-- '-- '-- a8e3feee-1dca-5f8c-845b-80182d750816 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0de910b1-edaf-47e4-a265-727ee12ac1c3 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0797 49 false '-- '-- '-- '-- -18051 '-- 000181a9-73a5-5da4-9bf0-5e025cfce047 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0797_demographic Alive '-- '-- '-- '-- 18576 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 525 '-- '-- '-- 2695cd96-6be7-439b-9de9-fe1571576799 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0797_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0797_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 0e1598d8-cbe5-4113-95f1-4bcda061239b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1702 84 false '-- '-- '-- '-- -30910 728 10173208-9da8-5d9c-abe6-266dc021e80f '-- not reported female '-- '-- '-- '-- white TCGA-29-1702_demographic Dead '-- '-- '-- '-- 31196 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 286 '-- '-- '-- 4562b29b-0220-4064-ab16-4c9e1d32902e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1702_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1702_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1702_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ac5c2a6d-86b0-477c-928c-f477c7b2a1fa '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 0e1598d8-cbe5-4113-95f1-4bcda061239b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1702 84 false '-- '-- '-- '-- -30910 728 10173208-9da8-5d9c-abe6-266dc021e80f '-- not reported female '-- '-- '-- '-- white TCGA-29-1702_demographic Dead '-- '-- '-- '-- 31196 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 286 '-- '-- '-- 4562b29b-0220-4064-ab16-4c9e1d32902e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1702_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1702_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1702_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bf7e6bd4-e6fb-4596-9400-c890f73b6319 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 0e1598d8-cbe5-4113-95f1-4bcda061239b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1702 84 false '-- '-- '-- '-- -30910 728 10173208-9da8-5d9c-abe6-266dc021e80f '-- not reported female '-- '-- '-- '-- white TCGA-29-1702_demographic Dead '-- '-- '-- '-- 30910 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 728.0 '-- '-- cbd53dd3-17ba-5e10-ab96-f4be6dbbfcd2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1702_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 199 '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1702_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 2c115c8a-cfca-52d0-8c1b-8cecf9f8a4c8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0e1598d8-cbe5-4113-95f1-4bcda061239b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1702 84 false '-- '-- '-- '-- -30910 728 10173208-9da8-5d9c-abe6-266dc021e80f '-- not reported female '-- '-- '-- '-- white TCGA-29-1702_demographic Dead '-- '-- '-- '-- 30910 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 728.0 '-- '-- cbd53dd3-17ba-5e10-ab96-f4be6dbbfcd2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1702_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- 376 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1702_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 429444be-2d78-4188-9cca-8e794bf9538e '-- yes '-- '-- Chemotherapy +TCGA-OV 0e1598d8-cbe5-4113-95f1-4bcda061239b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1702 84 false '-- '-- '-- '-- -30910 728 10173208-9da8-5d9c-abe6-266dc021e80f '-- not reported female '-- '-- '-- '-- white TCGA-29-1702_demographic Dead '-- '-- '-- '-- 30910 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 728.0 '-- '-- cbd53dd3-17ba-5e10-ab96-f4be6dbbfcd2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1702_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- 466 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1702_treatment4 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 461e849b-f0d5-471b-8b5b-0d6f2887bf37 '-- yes '-- '-- Chemotherapy +TCGA-OV 0e1598d8-cbe5-4113-95f1-4bcda061239b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1702 84 false '-- '-- '-- '-- -30910 728 10173208-9da8-5d9c-abe6-266dc021e80f '-- not reported female '-- '-- '-- '-- white TCGA-29-1702_demographic Dead '-- '-- '-- '-- 30910 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 728.0 '-- '-- cbd53dd3-17ba-5e10-ab96-f4be6dbbfcd2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1702_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1702_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c48b10e3-1422-4856-a4f2-905142f5b095 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0e1598d8-cbe5-4113-95f1-4bcda061239b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1702 84 false '-- '-- '-- '-- -30910 728 10173208-9da8-5d9c-abe6-266dc021e80f '-- not reported female '-- '-- '-- '-- white TCGA-29-1702_demographic Dead '-- '-- '-- '-- 30910 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 728.0 '-- '-- cbd53dd3-17ba-5e10-ab96-f4be6dbbfcd2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1702_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1702_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f5c858ff-3e72-4df0-a580-446e9eb55872 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0e475b3d-be3c-431a-ab12-5a867ea8f6cd Informed Consent 1418 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1668 57 false '-- '-- '-- '-- -20972 '-- 750dae51-7957-57e9-9cf2-2054e1f5840a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1668_demographic Alive '-- '-- '-- '-- 20972 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1684.0 '-- '-- 0fbdc72e-a36b-5c66-9042-67e6732464ab true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1668_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1668_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 217a4531-e4c7-4a78-b385-6bce29396e31 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0e475b3d-be3c-431a-ab12-5a867ea8f6cd Informed Consent 1418 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1668 57 false '-- '-- '-- '-- -20972 '-- 750dae51-7957-57e9-9cf2-2054e1f5840a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1668_demographic Alive '-- '-- '-- '-- 20972 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1684.0 '-- '-- 0fbdc72e-a36b-5c66-9042-67e6732464ab true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1668_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 320 151 '-- '-- '-- '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1668_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- 552490ce-3dd5-4b2c-ac73-4898de99932c '-- yes '-- '-- Chemotherapy +TCGA-OV 0e475b3d-be3c-431a-ab12-5a867ea8f6cd Informed Consent 1418 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1668 57 false '-- '-- '-- '-- -20972 '-- 750dae51-7957-57e9-9cf2-2054e1f5840a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1668_demographic Alive '-- '-- '-- '-- 20972 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1684.0 '-- '-- 0fbdc72e-a36b-5c66-9042-67e6732464ab true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1668_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 135 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1668_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 480 '-- mg '-- '-- '-- '-- 5ab929e6-f83f-4c44-9475-df029560e687 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0e475b3d-be3c-431a-ab12-5a867ea8f6cd Informed Consent 1418 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1668 57 false '-- '-- '-- '-- -20972 '-- 750dae51-7957-57e9-9cf2-2054e1f5840a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1668_demographic Alive '-- '-- '-- '-- 20972 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1684.0 '-- '-- 0fbdc72e-a36b-5c66-9042-67e6732464ab true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1668_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 135 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1668_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- 120 '-- mg '-- '-- '-- '-- a2ef7309-4ade-5a6a-949f-d52fe5347193 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0f4a4ad1-e394-45c4-9aa9-aadf2bff0628 Informed Consent 17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1350 46 false '-- '-- '-- '-- -16942 1946 a8d4c73c-f71c-5015-9cfe-d6499ca3919b '-- not reported female '-- '-- '-- '-- white TCGA-04-1350_demographic Dead '-- '-- '-- '-- 16942 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1946.0 '-- '-- 2755ddb9-4175-5754-a34d-883256cd0dc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1350_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 1726 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1350_treatment4 Fulvestrant '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 15fa95a9-3a11-46db-bfdc-704aadc8cedb '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 0f4a4ad1-e394-45c4-9aa9-aadf2bff0628 Informed Consent 17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1350 46 false '-- '-- '-- '-- -16942 1946 a8d4c73c-f71c-5015-9cfe-d6499ca3919b '-- not reported female '-- '-- '-- '-- white TCGA-04-1350_demographic Dead '-- '-- '-- '-- 16942 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1946.0 '-- '-- 2755ddb9-4175-5754-a34d-883256cd0dc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1350_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 363 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1350_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1c4f0647-6ac5-4a0d-a320-d0be4eb63d23 '-- yes '-- '-- Chemotherapy +TCGA-OV 0f4a4ad1-e394-45c4-9aa9-aadf2bff0628 Informed Consent 17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1350 46 false '-- '-- '-- '-- -16942 1946 a8d4c73c-f71c-5015-9cfe-d6499ca3919b '-- not reported female '-- '-- '-- '-- white TCGA-04-1350_demographic Dead '-- '-- '-- '-- 16942 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1946.0 '-- '-- 2755ddb9-4175-5754-a34d-883256cd0dc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1350_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1350_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2db3341c-cb64-4be7-9714-5621a45b2583 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0f4a4ad1-e394-45c4-9aa9-aadf2bff0628 Informed Consent 17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1350 46 false '-- '-- '-- '-- -16942 1946 a8d4c73c-f71c-5015-9cfe-d6499ca3919b '-- not reported female '-- '-- '-- '-- white TCGA-04-1350_demographic Dead '-- '-- '-- '-- 16942 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1946.0 '-- '-- 2755ddb9-4175-5754-a34d-883256cd0dc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1350_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 216 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1350_treatment7 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2f6c2643-4469-47c7-b6c7-4187e217ac47 '-- yes '-- '-- Chemotherapy +TCGA-OV 0f4a4ad1-e394-45c4-9aa9-aadf2bff0628 Informed Consent 17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1350 46 false '-- '-- '-- '-- -16942 1946 a8d4c73c-f71c-5015-9cfe-d6499ca3919b '-- not reported female '-- '-- '-- '-- white TCGA-04-1350_demographic Dead '-- '-- '-- '-- 16942 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1946.0 '-- '-- 2755ddb9-4175-5754-a34d-883256cd0dc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1350_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 1389 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1350_treatment10 Bevacizumab '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7ee9c0ed-86ec-4a5d-88b3-ae3007774b80 '-- yes '-- '-- Immunotherapy (Including Vaccines) +TCGA-OV 0f4a4ad1-e394-45c4-9aa9-aadf2bff0628 Informed Consent 17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1350 46 false '-- '-- '-- '-- -16942 1946 a8d4c73c-f71c-5015-9cfe-d6499ca3919b '-- not reported female '-- '-- '-- '-- white TCGA-04-1350_demographic Dead '-- '-- '-- '-- 16942 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1946.0 '-- '-- 2755ddb9-4175-5754-a34d-883256cd0dc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1350_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 216 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1350_treatment8 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9b6c967b-ef4d-48fa-a439-fe33059f0a20 '-- yes '-- '-- Chemotherapy +TCGA-OV 0f4a4ad1-e394-45c4-9aa9-aadf2bff0628 Informed Consent 17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1350 46 false '-- '-- '-- '-- -16942 1946 a8d4c73c-f71c-5015-9cfe-d6499ca3919b '-- not reported female '-- '-- '-- '-- white TCGA-04-1350_demographic Dead '-- '-- '-- '-- 16942 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1946.0 '-- '-- 2755ddb9-4175-5754-a34d-883256cd0dc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1350_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 1580 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1350_treatment Tamoxifen '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- be3ff3bd-d801-5b71-94ab-a9b321903f23 '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 0f4a4ad1-e394-45c4-9aa9-aadf2bff0628 Informed Consent 17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1350 46 false '-- '-- '-- '-- -16942 1946 a8d4c73c-f71c-5015-9cfe-d6499ca3919b '-- not reported female '-- '-- '-- '-- white TCGA-04-1350_demographic Dead '-- '-- '-- '-- 16942 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1946.0 '-- '-- 2755ddb9-4175-5754-a34d-883256cd0dc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1350_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 720 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1350_treatment2 Gemcitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c2a9dfc0-e312-45a1-ab07-9110e01a3e83 '-- yes '-- '-- Chemotherapy +TCGA-OV 0f4a4ad1-e394-45c4-9aa9-aadf2bff0628 Informed Consent 17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1350 46 false '-- '-- '-- '-- -16942 1946 a8d4c73c-f71c-5015-9cfe-d6499ca3919b '-- not reported female '-- '-- '-- '-- white TCGA-04-1350_demographic Dead '-- '-- '-- '-- 16942 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1946.0 '-- '-- 2755ddb9-4175-5754-a34d-883256cd0dc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1350_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 1389 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1350_treatment5 Gemcitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ccb198ed-a5ed-4db9-9922-f67e4266f1e6 '-- yes '-- '-- Chemotherapy +TCGA-OV 0f4a4ad1-e394-45c4-9aa9-aadf2bff0628 Informed Consent 17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1350 46 false '-- '-- '-- '-- -16942 1946 a8d4c73c-f71c-5015-9cfe-d6499ca3919b '-- not reported female '-- '-- '-- '-- white TCGA-04-1350_demographic Dead '-- '-- '-- '-- 16942 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1946.0 '-- '-- 2755ddb9-4175-5754-a34d-883256cd0dc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1350_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 1622 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1350_treatment6 Exemestane '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f53cbc4b-003e-4ec4-9627-a43d34f852ce '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 0f4a4ad1-e394-45c4-9aa9-aadf2bff0628 Informed Consent 17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1350 46 false '-- '-- '-- '-- -16942 1946 a8d4c73c-f71c-5015-9cfe-d6499ca3919b '-- not reported female '-- '-- '-- '-- white TCGA-04-1350_demographic Dead '-- '-- '-- '-- 16942 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1946.0 '-- '-- 2755ddb9-4175-5754-a34d-883256cd0dc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1350_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 1389 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1350_treatment9 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fbc23d5a-e44b-4e0f-8899-db61dee1cd8a '-- yes '-- '-- Chemotherapy +TCGA-OV 0f4a4ad1-e394-45c4-9aa9-aadf2bff0628 Informed Consent 17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1350 46 false '-- '-- '-- '-- -16942 1946 a8d4c73c-f71c-5015-9cfe-d6499ca3919b '-- not reported female '-- '-- '-- '-- white TCGA-04-1350_demographic Dead '-- '-- '-- '-- 17053 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 111 '-- '-- '-- f4dd29ff-b121-4f97-9a67-f10ebaeea867 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1350_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1350_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1350_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0307c73b-a14e-42a9-b74a-f2bfb1829769 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 0f4a4ad1-e394-45c4-9aa9-aadf2bff0628 Informed Consent 17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1350 46 false '-- '-- '-- '-- -16942 1946 a8d4c73c-f71c-5015-9cfe-d6499ca3919b '-- not reported female '-- '-- '-- '-- white TCGA-04-1350_demographic Dead '-- '-- '-- '-- 17053 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 111 '-- '-- '-- f4dd29ff-b121-4f97-9a67-f10ebaeea867 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1350_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1350_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1350_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5e79aab0-775b-409a-b2d1-5b0a285be47a '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 0f530b3e-5b6d-4892-9ebd-9138d76fdca7 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1570 49 false '-- '-- '-- '-- -17956 '-- 8bf011e8-2516-55b4-b40b-332a899f5710 '-- not reported female '-- '-- '-- '-- white TCGA-36-1570_demographic Alive '-- '-- '-- '-- 17956 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 655.0 '-- '-- 2a9bd40c-59be-5757-894c-c0b7f1100b5f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1570_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1570_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 32e51ce2-2665-4f37-b8bb-e3a4ca36d7ae Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0f530b3e-5b6d-4892-9ebd-9138d76fdca7 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1570 49 false '-- '-- '-- '-- -17956 '-- 8bf011e8-2516-55b4-b40b-332a899f5710 '-- not reported female '-- '-- '-- '-- white TCGA-36-1570_demographic Alive '-- '-- '-- '-- 17956 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 655.0 '-- '-- 2a9bd40c-59be-5757-894c-c0b7f1100b5f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1570_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 133 23 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1570_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 2808 '-- mg '-- '-- '-- '-- 4cdec97d-42bf-5508-a2e3-f9c2755ab3ed Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0f530b3e-5b6d-4892-9ebd-9138d76fdca7 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1570 49 false '-- '-- '-- '-- -17956 '-- 8bf011e8-2516-55b4-b40b-332a899f5710 '-- not reported female '-- '-- '-- '-- white TCGA-36-1570_demographic Alive '-- '-- '-- '-- 17956 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 655.0 '-- '-- 2a9bd40c-59be-5757-894c-c0b7f1100b5f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1570_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 432 432 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1570_treatment2 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1200 '-- mg '-- '-- '-- '-- 5633540b-88ab-4e50-8c9c-4385b4ace691 '-- yes '-- '-- Chemotherapy +TCGA-OV 0f530b3e-5b6d-4892-9ebd-9138d76fdca7 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1570 49 false '-- '-- '-- '-- -17956 '-- 8bf011e8-2516-55b4-b40b-332a899f5710 '-- not reported female '-- '-- '-- '-- white TCGA-36-1570_demographic Alive '-- '-- '-- '-- 17956 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 655.0 '-- '-- 2a9bd40c-59be-5757-894c-c0b7f1100b5f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1570_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 133 23 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1570_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1330 '-- mg '-- '-- '-- '-- eea8be95-ab17-4812-9ca0-105e1d87be5d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0f530b3e-5b6d-4892-9ebd-9138d76fdca7 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1570 49 false '-- '-- '-- '-- -17956 '-- 8bf011e8-2516-55b4-b40b-332a899f5710 '-- not reported female '-- '-- '-- '-- white TCGA-36-1570_demographic Alive '-- '-- '-- '-- 18331 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 375 '-- '-- '-- 8412a2ba-d539-48f4-8864-8f4886695aec false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-36-1570_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-36-1570_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1570_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7d2dd93e-a0a2-45a7-b295-4b28919bb934 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 0f530b3e-5b6d-4892-9ebd-9138d76fdca7 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1570 49 false '-- '-- '-- '-- -17956 '-- 8bf011e8-2516-55b4-b40b-332a899f5710 '-- not reported female '-- '-- '-- '-- white TCGA-36-1570_demographic Alive '-- '-- '-- '-- 18331 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 375 '-- '-- '-- 8412a2ba-d539-48f4-8864-8f4886695aec false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-36-1570_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-36-1570_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1570_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cb6fb5a4-cd61-4674-b726-d0bce2de458d '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 0fc8777c-8f12-472f-a0ea-085139b35d1f Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1675 50 false '-- '-- '-- '-- -18596 '-- c46f9687-5a61-5a44-b927-5cdc22391434 '-- not hispanic or latino female '-- '-- '-- '-- not reported TCGA-09-1675_demographic Alive '-- '-- '-- '-- 18596 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2967.0 '-- '-- a903970a-ee0b-5bce-b0fc-3c602dd2024c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1675_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 68 54 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1675_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- 0d72ab8d-3ae1-4149-bcb7-c1dde65a5703 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0fc8777c-8f12-472f-a0ea-085139b35d1f Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1675 50 false '-- '-- '-- '-- -18596 '-- c46f9687-5a61-5a44-b927-5cdc22391434 '-- not hispanic or latino female '-- '-- '-- '-- not reported TCGA-09-1675_demographic Alive '-- '-- '-- '-- 18596 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2967.0 '-- '-- a903970a-ee0b-5bce-b0fc-3c602dd2024c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1675_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 68 54 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1675_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 190 '-- mg '-- '-- '-- '-- 58a05aea-1bcf-4d75-b915-dff8c4afddfc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0fc8777c-8f12-472f-a0ea-085139b35d1f Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1675 50 false '-- '-- '-- '-- -18596 '-- c46f9687-5a61-5a44-b927-5cdc22391434 '-- not hispanic or latino female '-- '-- '-- '-- not reported TCGA-09-1675_demographic Alive '-- '-- '-- '-- 18596 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2967.0 '-- '-- a903970a-ee0b-5bce-b0fc-3c602dd2024c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1675_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 187 75 '-- '-- '-- '-- '-- '-- '-- 15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1675_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 80 '-- mg/m2 '-- '-- '-- '-- 9235c300-5004-4c42-8ed5-c9ea89291c2c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 0fc8777c-8f12-472f-a0ea-085139b35d1f Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1675 50 false '-- '-- '-- '-- -18596 '-- c46f9687-5a61-5a44-b927-5cdc22391434 '-- not hispanic or latino female '-- '-- '-- '-- not reported TCGA-09-1675_demographic Alive '-- '-- '-- '-- 18596 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2967.0 '-- '-- a903970a-ee0b-5bce-b0fc-3c602dd2024c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1675_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1675_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bd40aac5-b264-4360-ad15-1b482d52426a Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 0fc8777c-8f12-472f-a0ea-085139b35d1f Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1675 50 false '-- '-- '-- '-- -18596 '-- c46f9687-5a61-5a44-b927-5cdc22391434 '-- not hispanic or latino female '-- '-- '-- '-- not reported TCGA-09-1675_demographic Alive '-- '-- '-- '-- 18596 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2967.0 '-- '-- a903970a-ee0b-5bce-b0fc-3c602dd2024c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1675_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 187 75 '-- '-- '-- '-- '-- '-- '-- 15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1675_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 190 '-- mg '-- '-- '-- '-- d508876b-b81e-5986-b977-8918b08487be Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 12581634-eebb-4841-8498-71dc9d78c546 Informed Consent -22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1571 53 false '-- '-- '-- '-- -19608 695 45064610-c261-5514-8632-f45474cd4857 '-- not reported female '-- '-- '-- '-- white TCGA-36-1571_demographic Dead '-- '-- '-- '-- 19983 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 375 '-- '-- '-- 158b6eb3-c035-494a-8b52-ae1d031605f4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-36-1571_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-36-1571_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1571_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 092195be-77c9-49fc-a221-15400df426a5 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 12581634-eebb-4841-8498-71dc9d78c546 Informed Consent -22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1571 53 false '-- '-- '-- '-- -19608 695 45064610-c261-5514-8632-f45474cd4857 '-- not reported female '-- '-- '-- '-- white TCGA-36-1571_demographic Dead '-- '-- '-- '-- 19983 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 375 '-- '-- '-- 158b6eb3-c035-494a-8b52-ae1d031605f4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-36-1571_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-36-1571_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1571_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 646d175e-254a-42d2-9121-58285f71842c '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 12581634-eebb-4841-8498-71dc9d78c546 Informed Consent -22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1571 53 false '-- '-- '-- '-- -19608 695 45064610-c261-5514-8632-f45474cd4857 '-- not reported female '-- '-- '-- '-- white TCGA-36-1571_demographic Dead '-- '-- '-- '-- 19608 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 695.0 '-- '-- 5cdad4c0-aa9e-59d2-b9d8-59157a7f2f7e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1571_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 173 32 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1571_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5130 '-- mg '-- '-- '-- '-- 489b1f38-d6e8-4cac-a402-57d1142ef342 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 12581634-eebb-4841-8498-71dc9d78c546 Informed Consent -22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1571 53 false '-- '-- '-- '-- -19608 695 45064610-c261-5514-8632-f45474cd4857 '-- not reported female '-- '-- '-- '-- white TCGA-36-1571_demographic Dead '-- '-- '-- '-- 19608 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 695.0 '-- '-- 5cdad4c0-aa9e-59d2-b9d8-59157a7f2f7e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1571_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 531 384 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1571_treatment4 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 26752 '-- mg '-- '-- '-- '-- 513d81d8-1c2c-4842-8410-47e8fe97da79 '-- yes '-- '-- Chemotherapy +TCGA-OV 12581634-eebb-4841-8498-71dc9d78c546 Informed Consent -22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1571 53 false '-- '-- '-- '-- -19608 695 45064610-c261-5514-8632-f45474cd4857 '-- not reported female '-- '-- '-- '-- white TCGA-36-1571_demographic Dead '-- '-- '-- '-- 19608 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 695.0 '-- '-- 5cdad4c0-aa9e-59d2-b9d8-59157a7f2f7e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1571_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 173 32 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1571_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2100 '-- mg '-- '-- '-- '-- 6af5f8d5-278b-5da9-b503-b63a549cf3a8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 12581634-eebb-4841-8498-71dc9d78c546 Informed Consent -22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1571 53 false '-- '-- '-- '-- -19608 695 45064610-c261-5514-8632-f45474cd4857 '-- not reported female '-- '-- '-- '-- white TCGA-36-1571_demographic Dead '-- '-- '-- '-- 19608 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 695.0 '-- '-- 5cdad4c0-aa9e-59d2-b9d8-59157a7f2f7e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1571_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1571_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 832ed5f2-5bc2-44c5-acdb-b980ff6c3ee3 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 12581634-eebb-4841-8498-71dc9d78c546 Informed Consent -22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1571 53 false '-- '-- '-- '-- -19608 695 45064610-c261-5514-8632-f45474cd4857 '-- not reported female '-- '-- '-- '-- white TCGA-36-1571_demographic Dead '-- '-- '-- '-- 19608 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 695.0 '-- '-- 5cdad4c0-aa9e-59d2-b9d8-59157a7f2f7e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1571_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 531 384 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1571_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4920 '-- mg '-- '-- '-- '-- b8ab9693-bbe9-41f1-82e5-a6ba6f9716a0 '-- yes '-- '-- Chemotherapy +TCGA-OV 13319c20-02f6-4b5f-b24f-3d8f4084094c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1318 54 false '-- '-- '-- '-- -19755 1064 f25e1764-8f69-5eb1-824e-789ac5a8ff24 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1318_demographic Dead '-- '-- '-- '-- 19755 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1064.0 '-- '-- 2e841bcd-46c2-5c16-95cc-6d40414476b3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1318_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1318_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3f3fef64-d0bb-4765-88df-2441307961eb Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 13319c20-02f6-4b5f-b24f-3d8f4084094c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1318 54 false '-- '-- '-- '-- -19755 1064 f25e1764-8f69-5eb1-824e-789ac5a8ff24 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1318_demographic Dead '-- '-- '-- '-- 19755 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1064.0 '-- '-- 2e841bcd-46c2-5c16-95cc-6d40414476b3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1318_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 273 212 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1318_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a70c7b2b-68d3-4271-ba0f-4762131ed24a '-- yes '-- '-- Chemotherapy +TCGA-OV 13319c20-02f6-4b5f-b24f-3d8f4084094c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1318 54 false '-- '-- '-- '-- -19755 1064 f25e1764-8f69-5eb1-824e-789ac5a8ff24 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1318_demographic Dead '-- '-- '-- '-- 19755 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1064.0 '-- '-- 2e841bcd-46c2-5c16-95cc-6d40414476b3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1318_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 122 30 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1318_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a8dead29-cdfb-544f-a4fd-7ffb3c12f56b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 13319c20-02f6-4b5f-b24f-3d8f4084094c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1318 54 false '-- '-- '-- '-- -19755 1064 f25e1764-8f69-5eb1-824e-789ac5a8ff24 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1318_demographic Dead '-- '-- '-- '-- 19755 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1064.0 '-- '-- 2e841bcd-46c2-5c16-95cc-6d40414476b3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1318_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 122 30 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1318_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b3e812a4-c2f2-4c65-a75b-47d3c14c4ad8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 13319c20-02f6-4b5f-b24f-3d8f4084094c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1318 54 false '-- '-- '-- '-- -19755 1064 f25e1764-8f69-5eb1-824e-789ac5a8ff24 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1318_demographic Dead '-- '-- '-- '-- 19940 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 185 '-- '-- '-- 338924ff-8982-48bc-a975-4288ec51b184 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1318_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1318_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1318_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 388bd3bc-1241-4770-9cd0-d4627bd2b834 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 13319c20-02f6-4b5f-b24f-3d8f4084094c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1318 54 false '-- '-- '-- '-- -19755 1064 f25e1764-8f69-5eb1-824e-789ac5a8ff24 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1318_demographic Dead '-- '-- '-- '-- 19940 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 185 '-- '-- '-- 338924ff-8982-48bc-a975-4288ec51b184 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1318_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1318_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1318_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fa6d4c66-a7d2-4c75-a247-61a8c103e501 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 13319c20-02f6-4b5f-b24f-3d8f4084094c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1318 54 false '-- '-- '-- '-- -19755 1064 f25e1764-8f69-5eb1-824e-789ac5a8ff24 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1318_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e22690fc-64b2-4cc1-9c8e-64642d4142d0 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1318_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1318_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 181 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1318_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 451bb98c-88df-4d76-85f6-1f80ad77db48 '-- yes '-- '-- Surgery, NOS +TCGA-OV 13319c20-02f6-4b5f-b24f-3d8f4084094c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1318 54 false '-- '-- '-- '-- -19755 1064 f25e1764-8f69-5eb1-824e-789ac5a8ff24 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1318_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e22690fc-64b2-4cc1-9c8e-64642d4142d0 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1318_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1318_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1318_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 83440359-810c-424d-9ea7-9b9dc45e0ea0 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 13319c20-02f6-4b5f-b24f-3d8f4084094c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1318 54 false '-- '-- '-- '-- -19755 1064 f25e1764-8f69-5eb1-824e-789ac5a8ff24 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1318_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e22690fc-64b2-4cc1-9c8e-64642d4142d0 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1318_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1318_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1318_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c8f3bdaa-82d0-442a-9cc7-4f92605afb28 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 13f5814c-1f99-4ffa-84a4-3bbd8979faae Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1477 49 false '-- '-- '-- '-- -18111 1662 b24d11cb-3d0e-5e1e-a82e-75025a577914 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1477_demographic Dead '-- '-- '-- '-- 18111 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1662.0 '-- '-- 999ac7a5-2147-5a8f-afac-d62ded2f8f79 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1477_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 206 57 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1477_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 360 '-- mg/m2 '-- '-- '-- '-- bc902138-7d50-5a41-ba40-4935459f3eb9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 13f5814c-1f99-4ffa-84a4-3bbd8979faae Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1477 49 false '-- '-- '-- '-- -18111 1662 b24d11cb-3d0e-5e1e-a82e-75025a577914 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1477_demographic Dead '-- '-- '-- '-- 18111 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1662.0 '-- '-- 999ac7a5-2147-5a8f-afac-d62ded2f8f79 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1477_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 206 57 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1477_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- e8b2cd10-1935-48dc-936f-7b59f4dc23e2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 13f5814c-1f99-4ffa-84a4-3bbd8979faae Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1477 49 false '-- '-- '-- '-- -18111 1662 b24d11cb-3d0e-5e1e-a82e-75025a577914 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1477_demographic Dead '-- '-- '-- '-- 18111 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1662.0 '-- '-- 999ac7a5-2147-5a8f-afac-d62ded2f8f79 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1477_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1477_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e928df47-6f55-4342-ba1f-a7781c5de4c0 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 13f5814c-1f99-4ffa-84a4-3bbd8979faae Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1477 49 false '-- '-- '-- '-- -18111 1662 b24d11cb-3d0e-5e1e-a82e-75025a577914 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1477_demographic Dead '-- '-- '-- '-- 18346 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 235 '-- '-- '-- bc712fa8-d66a-453e-bb59-3c19a165286f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1477_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1477_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1477_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8158cd63-04b6-4402-a156-ff85b5ab9837 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 13f5814c-1f99-4ffa-84a4-3bbd8979faae Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1477 49 false '-- '-- '-- '-- -18111 1662 b24d11cb-3d0e-5e1e-a82e-75025a577914 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1477_demographic Dead '-- '-- '-- '-- 18346 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 235 '-- '-- '-- bc712fa8-d66a-453e-bb59-3c19a165286f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1477_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1477_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1477_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f0adc7e7-f33d-418a-8491-3a6237ee2483 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 14c58def-60ee-48e0-a74b-da4eb77ef344 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0887 42 false '-- '-- '-- '-- -15669 2028 05ddf2a8-4ba3-5158-ad54-369b93b80bf4 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0887_demographic Dead '-- '-- '-- '-- 15669 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2028.0 '-- '-- 5e9e3f81-ce0d-57fd-824c-1c7d28ccdbfe true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0887_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0887_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 07d14647-9b4b-402e-895e-0a91bca8c431 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 14c58def-60ee-48e0-a74b-da4eb77ef344 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0887 42 false '-- '-- '-- '-- -15669 2028 05ddf2a8-4ba3-5158-ad54-369b93b80bf4 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0887_demographic Dead '-- '-- '-- '-- 15669 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2028.0 '-- '-- 5e9e3f81-ce0d-57fd-824c-1c7d28ccdbfe true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0887_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 268 184 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0887_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5f565541-3828-4a2f-b534-f4cbff7986be Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 14c58def-60ee-48e0-a74b-da4eb77ef344 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0887 42 false '-- '-- '-- '-- -15669 2028 05ddf2a8-4ba3-5158-ad54-369b93b80bf4 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0887_demographic Dead '-- '-- '-- '-- 15669 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2028.0 '-- '-- 5e9e3f81-ce0d-57fd-824c-1c7d28ccdbfe true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0887_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 114 7 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0887_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a96bd863-5a58-5e3b-a71d-a2cf736e0240 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 14c58def-60ee-48e0-a74b-da4eb77ef344 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0887 42 false '-- '-- '-- '-- -15669 2028 05ddf2a8-4ba3-5158-ad54-369b93b80bf4 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0887_demographic Dead '-- '-- '-- '-- 15669 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2028.0 '-- '-- 5e9e3f81-ce0d-57fd-824c-1c7d28ccdbfe true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0887_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 114 7 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0887_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e777ee76-35a2-4783-8351-03a428a1b35e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 14c58def-60ee-48e0-a74b-da4eb77ef344 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0887 42 false '-- '-- '-- '-- -15669 2028 05ddf2a8-4ba3-5158-ad54-369b93b80bf4 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0887_demographic Dead '-- '-- '-- '-- 16183 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 514 '-- '-- '-- e9eff0fb-40e5-4823-9423-2fbad5a0638f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0887_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0887_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0887_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 549c2d73-1ab5-490f-9b6e-1f239e3f0c16 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 14c58def-60ee-48e0-a74b-da4eb77ef344 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0887 42 false '-- '-- '-- '-- -15669 2028 05ddf2a8-4ba3-5158-ad54-369b93b80bf4 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0887_demographic Dead '-- '-- '-- '-- 16183 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 514 '-- '-- '-- e9eff0fb-40e5-4823-9423-2fbad5a0638f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0887_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0887_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0887_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5909f432-5901-4d7d-aeef-6a21b152cc79 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 15170c7f-5880-4fb6-82ce-68d3df0dfb68 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0893 48 false '-- '-- '-- '-- -17573 1319 6c86e5a1-4fa3-5421-8580-641c2765baa8 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-13-0893_demographic Dead '-- '-- '-- '-- 17573 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1319.0 '-- '-- 74c32721-9793-5e47-9563-559b08a6f618 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0893_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 284 80 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0893_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 186be6ea-fe78-538d-aeb7-be248980c0ae Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 15170c7f-5880-4fb6-82ce-68d3df0dfb68 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0893 48 false '-- '-- '-- '-- -17573 1319 6c86e5a1-4fa3-5421-8580-641c2765baa8 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-13-0893_demographic Dead '-- '-- '-- '-- 17573 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1319.0 '-- '-- 74c32721-9793-5e47-9563-559b08a6f618 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0893_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 284 80 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0893_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a41514b9-da97-4b56-9145-3d1ebe1a1a54 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 15170c7f-5880-4fb6-82ce-68d3df0dfb68 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0893 48 false '-- '-- '-- '-- -17573 1319 6c86e5a1-4fa3-5421-8580-641c2765baa8 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-13-0893_demographic Dead '-- '-- '-- '-- 17573 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1319.0 '-- '-- 74c32721-9793-5e47-9563-559b08a6f618 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0893_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 566 340 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0893_treatment3 Letrozole '-- '-- '-- '-- '-- '-- '-- 3 '-- mg/m2 '-- '-- '-- '-- c3be81cf-0b66-4d5f-b879-7c3096fdcafc Adjuvant yes '-- '-- Hormone Therapy +TCGA-OV 15170c7f-5880-4fb6-82ce-68d3df0dfb68 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0893 48 false '-- '-- '-- '-- -17573 1319 6c86e5a1-4fa3-5421-8580-641c2765baa8 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-13-0893_demographic Dead '-- '-- '-- '-- 17573 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1319.0 '-- '-- 74c32721-9793-5e47-9563-559b08a6f618 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0893_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0893_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f54a6a19-ca16-4a2a-a31c-0825f3fe6aa5 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 15170c7f-5880-4fb6-82ce-68d3df0dfb68 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0893 48 false '-- '-- '-- '-- -17573 1319 6c86e5a1-4fa3-5421-8580-641c2765baa8 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-13-0893_demographic Dead '-- '-- '-- '-- 18034 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 461 '-- '-- '-- a28bab28-e0b8-4205-a150-2b46fd1f47ff false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0893_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0893_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0893_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0c57e2b8-2a46-459f-b5cc-b41ab1fa9206 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 15170c7f-5880-4fb6-82ce-68d3df0dfb68 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0893 48 false '-- '-- '-- '-- -17573 1319 6c86e5a1-4fa3-5421-8580-641c2765baa8 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-13-0893_demographic Dead '-- '-- '-- '-- 18034 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 461 '-- '-- '-- a28bab28-e0b8-4205-a150-2b46fd1f47ff false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0893_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0893_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0893_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a6bbc91c-4ea0-45f5-9615-3cb998dac4fd '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 15556b28-c6bd-455a-87b6-4b7b3e33d0e4 Informed Consent 9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1634 75 false '-- '-- '-- '-- -27749 1091 893d4088-f26b-55ea-aa87-aed8cf080262 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1634_demographic Dead '-- '-- '-- '-- 28129 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 380 '-- '-- '-- 6b4f6b37-2f6d-4f54-a079-6ab253da3f6a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1634_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1634_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1634_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 18d766a4-6819-4ec0-9be7-8ab497b975a3 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 15556b28-c6bd-455a-87b6-4b7b3e33d0e4 Informed Consent 9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1634 75 false '-- '-- '-- '-- -27749 1091 893d4088-f26b-55ea-aa87-aed8cf080262 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1634_demographic Dead '-- '-- '-- '-- 28129 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 380 '-- '-- '-- 6b4f6b37-2f6d-4f54-a079-6ab253da3f6a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1634_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1634_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1634_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fd574d41-0340-4016-a2c5-40e2ba466c67 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 15556b28-c6bd-455a-87b6-4b7b3e33d0e4 Informed Consent 9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1634 75 false '-- '-- '-- '-- -27749 1091 893d4088-f26b-55ea-aa87-aed8cf080262 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1634_demographic Dead '-- '-- '-- '-- 27749 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1091.0 '-- '-- ccfe5d13-dadc-5a66-a404-f202b80053e2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1634_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 206 29 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1634_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 010bde81-759f-405e-a48d-1b7786a3d253 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 15556b28-c6bd-455a-87b6-4b7b3e33d0e4 Informed Consent 9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1634 75 false '-- '-- '-- '-- -27749 1091 893d4088-f26b-55ea-aa87-aed8cf080262 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1634_demographic Dead '-- '-- '-- '-- 27749 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1091.0 '-- '-- ccfe5d13-dadc-5a66-a404-f202b80053e2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1634_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 573 539 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- 5000.0 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1634_treatment '-- '-- '-- '-- '-- '-- Primary Tumor Field '-- 5000 '-- cGy '-- '-- '-- '-- 3cdf91fd-268f-5fbc-aac9-6f7b6d0c4b1f '-- yes '-- '-- Radiation, External Beam +TCGA-OV 15556b28-c6bd-455a-87b6-4b7b3e33d0e4 Informed Consent 9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1634 75 false '-- '-- '-- '-- -27749 1091 893d4088-f26b-55ea-aa87-aed8cf080262 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1634_demographic Dead '-- '-- '-- '-- 27749 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1091.0 '-- '-- ccfe5d13-dadc-5a66-a404-f202b80053e2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1634_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 206 29 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1634_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 51ac7afa-8410-4019-a02a-5c7d52e00a14 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 15556b28-c6bd-455a-87b6-4b7b3e33d0e4 Informed Consent 9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1634 75 false '-- '-- '-- '-- -27749 1091 893d4088-f26b-55ea-aa87-aed8cf080262 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1634_demographic Dead '-- '-- '-- '-- 27749 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1091.0 '-- '-- ccfe5d13-dadc-5a66-a404-f202b80053e2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1634_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 206 29 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1634_treatment4 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c38e7e2a-ea89-4af0-b36f-7187ee30fda4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 15556b28-c6bd-455a-87b6-4b7b3e33d0e4 Informed Consent 9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1634 75 false '-- '-- '-- '-- -27749 1091 893d4088-f26b-55ea-aa87-aed8cf080262 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1634_demographic Dead '-- '-- '-- '-- 27749 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1091.0 '-- '-- ccfe5d13-dadc-5a66-a404-f202b80053e2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1634_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 843 380 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1634_treatment5 Tamoxifen '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dcd8a86b-337b-4349-ad95-e57a055dee70 '-- yes '-- '-- Hormone Therapy +TCGA-OV 1592af8e-8d11-4325-8a2b-e0c690b15b58 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2072 58 false '-- '-- '-- '-- -21523 759 e1eaf179-c9af-5044-a11f-f3fdd1edf31d '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2072_demographic Dead '-- '-- '-- '-- 21999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 476 '-- '-- '-- 6809a730-7c6b-4f32-bc32-03c50309fcb8 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-2072_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-2072_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2072_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2223c5a9-649c-4cfd-8796-93002307f9b2 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 1592af8e-8d11-4325-8a2b-e0c690b15b58 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2072 58 false '-- '-- '-- '-- -21523 759 e1eaf179-c9af-5044-a11f-f3fdd1edf31d '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2072_demographic Dead '-- '-- '-- '-- 21999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 476 '-- '-- '-- 6809a730-7c6b-4f32-bc32-03c50309fcb8 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-2072_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-2072_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2072_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7225d088-7254-4696-bcec-e8065e3ad2f8 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 1592af8e-8d11-4325-8a2b-e0c690b15b58 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2072 58 false '-- '-- '-- '-- -21523 759 e1eaf179-c9af-5044-a11f-f3fdd1edf31d '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2072_demographic Dead '-- '-- '-- '-- 21523 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 759.0 '-- '-- c62f5807-6705-51ad-aac1-3be9a4bf1f40 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2072_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2072_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0b94d608-0e02-40f0-a806-1ac92db0f3d2 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 1592af8e-8d11-4325-8a2b-e0c690b15b58 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2072 58 false '-- '-- '-- '-- -21523 759 e1eaf179-c9af-5044-a11f-f3fdd1edf31d '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2072_demographic Dead '-- '-- '-- '-- 21523 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 759.0 '-- '-- c62f5807-6705-51ad-aac1-3be9a4bf1f40 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2072_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 571 571 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2072_treatment Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 64 '-- mg '-- '-- '-- '-- 0c40a7d9-f022-59c4-a710-34c1b20c5bcf '-- yes '-- '-- Chemotherapy +TCGA-OV 1592af8e-8d11-4325-8a2b-e0c690b15b58 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2072 58 false '-- '-- '-- '-- -21523 759 e1eaf179-c9af-5044-a11f-f3fdd1edf31d '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2072_demographic Dead '-- '-- '-- '-- 21523 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 759.0 '-- '-- c62f5807-6705-51ad-aac1-3be9a4bf1f40 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2072_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 620 579 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2072_treatment3 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 6280 '-- mg '-- '-- '-- '-- 1728d7a8-daf7-4315-9be7-190b2a6cfbaa '-- yes '-- '-- Chemotherapy +TCGA-OV 1592af8e-8d11-4325-8a2b-e0c690b15b58 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2072 58 false '-- '-- '-- '-- -21523 759 e1eaf179-c9af-5044-a11f-f3fdd1edf31d '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2072_demographic Dead '-- '-- '-- '-- 21523 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 759.0 '-- '-- c62f5807-6705-51ad-aac1-3be9a4bf1f40 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2072_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 151 26 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2072_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1890 '-- mg '-- '-- '-- '-- bc531d17-4534-412a-bc1c-419b4f764703 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1592af8e-8d11-4325-8a2b-e0c690b15b58 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2072 58 false '-- '-- '-- '-- -21523 759 e1eaf179-c9af-5044-a11f-f3fdd1edf31d '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2072_demographic Dead '-- '-- '-- '-- 21523 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 759.0 '-- '-- c62f5807-6705-51ad-aac1-3be9a4bf1f40 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2072_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 151 26 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2072_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3325 '-- mg '-- '-- '-- '-- fff99f02-5423-4e6f-8227-066f6a30a5ac Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 15c84da3-16e5-4909-aea9-cb5894b0f8af '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0751 44 false '-- '-- '-- '-- -16304 1678 d2294e00-1329-57f6-a7a2-25a9cfc94580 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0751_demographic Dead '-- '-- '-- '-- 16957 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 653 '-- '-- '-- 631ccc2e-44de-499b-bcd9-294735d7b52f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0751_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0751_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0751_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 119ad2b9-8bed-42d1-8ba3-fc2c00400ca7 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 15c84da3-16e5-4909-aea9-cb5894b0f8af '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0751 44 false '-- '-- '-- '-- -16304 1678 d2294e00-1329-57f6-a7a2-25a9cfc94580 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0751_demographic Dead '-- '-- '-- '-- 16957 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 653 '-- '-- '-- 631ccc2e-44de-499b-bcd9-294735d7b52f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0751_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0751_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0751_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 319d181c-8c2e-42e3-9b91-9fa739df39fd '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 15c84da3-16e5-4909-aea9-cb5894b0f8af '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0751 44 false '-- '-- '-- '-- -16304 1678 d2294e00-1329-57f6-a7a2-25a9cfc94580 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0751_demographic Dead '-- '-- '-- '-- 16304 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1678.0 '-- '-- 6d20c36f-e30e-57fb-8df2-023b1e0d70ad true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0751_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 266 195 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0751_treatment3 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 500 '-- mg/m2 '-- '-- '-- '-- 42e15702-ad39-4eaf-9ebc-4f73bebf7795 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 15c84da3-16e5-4909-aea9-cb5894b0f8af '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0751 44 false '-- '-- '-- '-- -16304 1678 d2294e00-1329-57f6-a7a2-25a9cfc94580 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0751_demographic Dead '-- '-- '-- '-- 16304 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1678.0 '-- '-- 6d20c36f-e30e-57fb-8df2-023b1e0d70ad true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0751_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 266 195 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0751_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- 75b908d6-b703-415d-ba16-6fd87d18cff3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 15c84da3-16e5-4909-aea9-cb5894b0f8af '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0751 44 false '-- '-- '-- '-- -16304 1678 d2294e00-1329-57f6-a7a2-25a9cfc94580 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0751_demographic Dead '-- '-- '-- '-- 16304 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1678.0 '-- '-- 6d20c36f-e30e-57fb-8df2-023b1e0d70ad true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0751_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 126 7 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0751_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 79713242-d054-464a-aba3-acb572d1e75f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 15c84da3-16e5-4909-aea9-cb5894b0f8af '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0751 44 false '-- '-- '-- '-- -16304 1678 d2294e00-1329-57f6-a7a2-25a9cfc94580 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0751_demographic Dead '-- '-- '-- '-- 16304 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1678.0 '-- '-- 6d20c36f-e30e-57fb-8df2-023b1e0d70ad true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0751_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0751_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e6a0a802-bb91-4d32-825c-68b08f80b691 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 15c84da3-16e5-4909-aea9-cb5894b0f8af '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0751 44 false '-- '-- '-- '-- -16304 1678 d2294e00-1329-57f6-a7a2-25a9cfc94580 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0751_demographic Dead '-- '-- '-- '-- 16304 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1678.0 '-- '-- 6d20c36f-e30e-57fb-8df2-023b1e0d70ad true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0751_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 126 7 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0751_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f106044f-1214-51c0-8854-5fb76c286ef0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 15f1a992-0724-4d76-a71a-702ac7753a41 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1870 59 false '-- '-- '-- '-- -21550 455 c0bb7234-e6e9-5243-a3ab-3e33ef23ba66 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1870_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 73ceeddf-dccc-4da2-acee-f09cd687c0f6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1870_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1870_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 243 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1870_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2443142b-eec2-4fbd-8c11-018fb716137a '-- yes '-- '-- Surgery, NOS +TCGA-OV 15f1a992-0724-4d76-a71a-702ac7753a41 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1870 59 false '-- '-- '-- '-- -21550 455 c0bb7234-e6e9-5243-a3ab-3e33ef23ba66 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1870_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 73ceeddf-dccc-4da2-acee-f09cd687c0f6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1870_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1870_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1870_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 613fc65e-9f68-4076-9b1c-2f7cab8f7afd '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 15f1a992-0724-4d76-a71a-702ac7753a41 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1870 59 false '-- '-- '-- '-- -21550 455 c0bb7234-e6e9-5243-a3ab-3e33ef23ba66 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1870_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 73ceeddf-dccc-4da2-acee-f09cd687c0f6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1870_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1870_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1870_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c3236f90-87d6-4163-8f79-324bc6f984ce '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 15f1a992-0724-4d76-a71a-702ac7753a41 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1870 59 false '-- '-- '-- '-- -21550 455 c0bb7234-e6e9-5243-a3ab-3e33ef23ba66 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1870_demographic Dead '-- '-- '-- '-- 21550 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 455.0 '-- '-- 7a970436-b1ad-5ed4-bc9d-c7e4870207ec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1870_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- '-- 31 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1870_treatment4 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 59431217-089e-42ca-b15e-245c4832cee7 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 15f1a992-0724-4d76-a71a-702ac7753a41 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1870 59 false '-- '-- '-- '-- -21550 455 c0bb7234-e6e9-5243-a3ab-3e33ef23ba66 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1870_demographic Dead '-- '-- '-- '-- 21550 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 455.0 '-- '-- 7a970436-b1ad-5ed4-bc9d-c7e4870207ec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1870_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- '-- 151 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1870_treatment3 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5b39053b-debc-4890-9c66-94c2c3ddef8e '-- yes '-- '-- Chemotherapy +TCGA-OV 15f1a992-0724-4d76-a71a-702ac7753a41 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1870 59 false '-- '-- '-- '-- -21550 455 c0bb7234-e6e9-5243-a3ab-3e33ef23ba66 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1870_demographic Dead '-- '-- '-- '-- 21550 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 455.0 '-- '-- 7a970436-b1ad-5ed4-bc9d-c7e4870207ec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1870_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- '-- 151 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1870_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7506019d-c56f-4236-9713-8e7c2dc7117e '-- yes '-- '-- Chemotherapy +TCGA-OV 15f1a992-0724-4d76-a71a-702ac7753a41 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1870 59 false '-- '-- '-- '-- -21550 455 c0bb7234-e6e9-5243-a3ab-3e33ef23ba66 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1870_demographic Dead '-- '-- '-- '-- 21550 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 455.0 '-- '-- 7a970436-b1ad-5ed4-bc9d-c7e4870207ec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1870_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1870_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a1a4297e-a59e-4a04-be63-8f5430d59b59 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 15f1a992-0724-4d76-a71a-702ac7753a41 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1870 59 false '-- '-- '-- '-- -21550 455 c0bb7234-e6e9-5243-a3ab-3e33ef23ba66 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1870_demographic Dead '-- '-- '-- '-- 21550 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 455.0 '-- '-- 7a970436-b1ad-5ed4-bc9d-c7e4870207ec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1870_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- '-- 31 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1870_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fc63c78d-4a19-561f-83e9-7c619a14021d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 15f1a992-0724-4d76-a71a-702ac7753a41 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1870 59 false '-- '-- '-- '-- -21550 455 c0bb7234-e6e9-5243-a3ab-3e33ef23ba66 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1870_demographic Dead '-- '-- '-- '-- 21793 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 243 '-- '-- '-- ee869bd1-2062-4c79-b1e7-d78137f999ff false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1870_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1870_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1870_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 40d2e8ea-bed9-46aa-a557-cb3d536a8d11 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 15f1a992-0724-4d76-a71a-702ac7753a41 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1870 59 false '-- '-- '-- '-- -21550 455 c0bb7234-e6e9-5243-a3ab-3e33ef23ba66 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1870_demographic Dead '-- '-- '-- '-- 21793 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 243 '-- '-- '-- ee869bd1-2062-4c79-b1e7-d78137f999ff false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1870_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1870_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1870_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c6c2c9e0-bcb2-4dc9-b2b8-aec186c23782 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 15fc17cd-d073-4f81-a4a2-2db3cb9d7069 Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1993 56 false '-- '-- '-- '-- -20498 '-- ca281c52-a2d4-5e1b-8bd2-7d277fd5297b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1993_demographic Alive '-- '-- '-- '-- 20498 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 763.0 '-- '-- 3d3ca882-be6d-531d-8a29-55d8eb0f5f55 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R0 '-- '-- Ovary '-- '-- TCGA-57-1993_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 62 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1993_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5bc14705-278b-445b-bb6a-dfbfbf7ce1a8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 15fc17cd-d073-4f81-a4a2-2db3cb9d7069 Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1993 56 false '-- '-- '-- '-- -20498 '-- ca281c52-a2d4-5e1b-8bd2-7d277fd5297b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1993_demographic Alive '-- '-- '-- '-- 20498 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 763.0 '-- '-- 3d3ca882-be6d-531d-8a29-55d8eb0f5f55 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R0 '-- '-- Ovary '-- '-- TCGA-57-1993_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 62 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1993_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 86b00aca-8e27-53cc-9482-58183bc3d7cc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 15fc17cd-d073-4f81-a4a2-2db3cb9d7069 Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1993 56 false '-- '-- '-- '-- -20498 '-- ca281c52-a2d4-5e1b-8bd2-7d277fd5297b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1993_demographic Alive '-- '-- '-- '-- 20498 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 763.0 '-- '-- 3d3ca882-be6d-531d-8a29-55d8eb0f5f55 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R0 '-- '-- Ovary '-- '-- TCGA-57-1993_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1993_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fad3f565-7842-4e5a-92c4-a89dacd90c32 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 16829472-5666-4fba-9bf9-360ec1689aa0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2351 51 false '-- '-- '-- '-- '-- '-- 3ba18647-da19-54a4-8a1c-be83eb7827d5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-59-2351_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4f9b4679-7b00-49b3-ade3-73c7390015d6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-59-2351_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-59-2351_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-2351_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1cef88d6-6d5e-4254-b4d7-96cf877e851f '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 16829472-5666-4fba-9bf9-360ec1689aa0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2351 51 false '-- '-- '-- '-- '-- '-- 3ba18647-da19-54a4-8a1c-be83eb7827d5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-59-2351_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4f9b4679-7b00-49b3-ade3-73c7390015d6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-59-2351_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-59-2351_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2154 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-2351_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bc3954b7-71d9-4e64-a1e6-f968e8f450b2 '-- yes '-- '-- Surgery, NOS +TCGA-OV 16829472-5666-4fba-9bf9-360ec1689aa0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2351 51 false '-- '-- '-- '-- '-- '-- 3ba18647-da19-54a4-8a1c-be83eb7827d5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-59-2351_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4f9b4679-7b00-49b3-ade3-73c7390015d6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-59-2351_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-59-2351_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-2351_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d02ec9e0-fe45-4d2a-bce5-cb9d9c3c52ef '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 16829472-5666-4fba-9bf9-360ec1689aa0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2351 51 false '-- '-- '-- '-- '-- '-- 3ba18647-da19-54a4-8a1c-be83eb7827d5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-59-2351_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3532.0 '-- '-- 9e178568-ef7f-5e7a-b7af-7397c47741bb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-59-2351_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 16829472-5666-4fba-9bf9-360ec1689aa0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2351 51 false '-- '-- '-- '-- '-- '-- 3ba18647-da19-54a4-8a1c-be83eb7827d5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-59-2351_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 2139 '-- '-- '-- a31155ac-6607-4bca-9920-69a4984b174b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-59-2351_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-59-2351_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-2351_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8d514b42-8302-4d9c-ba00-3424ea7ada31 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 16829472-5666-4fba-9bf9-360ec1689aa0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2351 51 false '-- '-- '-- '-- '-- '-- 3ba18647-da19-54a4-8a1c-be83eb7827d5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-59-2351_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 2139 '-- '-- '-- a31155ac-6607-4bca-9920-69a4984b174b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-59-2351_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-59-2351_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-2351_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d8d9823b-a6e6-49a3-876d-b27e04fb7d9c '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 16ced1b8-64d5-4498-82df-4d37bfe5b310 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1741 76 false '-- '-- '-- '-- -27762 1024 058fb30f-2085-5770-b4f2-6a6cf64072f7 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1741_demographic Dead '-- '-- '-- '-- 27762 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1024.0 '-- '-- 4338074a-9988-5342-ae53-3406d24b6758 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1741_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 605 522 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1741_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 838 '-- mg '-- '-- '-- '-- 19c4806c-15ed-46ec-a97a-1d7913aa212a '-- yes '-- '-- Chemotherapy +TCGA-OV 16ced1b8-64d5-4498-82df-4d37bfe5b310 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1741 76 false '-- '-- '-- '-- -27762 1024 058fb30f-2085-5770-b4f2-6a6cf64072f7 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1741_demographic Dead '-- '-- '-- '-- 27762 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1024.0 '-- '-- 4338074a-9988-5342-ae53-3406d24b6758 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1741_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 605 522 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1741_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1750 '-- mg '-- '-- '-- '-- 3a5a378f-30e8-48e8-b268-f7bf68429821 '-- yes '-- '-- Chemotherapy +TCGA-OV 16ced1b8-64d5-4498-82df-4d37bfe5b310 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1741 76 false '-- '-- '-- '-- -27762 1024 058fb30f-2085-5770-b4f2-6a6cf64072f7 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1741_demographic Dead '-- '-- '-- '-- 27762 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1024.0 '-- '-- 4338074a-9988-5342-ae53-3406d24b6758 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1741_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 717 711 '-- '-- '-- '-- '-- '-- '-- '-- 5.0 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1741_treatment '-- '-- '-- '-- '-- '-- Locoregional Site '-- 20 '-- cGy '-- '-- '-- '-- 56160cfd-0619-58a1-bbb8-d6d31502c502 Palliative yes '-- '-- Radiation, External Beam +TCGA-OV 16ced1b8-64d5-4498-82df-4d37bfe5b310 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1741 76 false '-- '-- '-- '-- -27762 1024 058fb30f-2085-5770-b4f2-6a6cf64072f7 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1741_demographic Dead '-- '-- '-- '-- 27762 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1024.0 '-- '-- 4338074a-9988-5342-ae53-3406d24b6758 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1741_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 180 12 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1741_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2240 '-- mg '-- '-- '-- '-- 7006c1a0-45f5-4eb5-8d8b-2b9fbfa7bba9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 16ced1b8-64d5-4498-82df-4d37bfe5b310 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1741 76 false '-- '-- '-- '-- -27762 1024 058fb30f-2085-5770-b4f2-6a6cf64072f7 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1741_demographic Dead '-- '-- '-- '-- 27762 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1024.0 '-- '-- 4338074a-9988-5342-ae53-3406d24b6758 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1741_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-61-1741_treatment3 Tamoxifen '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7d9a49ce-8c0f-4d5f-a189-2d582aa2d68a '-- yes '-- '-- Hormone Therapy +TCGA-OV 16ced1b8-64d5-4498-82df-4d37bfe5b310 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1741 76 false '-- '-- '-- '-- -27762 1024 058fb30f-2085-5770-b4f2-6a6cf64072f7 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1741_demographic Dead '-- '-- '-- '-- 27762 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1024.0 '-- '-- 4338074a-9988-5342-ae53-3406d24b6758 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1741_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 180 12 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1741_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3799 '-- mg '-- '-- '-- '-- c5402745-e4d8-4bac-8bd0-41a0a767118e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 16ced1b8-64d5-4498-82df-4d37bfe5b310 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1741 76 false '-- '-- '-- '-- -27762 1024 058fb30f-2085-5770-b4f2-6a6cf64072f7 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1741_demographic Dead '-- '-- '-- '-- 28250 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 488 '-- '-- '-- 74614a01-9a10-49a8-bdbe-2ed8ce8f2fdc false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1741_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1741_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1741_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1a1ef5a4-f4fe-4319-8684-514af5fb68f4 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 16ced1b8-64d5-4498-82df-4d37bfe5b310 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1741 76 false '-- '-- '-- '-- -27762 1024 058fb30f-2085-5770-b4f2-6a6cf64072f7 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1741_demographic Dead '-- '-- '-- '-- 28250 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 488 '-- '-- '-- 74614a01-9a10-49a8-bdbe-2ed8ce8f2fdc false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1741_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1741_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1741_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- adb5a934-5422-49f2-b03e-345ed0ee44b3 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 17181157-c9e2-4bd6-8653-f5dce56f9053 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2038 68 false '-- '-- '-- '-- -24957 1354 3ea04b59-4837-5855-9da9-a7e5b46b7e10 '-- not reported female '-- '-- '-- '-- white TCGA-24-2038_demographic Dead '-- '-- '-- '-- 24957 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1354.0 '-- '-- 82ae2a62-aea4-5d85-9136-e3403b28b06c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2038_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GB '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1254 1212 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2038_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- 35 '-- mg '-- '-- '-- '-- 3db13011-a4d2-48a0-bf8a-c90103a4b11d '-- yes '-- '-- Chemotherapy +TCGA-OV 17181157-c9e2-4bd6-8653-f5dce56f9053 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2038 68 false '-- '-- '-- '-- -24957 1354 3ea04b59-4837-5855-9da9-a7e5b46b7e10 '-- not reported female '-- '-- '-- '-- white TCGA-24-2038_demographic Dead '-- '-- '-- '-- 24957 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1354.0 '-- '-- 82ae2a62-aea4-5d85-9136-e3403b28b06c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2038_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GB '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1352 1268 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2038_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 2345 '-- mg '-- '-- '-- '-- 69152569-be83-508b-94fb-050e944616a9 '-- yes '-- '-- Chemotherapy +TCGA-OV 17181157-c9e2-4bd6-8653-f5dce56f9053 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2038 68 false '-- '-- '-- '-- -24957 1354 3ea04b59-4837-5855-9da9-a7e5b46b7e10 '-- not reported female '-- '-- '-- '-- white TCGA-24-2038_demographic Dead '-- '-- '-- '-- 24957 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1354.0 '-- '-- 82ae2a62-aea4-5d85-9136-e3403b28b06c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2038_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GB '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1352 1268 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2038_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1407 '-- mg '-- '-- '-- '-- 6be2a491-bdb0-4aeb-b616-225d6e80c21a '-- yes '-- '-- Chemotherapy +TCGA-OV 17181157-c9e2-4bd6-8653-f5dce56f9053 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2038 68 false '-- '-- '-- '-- -24957 1354 3ea04b59-4837-5855-9da9-a7e5b46b7e10 '-- not reported female '-- '-- '-- '-- white TCGA-24-2038_demographic Dead '-- '-- '-- '-- 24957 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1354.0 '-- '-- 82ae2a62-aea4-5d85-9136-e3403b28b06c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2038_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GB '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2038_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c80c597c-05e3-4085-a10e-4dbcfb2d8f14 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 17181157-c9e2-4bd6-8653-f5dce56f9053 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2038 68 false '-- '-- '-- '-- -24957 1354 3ea04b59-4837-5855-9da9-a7e5b46b7e10 '-- not reported female '-- '-- '-- '-- white TCGA-24-2038_demographic Dead '-- '-- '-- '-- 26126 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1169 '-- '-- '-- 9f2e8151-aff9-4d97-a1d7-dec1d5095fbe false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2038_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2038_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2038_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 327ebaee-b499-4d99-b716-26e76b34105c '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 17181157-c9e2-4bd6-8653-f5dce56f9053 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2038 68 false '-- '-- '-- '-- -24957 1354 3ea04b59-4837-5855-9da9-a7e5b46b7e10 '-- not reported female '-- '-- '-- '-- white TCGA-24-2038_demographic Dead '-- '-- '-- '-- 26126 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1169 '-- '-- '-- 9f2e8151-aff9-4d97-a1d7-dec1d5095fbe false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2038_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2038_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2038_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 355ae82f-4936-4708-ac2e-30adec8c12f7 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 17181157-c9e2-4bd6-8653-f5dce56f9053 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2038 68 false '-- '-- '-- '-- -24957 1354 3ea04b59-4837-5855-9da9-a7e5b46b7e10 '-- not reported female '-- '-- '-- '-- white TCGA-24-2038_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bd9a6902-7677-4cb6-9212-62450979e757 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2038_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2038_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2038_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 708d4d1e-6191-4b88-b335-193938df3b0d '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 17181157-c9e2-4bd6-8653-f5dce56f9053 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2038 68 false '-- '-- '-- '-- -24957 1354 3ea04b59-4837-5855-9da9-a7e5b46b7e10 '-- not reported female '-- '-- '-- '-- white TCGA-24-2038_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bd9a6902-7677-4cb6-9212-62450979e757 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2038_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2038_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2038_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 70b8135b-0601-4e6a-a084-c2d0c3b201e1 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 17181157-c9e2-4bd6-8653-f5dce56f9053 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2038 68 false '-- '-- '-- '-- -24957 1354 3ea04b59-4837-5855-9da9-a7e5b46b7e10 '-- not reported female '-- '-- '-- '-- white TCGA-24-2038_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bd9a6902-7677-4cb6-9212-62450979e757 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2038_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2038_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1183 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2038_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f297778b-3537-4096-b2d7-0654ffeca58c '-- yes '-- '-- Surgery, NOS +TCGA-OV 171f7917-69eb-4a3f-9cc0-0e1dffd412c1 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1463 70 false '-- '-- '-- '-- -25734 2218 9e8c9476-f74b-57c4-9fd8-5a3786d7c834 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-24-1463_demographic Dead '-- '-- '-- '-- 26705 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 971 '-- '-- '-- 3759142d-0cf6-4fc6-ae00-1e661971803e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1463_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1463_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1463_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 60deb3a5-41d0-47cc-949e-ba52a1ec88e2 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 171f7917-69eb-4a3f-9cc0-0e1dffd412c1 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1463 70 false '-- '-- '-- '-- -25734 2218 9e8c9476-f74b-57c4-9fd8-5a3786d7c834 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-24-1463_demographic Dead '-- '-- '-- '-- 26705 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 971 '-- '-- '-- 3759142d-0cf6-4fc6-ae00-1e661971803e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1463_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1463_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1463_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b8cbd81e-5d43-45d5-b6bf-fa9fd53e2406 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 171f7917-69eb-4a3f-9cc0-0e1dffd412c1 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1463 70 false '-- '-- '-- '-- -25734 2218 9e8c9476-f74b-57c4-9fd8-5a3786d7c834 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-24-1463_demographic Dead '-- '-- '-- '-- 25734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2218.0 '-- '-- 6f5d29ee-4ea0-5da7-be01-e7daeef0d99f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1463_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1084 976 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1463_treatment10 Cisplatin '-- '-- '-- '-- '-- '-- '-- 172 '-- mg '-- '-- '-- '-- 21bbfbb5-666b-493d-a981-642070ea9894 '-- yes '-- '-- Chemotherapy +TCGA-OV 171f7917-69eb-4a3f-9cc0-0e1dffd412c1 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1463 70 false '-- '-- '-- '-- -25734 2218 9e8c9476-f74b-57c4-9fd8-5a3786d7c834 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-24-1463_demographic Dead '-- '-- '-- '-- 25734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2218.0 '-- '-- 6f5d29ee-4ea0-5da7-be01-e7daeef0d99f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1463_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1084 976 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1463_treatment8 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1895 '-- mg '-- '-- '-- '-- 2c227a25-08ef-4725-aa40-c7e344ecd2c3 '-- yes '-- '-- Chemotherapy +TCGA-OV 171f7917-69eb-4a3f-9cc0-0e1dffd412c1 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1463 70 false '-- '-- '-- '-- -25734 2218 9e8c9476-f74b-57c4-9fd8-5a3786d7c834 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-24-1463_demographic Dead '-- '-- '-- '-- 25734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2218.0 '-- '-- 6f5d29ee-4ea0-5da7-be01-e7daeef0d99f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1463_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1463_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3811ef4d-c722-4be8-8907-501902db8b91 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 171f7917-69eb-4a3f-9cc0-0e1dffd412c1 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1463 70 false '-- '-- '-- '-- -25734 2218 9e8c9476-f74b-57c4-9fd8-5a3786d7c834 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-24-1463_demographic Dead '-- '-- '-- '-- 25734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2218.0 '-- '-- 6f5d29ee-4ea0-5da7-be01-e7daeef0d99f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1463_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1791 1742 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1463_treatment4 Cisplatin '-- '-- '-- '-- '-- '-- '-- 168 '-- mg '-- '-- '-- '-- 3d47e5f6-ebad-44db-bf71-80e05d28a253 '-- yes '-- '-- Chemotherapy +TCGA-OV 171f7917-69eb-4a3f-9cc0-0e1dffd412c1 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1463 70 false '-- '-- '-- '-- -25734 2218 9e8c9476-f74b-57c4-9fd8-5a3786d7c834 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-24-1463_demographic Dead '-- '-- '-- '-- 25734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2218.0 '-- '-- 6f5d29ee-4ea0-5da7-be01-e7daeef0d99f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1463_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1084 976 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1463_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1660 '-- mg '-- '-- '-- '-- 40e92b8b-02ae-5176-a68b-3325f97769f1 '-- yes '-- '-- Chemotherapy +TCGA-OV 171f7917-69eb-4a3f-9cc0-0e1dffd412c1 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1463 70 false '-- '-- '-- '-- -25734 2218 9e8c9476-f74b-57c4-9fd8-5a3786d7c834 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-24-1463_demographic Dead '-- '-- '-- '-- 25734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2218.0 '-- '-- 6f5d29ee-4ea0-5da7-be01-e7daeef0d99f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1463_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1383 1270 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1463_treatment9 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- 508 '-- mg '-- '-- '-- '-- 67c6bc4e-0ad6-4f11-97b5-d600f64314f0 '-- yes '-- '-- Chemotherapy +TCGA-OV 171f7917-69eb-4a3f-9cc0-0e1dffd412c1 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1463 70 false '-- '-- '-- '-- -25734 2218 9e8c9476-f74b-57c4-9fd8-5a3786d7c834 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-24-1463_demographic Dead '-- '-- '-- '-- 25734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2218.0 '-- '-- 6f5d29ee-4ea0-5da7-be01-e7daeef0d99f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1463_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1558 1465 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1463_treatment11 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 20684 '-- mg '-- '-- '-- '-- 73e1e55d-7f90-46db-bbde-216d5ef426ae '-- yes '-- '-- Chemotherapy +TCGA-OV 171f7917-69eb-4a3f-9cc0-0e1dffd412c1 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1463 70 false '-- '-- '-- '-- -25734 2218 9e8c9476-f74b-57c4-9fd8-5a3786d7c834 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-24-1463_demographic Dead '-- '-- '-- '-- 25734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2218.0 '-- '-- 6f5d29ee-4ea0-5da7-be01-e7daeef0d99f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1463_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 123 18 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1463_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3310 '-- mg '-- '-- '-- '-- 8819caa0-b7b4-426b-94b4-39f597eb500d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 171f7917-69eb-4a3f-9cc0-0e1dffd412c1 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1463 70 false '-- '-- '-- '-- -25734 2218 9e8c9476-f74b-57c4-9fd8-5a3786d7c834 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-24-1463_demographic Dead '-- '-- '-- '-- 25734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2218.0 '-- '-- 6f5d29ee-4ea0-5da7-be01-e7daeef0d99f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1463_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1383 1270 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1463_treatment2 Topotecan '-- '-- '-- '-- '-- '-- '-- 49 '-- mg '-- '-- '-- '-- 902ca928-8480-43f0-98c4-a60b61de3d29 '-- yes '-- '-- Chemotherapy +TCGA-OV 171f7917-69eb-4a3f-9cc0-0e1dffd412c1 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1463 70 false '-- '-- '-- '-- -25734 2218 9e8c9476-f74b-57c4-9fd8-5a3786d7c834 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-24-1463_demographic Dead '-- '-- '-- '-- 25734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2218.0 '-- '-- 6f5d29ee-4ea0-5da7-be01-e7daeef0d99f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1463_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1558 1465 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1463_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 277 '-- mg '-- '-- '-- '-- d0e95e86-f769-441c-85dc-db788d4b1f56 '-- yes '-- '-- Chemotherapy +TCGA-OV 171f7917-69eb-4a3f-9cc0-0e1dffd412c1 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1463 70 false '-- '-- '-- '-- -25734 2218 9e8c9476-f74b-57c4-9fd8-5a3786d7c834 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-24-1463_demographic Dead '-- '-- '-- '-- 25734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2218.0 '-- '-- 6f5d29ee-4ea0-5da7-be01-e7daeef0d99f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1463_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1733 1600 '-- '-- Progressive Disease '-- '-- '-- '-- 17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1463_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2275 '-- mg '-- '-- '-- '-- fc38feba-988d-47ad-93b9-e7798cad98fa '-- yes '-- '-- Chemotherapy +TCGA-OV 171f7917-69eb-4a3f-9cc0-0e1dffd412c1 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1463 70 false '-- '-- '-- '-- -25734 2218 9e8c9476-f74b-57c4-9fd8-5a3786d7c834 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-24-1463_demographic Dead '-- '-- '-- '-- 25734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2218.0 '-- '-- 6f5d29ee-4ea0-5da7-be01-e7daeef0d99f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1463_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 123 18 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1463_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1712 '-- mg '-- '-- '-- '-- fe05604a-707e-40c9-8f42-889f91db6952 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 184aac07-44c1-47f1-8adf-50acbcc1762c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2048 63 false '-- '-- '-- '-- -23043 138 43dd4513-5e1d-57ed-8b5a-5bf9175bb209 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2048_demographic Dead '-- '-- '-- '-- 23043 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 138.0 '-- '-- e84e8a2c-231c-56f6-97e2-983b9bb2e049 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2048_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 60 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2048_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6742f88d-c93f-565f-8b51-0f565f6845e8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 184aac07-44c1-47f1-8adf-50acbcc1762c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2048 63 false '-- '-- '-- '-- -23043 138 43dd4513-5e1d-57ed-8b5a-5bf9175bb209 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2048_demographic Dead '-- '-- '-- '-- 23043 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 138.0 '-- '-- e84e8a2c-231c-56f6-97e2-983b9bb2e049 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2048_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2048_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ef8dbed5-5e21-4f99-aba0-81ec234681e2 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 1858b58f-fdf4-413c-9c29-96ae85b88a74 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1550 49 false '-- '-- '-- '-- -18049 1249 398a8019-dc37-529c-a1ed-c9dd8bc38628 '-- not reported female '-- '-- '-- '-- white TCGA-24-1550_demographic Dead '-- '-- '-- '-- 18049 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1249.0 '-- '-- 128ce7b5-2666-568d-8370-bd8ce225cb6a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1550_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 965 902 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1550_treatment Topotecan '-- '-- '-- '-- '-- '-- '-- 405 '-- mg '-- '-- '-- '-- 4a777e8f-38d3-5b9a-9567-7ece5a98878f '-- yes '-- '-- Chemotherapy +TCGA-OV 1858b58f-fdf4-413c-9c29-96ae85b88a74 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1550 49 false '-- '-- '-- '-- -18049 1249 398a8019-dc37-529c-a1ed-c9dd8bc38628 '-- not reported female '-- '-- '-- '-- white TCGA-24-1550_demographic Dead '-- '-- '-- '-- 18049 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1249.0 '-- '-- 128ce7b5-2666-568d-8370-bd8ce225cb6a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1550_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1233 1233 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1550_treatment7 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 64 '-- mg '-- '-- '-- '-- 6cb177b2-84ee-4a45-a5dd-bf2f2a3476eb '-- yes '-- '-- Chemotherapy +TCGA-OV 1858b58f-fdf4-413c-9c29-96ae85b88a74 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1550 49 false '-- '-- '-- '-- -18049 1249 398a8019-dc37-529c-a1ed-c9dd8bc38628 '-- not reported female '-- '-- '-- '-- white TCGA-24-1550_demographic Dead '-- '-- '-- '-- 18049 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1249.0 '-- '-- 128ce7b5-2666-568d-8370-bd8ce225cb6a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1550_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 174 8 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1550_treatment5 Cisplatin '-- '-- '-- '-- '-- '-- '-- 165 '-- mg '-- '-- '-- '-- 77b0a730-c557-4b57-a1bf-e18d1d69c30b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1858b58f-fdf4-413c-9c29-96ae85b88a74 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1550 49 false '-- '-- '-- '-- -18049 1249 398a8019-dc37-529c-a1ed-c9dd8bc38628 '-- not reported female '-- '-- '-- '-- white TCGA-24-1550_demographic Dead '-- '-- '-- '-- 18049 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1249.0 '-- '-- 128ce7b5-2666-568d-8370-bd8ce225cb6a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1550_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1211 1164 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1550_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 837 '-- mg '-- '-- '-- '-- 87d74113-d7c6-4fa5-bfcf-3388ddc5e022 '-- yes '-- '-- Chemotherapy +TCGA-OV 1858b58f-fdf4-413c-9c29-96ae85b88a74 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1550 49 false '-- '-- '-- '-- -18049 1249 398a8019-dc37-529c-a1ed-c9dd8bc38628 '-- not reported female '-- '-- '-- '-- white TCGA-24-1550_demographic Dead '-- '-- '-- '-- 18049 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1249.0 '-- '-- 128ce7b5-2666-568d-8370-bd8ce225cb6a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1550_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 174 8 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1550_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2070 '-- mg '-- '-- '-- '-- bf6c4cf4-333a-467e-8cb0-770862f7c41c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1858b58f-fdf4-413c-9c29-96ae85b88a74 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1550 49 false '-- '-- '-- '-- -18049 1249 398a8019-dc37-529c-a1ed-c9dd8bc38628 '-- not reported female '-- '-- '-- '-- white TCGA-24-1550_demographic Dead '-- '-- '-- '-- 18049 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1249.0 '-- '-- 128ce7b5-2666-568d-8370-bd8ce225cb6a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1550_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1107 986 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1550_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4200 '-- mg '-- '-- '-- '-- c45f1f87-0594-4968-bdc9-c1267177a129 '-- yes '-- '-- Chemotherapy +TCGA-OV 1858b58f-fdf4-413c-9c29-96ae85b88a74 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1550 49 false '-- '-- '-- '-- -18049 1249 398a8019-dc37-529c-a1ed-c9dd8bc38628 '-- not reported female '-- '-- '-- '-- white TCGA-24-1550_demographic Dead '-- '-- '-- '-- 18049 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1249.0 '-- '-- 128ce7b5-2666-568d-8370-bd8ce225cb6a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1550_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1550_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c8432b5f-3fa6-4935-938a-cf055d0a34f8 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 1858b58f-fdf4-413c-9c29-96ae85b88a74 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1550 49 false '-- '-- '-- '-- -18049 1249 398a8019-dc37-529c-a1ed-c9dd8bc38628 '-- not reported female '-- '-- '-- '-- white TCGA-24-1550_demographic Dead '-- '-- '-- '-- 18049 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1249.0 '-- '-- 128ce7b5-2666-568d-8370-bd8ce225cb6a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1550_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1211 1164 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1550_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1950 '-- mg '-- '-- '-- '-- f1a9f26b-2d54-4883-9f67-fa027cb348cd '-- yes '-- '-- Chemotherapy +TCGA-OV 1858b58f-fdf4-413c-9c29-96ae85b88a74 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1550 49 false '-- '-- '-- '-- -18049 1249 398a8019-dc37-529c-a1ed-c9dd8bc38628 '-- not reported female '-- '-- '-- '-- white TCGA-24-1550_demographic Dead '-- '-- '-- '-- 18941 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 892 '-- '-- '-- 528d1141-7243-40b9-bbde-915acf3899cf false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1550_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1550_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1550_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 24f01bbd-7548-4bb8-86fd-2d2adef1c574 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 1858b58f-fdf4-413c-9c29-96ae85b88a74 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1550 49 false '-- '-- '-- '-- -18049 1249 398a8019-dc37-529c-a1ed-c9dd8bc38628 '-- not reported female '-- '-- '-- '-- white TCGA-24-1550_demographic Dead '-- '-- '-- '-- 18941 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 892 '-- '-- '-- 528d1141-7243-40b9-bbde-915acf3899cf false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1550_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1550_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1550_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fe60049d-323e-4faf-a8ae-c667e225c1b2 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 1858b58f-fdf4-413c-9c29-96ae85b88a74 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1550 49 false '-- '-- '-- '-- -18049 1249 398a8019-dc37-529c-a1ed-c9dd8bc38628 '-- not reported female '-- '-- '-- '-- white TCGA-24-1550_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f5a5f763-e96a-4d9b-83f7-9525b36c33c9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1550_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1550_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1550_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 00eb8e90-edce-4a78-b283-111ae714a3d6 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 1858b58f-fdf4-413c-9c29-96ae85b88a74 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1550 49 false '-- '-- '-- '-- -18049 1249 398a8019-dc37-529c-a1ed-c9dd8bc38628 '-- not reported female '-- '-- '-- '-- white TCGA-24-1550_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f5a5f763-e96a-4d9b-83f7-9525b36c33c9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1550_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1550_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1121 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1550_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bae47f18-f85b-49a6-be1c-68c2ccbaa3f8 '-- yes '-- '-- Surgery, NOS +TCGA-OV 1858b58f-fdf4-413c-9c29-96ae85b88a74 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1550 49 false '-- '-- '-- '-- -18049 1249 398a8019-dc37-529c-a1ed-c9dd8bc38628 '-- not reported female '-- '-- '-- '-- white TCGA-24-1550_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f5a5f763-e96a-4d9b-83f7-9525b36c33c9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1550_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1550_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1550_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- de1344c8-ad57-437d-abd3-e6c6746b0a99 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 186d40cd-624c-4016-a497-b30c892d393c Informed Consent 26 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1959 49 false '-- '-- '-- '-- -18247 '-- f9c4143c-c920-522f-9333-0e259cb78801 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1959_demographic Alive '-- '-- '-- '-- 18247 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 67.0 '-- '-- 121cc11a-b0d3-537e-ae08-106d193c7667 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1959_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1959_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 13257195-47ed-4195-8d46-f1f6f8112e50 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 186d40cd-624c-4016-a497-b30c892d393c Informed Consent 26 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1959 49 false '-- '-- '-- '-- -18247 '-- f9c4143c-c920-522f-9333-0e259cb78801 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1959_demographic Alive '-- '-- '-- '-- 18247 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 67.0 '-- '-- 121cc11a-b0d3-537e-ae08-106d193c7667 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1959_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- 26 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1959_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8aca474d-6dba-5b4e-bd7d-3cbe12ceacf0 Adjuvant yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 186d40cd-624c-4016-a497-b30c892d393c Informed Consent 26 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1959 49 false '-- '-- '-- '-- -18247 '-- f9c4143c-c920-522f-9333-0e259cb78801 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1959_demographic Alive '-- '-- '-- '-- 18247 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 67.0 '-- '-- 121cc11a-b0d3-537e-ae08-106d193c7667 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1959_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- 26 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1959_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ede088a1-c130-424a-9656-de5d01e70ed1 Adjuvant yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0ea5c48d-eb6d-434a-aa9d-95feab6d9185 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1698_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1698_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1698_treatment18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 11b258b0-acf9-4e85-9e76-9008102a409b '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0ea5c48d-eb6d-434a-aa9d-95feab6d9185 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1698_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1698_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 181 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1698_treatment19 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1ff7c7d3-e59f-4c53-b005-3acca8f6dba8 '-- yes '-- '-- Surgery, NOS +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0ea5c48d-eb6d-434a-aa9d-95feab6d9185 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1698_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1698_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1698_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 33739b65-915f-4e09-9c69-a20621a8c265 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- 19611 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2078.0 '-- '-- e383018c-dd08-5acf-a9de-02abce0898a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1698_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 909 741 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1698_treatment10 Carboplatin '-- '-- '-- '-- '-- '-- '-- 570 '-- mg '-- '-- '-- '-- 01432719-43c3-4bdf-9dab-253fce130f6c '-- yes '-- '-- Chemotherapy +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- 19611 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2078.0 '-- '-- e383018c-dd08-5acf-a9de-02abce0898a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1698_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 2028 1986 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1698_treatment12 Docetaxel '-- '-- '-- '-- '-- '-- '-- 100 '-- mg '-- '-- '-- '-- 11ca6770-9d29-453f-ae0a-905e6cac51ec '-- yes '-- '-- Chemotherapy +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- 19611 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2078.0 '-- '-- e383018c-dd08-5acf-a9de-02abce0898a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1698_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1783 1615 '-- '-- Progressive Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1698_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 68 '-- mg '-- '-- '-- '-- 1b321bb4-2e5a-4233-b051-dabd419c2bf0 '-- yes '-- '-- Chemotherapy +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- 19611 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2078.0 '-- '-- e383018c-dd08-5acf-a9de-02abce0898a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1698_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1972 1811 '-- '-- Progressive Disease '-- '-- '-- '-- 17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1698_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 100 '-- mg '-- '-- '-- '-- 1e2ecc61-0ffd-42ab-bdeb-040775c9b2db '-- yes '-- '-- Chemotherapy +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- 19611 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2078.0 '-- '-- e383018c-dd08-5acf-a9de-02abce0898a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1698_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1566 1321 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1698_treatment6 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 1020 '-- mg '-- '-- '-- '-- 2cdef613-5e72-4035-9980-8e3127eaf57a '-- yes '-- '-- Chemotherapy +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- 19611 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2078.0 '-- '-- e383018c-dd08-5acf-a9de-02abce0898a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1698_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 237 8 '-- '-- '-- '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1698_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 5600 '-- mg '-- '-- '-- '-- 435a5a1a-20b0-5e6f-824e-9b9d6c590a35 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- 19611 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2078.0 '-- '-- e383018c-dd08-5acf-a9de-02abce0898a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1698_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1580 1524 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1698_treatment9 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 600 '-- mg '-- '-- '-- '-- 65990be8-cc7a-4c91-bd64-e3c3a22ba38b '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- 19611 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2078.0 '-- '-- e383018c-dd08-5acf-a9de-02abce0898a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1698_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 2245 2051 '-- '-- Progressive Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1698_treatment13 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 95174805-c602-4cb7-9ff8-f88595c080b9 '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- 19611 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2078.0 '-- '-- e383018c-dd08-5acf-a9de-02abce0898a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1698_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 853 741 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1698_treatment7 Docetaxel '-- '-- '-- '-- '-- '-- '-- 53 '-- mg '-- '-- '-- '-- 96ec216e-08bc-4bdc-aa61-dad8411fd25f '-- yes '-- '-- Chemotherapy +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- 19611 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2078.0 '-- '-- e383018c-dd08-5acf-a9de-02abce0898a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1698_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1419 328 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1698_treatment4 Tamoxifen '-- '-- '-- '-- '-- '-- '-- 20 '-- mg '-- '-- '-- '-- a5a90a0a-74c9-492e-8e59-42ff4d5bee3c '-- yes '-- '-- Hormone Therapy +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- 19611 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2078.0 '-- '-- e383018c-dd08-5acf-a9de-02abce0898a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1698_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 237 8 '-- '-- '-- '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1698_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2603 '-- mg '-- '-- '-- '-- b1e6a47e-32c7-44ff-9260-5284f8ad93a4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- 19611 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2078.0 '-- '-- e383018c-dd08-5acf-a9de-02abce0898a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1698_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1698_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b1e96512-7518-46c1-a4d5-58b59194ec0a Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- 19611 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2078.0 '-- '-- e383018c-dd08-5acf-a9de-02abce0898a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1698_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1349 1321 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1698_treatment8 Carboplatin '-- '-- '-- '-- '-- '-- '-- 510 '-- mg '-- '-- '-- '-- c1bdc91d-7d25-4f7e-a54e-f4d5083180b5 '-- yes '-- '-- Chemotherapy +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- 19611 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2078.0 '-- '-- e383018c-dd08-5acf-a9de-02abce0898a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1698_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1587 1580 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1698_treatment11 Topotecan '-- '-- '-- '-- '-- '-- '-- 5 '-- mg '-- '-- '-- '-- c33f151d-5bb4-4765-9f0c-9e798eacccbf '-- yes '-- '-- Chemotherapy +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- 19792 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 181 '-- '-- '-- f46e2dc1-3194-4241-82d8-7bcfca3a1586 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1698_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1698_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1698_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 37e6790c-bfd3-45ae-bb69-c23cc256fa69 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 18d21132-a795-4551-83ba-66483de423a2 Informed Consent 1811 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1698 53 false '-- '-- '-- '-- -19611 '-- d905ee3a-476c-595e-9777-0f611cb3caf1 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1698_demographic Alive '-- '-- '-- '-- 19792 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 181 '-- '-- '-- f46e2dc1-3194-4241-82d8-7bcfca3a1586 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1698_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1698_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1698_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7ce594ee-30b7-4355-82a8-2897eacdfa67 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 18e0e996-8f23-4f53-94a5-dde38b550863 Informed Consent 27 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1409 73 false '-- '-- '-- '-- -26836 1742 cf0eeee1-5dd7-5bef-ad40-5d881bf9d762 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1409_demographic Dead '-- '-- '-- '-- 26836 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1742.0 '-- '-- 6b0f33e6-884d-5a93-8335-9f55569790a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1409_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- 94 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1409_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 3a194d10-0034-4360-af0b-0220f04faacb Adjuvant yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 18e0e996-8f23-4f53-94a5-dde38b550863 Informed Consent 27 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1409 73 false '-- '-- '-- '-- -26836 1742 cf0eeee1-5dd7-5bef-ad40-5d881bf9d762 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1409_demographic Dead '-- '-- '-- '-- 26836 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1742.0 '-- '-- 6b0f33e6-884d-5a93-8335-9f55569790a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1409_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1409_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6f43a717-fff1-4073-9a7f-1f1fc810c2d3 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 18e0e996-8f23-4f53-94a5-dde38b550863 Informed Consent 27 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1409 73 false '-- '-- '-- '-- -26836 1742 cf0eeee1-5dd7-5bef-ad40-5d881bf9d762 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1409_demographic Dead '-- '-- '-- '-- 26836 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1742.0 '-- '-- 6b0f33e6-884d-5a93-8335-9f55569790a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1409_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- 94 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1409_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c9c78335-6d3f-52a5-92a9-c41ccbd8d4d8 Adjuvant yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 18e0e996-8f23-4f53-94a5-dde38b550863 Informed Consent 27 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1409 73 false '-- '-- '-- '-- -26836 1742 cf0eeee1-5dd7-5bef-ad40-5d881bf9d762 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1409_demographic Dead '-- '-- '-- '-- 27526 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 690 '-- '-- '-- cf88593f-a4c4-4021-8a35-44e716e39c5c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1409_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1409_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 19427350-619b-4b9c-a3ba-37f667bb2843 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1603 53 false '-- '-- '-- '-- -19681 2742 d5969403-73a4-5315-a0c2-0c82873ad345 '-- not reported female '-- '-- '-- '-- white TCGA-24-1603_demographic Dead '-- '-- '-- '-- 20673 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 992 '-- '-- '-- 678b7443-7a17-4ef9-83e1-9a49db07593c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1603_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1603_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1603_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7dc97a98-55ba-4fd2-b7cf-5e33fc9844bf '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 19427350-619b-4b9c-a3ba-37f667bb2843 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1603 53 false '-- '-- '-- '-- -19681 2742 d5969403-73a4-5315-a0c2-0c82873ad345 '-- not reported female '-- '-- '-- '-- white TCGA-24-1603_demographic Dead '-- '-- '-- '-- 20673 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 992 '-- '-- '-- 678b7443-7a17-4ef9-83e1-9a49db07593c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1603_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1603_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1603_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cbeb1bab-d528-43c2-8937-d268d48bef30 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 19427350-619b-4b9c-a3ba-37f667bb2843 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1603 53 false '-- '-- '-- '-- -19681 2742 d5969403-73a4-5315-a0c2-0c82873ad345 '-- not reported female '-- '-- '-- '-- white TCGA-24-1603_demographic Dead '-- '-- '-- '-- 19681 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2742.0 '-- '-- 6ebcfddc-d5a4-507d-9a7b-141c1dbe899d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1603_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 1853 '-- '-- '-- Progressive Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1603_treatment13 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 12a31e70-4106-4084-92aa-cd2682529065 '-- yes '-- '-- Chemotherapy +TCGA-OV 19427350-619b-4b9c-a3ba-37f667bb2843 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1603 53 false '-- '-- '-- '-- -19681 2742 d5969403-73a4-5315-a0c2-0c82873ad345 '-- not reported female '-- '-- '-- '-- white TCGA-24-1603_demographic Dead '-- '-- '-- '-- 19681 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2742.0 '-- '-- 6ebcfddc-d5a4-507d-9a7b-141c1dbe899d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1603_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1603_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1ca7a074-9e49-41c9-bcc1-1c14fcc85a0e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 19427350-619b-4b9c-a3ba-37f667bb2843 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1603 53 false '-- '-- '-- '-- -19681 2742 d5969403-73a4-5315-a0c2-0c82873ad345 '-- not reported female '-- '-- '-- '-- white TCGA-24-1603_demographic Dead '-- '-- '-- '-- 19681 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2742.0 '-- '-- 6ebcfddc-d5a4-507d-9a7b-141c1dbe899d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1603_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 1991 1899 '-- '-- Progressive Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1603_treatment11 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 39764cf1-f474-4efa-9090-bc40e1b1c315 '-- yes '-- '-- Chemotherapy +TCGA-OV 19427350-619b-4b9c-a3ba-37f667bb2843 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1603 53 false '-- '-- '-- '-- -19681 2742 d5969403-73a4-5315-a0c2-0c82873ad345 '-- not reported female '-- '-- '-- '-- white TCGA-24-1603_demographic Dead '-- '-- '-- '-- 19681 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2742.0 '-- '-- 6ebcfddc-d5a4-507d-9a7b-141c1dbe899d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1603_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 2448 2234 '-- '-- Progressive Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1603_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 42598d1d-8ad3-4977-ad4f-7b7304debe5b '-- yes '-- '-- Chemotherapy +TCGA-OV 19427350-619b-4b9c-a3ba-37f667bb2843 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1603 53 false '-- '-- '-- '-- -19681 2742 d5969403-73a4-5315-a0c2-0c82873ad345 '-- not reported female '-- '-- '-- '-- white TCGA-24-1603_demographic Dead '-- '-- '-- '-- 19681 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2742.0 '-- '-- 6ebcfddc-d5a4-507d-9a7b-141c1dbe899d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1603_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 1991 1899 '-- '-- Progressive Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1603_treatment7 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4d6710b9-608d-4da6-976e-c1567b0eafb9 '-- yes '-- '-- Chemotherapy +TCGA-OV 19427350-619b-4b9c-a3ba-37f667bb2843 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1603 53 false '-- '-- '-- '-- -19681 2742 d5969403-73a4-5315-a0c2-0c82873ad345 '-- not reported female '-- '-- '-- '-- white TCGA-24-1603_demographic Dead '-- '-- '-- '-- 19681 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2742.0 '-- '-- 6ebcfddc-d5a4-507d-9a7b-141c1dbe899d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1603_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 1516 1356 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1603_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4fe45ac0-0fa1-4bdc-b800-885698e7cf6a '-- yes '-- '-- Chemotherapy +TCGA-OV 19427350-619b-4b9c-a3ba-37f667bb2843 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1603 53 false '-- '-- '-- '-- -19681 2742 d5969403-73a4-5315-a0c2-0c82873ad345 '-- not reported female '-- '-- '-- '-- white TCGA-24-1603_demographic Dead '-- '-- '-- '-- 19681 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2742.0 '-- '-- 6ebcfddc-d5a4-507d-9a7b-141c1dbe899d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1603_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 2629 2629 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1603_treatment12 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5cb391b6-7f41-4f66-9510-d2c777be946d '-- yes '-- '-- Chemotherapy +TCGA-OV 19427350-619b-4b9c-a3ba-37f667bb2843 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1603 53 false '-- '-- '-- '-- -19681 2742 d5969403-73a4-5315-a0c2-0c82873ad345 '-- not reported female '-- '-- '-- '-- white TCGA-24-1603_demographic Dead '-- '-- '-- '-- 19681 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2742.0 '-- '-- 6ebcfddc-d5a4-507d-9a7b-141c1dbe899d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1603_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1603_treatment10 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 84514ddb-1e2e-4625-a0ff-c3dd80dd3b8f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 19427350-619b-4b9c-a3ba-37f667bb2843 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1603 53 false '-- '-- '-- '-- -19681 2742 d5969403-73a4-5315-a0c2-0c82873ad345 '-- not reported female '-- '-- '-- '-- white TCGA-24-1603_demographic Dead '-- '-- '-- '-- 19681 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2742.0 '-- '-- 6ebcfddc-d5a4-507d-9a7b-141c1dbe899d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1603_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 1181 1107 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1603_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8bb74ab4-575e-4090-9012-c3e24679e372 '-- yes '-- '-- Chemotherapy +TCGA-OV 19427350-619b-4b9c-a3ba-37f667bb2843 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1603 53 false '-- '-- '-- '-- -19681 2742 d5969403-73a4-5315-a0c2-0c82873ad345 '-- not reported female '-- '-- '-- '-- white TCGA-24-1603_demographic Dead '-- '-- '-- '-- 19681 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2742.0 '-- '-- 6ebcfddc-d5a4-507d-9a7b-141c1dbe899d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1603_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 1181 1107 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1603_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9a3a551e-7fcb-5ce7-9efa-913311ec6bfe '-- yes '-- '-- Chemotherapy +TCGA-OV 19427350-619b-4b9c-a3ba-37f667bb2843 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1603 53 false '-- '-- '-- '-- -19681 2742 d5969403-73a4-5315-a0c2-0c82873ad345 '-- not reported female '-- '-- '-- '-- white TCGA-24-1603_demographic Dead '-- '-- '-- '-- 19681 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2742.0 '-- '-- 6ebcfddc-d5a4-507d-9a7b-141c1dbe899d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1603_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1603_treatment9 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b3a1475f-7501-4054-8b94-06f74aa4ed27 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 19427350-619b-4b9c-a3ba-37f667bb2843 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1603 53 false '-- '-- '-- '-- -19681 2742 d5969403-73a4-5315-a0c2-0c82873ad345 '-- not reported female '-- '-- '-- '-- white TCGA-24-1603_demographic Dead '-- '-- '-- '-- 19681 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2742.0 '-- '-- 6ebcfddc-d5a4-507d-9a7b-141c1dbe899d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1603_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 2203 2022 '-- '-- Progressive Disease '-- '-- '-- '-- 28 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1603_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d4a82d47-aab7-48b0-99ad-5e04670fef18 '-- yes '-- '-- Chemotherapy +TCGA-OV 19427350-619b-4b9c-a3ba-37f667bb2843 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1603 53 false '-- '-- '-- '-- -19681 2742 d5969403-73a4-5315-a0c2-0c82873ad345 '-- not reported female '-- '-- '-- '-- white TCGA-24-1603_demographic Dead '-- '-- '-- '-- 19681 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2742.0 '-- '-- 6ebcfddc-d5a4-507d-9a7b-141c1dbe899d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1603_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 1516 1356 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1603_treatment8 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e068ac30-983b-4789-9392-a2dc825e31b1 '-- yes '-- '-- Chemotherapy +TCGA-OV 19427350-619b-4b9c-a3ba-37f667bb2843 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1603 53 false '-- '-- '-- '-- -19681 2742 d5969403-73a4-5315-a0c2-0c82873ad345 '-- not reported female '-- '-- '-- '-- white TCGA-24-1603_demographic Dead '-- '-- '-- '-- 19681 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2742.0 '-- '-- 6ebcfddc-d5a4-507d-9a7b-141c1dbe899d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1603_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 2629 2568 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1603_treatment2 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e44a41f3-694d-4459-991f-50596f1615df '-- yes '-- '-- Chemotherapy +TCGA-OV 195ecf43-06bd-4ffe-8d8b-a766f3f7179b Informed Consent 1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1418 68 false '-- '-- '-- '-- -24842 '-- f7482f5e-2a1e-5563-bd07-0041884d5457 '-- not reported female '-- '-- '-- '-- white TCGA-24-1418_demographic Alive '-- '-- '-- '-- 24842 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 243.0 '-- '-- 624e0ef7-bfb4-547e-83f8-3468edfbae97 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1418_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1418_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 019af930-09f5-4bea-a082-84fe3dc740fd Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 195ecf43-06bd-4ffe-8d8b-a766f3f7179b Informed Consent 1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1418 68 false '-- '-- '-- '-- -24842 '-- f7482f5e-2a1e-5563-bd07-0041884d5457 '-- not reported female '-- '-- '-- '-- white TCGA-24-1418_demographic Alive '-- '-- '-- '-- 24842 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 243.0 '-- '-- 624e0ef7-bfb4-547e-83f8-3468edfbae97 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1418_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 231 43 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1418_treatment3 Clinical Trial '-- '-- '-- '-- '-- '-- '-- 8459 '-- mg '-- '-- '-- '-- 0db08895-ff4c-42b0-99fe-623dae1f8af7 Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV 195ecf43-06bd-4ffe-8d8b-a766f3f7179b Informed Consent 1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1418 68 false '-- '-- '-- '-- -24842 '-- f7482f5e-2a1e-5563-bd07-0041884d5457 '-- not reported female '-- '-- '-- '-- white TCGA-24-1418_demographic Alive '-- '-- '-- '-- 24842 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 243.0 '-- '-- 624e0ef7-bfb4-547e-83f8-3468edfbae97 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1418_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 161 23 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1418_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 2554 '-- mg '-- '-- '-- '-- 726efb55-eb75-5dfe-a418-915bce72ca08 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 195ecf43-06bd-4ffe-8d8b-a766f3f7179b Informed Consent 1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1418 68 false '-- '-- '-- '-- -24842 '-- f7482f5e-2a1e-5563-bd07-0041884d5457 '-- not reported female '-- '-- '-- '-- white TCGA-24-1418_demographic Alive '-- '-- '-- '-- 24842 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 243.0 '-- '-- 624e0ef7-bfb4-547e-83f8-3468edfbae97 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1418_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 161 23 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1418_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1510 '-- mg '-- '-- '-- '-- a642d148-6066-400b-b070-fd3927df14dd Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 196f4600-b6c9-4652-9f77-65c92883f8c1 Informed Consent -9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2060 51 false '-- '-- '-- '-- -18635 '-- b78eb8ff-ab78-5321-aa85-a563f3b4d1fb '-- not reported female '-- '-- '-- '-- white TCGA-13-2060_demographic Alive '-- '-- '-- '-- 18635 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2369.0 '-- '-- 31073de8-aadc-57d6-99a1-0a6b4d438bb9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2060_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 143 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-13-2060_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- 3b289c5a-3774-50a6-8cda-424d24af7b96 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 196f4600-b6c9-4652-9f77-65c92883f8c1 Informed Consent -9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2060 51 false '-- '-- '-- '-- -18635 '-- b78eb8ff-ab78-5321-aa85-a563f3b4d1fb '-- not reported female '-- '-- '-- '-- white TCGA-13-2060_demographic Alive '-- '-- '-- '-- 18635 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2369.0 '-- '-- 31073de8-aadc-57d6-99a1-0a6b4d438bb9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2060_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 143 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-13-2060_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- 422167c4-17c5-4004-ab92-7ee66db13280 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 196f4600-b6c9-4652-9f77-65c92883f8c1 Informed Consent -9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2060 51 false '-- '-- '-- '-- -18635 '-- b78eb8ff-ab78-5321-aa85-a563f3b4d1fb '-- not reported female '-- '-- '-- '-- white TCGA-13-2060_demographic Alive '-- '-- '-- '-- 18635 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2369.0 '-- '-- 31073de8-aadc-57d6-99a1-0a6b4d438bb9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2060_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 143 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-13-2060_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 600 '-- mg/m2 '-- '-- '-- '-- 4b559942-befc-4819-9f59-146fc87dabd4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 196f4600-b6c9-4652-9f77-65c92883f8c1 Informed Consent -9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2060 51 false '-- '-- '-- '-- -18635 '-- b78eb8ff-ab78-5321-aa85-a563f3b4d1fb '-- not reported female '-- '-- '-- '-- white TCGA-13-2060_demographic Alive '-- '-- '-- '-- 18635 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2369.0 '-- '-- 31073de8-aadc-57d6-99a1-0a6b4d438bb9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2060_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-2060_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9ad776f8-ccae-47d7-9d2a-efa6d8898a51 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 196f4600-b6c9-4652-9f77-65c92883f8c1 Informed Consent -9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2060 51 false '-- '-- '-- '-- -18635 '-- b78eb8ff-ab78-5321-aa85-a563f3b4d1fb '-- not reported female '-- '-- '-- '-- white TCGA-13-2060_demographic Alive '-- '-- '-- '-- 20110 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 1475 '-- '-- '-- 44b5b6a8-a54e-41cd-8a56-edc5672a76fa false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-2060_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-2060_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 1aea3c25-d2bc-4ff5-bc27-32e939944e9d Informed Consent 1053 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1785 55 false '-- '-- '-- '-- -20417 1104 e84a85c2-be73-5952-b964-921c0feadca1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1785_demographic Dead '-- '-- '-- '-- 20417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1104.0 '-- '-- 3af0fe9d-b0be-520d-93e2-62c3dde90896 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1785_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1785_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4fb9346f-4143-4aba-a35b-26a12001d2af Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 1aea3c25-d2bc-4ff5-bc27-32e939944e9d Informed Consent 1053 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1785 55 false '-- '-- '-- '-- -20417 1104 e84a85c2-be73-5952-b964-921c0feadca1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1785_demographic Dead '-- '-- '-- '-- 20417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1104.0 '-- '-- 3af0fe9d-b0be-520d-93e2-62c3dde90896 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1785_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 612 521 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1785_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 610 '-- mg '-- '-- '-- '-- 609fb1b8-127c-4088-a569-6b599eb5e73e '-- yes '-- '-- Chemotherapy +TCGA-OV 1aea3c25-d2bc-4ff5-bc27-32e939944e9d Informed Consent 1053 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1785 55 false '-- '-- '-- '-- -20417 1104 e84a85c2-be73-5952-b964-921c0feadca1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1785_demographic Dead '-- '-- '-- '-- 20417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1104.0 '-- '-- 3af0fe9d-b0be-520d-93e2-62c3dde90896 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1785_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 156 94 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1785_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 300 '-- mg '-- '-- '-- '-- 658c3d14-78ef-4054-9273-4f07aa6b2a06 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1aea3c25-d2bc-4ff5-bc27-32e939944e9d Informed Consent 1053 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1785 55 false '-- '-- '-- '-- -20417 1104 e84a85c2-be73-5952-b964-921c0feadca1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1785_demographic Dead '-- '-- '-- '-- 20417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1104.0 '-- '-- 3af0fe9d-b0be-520d-93e2-62c3dde90896 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1785_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 496 496 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1785_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 560 '-- mg '-- '-- '-- '-- a4a4b362-02c4-4d4b-a2a0-81c00379b9fd '-- yes '-- '-- Chemotherapy +TCGA-OV 1aea3c25-d2bc-4ff5-bc27-32e939944e9d Informed Consent 1053 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1785 55 false '-- '-- '-- '-- -20417 1104 e84a85c2-be73-5952-b964-921c0feadca1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1785_demographic Dead '-- '-- '-- '-- 20417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1104.0 '-- '-- 3af0fe9d-b0be-520d-93e2-62c3dde90896 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1785_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 612 521 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1785_treatment4 Docetaxel '-- '-- '-- '-- '-- '-- '-- 110 '-- mg '-- '-- '-- '-- b0545a07-4b2b-4339-b93f-19123b25b216 '-- yes '-- '-- Chemotherapy +TCGA-OV 1aea3c25-d2bc-4ff5-bc27-32e939944e9d Informed Consent 1053 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1785 55 false '-- '-- '-- '-- -20417 1104 e84a85c2-be73-5952-b964-921c0feadca1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1785_demographic Dead '-- '-- '-- '-- 20417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1104.0 '-- '-- 3af0fe9d-b0be-520d-93e2-62c3dde90896 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1785_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 496 496 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1785_treatment7 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 330 '-- mg '-- '-- '-- '-- b227d204-66ed-486f-b14e-d619be05211a '-- yes '-- '-- Chemotherapy +TCGA-OV 1aea3c25-d2bc-4ff5-bc27-32e939944e9d Informed Consent 1053 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1785 55 false '-- '-- '-- '-- -20417 1104 e84a85c2-be73-5952-b964-921c0feadca1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1785_demographic Dead '-- '-- '-- '-- 20417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1104.0 '-- '-- 3af0fe9d-b0be-520d-93e2-62c3dde90896 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1785_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 156 94 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1785_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 610 '-- mg '-- '-- '-- '-- e0b65e6b-3e29-4ffd-9278-d3439079bf8a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1aea3c25-d2bc-4ff5-bc27-32e939944e9d Informed Consent 1053 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1785 55 false '-- '-- '-- '-- -20417 1104 e84a85c2-be73-5952-b964-921c0feadca1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1785_demographic Dead '-- '-- '-- '-- 20417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1104.0 '-- '-- 3af0fe9d-b0be-520d-93e2-62c3dde90896 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1785_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 73 51 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1785_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 610 '-- mg '-- '-- '-- '-- ed796433-2627-589a-bd13-572865e856d5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1aea3c25-d2bc-4ff5-bc27-32e939944e9d Informed Consent 1053 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1785 55 false '-- '-- '-- '-- -20417 1104 e84a85c2-be73-5952-b964-921c0feadca1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1785_demographic Dead '-- '-- '-- '-- 20890 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 473 '-- '-- '-- 951f08ea-22d1-4c49-a867-1ee358ea205e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1785_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1785_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1785_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ad7fa1a6-b16d-4d88-a574-c9c29f2d0c14 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 1aea3c25-d2bc-4ff5-bc27-32e939944e9d Informed Consent 1053 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1785 55 false '-- '-- '-- '-- -20417 1104 e84a85c2-be73-5952-b964-921c0feadca1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1785_demographic Dead '-- '-- '-- '-- 20890 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 473 '-- '-- '-- 951f08ea-22d1-4c49-a867-1ee358ea205e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1785_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1785_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1785_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ff1bdef4-fcc4-41e6-b543-c4a5e6e36b0f '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 1c0318d9-0472-4840-add4-46bb9f914a30 Informed Consent 142 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1721 38 false '-- '-- '-- '-- -13894 '-- 1eb55aba-7ecf-530a-91c4-218735f5c0e5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1721_demographic Alive '-- '-- '-- '-- 13894 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 338.0 '-- '-- dcf90374-280a-5d2e-992f-9c76e9acd8e3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported Yes '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1721_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1721_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 20531ffd-84b6-45f3-87a1-0c23173633d4 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 1c0318d9-0472-4840-add4-46bb9f914a30 Informed Consent 142 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1721 38 false '-- '-- '-- '-- -13894 '-- 1eb55aba-7ecf-530a-91c4-218735f5c0e5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1721_demographic Alive '-- '-- '-- '-- 13894 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 338.0 '-- '-- dcf90374-280a-5d2e-992f-9c76e9acd8e3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported Yes '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1721_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 338 2 '-- '-- Not Reported '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1721_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3960 '-- mg '-- '-- '-- '-- 205b9f44-7c5a-4e95-b48e-610b7726da53 Neoadjuvant yes '-- '-- Chemotherapy +TCGA-OV 1c0318d9-0472-4840-add4-46bb9f914a30 Informed Consent 142 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1721 38 false '-- '-- '-- '-- -13894 '-- 1eb55aba-7ecf-530a-91c4-218735f5c0e5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1721_demographic Alive '-- '-- '-- '-- 13894 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 338.0 '-- '-- dcf90374-280a-5d2e-992f-9c76e9acd8e3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported Yes '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1721_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 317 193 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-1721_treatment Oxaliplatin '-- '-- '-- '-- '-- '-- '-- 528 '-- mg '-- '-- '-- '-- 317421ae-09b2-5042-acb5-8e8b08650fd1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1c0318d9-0472-4840-add4-46bb9f914a30 Informed Consent 142 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1721 38 false '-- '-- '-- '-- -13894 '-- 1eb55aba-7ecf-530a-91c4-218735f5c0e5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1721_demographic Alive '-- '-- '-- '-- 13894 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 338.0 '-- '-- dcf90374-280a-5d2e-992f-9c76e9acd8e3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported Yes '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1721_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 338 2 '-- '-- Not Reported '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1721_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1782 '-- mg '-- '-- '-- '-- 36296aa4-7bc1-47f4-83ae-be0c3eeb3fa7 Neoadjuvant yes '-- '-- Chemotherapy +TCGA-OV 1c0318d9-0472-4840-add4-46bb9f914a30 Informed Consent 142 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1721 38 false '-- '-- '-- '-- -13894 '-- 1eb55aba-7ecf-530a-91c4-218735f5c0e5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1721_demographic Alive '-- '-- '-- '-- 13894 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 338.0 '-- '-- dcf90374-280a-5d2e-992f-9c76e9acd8e3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported Yes '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1721_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 317 193 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-1721_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 786 '-- mg '-- '-- '-- '-- 72e450e1-d820-423f-8421-77a261eb9d9c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1c86e4e5-ecc9-4f6d-a557-77bf396a653b Informed Consent 22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1516 48 false '-- '-- '-- '-- -17768 '-- 4fb41f83-52da-5519-ae28-00202c8a640f '-- not reported female '-- '-- '-- '-- white TCGA-04-1516_demographic Alive '-- '-- '-- '-- 17768 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1265.0 '-- '-- 393cad95-2d59-5e8d-9afd-608720dada5a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R0 '-- '-- Ovary '-- '-- TCGA-04-1516_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 157 37 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1516_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 01c561b3-d1a3-568d-80a2-3969911dc92a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1c86e4e5-ecc9-4f6d-a557-77bf396a653b Informed Consent 22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1516 48 false '-- '-- '-- '-- -17768 '-- 4fb41f83-52da-5519-ae28-00202c8a640f '-- not reported female '-- '-- '-- '-- white TCGA-04-1516_demographic Alive '-- '-- '-- '-- 17768 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1265.0 '-- '-- 393cad95-2d59-5e8d-9afd-608720dada5a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R0 '-- '-- Ovary '-- '-- TCGA-04-1516_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- 37 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1516_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 08c11a3d-188a-4dcd-8046-080e105f401b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1c86e4e5-ecc9-4f6d-a557-77bf396a653b Informed Consent 22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1516 48 false '-- '-- '-- '-- -17768 '-- 4fb41f83-52da-5519-ae28-00202c8a640f '-- not reported female '-- '-- '-- '-- white TCGA-04-1516_demographic Alive '-- '-- '-- '-- 17768 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1265.0 '-- '-- 393cad95-2d59-5e8d-9afd-608720dada5a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R0 '-- '-- Ovary '-- '-- TCGA-04-1516_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 157 56 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1516_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c8945023-e22c-4e2e-9131-42c2a8dcc755 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1c86e4e5-ecc9-4f6d-a557-77bf396a653b Informed Consent 22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1516 48 false '-- '-- '-- '-- -17768 '-- 4fb41f83-52da-5519-ae28-00202c8a640f '-- not reported female '-- '-- '-- '-- white TCGA-04-1516_demographic Alive '-- '-- '-- '-- 17768 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1265.0 '-- '-- 393cad95-2d59-5e8d-9afd-608720dada5a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R0 '-- '-- Ovary '-- '-- TCGA-04-1516_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1516_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ffad72f2-1f35-4e98-8156-9ff28145bfac Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 1cc02c64-a34e-46ae-9bc7-5d50f2fefb31 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1506 45 false '-- '-- '-- '-- -16734 1039 75bc4385-e9df-5793-a283-7c3a014c1c85 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1506_demographic Dead '-- '-- '-- '-- 17400 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 666 '-- '-- '-- 260569da-fe10-48c3-b85e-a8dbcb985bf9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1506_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1506_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 1cc02c64-a34e-46ae-9bc7-5d50f2fefb31 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1506 45 false '-- '-- '-- '-- -16734 1039 75bc4385-e9df-5793-a283-7c3a014c1c85 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1506_demographic Dead '-- '-- '-- '-- 16734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1039.0 '-- '-- b7b88b39-5b78-5c15-a1fb-100e200d6917 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1506_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 51 50 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-13-1506_treatment4 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- 7216fb36-7c36-433c-8ab1-8e0bd76d17ef Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1cc02c64-a34e-46ae-9bc7-5d50f2fefb31 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1506 45 false '-- '-- '-- '-- -16734 1039 75bc4385-e9df-5793-a283-7c3a014c1c85 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1506_demographic Dead '-- '-- '-- '-- 16734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1039.0 '-- '-- b7b88b39-5b78-5c15-a1fb-100e200d6917 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1506_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1506_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 96ff7193-8327-4486-8c50-af5f10d3619b Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 1cc02c64-a34e-46ae-9bc7-5d50f2fefb31 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1506 45 false '-- '-- '-- '-- -16734 1039 75bc4385-e9df-5793-a283-7c3a014c1c85 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1506_demographic Dead '-- '-- '-- '-- 16734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1039.0 '-- '-- b7b88b39-5b78-5c15-a1fb-100e200d6917 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1506_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 80 79 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-13-1506_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- bd8253dc-bb4c-48e7-9a71-431d4e772a55 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1cc02c64-a34e-46ae-9bc7-5d50f2fefb31 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1506 45 false '-- '-- '-- '-- -16734 1039 75bc4385-e9df-5793-a283-7c3a014c1c85 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1506_demographic Dead '-- '-- '-- '-- 16734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1039.0 '-- '-- b7b88b39-5b78-5c15-a1fb-100e200d6917 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1506_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 197 99 '-- '-- '-- '-- '-- '-- '-- 5 '-- 800.0 mg/m2 '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1506_treatment5 Gemcitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ca5731d5-3c05-45d9-85fc-eb53cdec55ff Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1cc02c64-a34e-46ae-9bc7-5d50f2fefb31 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1506 45 false '-- '-- '-- '-- -16734 1039 75bc4385-e9df-5793-a283-7c3a014c1c85 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1506_demographic Dead '-- '-- '-- '-- 16734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1039.0 '-- '-- b7b88b39-5b78-5c15-a1fb-100e200d6917 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1506_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 51 50 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-13-1506_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- 65 '-- mg/m2 '-- '-- '-- '-- dc096bc6-e3eb-4439-bf65-b713a68cb3a8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1cc02c64-a34e-46ae-9bc7-5d50f2fefb31 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1506 45 false '-- '-- '-- '-- -16734 1039 75bc4385-e9df-5793-a283-7c3a014c1c85 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1506_demographic Dead '-- '-- '-- '-- 16734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1039.0 '-- '-- b7b88b39-5b78-5c15-a1fb-100e200d6917 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1506_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 80 79 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-13-1506_treatment Gemcitabine '-- '-- '-- '-- '-- '-- '-- 800 '-- mg/m2 '-- '-- '-- '-- dccd01fd-9917-5b2c-8e65-030281a82c81 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1cc02c64-a34e-46ae-9bc7-5d50f2fefb31 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1506 45 false '-- '-- '-- '-- -16734 1039 75bc4385-e9df-5793-a283-7c3a014c1c85 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1506_demographic Dead '-- '-- '-- '-- 16734 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1039.0 '-- '-- b7b88b39-5b78-5c15-a1fb-100e200d6917 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1506_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 197 99 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1506_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4 '-- AUC '-- '-- '-- '-- f44f8955-525c-4b3e-a700-d697315caa6e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1d0225b5-f515-4197-bba7-3dc17e502b88 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2262 57 false '-- '-- '-- '-- -20861 11 354360d8-cfa6-5226-8582-8db9bf3e8ee9 '-- not reported female '-- '-- '-- '-- white TCGA-24-2262_demographic Dead '-- '-- '-- '-- 20861 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 11.0 '-- '-- d5a8ef4a-e9fb-5014-939c-b0fcf9d6a2e5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2262_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2262_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7616810e-f532-4cce-ae69-734b02a6b5a2 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 1d0225b5-f515-4197-bba7-3dc17e502b88 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2262 57 false '-- '-- '-- '-- -20861 11 354360d8-cfa6-5226-8582-8db9bf3e8ee9 '-- not reported female '-- '-- '-- '-- white TCGA-24-2262_demographic Dead '-- '-- '-- '-- 20861 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 11.0 '-- '-- d5a8ef4a-e9fb-5014-939c-b0fcf9d6a2e5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2262_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2262_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e6ec155b-d287-5959-b056-11401a70ba01 Adjuvant no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 1d192835-524e-429d-bf74-3c4727acb446 Informed Consent 236 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1362 59 false '-- '-- '-- '-- -21745 1348 508c36c3-7b48-5032-937e-d91e566e31a6 '-- not reported female '-- '-- '-- '-- white TCGA-04-1362_demographic Dead '-- '-- '-- '-- 21745 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1348.0 '-- '-- 6c650e4b-ae78-596e-8ff7-657d4f6db775 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1362_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1362_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 22f286ad-bc2b-4fee-866d-23d5963532cf Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 1d192835-524e-429d-bf74-3c4727acb446 Informed Consent 236 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1362 59 false '-- '-- '-- '-- -21745 1348 508c36c3-7b48-5032-937e-d91e566e31a6 '-- not reported female '-- '-- '-- '-- white TCGA-04-1362_demographic Dead '-- '-- '-- '-- 21745 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1348.0 '-- '-- 6c650e4b-ae78-596e-8ff7-657d4f6db775 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1362_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- 658 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1362_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2347f080-a9b6-41d9-a181-4759650f6811 '-- yes '-- '-- Chemotherapy +TCGA-OV 1d192835-524e-429d-bf74-3c4727acb446 Informed Consent 236 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1362 59 false '-- '-- '-- '-- -21745 1348 508c36c3-7b48-5032-937e-d91e566e31a6 '-- not reported female '-- '-- '-- '-- white TCGA-04-1362_demographic Dead '-- '-- '-- '-- 21745 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1348.0 '-- '-- 6c650e4b-ae78-596e-8ff7-657d4f6db775 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1362_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 172 7 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1362_treatment6 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 13856 '-- mg '-- '-- '-- '-- 506cdf3e-cfd6-45e6-80fe-381d2db0264b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1d192835-524e-429d-bf74-3c4727acb446 Informed Consent 236 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1362 59 false '-- '-- '-- '-- -21745 1348 508c36c3-7b48-5032-937e-d91e566e31a6 '-- not reported female '-- '-- '-- '-- white TCGA-04-1362_demographic Dead '-- '-- '-- '-- 21745 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1348.0 '-- '-- 6c650e4b-ae78-596e-8ff7-657d4f6db775 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1362_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 172 7 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1362_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1689 '-- mg '-- '-- '-- '-- 6cfcfadd-2adf-4f1f-b290-c71d67900355 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1d192835-524e-429d-bf74-3c4727acb446 Informed Consent 236 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1362 59 false '-- '-- '-- '-- -21745 1348 508c36c3-7b48-5032-937e-d91e566e31a6 '-- not reported female '-- '-- '-- '-- white TCGA-04-1362_demographic Dead '-- '-- '-- '-- 21745 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1348.0 '-- '-- 6c650e4b-ae78-596e-8ff7-657d4f6db775 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1362_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- 658 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1362_treatment5 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 741a3197-32c7-4893-b112-c3b94b02baa2 '-- yes '-- '-- Chemotherapy +TCGA-OV 1d192835-524e-429d-bf74-3c4727acb446 Informed Consent 236 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1362 59 false '-- '-- '-- '-- -21745 1348 508c36c3-7b48-5032-937e-d91e566e31a6 '-- not reported female '-- '-- '-- '-- white TCGA-04-1362_demographic Dead '-- '-- '-- '-- 21745 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1348.0 '-- '-- 6c650e4b-ae78-596e-8ff7-657d4f6db775 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1362_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- 658 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1362_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 75086b0f-7c17-4bbd-a68a-cddaaf2ef392 '-- yes '-- '-- Chemotherapy +TCGA-OV 1d192835-524e-429d-bf74-3c4727acb446 Informed Consent 236 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1362 59 false '-- '-- '-- '-- -21745 1348 508c36c3-7b48-5032-937e-d91e566e31a6 '-- not reported female '-- '-- '-- '-- white TCGA-04-1362_demographic Dead '-- '-- '-- '-- 21745 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1348.0 '-- '-- 6c650e4b-ae78-596e-8ff7-657d4f6db775 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1362_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 172 7 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1362_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 2593 '-- mg '-- '-- '-- '-- e4570351-8389-5e5a-a13c-13883ddf03a2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1d192835-524e-429d-bf74-3c4727acb446 Informed Consent 236 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1362 59 false '-- '-- '-- '-- -21745 1348 508c36c3-7b48-5032-937e-d91e566e31a6 '-- not reported female '-- '-- '-- '-- white TCGA-04-1362_demographic Dead '-- '-- '-- '-- 21968 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 223 '-- '-- '-- e5516947-4d75-4930-8552-ee83cb24b3c5 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1362_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1362_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1362_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4c6f61ba-c382-4afc-946e-4e6285315d58 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 1d192835-524e-429d-bf74-3c4727acb446 Informed Consent 236 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1362 59 false '-- '-- '-- '-- -21745 1348 508c36c3-7b48-5032-937e-d91e566e31a6 '-- not reported female '-- '-- '-- '-- white TCGA-04-1362_demographic Dead '-- '-- '-- '-- 21968 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 223 '-- '-- '-- e5516947-4d75-4930-8552-ee83cb24b3c5 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1362_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1362_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1362_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 60890e5f-d4e7-4c76-9609-7c3102e2bbc0 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 1d9893c8-0de3-4b07-b0ba-a53019b23eb4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0369 56 false '-- '-- '-- '-- -20705 1082 91435668-d5f8-5c6b-8afd-e3e973f0a0aa '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0369_demographic Dead '-- '-- '-- '-- 20705 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1082.0 '-- '-- 2ccc9ded-6131-5138-ac74-27f15e75a761 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-0369_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 298 298 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-0369_treatment6 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 40 '-- mg/m2 '-- '-- '-- '-- 1b8e92fe-3116-4247-af2c-46766c540d39 '-- yes '-- '-- Chemotherapy +TCGA-OV 1d9893c8-0de3-4b07-b0ba-a53019b23eb4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0369 56 false '-- '-- '-- '-- -20705 1082 91435668-d5f8-5c6b-8afd-e3e973f0a0aa '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0369_demographic Dead '-- '-- '-- '-- 20705 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1082.0 '-- '-- 2ccc9ded-6131-5138-ac74-27f15e75a761 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-0369_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 74 8 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-0369_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 347072d1-9959-41fd-b347-270d19bc4942 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1d9893c8-0de3-4b07-b0ba-a53019b23eb4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0369 56 false '-- '-- '-- '-- -20705 1082 91435668-d5f8-5c6b-8afd-e3e973f0a0aa '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0369_demographic Dead '-- '-- '-- '-- 20705 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1082.0 '-- '-- 2ccc9ded-6131-5138-ac74-27f15e75a761 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-0369_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 99 99 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-0369_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 35a52e70-cfdd-42db-8097-5afc68a05c51 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1d9893c8-0de3-4b07-b0ba-a53019b23eb4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0369 56 false '-- '-- '-- '-- -20705 1082 91435668-d5f8-5c6b-8afd-e3e973f0a0aa '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0369_demographic Dead '-- '-- '-- '-- 20705 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1082.0 '-- '-- 2ccc9ded-6131-5138-ac74-27f15e75a761 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-0369_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 74 8 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-0369_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6d5b4e3d-f52a-45b2-94f0-085148e276ed Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1d9893c8-0de3-4b07-b0ba-a53019b23eb4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0369 56 false '-- '-- '-- '-- -20705 1082 91435668-d5f8-5c6b-8afd-e3e973f0a0aa '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0369_demographic Dead '-- '-- '-- '-- 20705 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1082.0 '-- '-- 2ccc9ded-6131-5138-ac74-27f15e75a761 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-0369_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 99 99 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-0369_treatment Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1000 '-- mg/m2 '-- '-- '-- '-- 702913e1-f549-5908-ba73-05f3a66fc72e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1d9893c8-0de3-4b07-b0ba-a53019b23eb4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0369 56 false '-- '-- '-- '-- -20705 1082 91435668-d5f8-5c6b-8afd-e3e973f0a0aa '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0369_demographic Dead '-- '-- '-- '-- 20705 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1082.0 '-- '-- 2ccc9ded-6131-5138-ac74-27f15e75a761 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-0369_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 446 310 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-0369_treatment7 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d4862ff4-752e-457e-bf40-ab3552c89683 '-- yes '-- '-- Chemotherapy +TCGA-OV 1d9893c8-0de3-4b07-b0ba-a53019b23eb4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0369 56 false '-- '-- '-- '-- -20705 1082 91435668-d5f8-5c6b-8afd-e3e973f0a0aa '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0369_demographic Dead '-- '-- '-- '-- 20705 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1082.0 '-- '-- 2ccc9ded-6131-5138-ac74-27f15e75a761 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-0369_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 78 78 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-0369_treatment5 Docetaxel '-- '-- '-- '-- '-- '-- '-- 80 '-- mg '-- '-- '-- '-- d92c3bbc-c955-4ee7-aa32-ba26eba2b7c1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1d9893c8-0de3-4b07-b0ba-a53019b23eb4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0369 56 false '-- '-- '-- '-- -20705 1082 91435668-d5f8-5c6b-8afd-e3e973f0a0aa '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0369_demographic Dead '-- '-- '-- '-- 20705 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1082.0 '-- '-- 2ccc9ded-6131-5138-ac74-27f15e75a761 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-0369_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-0369_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f63cf101-5dbd-46b0-8545-03419be997a7 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 1d9893c8-0de3-4b07-b0ba-a53019b23eb4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0369 56 false '-- '-- '-- '-- -20705 1082 91435668-d5f8-5c6b-8afd-e3e973f0a0aa '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0369_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 93d34fef-e894-466a-9afd-78258808e3b9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-0369_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-0369_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 326 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-0369_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3a240054-93ae-49d6-87d4-8ca0fe8261ce '-- yes '-- '-- Surgery, NOS +TCGA-OV 1d9893c8-0de3-4b07-b0ba-a53019b23eb4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0369 56 false '-- '-- '-- '-- -20705 1082 91435668-d5f8-5c6b-8afd-e3e973f0a0aa '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0369_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 93d34fef-e894-466a-9afd-78258808e3b9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-0369_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-0369_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-0369_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a98c673f-1048-4d03-8a0a-b8e69a231482 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 1d9893c8-0de3-4b07-b0ba-a53019b23eb4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0369 56 false '-- '-- '-- '-- -20705 1082 91435668-d5f8-5c6b-8afd-e3e973f0a0aa '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0369_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 93d34fef-e894-466a-9afd-78258808e3b9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-0369_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-0369_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-0369_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cfee03b1-0afd-45ef-ada1-6c4a54192b68 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 1d9893c8-0de3-4b07-b0ba-a53019b23eb4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0369 56 false '-- '-- '-- '-- -20705 1082 91435668-d5f8-5c6b-8afd-e3e973f0a0aa '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0369_demographic Dead '-- '-- '-- '-- 20979 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 274 '-- '-- '-- faf32d90-3184-4f9d-8182-05fc89c21d1a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-0369_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-0369_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-0369_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2ef4422f-cd8e-4248-a1f0-9cf3f190a36c '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 1d9893c8-0de3-4b07-b0ba-a53019b23eb4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0369 56 false '-- '-- '-- '-- -20705 1082 91435668-d5f8-5c6b-8afd-e3e973f0a0aa '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0369_demographic Dead '-- '-- '-- '-- 20979 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 274 '-- '-- '-- faf32d90-3184-4f9d-8182-05fc89c21d1a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-0369_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-0369_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-0369_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b6709b73-9902-423c-b6b4-734ae60a15cb '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 1db60f09-7f5a-4f21-8003-06a6abc781db Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1694 45 false '-- '-- '-- '-- -16523 1187 109ece40-b218-5b70-83d3-e21fe429076f '-- not reported female '-- '-- '-- '-- white TCGA-29-1694_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 23e1151c-8ade-4fd6-a9ac-5368e0e52d28 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1694_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1694_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 206 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1694_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1d19f824-ae61-4185-a505-5fb36c67d9d1 '-- yes '-- '-- Surgery, NOS +TCGA-OV 1db60f09-7f5a-4f21-8003-06a6abc781db Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1694 45 false '-- '-- '-- '-- -16523 1187 109ece40-b218-5b70-83d3-e21fe429076f '-- not reported female '-- '-- '-- '-- white TCGA-29-1694_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 23e1151c-8ade-4fd6-a9ac-5368e0e52d28 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1694_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1694_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1694_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8ce456ae-5071-44ef-b110-ada0d0674b08 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 1db60f09-7f5a-4f21-8003-06a6abc781db Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1694 45 false '-- '-- '-- '-- -16523 1187 109ece40-b218-5b70-83d3-e21fe429076f '-- not reported female '-- '-- '-- '-- white TCGA-29-1694_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 23e1151c-8ade-4fd6-a9ac-5368e0e52d28 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1694_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1694_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1694_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f3e1630f-2a21-4fe8-be19-4d4300b6d18f '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 1db60f09-7f5a-4f21-8003-06a6abc781db Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1694 45 false '-- '-- '-- '-- -16523 1187 109ece40-b218-5b70-83d3-e21fe429076f '-- not reported female '-- '-- '-- '-- white TCGA-29-1694_demographic Dead '-- '-- '-- '-- 16523 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1187.0 '-- '-- 8c0fa4a4-95b4-5ff6-aa24-077fd12ff564 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1694_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 485 241 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-29-1694_treatment9 Cisplatin '-- '-- '-- '-- '-- '-- '-- 50 '-- mg/m2 '-- '-- '-- '-- 051fa0d5-64f1-4bdb-aaff-f56efb274c0f '-- yes '-- '-- Chemotherapy +TCGA-OV 1db60f09-7f5a-4f21-8003-06a6abc781db Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1694 45 false '-- '-- '-- '-- -16523 1187 109ece40-b218-5b70-83d3-e21fe429076f '-- not reported female '-- '-- '-- '-- white TCGA-29-1694_demographic Dead '-- '-- '-- '-- 16523 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1187.0 '-- '-- 8c0fa4a4-95b4-5ff6-aa24-077fd12ff564 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1694_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1071 969 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1694_treatment2 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1020 '-- mg '-- '-- '-- '-- 0a50a847-f320-4e08-ba86-68f7e6eab90b '-- yes '-- '-- Chemotherapy +TCGA-OV 1db60f09-7f5a-4f21-8003-06a6abc781db Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1694 45 false '-- '-- '-- '-- -16523 1187 109ece40-b218-5b70-83d3-e21fe429076f '-- not reported female '-- '-- '-- '-- white TCGA-29-1694_demographic Dead '-- '-- '-- '-- 16523 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1187.0 '-- '-- 8c0fa4a4-95b4-5ff6-aa24-077fd12ff564 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1694_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 161 43 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1694_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4 '-- AUC '-- '-- '-- '-- 0d207e91-1df2-456f-b70f-142ecea58290 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1db60f09-7f5a-4f21-8003-06a6abc781db Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1694 45 false '-- '-- '-- '-- -16523 1187 109ece40-b218-5b70-83d3-e21fe429076f '-- not reported female '-- '-- '-- '-- white TCGA-29-1694_demographic Dead '-- '-- '-- '-- 16523 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1187.0 '-- '-- 8c0fa4a4-95b4-5ff6-aa24-077fd12ff564 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1694_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 719 658 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1694_treatment6 Paclitaxel Poliglumex '-- '-- '-- '-- '-- '-- '-- 243 '-- mg '-- '-- '-- '-- 42a836cd-a2e8-4505-938c-5c9a65eee48d '-- yes '-- '-- Chemotherapy +TCGA-OV 1db60f09-7f5a-4f21-8003-06a6abc781db Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1694 45 false '-- '-- '-- '-- -16523 1187 109ece40-b218-5b70-83d3-e21fe429076f '-- not reported female '-- '-- '-- '-- white TCGA-29-1694_demographic Dead '-- '-- '-- '-- 16523 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1187.0 '-- '-- 8c0fa4a4-95b4-5ff6-aa24-077fd12ff564 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1694_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- 202 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1694_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 71f71a25-ef58-5fc9-b2b5-ca5883263da3 '-- yes '-- '-- Radiation, Radioisotope +TCGA-OV 1db60f09-7f5a-4f21-8003-06a6abc781db Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1694 45 false '-- '-- '-- '-- -16523 1187 109ece40-b218-5b70-83d3-e21fe429076f '-- not reported female '-- '-- '-- '-- white TCGA-29-1694_demographic Dead '-- '-- '-- '-- 16523 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1187.0 '-- '-- 8c0fa4a4-95b4-5ff6-aa24-077fd12ff564 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1694_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 161 43 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1694_treatment7 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 150 '-- mg/m2 '-- '-- '-- '-- 7821bd38-c937-4c3d-bd24-01f1823a8717 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1db60f09-7f5a-4f21-8003-06a6abc781db Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1694 45 false '-- '-- '-- '-- -16523 1187 109ece40-b218-5b70-83d3-e21fe429076f '-- not reported female '-- '-- '-- '-- white TCGA-29-1694_demographic Dead '-- '-- '-- '-- 16523 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1187.0 '-- '-- 8c0fa4a4-95b4-5ff6-aa24-077fd12ff564 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1694_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1108 1101 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1694_treatment10 Topotecan '-- '-- '-- '-- '-- '-- '-- 4 '-- mg '-- '-- '-- '-- 890a9660-543d-48c3-9f42-519dad7f1816 '-- yes '-- '-- Chemotherapy +TCGA-OV 1db60f09-7f5a-4f21-8003-06a6abc781db Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1694 45 false '-- '-- '-- '-- -16523 1187 109ece40-b218-5b70-83d3-e21fe429076f '-- not reported female '-- '-- '-- '-- white TCGA-29-1694_demographic Dead '-- '-- '-- '-- 16523 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1187.0 '-- '-- 8c0fa4a4-95b4-5ff6-aa24-077fd12ff564 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1694_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1071 1057 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1694_treatment5 Cisplatin '-- '-- '-- '-- '-- '-- '-- 40 '-- mg '-- '-- '-- '-- 8f620a25-6078-4f83-b3ee-2ea0cde6853c '-- yes '-- '-- Chemotherapy +TCGA-OV 1db60f09-7f5a-4f21-8003-06a6abc781db Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1694 45 false '-- '-- '-- '-- -16523 1187 109ece40-b218-5b70-83d3-e21fe429076f '-- not reported female '-- '-- '-- '-- white TCGA-29-1694_demographic Dead '-- '-- '-- '-- 16523 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1187.0 '-- '-- 8c0fa4a4-95b4-5ff6-aa24-077fd12ff564 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1694_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 658 339 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1694_treatment8 Tamoxifen '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b00f6731-bb36-4967-a1b9-0d0cf138f1f3 '-- yes '-- '-- Hormone Therapy +TCGA-OV 1db60f09-7f5a-4f21-8003-06a6abc781db Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1694 45 false '-- '-- '-- '-- -16523 1187 109ece40-b218-5b70-83d3-e21fe429076f '-- not reported female '-- '-- '-- '-- white TCGA-29-1694_demographic Dead '-- '-- '-- '-- 16523 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1187.0 '-- '-- 8c0fa4a4-95b4-5ff6-aa24-077fd12ff564 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1694_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 928 750 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1694_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 56 '-- mg '-- '-- '-- '-- d95f1e80-87b3-4ff5-92b6-a9330e2f2ab6 '-- yes '-- '-- Chemotherapy +TCGA-OV 1e14f098-17b2-4f54-8e4f-e38088008df7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0714 55 false '-- '-- '-- '-- -20109 189 228a6c55-1ab5-5019-bd8f-387fb592df71 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0714_demographic Dead '-- '-- '-- '-- 20109 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 189.0 '-- '-- a2212176-e116-5cb8-adee-defab8d379bf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0714_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 04a61e9c-f15e-4b06-aeac-f44bb78a91e5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1e14f098-17b2-4f54-8e4f-e38088008df7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0714 55 false '-- '-- '-- '-- -20109 189 228a6c55-1ab5-5019-bd8f-387fb592df71 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0714_demographic Dead '-- '-- '-- '-- 20109 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 189.0 '-- '-- a2212176-e116-5cb8-adee-defab8d379bf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0714_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 97546469-eff3-4b64-a472-a95e494aa5d5 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 1e14f098-17b2-4f54-8e4f-e38088008df7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0714 55 false '-- '-- '-- '-- -20109 189 228a6c55-1ab5-5019-bd8f-387fb592df71 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0714_demographic Dead '-- '-- '-- '-- 20109 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 189.0 '-- '-- a2212176-e116-5cb8-adee-defab8d379bf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0714_treatment Gemcitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- be736da6-b59e-5da9-b184-ad682b358041 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1e14f098-17b2-4f54-8e4f-e38088008df7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0714 55 false '-- '-- '-- '-- -20109 189 228a6c55-1ab5-5019-bd8f-387fb592df71 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0714_demographic Dead '-- '-- '-- '-- 20109 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 189.0 '-- '-- a2212176-e116-5cb8-adee-defab8d379bf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0714_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-13-0714_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c96e6636-2200-422d-b084-4b794107c461 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1e14f098-17b2-4f54-8e4f-e38088008df7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0714 55 false '-- '-- '-- '-- -20109 189 228a6c55-1ab5-5019-bd8f-387fb592df71 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0714_demographic Dead '-- '-- '-- '-- 20219 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 110 '-- '-- '-- ea45e1cc-67a8-47b9-84b2-6128c239ffff false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0714_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0714_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0714_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 206e752a-ec8b-4d0c-b08c-e73195a117e1 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 1e14f098-17b2-4f54-8e4f-e38088008df7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0714 55 false '-- '-- '-- '-- -20109 189 228a6c55-1ab5-5019-bd8f-387fb592df71 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0714_demographic Dead '-- '-- '-- '-- 20219 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 110 '-- '-- '-- ea45e1cc-67a8-47b9-84b2-6128c239ffff false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0714_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0714_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0714_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- da6e0300-4622-4e02-b07c-f290de30c18c '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 1ede8063-e0e9-466d-891c-ac8916f1b5fa Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1674 79 false '-- '-- '-- '-- -28878 '-- 7eefb98f-771a-5ff3-bef3-fe4d7b7f4a10 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1674_demographic Alive '-- '-- '-- '-- 28878 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 260.0 '-- '-- 7ff83dd1-9fd9-5e82-a1c8-181953c5f320 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1674_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 145 41 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1674_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 3e8f6157-7a6c-486d-9a97-ee110ac63335 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1ede8063-e0e9-466d-891c-ac8916f1b5fa Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1674 79 false '-- '-- '-- '-- -28878 '-- 7eefb98f-771a-5ff3-bef3-fe4d7b7f4a10 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1674_demographic Alive '-- '-- '-- '-- 28878 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 260.0 '-- '-- 7ff83dd1-9fd9-5e82-a1c8-181953c5f320 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1674_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 145 41 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1674_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b66b0332-bce1-592f-8563-04297bc31934 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1ede8063-e0e9-466d-891c-ac8916f1b5fa Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1674 79 false '-- '-- '-- '-- -28878 '-- 7eefb98f-771a-5ff3-bef3-fe4d7b7f4a10 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1674_demographic Alive '-- '-- '-- '-- 28878 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 260.0 '-- '-- 7ff83dd1-9fd9-5e82-a1c8-181953c5f320 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1674_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1674_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f7d5ea32-ab0b-46ba-9add-ff519c046d55 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 1fe19c6b-71d0-4b07-923b-74ea32210db0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1536 60 false '-- '-- '-- '-- -21939 885 4075c35e-4315-55c2-8f7e-f4fccace1701 '-- not reported female '-- '-- '-- '-- black or african american TCGA-04-1536_demographic Dead '-- '-- '-- '-- 22437 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 498 '-- '-- '-- bb0701cb-c8ea-4a48-9f6c-62c7dcde1aa4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1536_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1536_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1536_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c07094ce-30f7-4661-91d8-5b43e081f9ab '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 1fe19c6b-71d0-4b07-923b-74ea32210db0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1536 60 false '-- '-- '-- '-- -21939 885 4075c35e-4315-55c2-8f7e-f4fccace1701 '-- not reported female '-- '-- '-- '-- black or african american TCGA-04-1536_demographic Dead '-- '-- '-- '-- 22437 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 498 '-- '-- '-- bb0701cb-c8ea-4a48-9f6c-62c7dcde1aa4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1536_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1536_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1536_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f35bf032-0a76-493c-b708-db790885574d '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 1fe19c6b-71d0-4b07-923b-74ea32210db0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1536 60 false '-- '-- '-- '-- -21939 885 4075c35e-4315-55c2-8f7e-f4fccace1701 '-- not reported female '-- '-- '-- '-- black or african american TCGA-04-1536_demographic Dead '-- '-- '-- '-- 21939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 885.0 '-- '-- f17fde83-65f4-517c-a222-7ce85742a76a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1536_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1536_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0b2da872-15ad-4bdb-864b-848f83f8d78f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 1fe19c6b-71d0-4b07-923b-74ea32210db0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1536 60 false '-- '-- '-- '-- -21939 885 4075c35e-4315-55c2-8f7e-f4fccace1701 '-- not reported female '-- '-- '-- '-- black or african american TCGA-04-1536_demographic Dead '-- '-- '-- '-- 21939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 885.0 '-- '-- f17fde83-65f4-517c-a222-7ce85742a76a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1536_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- 518 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1536_treatment2 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 978ff54b-9cb1-4753-a39b-61478d9f6d7c '-- yes '-- '-- Chemotherapy +TCGA-OV 1fe19c6b-71d0-4b07-923b-74ea32210db0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1536 60 false '-- '-- '-- '-- -21939 885 4075c35e-4315-55c2-8f7e-f4fccace1701 '-- not reported female '-- '-- '-- '-- black or african american TCGA-04-1536_demographic Dead '-- '-- '-- '-- 21939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 885.0 '-- '-- f17fde83-65f4-517c-a222-7ce85742a76a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1536_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 232 36 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1536_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 3360 '-- mg '-- '-- '-- '-- 9ce48eab-0d8c-5500-afb6-f15cba3c0ba6 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1fe19c6b-71d0-4b07-923b-74ea32210db0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1536 60 false '-- '-- '-- '-- -21939 885 4075c35e-4315-55c2-8f7e-f4fccace1701 '-- not reported female '-- '-- '-- '-- black or african american TCGA-04-1536_demographic Dead '-- '-- '-- '-- 21939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 885.0 '-- '-- f17fde83-65f4-517c-a222-7ce85742a76a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1536_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 232 36 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1536_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 188 '-- mg '-- '-- '-- '-- b8d77d35-1993-4949-b54a-bf561342e30a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1fe19c6b-71d0-4b07-923b-74ea32210db0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1536 60 false '-- '-- '-- '-- -21939 885 4075c35e-4315-55c2-8f7e-f4fccace1701 '-- not reported female '-- '-- '-- '-- black or african american TCGA-04-1536_demographic Dead '-- '-- '-- '-- 21939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 885.0 '-- '-- f17fde83-65f4-517c-a222-7ce85742a76a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1536_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- 518 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1536_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c4cbdc30-7ae4-491d-aa80-b95554bd076a '-- yes '-- '-- Chemotherapy +TCGA-OV 1fe19c6b-71d0-4b07-923b-74ea32210db0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1536 60 false '-- '-- '-- '-- -21939 885 4075c35e-4315-55c2-8f7e-f4fccace1701 '-- not reported female '-- '-- '-- '-- black or african american TCGA-04-1536_demographic Dead '-- '-- '-- '-- 21939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 885.0 '-- '-- f17fde83-65f4-517c-a222-7ce85742a76a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1536_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 232 36 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1536_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2125 '-- mg '-- '-- '-- '-- e78c9b88-f213-433f-b1c2-d49612b4ac56 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 1fe19c6b-71d0-4b07-923b-74ea32210db0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1536 60 false '-- '-- '-- '-- -21939 885 4075c35e-4315-55c2-8f7e-f4fccace1701 '-- not reported female '-- '-- '-- '-- black or african american TCGA-04-1536_demographic Dead '-- '-- '-- '-- 21939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 885.0 '-- '-- f17fde83-65f4-517c-a222-7ce85742a76a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1536_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- 518 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1536_treatment5 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fdf08475-bd9e-488f-acc6-5ec314c13d32 '-- yes '-- '-- Chemotherapy +TCGA-OV 20336269-5a5b-4ba7-8fe8-665a1f9af738 Informed Consent 1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1633 64 false '-- '-- '-- '-- -23407 1891 e394758b-5b02-5855-a821-a660650ab989 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1633_demographic Dead '-- '-- '-- '-- 23407 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1891.0 '-- '-- a2f9c05f-49fc-5fcf-8f44-9a62df7e890e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1633_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 184 26 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1633_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2253f219-7f50-5701-aef6-ab41b0a2129b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 20336269-5a5b-4ba7-8fe8-665a1f9af738 Informed Consent 1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1633 64 false '-- '-- '-- '-- -23407 1891 e394758b-5b02-5855-a821-a660650ab989 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1633_demographic Dead '-- '-- '-- '-- 23407 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1891.0 '-- '-- a2f9c05f-49fc-5fcf-8f44-9a62df7e890e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1633_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 740 617 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1633_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 32760cdf-4012-4ce1-a5cf-5454e56668b2 '-- yes '-- '-- Chemotherapy +TCGA-OV 20336269-5a5b-4ba7-8fe8-665a1f9af738 Informed Consent 1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1633 64 false '-- '-- '-- '-- -23407 1891 e394758b-5b02-5855-a821-a660650ab989 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1633_demographic Dead '-- '-- '-- '-- 23407 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1891.0 '-- '-- a2f9c05f-49fc-5fcf-8f44-9a62df7e890e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1633_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 740 617 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1633_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4c2299d0-04a8-4509-bac0-f069996d21a3 '-- yes '-- '-- Chemotherapy +TCGA-OV 20336269-5a5b-4ba7-8fe8-665a1f9af738 Informed Consent 1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1633 64 false '-- '-- '-- '-- -23407 1891 e394758b-5b02-5855-a821-a660650ab989 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1633_demographic Dead '-- '-- '-- '-- 23407 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1891.0 '-- '-- a2f9c05f-49fc-5fcf-8f44-9a62df7e890e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1633_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1633_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b40d4f39-c075-40b4-a524-aa96354af3fc Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 20336269-5a5b-4ba7-8fe8-665a1f9af738 Informed Consent 1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1633 64 false '-- '-- '-- '-- -23407 1891 e394758b-5b02-5855-a821-a660650ab989 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1633_demographic Dead '-- '-- '-- '-- 23407 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1891.0 '-- '-- a2f9c05f-49fc-5fcf-8f44-9a62df7e890e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1633_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 184 26 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1633_treatment4 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d4639cdf-13f9-42e0-a85d-27b8642750f5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 20336269-5a5b-4ba7-8fe8-665a1f9af738 Informed Consent 1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1633 64 false '-- '-- '-- '-- -23407 1891 e394758b-5b02-5855-a821-a660650ab989 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1633_demographic Dead '-- '-- '-- '-- 23407 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1891.0 '-- '-- a2f9c05f-49fc-5fcf-8f44-9a62df7e890e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1633_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 184 26 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1633_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- eacbc6ef-4dd5-4d5e-975f-0b48f3b5e7bb Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 20336269-5a5b-4ba7-8fe8-665a1f9af738 Informed Consent 1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1633 64 false '-- '-- '-- '-- -23407 1891 e394758b-5b02-5855-a821-a660650ab989 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1633_demographic Dead '-- '-- '-- '-- 24023 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 616 '-- '-- '-- e9b263dc-5de0-4bc0-944f-b08b3a0a6f7e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1633_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1633_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1633_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5a3ec7cf-7fad-4630-9acb-26050be2bbaa '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 20336269-5a5b-4ba7-8fe8-665a1f9af738 Informed Consent 1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1633 64 false '-- '-- '-- '-- -23407 1891 e394758b-5b02-5855-a821-a660650ab989 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1633_demographic Dead '-- '-- '-- '-- 24023 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 616 '-- '-- '-- e9b263dc-5de0-4bc0-944f-b08b3a0a6f7e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1633_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1633_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1633_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f2349fd1-51b7-4a4c-9a95-bfbe354745aa '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 2038fd65-d8f1-4b16-af90-b1c8f9a379a7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0905 51 false '-- '-- '-- '-- -18757 '-- 48698460-7bda-5e2d-bc8b-c4314044aaca '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0905_demographic Alive '-- '-- '-- '-- 20292 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 1535 '-- '-- '-- 0c4ac03b-3c61-44ff-b7d0-600ede24f11b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0905_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0905_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 2038fd65-d8f1-4b16-af90-b1c8f9a379a7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0905 51 false '-- '-- '-- '-- -18757 '-- 48698460-7bda-5e2d-bc8b-c4314044aaca '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0905_demographic Alive '-- '-- '-- '-- 18757 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3746.0 '-- '-- f00a9a54-c99b-5b21-acd3-6fae35b74a82 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0905_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 125 20 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0905_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 4d506f87-5e8b-4e98-a401-8a50cdf1b056 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2038fd65-d8f1-4b16-af90-b1c8f9a379a7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0905 51 false '-- '-- '-- '-- -18757 '-- 48698460-7bda-5e2d-bc8b-c4314044aaca '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0905_demographic Alive '-- '-- '-- '-- 18757 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3746.0 '-- '-- f00a9a54-c99b-5b21-acd3-6fae35b74a82 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0905_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0905_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 827f9295-f04c-4a37-ad47-dc81032ad66f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 2038fd65-d8f1-4b16-af90-b1c8f9a379a7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0905 51 false '-- '-- '-- '-- -18757 '-- 48698460-7bda-5e2d-bc8b-c4314044aaca '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0905_demographic Alive '-- '-- '-- '-- 18757 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3746.0 '-- '-- f00a9a54-c99b-5b21-acd3-6fae35b74a82 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0905_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 125 20 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0905_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b49df4b8-98e2-4a82-b2f4-7cc1740f331a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2038fd65-d8f1-4b16-af90-b1c8f9a379a7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0905 51 false '-- '-- '-- '-- -18757 '-- 48698460-7bda-5e2d-bc8b-c4314044aaca '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0905_demographic Alive '-- '-- '-- '-- 18757 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3746.0 '-- '-- f00a9a54-c99b-5b21-acd3-6fae35b74a82 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0905_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 223 153 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0905_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 500 '-- mg/m2 '-- '-- '-- '-- bd53d914-bb52-5fcd-aa09-68d4e03edab9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 206ce0ed-36a4-47ab-ac8e-f6fca6ac5c18 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0982 77 false '-- '-- '-- '-- -28201 679 849e1718-c71c-5361-b7d6-b8cc306d138e '-- not reported female '-- '-- '-- '-- white TCGA-24-0982_demographic Dead '-- '-- '-- '-- 28201 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 679.0 '-- '-- 39a59ccd-64aa-5441-84ae-81793fbe9199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0982_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-0982_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1547ca03-0619-4f37-b17e-1789dde00839 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 206ce0ed-36a4-47ab-ac8e-f6fca6ac5c18 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0982 77 false '-- '-- '-- '-- -28201 679 849e1718-c71c-5361-b7d6-b8cc306d138e '-- not reported female '-- '-- '-- '-- white TCGA-24-0982_demographic Dead '-- '-- '-- '-- 28201 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 679.0 '-- '-- 39a59ccd-64aa-5441-84ae-81793fbe9199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0982_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 321 251 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0982_treatment5 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- 390 '-- mg '-- '-- '-- '-- 238a2a9a-2218-4fed-bbef-1466e53c3199 '-- yes '-- '-- Chemotherapy +TCGA-OV 206ce0ed-36a4-47ab-ac8e-f6fca6ac5c18 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0982 77 false '-- '-- '-- '-- -28201 679 849e1718-c71c-5361-b7d6-b8cc306d138e '-- not reported female '-- '-- '-- '-- white TCGA-24-0982_demographic Dead '-- '-- '-- '-- 28201 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 679.0 '-- '-- 39a59ccd-64aa-5441-84ae-81793fbe9199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0982_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 474 341 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0982_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 388 '-- mg '-- '-- '-- '-- 54e94e17-9baf-4c2a-b5ad-a0581216c903 '-- yes '-- '-- Chemotherapy +TCGA-OV 206ce0ed-36a4-47ab-ac8e-f6fca6ac5c18 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0982 77 false '-- '-- '-- '-- -28201 679 849e1718-c71c-5361-b7d6-b8cc306d138e '-- not reported female '-- '-- '-- '-- white TCGA-24-0982_demographic Dead '-- '-- '-- '-- 28201 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 679.0 '-- '-- 39a59ccd-64aa-5441-84ae-81793fbe9199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0982_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 615 488 '-- '-- Progressive Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0982_treatment7 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2276 '-- mg '-- '-- '-- '-- 75df1c59-9ee0-448f-9a88-787b76983a42 '-- yes '-- '-- Chemotherapy +TCGA-OV 206ce0ed-36a4-47ab-ac8e-f6fca6ac5c18 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0982 77 false '-- '-- '-- '-- -28201 679 849e1718-c71c-5361-b7d6-b8cc306d138e '-- not reported female '-- '-- '-- '-- white TCGA-24-0982_demographic Dead '-- '-- '-- '-- 28201 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 679.0 '-- '-- 39a59ccd-64aa-5441-84ae-81793fbe9199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0982_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 321 251 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0982_treatment6 Topotecan '-- '-- '-- '-- '-- '-- '-- 39 '-- mg '-- '-- '-- '-- bc95f6b5-0673-4810-adfd-2b6ef4f7c161 '-- yes '-- '-- Chemotherapy +TCGA-OV 206ce0ed-36a4-47ab-ac8e-f6fca6ac5c18 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0982 77 false '-- '-- '-- '-- -28201 679 849e1718-c71c-5361-b7d6-b8cc306d138e '-- not reported female '-- '-- '-- '-- white TCGA-24-0982_demographic Dead '-- '-- '-- '-- 28201 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 679.0 '-- '-- 39a59ccd-64aa-5441-84ae-81793fbe9199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0982_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 125 13 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0982_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1966 '-- mg '-- '-- '-- '-- bea58a28-e1e0-4c96-bd85-d5ab1f077b52 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 206ce0ed-36a4-47ab-ac8e-f6fca6ac5c18 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0982 77 false '-- '-- '-- '-- -28201 679 849e1718-c71c-5361-b7d6-b8cc306d138e '-- not reported female '-- '-- '-- '-- white TCGA-24-0982_demographic Dead '-- '-- '-- '-- 28201 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 679.0 '-- '-- 39a59ccd-64aa-5441-84ae-81793fbe9199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0982_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 125 13 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0982_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4090 '-- mg '-- '-- '-- '-- c873a01f-9b1c-4c50-9272-524734405d4f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 206ce0ed-36a4-47ab-ac8e-f6fca6ac5c18 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0982 77 false '-- '-- '-- '-- -28201 679 849e1718-c71c-5361-b7d6-b8cc306d138e '-- not reported female '-- '-- '-- '-- white TCGA-24-0982_demographic Dead '-- '-- '-- '-- 28201 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 679.0 '-- '-- 39a59ccd-64aa-5441-84ae-81793fbe9199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0982_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 474 341 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0982_treatment Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 24798 '-- mg '-- '-- '-- '-- d81ea43b-389a-5133-a0dd-61f3ff1b9e3b '-- yes '-- '-- Chemotherapy +TCGA-OV 206ce0ed-36a4-47ab-ac8e-f6fca6ac5c18 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0982 77 false '-- '-- '-- '-- -28201 679 849e1718-c71c-5361-b7d6-b8cc306d138e '-- not reported female '-- '-- '-- '-- white TCGA-24-0982_demographic Dead '-- '-- '-- '-- 28201 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 679.0 '-- '-- 39a59ccd-64aa-5441-84ae-81793fbe9199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0982_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 615 488 '-- '-- Progressive Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0982_treatment8 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3800 '-- mg '-- '-- '-- '-- f2dfa1cc-3eb9-4356-9bf5-c062afb8347b '-- yes '-- '-- Chemotherapy +TCGA-OV 206ce0ed-36a4-47ab-ac8e-f6fca6ac5c18 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0982 77 false '-- '-- '-- '-- -28201 679 849e1718-c71c-5361-b7d6-b8cc306d138e '-- not reported female '-- '-- '-- '-- white TCGA-24-0982_demographic Dead '-- '-- '-- '-- 28354 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 153 '-- '-- '-- 56980cf0-76d2-4f6b-9b72-803ca1a51f3d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-0982_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-0982_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-0982_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8523df17-2911-4d26-a111-c2d083b85a1e '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 206ce0ed-36a4-47ab-ac8e-f6fca6ac5c18 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0982 77 false '-- '-- '-- '-- -28201 679 849e1718-c71c-5361-b7d6-b8cc306d138e '-- not reported female '-- '-- '-- '-- white TCGA-24-0982_demographic Dead '-- '-- '-- '-- 28354 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 153 '-- '-- '-- 56980cf0-76d2-4f6b-9b72-803ca1a51f3d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-0982_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-0982_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-0982_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 85b20b3d-58ea-4d60-9b18-7ea721cb535b '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 20c6be4d-7baf-4ea0-93e2-a5212f2e9b9c Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2012 81 false '-- '-- '-- '-- -29830 '-- 8498c00e-74f7-5fcf-b735-19fa805babfc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2012_demographic Alive '-- '-- '-- '-- 29830 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 932.0 '-- '-- c2f4be9a-f3ef-5c78-b92f-88a7763041f2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2012_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- 29 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2012_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 537a2b9f-65ee-4e24-acca-60c743cacc5e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 20c6be4d-7baf-4ea0-93e2-a5212f2e9b9c Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2012 81 false '-- '-- '-- '-- -29830 '-- 8498c00e-74f7-5fcf-b735-19fa805babfc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2012_demographic Alive '-- '-- '-- '-- 29830 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 932.0 '-- '-- c2f4be9a-f3ef-5c78-b92f-88a7763041f2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2012_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- 29 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2012_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7aad98b3-a724-40d4-8219-c1b22cbea8d0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 20c6be4d-7baf-4ea0-93e2-a5212f2e9b9c Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2012 81 false '-- '-- '-- '-- -29830 '-- 8498c00e-74f7-5fcf-b735-19fa805babfc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2012_demographic Alive '-- '-- '-- '-- 29830 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 932.0 '-- '-- c2f4be9a-f3ef-5c78-b92f-88a7763041f2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2012_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2012_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- da579c57-8052-52c0-90de-1bb0c90d7898 Adjuvant yes '-- '-- Radiation Therapy, NOS +TCGA-OV 20cf00ea-d7da-42bb-bce7-f005f0b952eb Informed Consent 16 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2348 59 false '-- '-- '-- '-- '-- '-- 6a7ef2cd-8b8c-57fc-af3d-74c34a357885 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-59-2348_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 5481.0 '-- '-- 7fbc9ad4-d3ae-5f9c-bb13-bdfa201dec51 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-59-2348_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 21966708-4e66-4211-add0-f1515b09e362 Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1847 45 false '-- '-- '-- '-- -16529 '-- 7dff2c76-7f44-5910-806b-2355bc702bbf '-- not reported female '-- '-- '-- '-- white TCGA-24-1847_demographic Alive '-- '-- '-- '-- 16529 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 343.0 '-- '-- 3384bda3-487e-5148-92d7-620f7ed61f10 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1847_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 143 28 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-24-1847_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 862 '-- mg '-- '-- '-- '-- 1f6e6b25-750f-46b8-808e-b5da4dd5eccc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 21966708-4e66-4211-add0-f1515b09e362 Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1847 45 false '-- '-- '-- '-- -16529 '-- 7dff2c76-7f44-5910-806b-2355bc702bbf '-- not reported female '-- '-- '-- '-- white TCGA-24-1847_demographic Alive '-- '-- '-- '-- 16529 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 343.0 '-- '-- 3384bda3-487e-5148-92d7-620f7ed61f10 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1847_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 143 28 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-24-1847_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 687 '-- mg '-- '-- '-- '-- 5b59d74a-2379-49f3-9474-c1120ad126c0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 21966708-4e66-4211-add0-f1515b09e362 Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1847 45 false '-- '-- '-- '-- -16529 '-- 7dff2c76-7f44-5910-806b-2355bc702bbf '-- not reported female '-- '-- '-- '-- white TCGA-24-1847_demographic Alive '-- '-- '-- '-- 16529 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 343.0 '-- '-- 3384bda3-487e-5148-92d7-620f7ed61f10 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1847_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1847_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- acbecc65-9c5a-4dd8-8d96-d12543543c69 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 21966708-4e66-4211-add0-f1515b09e362 Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1847 45 false '-- '-- '-- '-- -16529 '-- 7dff2c76-7f44-5910-806b-2355bc702bbf '-- not reported female '-- '-- '-- '-- white TCGA-24-1847_demographic Alive '-- '-- '-- '-- 16529 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 343.0 '-- '-- 3384bda3-487e-5148-92d7-620f7ed61f10 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1847_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 143 28 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1847_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- 733 '-- mg '-- '-- '-- '-- bdef78fe-9ed5-575c-9c8f-1337cd8ecdd5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 18835 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3337.0 '-- '-- 7e4bfb50-f7b9-5a44-a69e-28e275a0517e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 3154 2982 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2027_treatment14 Topotecan '-- '-- '-- '-- '-- '-- '-- 67 '-- mg '-- '-- '-- '-- 069bf078-c3eb-448f-ae37-44eddd36443b '-- yes '-- '-- Chemotherapy +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 18835 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3337.0 '-- '-- 7e4bfb50-f7b9-5a44-a69e-28e275a0517e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 258 6 '-- '-- '-- '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2027_treatment11 Carboplatin '-- '-- '-- '-- '-- '-- '-- 9838 '-- mg '-- '-- '-- '-- 16f2f158-bba0-4390-b197-cde5326ffa41 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 18835 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3337.0 '-- '-- 7e4bfb50-f7b9-5a44-a69e-28e275a0517e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 2540 2400 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2027_treatment13 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 400 '-- mg '-- '-- '-- '-- 213ba8f2-4ff7-41d0-80e1-2431fe1511d9 '-- yes '-- '-- Chemotherapy +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 18835 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3337.0 '-- '-- 7e4bfb50-f7b9-5a44-a69e-28e275a0517e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2027_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 326e6346-1a29-4fb9-b83c-177725f15488 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 18835 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3337.0 '-- '-- 7e4bfb50-f7b9-5a44-a69e-28e275a0517e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 784 624 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2027_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 3411 '-- mg '-- '-- '-- '-- 3f913450-7829-55de-a999-e5e30b983e2e '-- yes '-- '-- Chemotherapy +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 18835 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3337.0 '-- '-- 7e4bfb50-f7b9-5a44-a69e-28e275a0517e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 1985 1614 '-- '-- Recurrent Disease '-- '-- '-- '-- 17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2027_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- 151 '-- mg '-- '-- '-- '-- 49e84fba-4a17-4c29-81af-8c1d39f001f6 '-- yes '-- '-- Chemotherapy +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 18835 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3337.0 '-- '-- 7e4bfb50-f7b9-5a44-a69e-28e275a0517e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 3273 3168 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2027_treatment8 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1052 '-- mg '-- '-- '-- '-- 62d8cd80-15ce-4a93-a867-bd73c33a3f4c '-- yes '-- '-- Chemotherapy +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 18835 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3337.0 '-- '-- 7e4bfb50-f7b9-5a44-a69e-28e275a0517e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 784 624 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2027_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1860 '-- mg '-- '-- '-- '-- 744d79a0-9bb4-4802-ad69-130b537d90e3 '-- yes '-- '-- Chemotherapy +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 18835 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3337.0 '-- '-- 7e4bfb50-f7b9-5a44-a69e-28e275a0517e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 2216 2048 '-- '-- Recurrent Disease '-- '-- '-- '-- 20 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2027_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1747 '-- mg '-- '-- '-- '-- 74b4b448-38df-44c8-b154-4ec4bc3cc77f '-- yes '-- '-- Chemotherapy +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 18835 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3337.0 '-- '-- 7e4bfb50-f7b9-5a44-a69e-28e275a0517e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 2951 2759 '-- '-- Progressive Disease '-- '-- '-- '-- 18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2027_treatment9 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1108 '-- mg '-- '-- '-- '-- 7eb89c1f-5a24-4bc8-85cf-5d27e603aa52 '-- yes '-- '-- Chemotherapy +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 18835 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3337.0 '-- '-- 7e4bfb50-f7b9-5a44-a69e-28e275a0517e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 784 624 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2027_treatment10 Cisplatin '-- '-- '-- '-- '-- '-- '-- 88 '-- mg '-- '-- '-- '-- c529f9f3-cbb7-4f9e-97a6-a21dbcd28e57 '-- yes '-- '-- Chemotherapy +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 18835 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3337.0 '-- '-- 7e4bfb50-f7b9-5a44-a69e-28e275a0517e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 2745 2602 '-- '-- Progressive Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2027_treatment12 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- 311 '-- mg '-- '-- '-- '-- ca39274d-c6d7-44b6-820b-79593ad7a2ac '-- yes '-- '-- Chemotherapy +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 18835 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3337.0 '-- '-- 7e4bfb50-f7b9-5a44-a69e-28e275a0517e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 2591 2577 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2027_treatment2 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 1992 '-- mg '-- '-- '-- '-- ed18fe32-696f-4920-aad2-95d064687528 '-- yes '-- '-- Chemotherapy +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 18835 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3337.0 '-- '-- 7e4bfb50-f7b9-5a44-a69e-28e275a0517e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 258 6 '-- '-- '-- '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2027_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 3724 '-- mg '-- '-- '-- '-- fabdd2fb-6ad9-4e41-aac7-842b5254fa48 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 18835 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3337.0 '-- '-- 7e4bfb50-f7b9-5a44-a69e-28e275a0517e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 2591 2577 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2027_treatment7 Cisplatin '-- '-- '-- '-- '-- '-- '-- 83 '-- mg '-- '-- '-- '-- faea4e47-8c4e-4c45-8883-0a74835ce74a '-- yes '-- '-- Chemotherapy +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 19452 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 617 '-- '-- '-- a623a655-4833-4629-8ba5-ffeea96c1f26 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2027_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2027_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2027_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 79c009c9-c027-4bc9-9fcb-e8cd12143d67 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 219f54ef-4235-482d-b799-f2fa9930105c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2027 51 false '-- '-- '-- '-- -18835 3337 5baa23ff-1696-5388-a54c-c4fbd711013e '-- not reported female '-- '-- '-- '-- white TCGA-24-2027_demographic Dead '-- '-- '-- '-- 19452 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 617 '-- '-- '-- a623a655-4833-4629-8ba5-ffeea96c1f26 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2027_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2027_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2027_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d1206997-6727-4d88-9871-9533d3af66eb '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 21f6bf91-dfc6-4a59-8b76-88a0f95c7b47 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1544 71 false '-- '-- '-- '-- -26141 820 d6576dc5-1505-5552-85bd-65620144f49e '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1544_demographic Dead '-- '-- '-- '-- 26784 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 643 '-- '-- '-- 4dc9a70e-5f7a-45b1-972e-aa5821eae909 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1544_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1544_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1544_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a1dcc9b0-eaa8-4a7a-94ba-db6cfc54fead '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 21f6bf91-dfc6-4a59-8b76-88a0f95c7b47 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1544 71 false '-- '-- '-- '-- -26141 820 d6576dc5-1505-5552-85bd-65620144f49e '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1544_demographic Dead '-- '-- '-- '-- 26784 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 643 '-- '-- '-- 4dc9a70e-5f7a-45b1-972e-aa5821eae909 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1544_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1544_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1544_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b094e09a-e098-4800-8ca5-82f137e46f0d '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 21f6bf91-dfc6-4a59-8b76-88a0f95c7b47 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1544 71 false '-- '-- '-- '-- -26141 820 d6576dc5-1505-5552-85bd-65620144f49e '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1544_demographic Dead '-- '-- '-- '-- 26141 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 820.0 '-- '-- b05e9689-4d0c-5974-965f-d8c1411d17ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1544_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 203 18 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1544_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1356 '-- mg '-- '-- '-- '-- 6b784789-cbf5-4077-9755-1609dacd0b59 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 21f6bf91-dfc6-4a59-8b76-88a0f95c7b47 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1544 71 false '-- '-- '-- '-- -26141 820 d6576dc5-1505-5552-85bd-65620144f49e '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1544_demographic Dead '-- '-- '-- '-- 26141 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 820.0 '-- '-- b05e9689-4d0c-5974-965f-d8c1411d17ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1544_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 470 243 '-- '-- Persistent Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1544_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 2100 '-- mg '-- '-- '-- '-- 7c82e619-991e-446e-a092-613360963daf Not Reported yes '-- '-- Chemotherapy +TCGA-OV 21f6bf91-dfc6-4a59-8b76-88a0f95c7b47 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1544 71 false '-- '-- '-- '-- -26141 820 d6576dc5-1505-5552-85bd-65620144f49e '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1544_demographic Dead '-- '-- '-- '-- 26141 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 820.0 '-- '-- b05e9689-4d0c-5974-965f-d8c1411d17ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1544_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 799 777 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1544_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 595 '-- mg '-- '-- '-- '-- 7e5eea55-c677-5c45-8463-f4efa49ca963 '-- yes '-- '-- Chemotherapy +TCGA-OV 21f6bf91-dfc6-4a59-8b76-88a0f95c7b47 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1544 71 false '-- '-- '-- '-- -26141 820 d6576dc5-1505-5552-85bd-65620144f49e '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1544_demographic Dead '-- '-- '-- '-- 26141 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 820.0 '-- '-- b05e9689-4d0c-5974-965f-d8c1411d17ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1544_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 203 18 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1544_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3080 '-- mg '-- '-- '-- '-- 95a9024a-e9d5-4d9b-a353-3e8792cf3c36 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 21f6bf91-dfc6-4a59-8b76-88a0f95c7b47 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1544 71 false '-- '-- '-- '-- -26141 820 d6576dc5-1505-5552-85bd-65620144f49e '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1544_demographic Dead '-- '-- '-- '-- 26141 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 820.0 '-- '-- b05e9689-4d0c-5974-965f-d8c1411d17ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1544_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 638 533 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1544_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2500 '-- mg '-- '-- '-- '-- 9d784194-e741-470f-849c-e4121e0185d0 '-- yes '-- '-- Chemotherapy +TCGA-OV 21f6bf91-dfc6-4a59-8b76-88a0f95c7b47 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1544 71 false '-- '-- '-- '-- -26141 820 d6576dc5-1505-5552-85bd-65620144f49e '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1544_demographic Dead '-- '-- '-- '-- 26141 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 820.0 '-- '-- b05e9689-4d0c-5974-965f-d8c1411d17ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1544_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 203 18 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1544_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- 13 '-- mg '-- '-- '-- '-- e72df009-ee07-4ab6-b3d6-66a4220bed21 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 21f6bf91-dfc6-4a59-8b76-88a0f95c7b47 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1544 71 false '-- '-- '-- '-- -26141 820 d6576dc5-1505-5552-85bd-65620144f49e '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1544_demographic Dead '-- '-- '-- '-- 26141 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 820.0 '-- '-- b05e9689-4d0c-5974-965f-d8c1411d17ef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1544_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1544_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f64246f6-811d-4577-83d6-0144f4605e5d Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 22178c3c-6b04-46d8-8041-dc83fa195029 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2404 38 false '-- '-- '-- '-- -14184 883 2491559b-7a65-500d-b886-d23b26c6aadd '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2404_demographic Dead '-- '-- '-- '-- 14610 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 426 '-- '-- '-- 3d8f4203-7f48-4c30-8322-ca947353deab false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-2404_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-2404_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2404_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2c11798c-3d00-4d64-a3e3-ab93be820fef '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 22178c3c-6b04-46d8-8041-dc83fa195029 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2404 38 false '-- '-- '-- '-- -14184 883 2491559b-7a65-500d-b886-d23b26c6aadd '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2404_demographic Dead '-- '-- '-- '-- 14610 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 426 '-- '-- '-- 3d8f4203-7f48-4c30-8322-ca947353deab false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-2404_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-2404_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2404_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2cae9564-8004-4701-8389-8c770f8a7d0e '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 22178c3c-6b04-46d8-8041-dc83fa195029 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2404 38 false '-- '-- '-- '-- -14184 883 2491559b-7a65-500d-b886-d23b26c6aadd '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2404_demographic Dead '-- '-- '-- '-- 14184 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 883.0 '-- '-- 8a61260e-5e20-5dc5-94bf-549afb0dbbd8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2404_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2404_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1e072972-cacb-45ee-a13c-0647b7214599 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 22178c3c-6b04-46d8-8041-dc83fa195029 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2404 38 false '-- '-- '-- '-- -14184 883 2491559b-7a65-500d-b886-d23b26c6aadd '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2404_demographic Dead '-- '-- '-- '-- 14184 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 883.0 '-- '-- 8a61260e-5e20-5dc5-94bf-549afb0dbbd8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2404_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 306 184 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2404_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5ef16413-a656-402d-9e56-3204f429351c '-- yes '-- '-- Chemotherapy +TCGA-OV 22178c3c-6b04-46d8-8041-dc83fa195029 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2404 38 false '-- '-- '-- '-- -14184 883 2491559b-7a65-500d-b886-d23b26c6aadd '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2404_demographic Dead '-- '-- '-- '-- 14184 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 883.0 '-- '-- 8a61260e-5e20-5dc5-94bf-549afb0dbbd8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2404_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 122 0 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2404_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 87318159-dd0c-52a3-be85-bf3c51c29f67 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 22178c3c-6b04-46d8-8041-dc83fa195029 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2404 38 false '-- '-- '-- '-- -14184 883 2491559b-7a65-500d-b886-d23b26c6aadd '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2404_demographic Dead '-- '-- '-- '-- 14184 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 883.0 '-- '-- 8a61260e-5e20-5dc5-94bf-549afb0dbbd8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2404_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 306 184 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2404_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bd020a97-4697-4295-8bf7-21623b2d02f4 '-- yes '-- '-- Chemotherapy +TCGA-OV 22178c3c-6b04-46d8-8041-dc83fa195029 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2404 38 false '-- '-- '-- '-- -14184 883 2491559b-7a65-500d-b886-d23b26c6aadd '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2404_demographic Dead '-- '-- '-- '-- 14184 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 883.0 '-- '-- 8a61260e-5e20-5dc5-94bf-549afb0dbbd8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2404_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 122 0 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2404_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c6388364-a8e4-4079-8be9-2ed301709a98 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 23d32627-9fd2-4312-bcda-ee7409e3983f Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1784 55 false '-- '-- '-- '-- -20210 '-- 331533e8-2b22-538a-bb92-3ba7f81c58a2 '-- not reported female '-- '-- '-- '-- white TCGA-29-1784_demographic Alive '-- '-- '-- '-- 20210 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 163.0 '-- '-- 3e3aadeb-f781-5f50-86b3-d49f1aa93c4f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1784_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 59 59 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1784_treatment Nab-paclitaxel '-- '-- '-- '-- '-- '-- '-- 300 '-- mg '-- '-- '-- '-- 23d48b9a-e5f7-5aee-bb22-0a3c67d096a5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 23d32627-9fd2-4312-bcda-ee7409e3983f Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1784 55 false '-- '-- '-- '-- -20210 '-- 331533e8-2b22-538a-bb92-3ba7f81c58a2 '-- not reported female '-- '-- '-- '-- white TCGA-29-1784_demographic Alive '-- '-- '-- '-- 20210 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 163.0 '-- '-- 3e3aadeb-f781-5f50-86b3-d49f1aa93c4f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1784_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 136 17 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1784_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3330 '-- mg '-- '-- '-- '-- 78fc38df-b24c-47c8-b94e-83028092e483 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 23d32627-9fd2-4312-bcda-ee7409e3983f Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1784 55 false '-- '-- '-- '-- -20210 '-- 331533e8-2b22-538a-bb92-3ba7f81c58a2 '-- not reported female '-- '-- '-- '-- white TCGA-29-1784_demographic Alive '-- '-- '-- '-- 20210 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 163.0 '-- '-- 3e3aadeb-f781-5f50-86b3-d49f1aa93c4f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1784_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1784_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a6a379db-4e93-4004-a3d7-a876247acd8b Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 23d32627-9fd2-4312-bcda-ee7409e3983f Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1784 55 false '-- '-- '-- '-- -20210 '-- 331533e8-2b22-538a-bb92-3ba7f81c58a2 '-- not reported female '-- '-- '-- '-- white TCGA-29-1784_demographic Alive '-- '-- '-- '-- 20210 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 163.0 '-- '-- 3e3aadeb-f781-5f50-86b3-d49f1aa93c4f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1784_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 17 17 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1784_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 270 '-- mg '-- '-- '-- '-- e46f10f9-2355-4990-aeea-5e5345b45b21 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 23d32627-9fd2-4312-bcda-ee7409e3983f Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1784 55 false '-- '-- '-- '-- -20210 '-- 331533e8-2b22-538a-bb92-3ba7f81c58a2 '-- not reported female '-- '-- '-- '-- white TCGA-29-1784_demographic Alive '-- '-- '-- '-- 20210 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 163.0 '-- '-- 3e3aadeb-f781-5f50-86b3-d49f1aa93c4f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1784_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 24 23 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1784_treatment3 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 2480 '-- mg '-- '-- '-- '-- f5e90ba6-a600-47b1-9125-ac98f8f8981d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 242943fe-1fa0-4a12-8f7e-9c6c4af1194d Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2088 51 false '-- '-- '-- '-- -18770 '-- f10f87ea-db88-50ac-8b62-e269aa16ba67 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2088_demographic Alive '-- '-- '-- '-- 18770 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 145.0 '-- '-- 6e4a13d0-dffc-5780-9f24-ee952362f22d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2088_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2088_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0620c19a-1e05-4d55-a864-ef3c568c63b5 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 242943fe-1fa0-4a12-8f7e-9c6c4af1194d Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2088 51 false '-- '-- '-- '-- -18770 '-- f10f87ea-db88-50ac-8b62-e269aa16ba67 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2088_demographic Alive '-- '-- '-- '-- 18770 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 145.0 '-- '-- 6e4a13d0-dffc-5780-9f24-ee952362f22d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2088_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 145 34 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2088_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3900 '-- mg '-- '-- '-- '-- afebd551-2446-4f52-9a2a-b41485f9aafe Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 242943fe-1fa0-4a12-8f7e-9c6c4af1194d Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2088 51 false '-- '-- '-- '-- -18770 '-- f10f87ea-db88-50ac-8b62-e269aa16ba67 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2088_demographic Alive '-- '-- '-- '-- 18770 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 145.0 '-- '-- 6e4a13d0-dffc-5780-9f24-ee952362f22d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2088_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 145 34 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2088_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- 900 '-- mg '-- '-- '-- '-- ef2a5e93-9f0f-53c1-96d5-da124011ce36 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 Informed Consent 1877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1763 43 false '-- '-- '-- '-- -16021 '-- 8ae2cac3-bc30-5b1f-969f-cad425be9356 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1763_demographic Alive '-- '-- '-- '-- 16449 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 428 '-- '-- '-- 98c9de89-8261-469c-9c72-ca953537f4c7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1763_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1763_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1763_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 28a92c4b-58d5-481c-899f-b02be1b78d98 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 Informed Consent 1877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1763 43 false '-- '-- '-- '-- -16021 '-- 8ae2cac3-bc30-5b1f-969f-cad425be9356 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1763_demographic Alive '-- '-- '-- '-- 16449 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 428 '-- '-- '-- 98c9de89-8261-469c-9c72-ca953537f4c7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1763_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1763_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1763_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d7b2cada-4c1a-4cdc-9fc5-89d504d4610d '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 Informed Consent 1877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1763 43 false '-- '-- '-- '-- -16021 '-- 8ae2cac3-bc30-5b1f-969f-cad425be9356 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1763_demographic Alive '-- '-- '-- '-- 16021 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2032.0 '-- '-- d1f6b014-7b53-518b-a401-c80c673bf79b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1763_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1325 1283 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1763_treatment11 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 2000 '-- mg '-- '-- '-- '-- 270de7c2-617b-4116-aaf4-90814594700c '-- yes '-- '-- Chemotherapy +TCGA-OV 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 Informed Consent 1877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1763 43 false '-- '-- '-- '-- -16021 '-- 8ae2cac3-bc30-5b1f-969f-cad425be9356 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1763_demographic Alive '-- '-- '-- '-- 16021 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2032.0 '-- '-- d1f6b014-7b53-518b-a401-c80c673bf79b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1763_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 100 15 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1763_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3175 '-- mg '-- '-- '-- '-- 271ded09-d539-463a-8b65-cce6e77d8560 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 Informed Consent 1877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1763 43 false '-- '-- '-- '-- -16021 '-- 8ae2cac3-bc30-5b1f-969f-cad425be9356 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1763_demographic Alive '-- '-- '-- '-- 16021 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2032.0 '-- '-- d1f6b014-7b53-518b-a401-c80c673bf79b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1763_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 2252 2189 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1763_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 4e8806da-f713-42d1-b04a-86024b07c8e2 '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 Informed Consent 1877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1763 43 false '-- '-- '-- '-- -16021 '-- 8ae2cac3-bc30-5b1f-969f-cad425be9356 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1763_demographic Alive '-- '-- '-- '-- 16021 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2032.0 '-- '-- d1f6b014-7b53-518b-a401-c80c673bf79b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1763_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 100 15 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1763_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1645 '-- mg '-- '-- '-- '-- 66a9da14-f866-41e5-acc7-15a1a1f4a197 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 Informed Consent 1877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1763 43 false '-- '-- '-- '-- -16021 '-- 8ae2cac3-bc30-5b1f-969f-cad425be9356 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1763_demographic Alive '-- '-- '-- '-- 16021 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2032.0 '-- '-- d1f6b014-7b53-518b-a401-c80c673bf79b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1763_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1367 1346 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1763_treatment10 Carboplatin '-- '-- '-- '-- '-- '-- '-- 435 '-- mg '-- '-- '-- '-- 6925c731-32bc-45b7-a100-6422c1eb5ab6 '-- yes '-- '-- Chemotherapy +TCGA-OV 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 Informed Consent 1877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1763 43 false '-- '-- '-- '-- -16021 '-- 8ae2cac3-bc30-5b1f-969f-cad425be9356 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1763_demographic Alive '-- '-- '-- '-- 16021 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2032.0 '-- '-- d1f6b014-7b53-518b-a401-c80c673bf79b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1763_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 2126 2049 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1763_treatment7 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 80 '-- mg '-- '-- '-- '-- 96d4ccb3-caf1-4446-82ae-2ad9322124c7 '-- yes '-- '-- Chemotherapy +TCGA-OV 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 Informed Consent 1877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1763 43 false '-- '-- '-- '-- -16021 '-- 8ae2cac3-bc30-5b1f-969f-cad425be9356 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1763_demographic Alive '-- '-- '-- '-- 16021 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2032.0 '-- '-- d1f6b014-7b53-518b-a401-c80c673bf79b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1763_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1979 1948 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1763_treatment '-- '-- '-- '-- '-- '-- Locoregional Site '-- '-- '-- '-- '-- '-- '-- '-- b9499b9f-eef9-51af-92a5-55e855112876 '-- yes '-- '-- Radiation, External Beam +TCGA-OV 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 Informed Consent 1877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1763 43 false '-- '-- '-- '-- -16021 '-- 8ae2cac3-bc30-5b1f-969f-cad425be9356 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1763_demographic Alive '-- '-- '-- '-- 16021 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2032.0 '-- '-- d1f6b014-7b53-518b-a401-c80c673bf79b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1763_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 2161 2049 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1763_treatment8 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 1000 '-- mg '-- '-- '-- '-- d3ac99a8-31ad-498b-96b4-b6c4a61b52a1 '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 Informed Consent 1877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1763 43 false '-- '-- '-- '-- -16021 '-- 8ae2cac3-bc30-5b1f-969f-cad425be9356 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1763_demographic Alive '-- '-- '-- '-- 16021 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2032.0 '-- '-- d1f6b014-7b53-518b-a401-c80c673bf79b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1763_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1376 1346 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1763_treatment9 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 350 '-- mg '-- '-- '-- '-- db4a2b0a-cac2-4e8a-be42-dd85fec00bfd '-- yes '-- '-- Chemotherapy +TCGA-OV 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 Informed Consent 1877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1763 43 false '-- '-- '-- '-- -16021 '-- 8ae2cac3-bc30-5b1f-969f-cad425be9356 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1763_demographic Alive '-- '-- '-- '-- 16021 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2032.0 '-- '-- d1f6b014-7b53-518b-a401-c80c673bf79b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1763_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 579 450 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1763_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 675 '-- mg '-- '-- '-- '-- e1566cbe-b7da-484b-8d69-d8aa6b048e0b '-- yes '-- '-- Chemotherapy +TCGA-OV 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 Informed Consent 1877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1763 43 false '-- '-- '-- '-- -16021 '-- 8ae2cac3-bc30-5b1f-969f-cad425be9356 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1763_demographic Alive '-- '-- '-- '-- 16021 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2032.0 '-- '-- d1f6b014-7b53-518b-a401-c80c673bf79b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1763_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1839 1727 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1763_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 350 '-- mg '-- '-- '-- '-- f26adedf-1aa6-41b9-b7d0-b33a0839207b '-- yes '-- '-- Chemotherapy +TCGA-OV 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 Informed Consent 1877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1763 43 false '-- '-- '-- '-- -16021 '-- 8ae2cac3-bc30-5b1f-969f-cad425be9356 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1763_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- de3aa864-53c6-4c25-b91c-202c5527db3d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1763_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1763_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1868 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1763_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3f268038-2699-436f-8471-f36ae3076d87 '-- yes '-- '-- Surgery, NOS +TCGA-OV 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 Informed Consent 1877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1763 43 false '-- '-- '-- '-- -16021 '-- 8ae2cac3-bc30-5b1f-969f-cad425be9356 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1763_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- de3aa864-53c6-4c25-b91c-202c5527db3d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1763_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1763_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1763_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 44f6911a-d452-4318-93ef-dd012cf2cfc2 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 Informed Consent 1877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1763 43 false '-- '-- '-- '-- -16021 '-- 8ae2cac3-bc30-5b1f-969f-cad425be9356 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1763_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- de3aa864-53c6-4c25-b91c-202c5527db3d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1763_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1763_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1763_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 548017d7-2c13-4f23-b48b-8644ccec5e29 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 246404ae-3bc4-4db7-aee3-0346ca3f7322 Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2647 49 false '-- '-- '-- '-- -18205 '-- ef31e7aa-83ca-543a-bd9e-f0570a3961e5 '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-23-2647_demographic Alive '-- '-- '-- '-- 18205 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 135.0 '-- '-- f7f623c2-0b05-5d2f-a713-4b3c5211ae72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2647_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2647_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a22ff460-a059-4e54-a108-d41c4de9716f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 246404ae-3bc4-4db7-aee3-0346ca3f7322 Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2647 49 false '-- '-- '-- '-- -18205 '-- ef31e7aa-83ca-543a-bd9e-f0570a3961e5 '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-23-2647_demographic Alive '-- '-- '-- '-- 18205 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 135.0 '-- '-- f7f623c2-0b05-5d2f-a713-4b3c5211ae72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2647_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2647_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b5a7fbfc-839f-5874-8e79-aea2bd3fd63f Adjuvant yes Not Reported '-- Pharmaceutical Therapy, NOS +TCGA-OV 2517ca7a-6057-4c19-b7e1-f6d078e9881a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2026 79 false '-- '-- '-- '-- -29050 1059 108043f3-cc98-5a3e-9410-f2aea4bf95ec '-- not reported female '-- '-- '-- '-- white TCGA-24-2026_demographic Dead '-- '-- '-- '-- 29050 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1059.0 '-- '-- d2d82e4b-87db-5610-a968-930933e83fb7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2026_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2026_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5fd7e2ef-9e7f-4cfd-9d31-bfc423645b08 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 2517ca7a-6057-4c19-b7e1-f6d078e9881a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2026 79 false '-- '-- '-- '-- -29050 1059 108043f3-cc98-5a3e-9410-f2aea4bf95ec '-- not reported female '-- '-- '-- '-- white TCGA-24-2026_demographic Dead '-- '-- '-- '-- 29050 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1059.0 '-- '-- d2d82e4b-87db-5610-a968-930933e83fb7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2026_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- '-- 23 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2026_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 65c0746e-3c0a-4df2-9a09-e3afb8829a94 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2517ca7a-6057-4c19-b7e1-f6d078e9881a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2026 79 false '-- '-- '-- '-- -29050 1059 108043f3-cc98-5a3e-9410-f2aea4bf95ec '-- not reported female '-- '-- '-- '-- white TCGA-24-2026_demographic Dead '-- '-- '-- '-- 29050 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1059.0 '-- '-- d2d82e4b-87db-5610-a968-930933e83fb7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2026_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- '-- 23 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2026_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 68f6ac27-3f36-54a2-b22a-4c15522f35dc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 25a0a9e6-4f5b-45d8-8f34-abfd31d5ff1b Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1346 73 false '-- '-- '-- '-- -26865 '-- 7a199eec-8a45-543f-8a2b-7b454284e9c2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1346_demographic Alive '-- '-- '-- '-- 26865 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1993.0 '-- '-- 9058e463-1d79-5c60-9a71-7abb6da8bb73 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1346_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1346_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 131d8877-bd4b-5929-b6e6-4d24d2d7a69f Adjuvant no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 25a0a9e6-4f5b-45d8-8f34-abfd31d5ff1b Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1346 73 false '-- '-- '-- '-- -26865 '-- 7a199eec-8a45-543f-8a2b-7b454284e9c2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1346_demographic Alive '-- '-- '-- '-- 26865 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1993.0 '-- '-- 9058e463-1d79-5c60-9a71-7abb6da8bb73 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1346_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1346_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dd4507e2-2674-4e25-8c12-f13c4c65d07a Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 260723bf-9620-450d-bf31-f3a45543f9db Informed Consent -15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-OY-A56P 48 false '-- '-- '-- United States -17580 '-- 24bd713d-fde2-55f4-b722-af81e504bde1 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-OY-A56P_demographic Alive '-- '-- '-- '-- 18374 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 794 '-- '-- '-- 555f158b-eb4f-406f-a71f-c672e1eb7533 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-OY-A56P_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-OY-A56P_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-OY-A56P_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 29970bc9-0f51-426e-aceb-2324ae1dcd88 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 260723bf-9620-450d-bf31-f3a45543f9db Informed Consent -15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-OY-A56P 48 false '-- '-- '-- United States -17580 '-- 24bd713d-fde2-55f4-b722-af81e504bde1 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-OY-A56P_demographic Alive '-- '-- '-- '-- 18374 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 794 '-- '-- '-- 752c8837-b2ce-4436-832c-81cdb77b2f16 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8460/3 '-- '-- '-- '-- '-- '-- Papillary serous cystadenocarcinoma '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-OY-A56P_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-OY-A56P_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-OY-A56P_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3760a16a-508a-4d9f-ae19-8c5171b85f34 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 260723bf-9620-450d-bf31-f3a45543f9db Informed Consent -15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-OY-A56P 48 false '-- '-- '-- United States -17580 '-- 24bd713d-fde2-55f4-b722-af81e504bde1 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-OY-A56P_demographic Alive '-- '-- '-- '-- 17580 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1207.0 '-- '-- 82ad7dba-92ee-55f3-ba07-577d050bf995 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8460/3 '-- '-- '-- '-- '-- '-- Papillary serous cystadenocarcinoma '-- '-- no No '-- R2 '-- '-- Ovary '-- '-- TCGA-OY-A56P_diagnosis '-- No Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2010 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-OY-A56P_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 31223cab-b108-4ee1-9c3f-d2e6daa37993 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 260723bf-9620-450d-bf31-f3a45543f9db Informed Consent -15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-OY-A56P 48 false '-- '-- '-- United States -17580 '-- 24bd713d-fde2-55f4-b722-af81e504bde1 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-OY-A56P_demographic Alive '-- '-- '-- '-- 17580 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1207.0 '-- '-- 82ad7dba-92ee-55f3-ba07-577d050bf995 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8460/3 '-- '-- '-- '-- '-- '-- Papillary serous cystadenocarcinoma '-- '-- no No '-- R2 '-- '-- Ovary '-- '-- TCGA-OY-A56P_diagnosis '-- No Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2010 '-- No '-- 160 26 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-OY-A56P_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d0deb2cc-8645-514b-87f1-025000fd7526 '-- yes Complete Response '-- Chemotherapy +TCGA-OV 260723bf-9620-450d-bf31-f3a45543f9db Informed Consent -15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-OY-A56P 48 false '-- '-- '-- United States -17580 '-- 24bd713d-fde2-55f4-b722-af81e504bde1 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-OY-A56P_demographic Alive '-- '-- '-- '-- 17580 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1207.0 '-- '-- 82ad7dba-92ee-55f3-ba07-577d050bf995 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8460/3 '-- '-- '-- '-- '-- '-- Papillary serous cystadenocarcinoma '-- '-- no No '-- R2 '-- '-- Ovary '-- '-- TCGA-OY-A56P_diagnosis '-- No Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2010 '-- No '-- 160 26 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-OY-A56P_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- de65de46-481e-4a70-82f3-385011b1938f '-- yes Complete Response '-- Chemotherapy +TCGA-OV 263e85e2-7b6f-453f-8fd0-e5ea1409fece Informed Consent -10 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1630 73 false '-- '-- '-- '-- -27006 1162 8731f7e7-074d-5810-ae94-e09b25cf790d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1630_demographic Dead '-- '-- '-- '-- 27006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1162.0 '-- '-- 3c66f500-b2a5-5482-af5d-a85b32db3b8f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1630_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1630_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6434071f-6e27-411d-bc75-bcb73e980431 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 263e85e2-7b6f-453f-8fd0-e5ea1409fece Informed Consent -10 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1630 73 false '-- '-- '-- '-- -27006 1162 8731f7e7-074d-5810-ae94-e09b25cf790d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1630_demographic Dead '-- '-- '-- '-- 27006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1162.0 '-- '-- 3c66f500-b2a5-5482-af5d-a85b32db3b8f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1630_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- 33 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1630_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 79b18290-a7b8-5b0c-9922-a85b4d5adcc6 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 263e85e2-7b6f-453f-8fd0-e5ea1409fece Informed Consent -10 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1630 73 false '-- '-- '-- '-- -27006 1162 8731f7e7-074d-5810-ae94-e09b25cf790d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1630_demographic Dead '-- '-- '-- '-- 27006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1162.0 '-- '-- 3c66f500-b2a5-5482-af5d-a85b32db3b8f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1630_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- 33 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1630_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- acfcfa22-f818-4fc3-98f2-59d5a8b4b33d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 26558703-a659-43f2-86cb-0695989bc14e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1924 65 false '-- '-- '-- '-- -23801 919 ebc2ba2c-fc56-5869-b71c-e4f8b4479474 '-- not reported female '-- '-- '-- '-- white TCGA-24-1924_demographic Dead '-- '-- '-- '-- 23801 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 919.0 '-- '-- 2d0eccd4-29ce-5014-9267-b0c39ebbf933 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1924_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 743 706 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-1924_treatment6 Altretamine '-- '-- '-- '-- '-- '-- '-- 12600 '-- mg '-- '-- '-- '-- 540e1de8-6626-46ea-b212-5915c2072f56 '-- yes '-- '-- Chemotherapy +TCGA-OV 26558703-a659-43f2-86cb-0695989bc14e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1924 65 false '-- '-- '-- '-- -23801 919 ebc2ba2c-fc56-5869-b71c-e4f8b4479474 '-- not reported female '-- '-- '-- '-- white TCGA-24-1924_demographic Dead '-- '-- '-- '-- 23801 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 919.0 '-- '-- 2d0eccd4-29ce-5014-9267-b0c39ebbf933 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1924_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 681 597 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1924_treatment4 Cisplatin '-- '-- '-- '-- '-- '-- '-- 441 '-- mg '-- '-- '-- '-- 56c7c373-092e-4317-bd86-e5e16fc232bc '-- yes '-- '-- Chemotherapy +TCGA-OV 26558703-a659-43f2-86cb-0695989bc14e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1924 65 false '-- '-- '-- '-- -23801 919 ebc2ba2c-fc56-5869-b71c-e4f8b4479474 '-- not reported female '-- '-- '-- '-- white TCGA-24-1924_demographic Dead '-- '-- '-- '-- 23801 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 919.0 '-- '-- 2d0eccd4-29ce-5014-9267-b0c39ebbf933 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1924_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 525 329 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1924_treatment7 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 576 '-- mg '-- '-- '-- '-- 991d649e-fae8-468f-9dbf-89734c29201a '-- yes '-- '-- Chemotherapy +TCGA-OV 26558703-a659-43f2-86cb-0695989bc14e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1924 65 false '-- '-- '-- '-- -23801 919 ebc2ba2c-fc56-5869-b71c-e4f8b4479474 '-- not reported female '-- '-- '-- '-- white TCGA-24-1924_demographic Dead '-- '-- '-- '-- 23801 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 919.0 '-- '-- 2d0eccd4-29ce-5014-9267-b0c39ebbf933 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1924_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 681 597 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1924_treatment2 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 7914 '-- mg '-- '-- '-- '-- a33a3246-fb6d-4410-8e04-ad0b49adce09 '-- yes '-- '-- Chemotherapy +TCGA-OV 26558703-a659-43f2-86cb-0695989bc14e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1924 65 false '-- '-- '-- '-- -23801 919 ebc2ba2c-fc56-5869-b71c-e4f8b4479474 '-- not reported female '-- '-- '-- '-- white TCGA-24-1924_demographic Dead '-- '-- '-- '-- 23801 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 919.0 '-- '-- 2d0eccd4-29ce-5014-9267-b0c39ebbf933 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1924_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 583 553 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1924_treatment Topotecan '-- '-- '-- '-- '-- '-- '-- 18 '-- mg '-- '-- '-- '-- ba91a268-44c4-5348-b906-56556ec299ff '-- yes '-- '-- Chemotherapy +TCGA-OV 26558703-a659-43f2-86cb-0695989bc14e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1924 65 false '-- '-- '-- '-- -23801 919 ebc2ba2c-fc56-5869-b71c-e4f8b4479474 '-- not reported female '-- '-- '-- '-- white TCGA-24-1924_demographic Dead '-- '-- '-- '-- 23801 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 919.0 '-- '-- 2d0eccd4-29ce-5014-9267-b0c39ebbf933 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1924_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1924_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c16ec088-4a40-4afd-8abf-5ef4a85f2fe5 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 26558703-a659-43f2-86cb-0695989bc14e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1924 65 false '-- '-- '-- '-- -23801 919 ebc2ba2c-fc56-5869-b71c-e4f8b4479474 '-- not reported female '-- '-- '-- '-- white TCGA-24-1924_demographic Dead '-- '-- '-- '-- 23801 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 919.0 '-- '-- 2d0eccd4-29ce-5014-9267-b0c39ebbf933 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1924_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 161 21 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1924_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1621 '-- mg '-- '-- '-- '-- ee827b1e-fb59-4f78-8714-71dcd8e358ee Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 26558703-a659-43f2-86cb-0695989bc14e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1924 65 false '-- '-- '-- '-- -23801 919 ebc2ba2c-fc56-5869-b71c-e4f8b4479474 '-- not reported female '-- '-- '-- '-- white TCGA-24-1924_demographic Dead '-- '-- '-- '-- 23801 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 919.0 '-- '-- 2d0eccd4-29ce-5014-9267-b0c39ebbf933 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1924_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 161 21 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1924_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2595 '-- mg '-- '-- '-- '-- f8f6bfaf-014d-478c-ac59-6649843c1f4e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 26558703-a659-43f2-86cb-0695989bc14e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1924 65 false '-- '-- '-- '-- -23801 919 ebc2ba2c-fc56-5869-b71c-e4f8b4479474 '-- not reported female '-- '-- '-- '-- white TCGA-24-1924_demographic Dead '-- '-- '-- '-- 23801 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 919.0 '-- '-- 2d0eccd4-29ce-5014-9267-b0c39ebbf933 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1924_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 583 553 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1924_treatment8 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- 184 '-- mg '-- '-- '-- '-- fe3a611b-1d63-4de3-ae27-247b916bde09 '-- yes '-- '-- Chemotherapy +TCGA-OV 26558703-a659-43f2-86cb-0695989bc14e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1924 65 false '-- '-- '-- '-- -23801 919 ebc2ba2c-fc56-5869-b71c-e4f8b4479474 '-- not reported female '-- '-- '-- '-- white TCGA-24-1924_demographic Dead '-- '-- '-- '-- 24121 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 320 '-- '-- '-- a1ca2bf4-dc0c-4a34-8da6-1fbd89c6e8e3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1924_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1924_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1924_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 64ac5c37-1128-4789-82bf-96bfd86d0ff8 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 26558703-a659-43f2-86cb-0695989bc14e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1924 65 false '-- '-- '-- '-- -23801 919 ebc2ba2c-fc56-5869-b71c-e4f8b4479474 '-- not reported female '-- '-- '-- '-- white TCGA-24-1924_demographic Dead '-- '-- '-- '-- 24121 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 320 '-- '-- '-- a1ca2bf4-dc0c-4a34-8da6-1fbd89c6e8e3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1924_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1924_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1924_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b39f1ddd-282b-4089-8c04-6aa225349acc '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 27920e1e-b9ab-4587-970a-0cba7025becb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0901 41 false '-- '-- '-- '-- -15333 '-- 039bb7cc-4731-57bd-bbe7-dfce13b11b2e '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-0901_demographic Alive '-- '-- '-- '-- 15333 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 589.0 '-- '-- 8285c0fe-f59c-574b-87d7-0bb866d8ac59 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0901_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 88 44 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0901_treatment Cetuximab '-- '-- '-- '-- '-- '-- '-- 250 '-- mg/m2 '-- '-- '-- '-- 469999a3-4b66-5c0e-a9df-78a39a510a99 Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV 27920e1e-b9ab-4587-970a-0cba7025becb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0901 41 false '-- '-- '-- '-- -15333 '-- 039bb7cc-4731-57bd-bbe7-dfce13b11b2e '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-0901_demographic Alive '-- '-- '-- '-- 15333 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 589.0 '-- '-- 8285c0fe-f59c-574b-87d7-0bb866d8ac59 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0901_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 165 44 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0901_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d08674eb-a73f-46ed-ba7d-36185905b210 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 27920e1e-b9ab-4587-970a-0cba7025becb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0901 41 false '-- '-- '-- '-- -15333 '-- 039bb7cc-4731-57bd-bbe7-dfce13b11b2e '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-0901_demographic Alive '-- '-- '-- '-- 15333 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 589.0 '-- '-- 8285c0fe-f59c-574b-87d7-0bb866d8ac59 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0901_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 165 44 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0901_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- d0a4d8cf-f3d9-4c77-ab5a-bfdbc66e4fdd Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 27920e1e-b9ab-4587-970a-0cba7025becb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0901 41 false '-- '-- '-- '-- -15333 '-- 039bb7cc-4731-57bd-bbe7-dfce13b11b2e '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-0901_demographic Alive '-- '-- '-- '-- 15333 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 589.0 '-- '-- 8285c0fe-f59c-574b-87d7-0bb866d8ac59 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0901_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0901_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f90eec4a-0af2-4c55-9744-eea930803e37 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 27920e1e-b9ab-4587-970a-0cba7025becb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0901 41 false '-- '-- '-- '-- -15333 '-- 039bb7cc-4731-57bd-bbe7-dfce13b11b2e '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-0901_demographic Alive '-- '-- '-- '-- 15723 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 390 '-- '-- '-- b7e0510f-1c44-44f0-9bf4-828a0b4e2c16 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0901_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0901_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0901_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 41c39a19-5274-46c6-9d99-74d4ee0ba425 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 27920e1e-b9ab-4587-970a-0cba7025becb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0901 41 false '-- '-- '-- '-- -15333 '-- 039bb7cc-4731-57bd-bbe7-dfce13b11b2e '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-0901_demographic Alive '-- '-- '-- '-- 15723 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 390 '-- '-- '-- b7e0510f-1c44-44f0-9bf4-828a0b4e2c16 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0901_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0901_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0901_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a4b841dd-ca15-42a0-a2a0-42aa547e3178 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 28ed2d42-5b4c-4bca-b2b2-6b2a6d3c42cf Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2288 70 false '-- '-- '-- '-- -25831 25 04990ab9-c2a6-52e5-be59-8e9024d7e18c '-- not reported female '-- '-- '-- '-- white TCGA-24-2288_demographic Dead '-- '-- '-- '-- 25831 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 25.0 '-- '-- 54c4860f-11d8-5cff-be3e-d4405cc30f73 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2288_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2288_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1ecfc1fe-7051-451e-9fb3-8c4c281efda9 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 28ed2d42-5b4c-4bca-b2b2-6b2a6d3c42cf Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2288 70 false '-- '-- '-- '-- -25831 25 04990ab9-c2a6-52e5-be59-8e9024d7e18c '-- not reported female '-- '-- '-- '-- white TCGA-24-2288_demographic Dead '-- '-- '-- '-- 25831 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 25.0 '-- '-- 54c4860f-11d8-5cff-be3e-d4405cc30f73 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2288_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 21 21 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2288_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 350 '-- mg '-- '-- '-- '-- a514274f-a2ac-5f8f-9a8b-c8b32dec1aee Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 28ed2d42-5b4c-4bca-b2b2-6b2a6d3c42cf Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2288 70 false '-- '-- '-- '-- -25831 25 04990ab9-c2a6-52e5-be59-8e9024d7e18c '-- not reported female '-- '-- '-- '-- white TCGA-24-2288_demographic Dead '-- '-- '-- '-- 25831 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 25.0 '-- '-- 54c4860f-11d8-5cff-be3e-d4405cc30f73 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2288_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 21 21 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2288_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 600 '-- mg '-- '-- '-- '-- ad4ef2d9-253b-46d0-ab87-adee25c798ac Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2956e414-f167-438f-8747-a46fe0723622 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0755 75 false '-- '-- '-- '-- -27438 76 4eb412fc-833e-5fc0-bbad-81d66141e322 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0755_demographic Dead '-- '-- '-- '-- 27472 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 34 '-- '-- '-- 0eb43dd5-25e7-452d-aebd-21e6f7d8346d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0755_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0755_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0755_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 630bbd73-b4ac-4c6d-aeaa-08c6b1b14702 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 2956e414-f167-438f-8747-a46fe0723622 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0755 75 false '-- '-- '-- '-- -27438 76 4eb412fc-833e-5fc0-bbad-81d66141e322 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0755_demographic Dead '-- '-- '-- '-- 27472 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 34 '-- '-- '-- 0eb43dd5-25e7-452d-aebd-21e6f7d8346d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0755_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0755_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0755_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- db452039-4201-4385-8ade-0d181b5d2590 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 2956e414-f167-438f-8747-a46fe0723622 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0755 75 false '-- '-- '-- '-- -27438 76 4eb412fc-833e-5fc0-bbad-81d66141e322 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0755_demographic Dead '-- '-- '-- '-- 27438 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 76.0 '-- '-- a9126554-76e0-583b-a8fd-d67823e0bd81 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0755_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 41 19 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0755_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 230 '-- mg/m2 '-- '-- '-- '-- 83d2cb11-13c8-5a2e-8a7d-4403de55243b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2956e414-f167-438f-8747-a46fe0723622 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0755 75 false '-- '-- '-- '-- -27438 76 4eb412fc-833e-5fc0-bbad-81d66141e322 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0755_demographic Dead '-- '-- '-- '-- 27438 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 76.0 '-- '-- a9126554-76e0-583b-a8fd-d67823e0bd81 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0755_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0755_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ee66c5d5-0100-49b4-815c-66798a607aaa Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 29949b65-2913-4c86-bbd7-b85c5df6f15e Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2000 67 false '-- '-- '-- '-- -24723 '-- 2281e96f-9ac0-5e8c-9510-0876507277a1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2000_demographic Alive '-- '-- '-- '-- 25062 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 339 '-- '-- '-- 36d85764-2bb9-4de7-b006-82408a0f5aef false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2000_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2000_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2000_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1bf10f84-13a7-4f39-aa84-f638f68c2645 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 29949b65-2913-4c86-bbd7-b85c5df6f15e Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2000 67 false '-- '-- '-- '-- -24723 '-- 2281e96f-9ac0-5e8c-9510-0876507277a1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2000_demographic Alive '-- '-- '-- '-- 25062 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 339 '-- '-- '-- 36d85764-2bb9-4de7-b006-82408a0f5aef false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2000_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2000_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2000_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cbf1f459-7a96-4ad6-b8f6-0c0dbac6cb65 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 29949b65-2913-4c86-bbd7-b85c5df6f15e Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2000 67 false '-- '-- '-- '-- -24723 '-- 2281e96f-9ac0-5e8c-9510-0876507277a1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2000_demographic Alive '-- '-- '-- '-- 24723 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 441.0 '-- '-- 9b576de5-79c4-5514-93fa-4d5497230584 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2000_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 588 525 '-- '-- Recurrent Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2000_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 855 '-- mg '-- '-- '-- '-- 1a0f7fd1-d868-5029-81a1-473594177e34 '-- yes '-- '-- Chemotherapy +TCGA-OV 29949b65-2913-4c86-bbd7-b85c5df6f15e Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2000 67 false '-- '-- '-- '-- -24723 '-- 2281e96f-9ac0-5e8c-9510-0876507277a1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2000_demographic Alive '-- '-- '-- '-- 24723 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 441.0 '-- '-- 9b576de5-79c4-5514-93fa-4d5497230584 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2000_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 491 420 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-2000_treatment6 Docetaxel '-- '-- '-- '-- '-- '-- '-- 508 '-- mg '-- '-- '-- '-- 51d828a5-9485-48f8-acbc-3c77466ff9a5 '-- yes '-- '-- Chemotherapy +TCGA-OV 29949b65-2913-4c86-bbd7-b85c5df6f15e Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2000 67 false '-- '-- '-- '-- -24723 '-- 2281e96f-9ac0-5e8c-9510-0876507277a1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2000_demographic Alive '-- '-- '-- '-- 24723 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 441.0 '-- '-- 9b576de5-79c4-5514-93fa-4d5497230584 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2000_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 231 28 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-2000_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 390 '-- mg '-- '-- '-- '-- 5eb5ea49-2353-4b18-9b1c-7ed4e46f6bf5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 29949b65-2913-4c86-bbd7-b85c5df6f15e Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2000 67 false '-- '-- '-- '-- -24723 '-- 2281e96f-9ac0-5e8c-9510-0876507277a1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2000_demographic Alive '-- '-- '-- '-- 24723 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 441.0 '-- '-- 9b576de5-79c4-5514-93fa-4d5497230584 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2000_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 588 525 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2000_treatment8 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 3780 '-- mg '-- '-- '-- '-- 82ea7f84-ad05-4bf1-9e1a-25b603f43317 '-- yes '-- '-- Chemotherapy +TCGA-OV 29949b65-2913-4c86-bbd7-b85c5df6f15e Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2000 67 false '-- '-- '-- '-- -24723 '-- 2281e96f-9ac0-5e8c-9510-0876507277a1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2000_demographic Alive '-- '-- '-- '-- 24723 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 441.0 '-- '-- 9b576de5-79c4-5514-93fa-4d5497230584 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2000_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 231 28 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-2000_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1905 '-- mg '-- '-- '-- '-- 88686812-5d01-4274-8d75-d532be440cc5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 29949b65-2913-4c86-bbd7-b85c5df6f15e Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2000 67 false '-- '-- '-- '-- -24723 '-- 2281e96f-9ac0-5e8c-9510-0876507277a1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2000_demographic Alive '-- '-- '-- '-- 24723 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 441.0 '-- '-- 9b576de5-79c4-5514-93fa-4d5497230584 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2000_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 231 28 '-- '-- '-- '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-2000_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2130 '-- mg '-- '-- '-- '-- aac2b6e5-8f54-4560-b0af-2ec8064c610c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 29949b65-2913-4c86-bbd7-b85c5df6f15e Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2000 67 false '-- '-- '-- '-- -24723 '-- 2281e96f-9ac0-5e8c-9510-0876507277a1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2000_demographic Alive '-- '-- '-- '-- 24723 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 441.0 '-- '-- 9b576de5-79c4-5514-93fa-4d5497230584 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2000_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 491 420 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-2000_treatment4 Oxaliplatin '-- '-- '-- '-- '-- '-- '-- 367 '-- mg '-- '-- '-- '-- b6bef6c0-8734-4737-a8df-107528882fba '-- yes '-- '-- Chemotherapy +TCGA-OV 29949b65-2913-4c86-bbd7-b85c5df6f15e Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2000 67 false '-- '-- '-- '-- -24723 '-- 2281e96f-9ac0-5e8c-9510-0876507277a1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2000_demographic Alive '-- '-- '-- '-- 24723 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 441.0 '-- '-- 9b576de5-79c4-5514-93fa-4d5497230584 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2000_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 231 28 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-2000_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 720 '-- mg '-- '-- '-- '-- cea91d4d-5207-4bda-8cf5-f09c202924c7 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 29949b65-2913-4c86-bbd7-b85c5df6f15e Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2000 67 false '-- '-- '-- '-- -24723 '-- 2281e96f-9ac0-5e8c-9510-0876507277a1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2000_demographic Alive '-- '-- '-- '-- 24723 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 441.0 '-- '-- 9b576de5-79c4-5514-93fa-4d5497230584 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2000_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2000_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fee03aaa-a0e3-4593-b032-d2ce828c8929 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 29949b65-2913-4c86-bbd7-b85c5df6f15e Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2000 67 false '-- '-- '-- '-- -24723 '-- 2281e96f-9ac0-5e8c-9510-0876507277a1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2000_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d239bb21-4d19-4a0b-b502-ce358412e3be false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2000_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2000_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2000_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 61ad45a3-99b4-43e4-9454-27bb068b5b7d '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 29949b65-2913-4c86-bbd7-b85c5df6f15e Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2000 67 false '-- '-- '-- '-- -24723 '-- 2281e96f-9ac0-5e8c-9510-0876507277a1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2000_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d239bb21-4d19-4a0b-b502-ce358412e3be false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2000_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2000_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 381 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2000_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 902046bd-8d56-4caf-b44e-624ccba61780 '-- yes '-- '-- Surgery, NOS +TCGA-OV 29949b65-2913-4c86-bbd7-b85c5df6f15e Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2000 67 false '-- '-- '-- '-- -24723 '-- 2281e96f-9ac0-5e8c-9510-0876507277a1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2000_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d239bb21-4d19-4a0b-b502-ce358412e3be false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2000_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2000_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2000_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- db485c24-c94e-4b6f-921d-63e598ff63ca '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 29d26e7e-f4ae-4476-9a3f-27d5ec2ccb8a '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0928 71 false '-- '-- '-- '-- -26066 563 86af060d-7656-5dea-bef2-06252f78bea5 '-- not reported female '-- '-- '-- '-- white TCGA-10-0928_demographic Dead '-- '-- '-- '-- 26066 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 563.0 '-- '-- b513bda1-4ea9-5a15-be5c-afdf0225f33f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0928_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0928_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8e5cb970-4c0d-59ae-bbb8-b542474096f1 Adjuvant yes Not Reported '-- Pharmaceutical Therapy, NOS +TCGA-OV 29d26e7e-f4ae-4476-9a3f-27d5ec2ccb8a '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0928 71 false '-- '-- '-- '-- -26066 563 86af060d-7656-5dea-bef2-06252f78bea5 '-- not reported female '-- '-- '-- '-- white TCGA-10-0928_demographic Dead '-- '-- '-- '-- 26066 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 563.0 '-- '-- b513bda1-4ea9-5a15-be5c-afdf0225f33f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0928_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0928_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c8d10e50-b189-4b47-a960-d6e85ba07625 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 29dccd25-4c4a-463b-a353-38a193337f38 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1405 49 false '-- '-- '-- '-- -18218 868 baec593a-b625-575d-9c78-53c435b457e4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1405_demographic Dead '-- '-- '-- '-- 18446 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 228 '-- '-- '-- 802a2497-9dfe-4433-9166-6272d2c9cb74 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1405_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1405_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 29dccd25-4c4a-463b-a353-38a193337f38 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1405 49 false '-- '-- '-- '-- -18218 868 baec593a-b625-575d-9c78-53c435b457e4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1405_demographic Dead '-- '-- '-- '-- 18218 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 868.0 '-- '-- 84bc8778-a967-5764-8dc6-e7fb3efed07f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1405_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 147 23 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1405_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- a81ae376-f962-41aa-a5c3-b258e1f15ff8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 29dccd25-4c4a-463b-a353-38a193337f38 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1405 49 false '-- '-- '-- '-- -18218 868 baec593a-b625-575d-9c78-53c435b457e4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1405_demographic Dead '-- '-- '-- '-- 18218 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 868.0 '-- '-- 84bc8778-a967-5764-8dc6-e7fb3efed07f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1405_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 147 23 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1405_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 599 '-- mg '-- '-- '-- '-- c7850771-7a41-51a9-bb1d-2c5902c69931 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 29dccd25-4c4a-463b-a353-38a193337f38 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1405 49 false '-- '-- '-- '-- -18218 868 baec593a-b625-575d-9c78-53c435b457e4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1405_demographic Dead '-- '-- '-- '-- 18218 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 868.0 '-- '-- 84bc8778-a967-5764-8dc6-e7fb3efed07f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1405_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1405_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dd0af736-1ffc-4442-886f-1ce3601e39d5 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 2a3a6222-f477-4198-ab9e-cdf527c1a6cf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0805 57 false '-- '-- '-- '-- -21014 1074 292b981b-2c98-5348-94ca-b605e946494a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0805_demographic Dead '-- '-- '-- '-- 21014 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1074.0 '-- '-- 6f1a841a-0503-5dae-9e1d-d34022c84408 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0805_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 151 17 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0805_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 19aea582-2af3-5e5a-9511-fb479b3cab28 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2a3a6222-f477-4198-ab9e-cdf527c1a6cf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0805 57 false '-- '-- '-- '-- -21014 1074 292b981b-2c98-5348-94ca-b605e946494a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0805_demographic Dead '-- '-- '-- '-- 21014 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1074.0 '-- '-- 6f1a841a-0503-5dae-9e1d-d34022c84408 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0805_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0805_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1eda4ae7-bb13-46fe-9b8c-314962562ee9 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 2a3a6222-f477-4198-ab9e-cdf527c1a6cf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0805 57 false '-- '-- '-- '-- -21014 1074 292b981b-2c98-5348-94ca-b605e946494a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0805_demographic Dead '-- '-- '-- '-- 21014 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1074.0 '-- '-- 6f1a841a-0503-5dae-9e1d-d34022c84408 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0805_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 151 17 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0805_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b5512dca-f36b-4285-a7ca-0bb7c3d5dcdc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2a3a6222-f477-4198-ab9e-cdf527c1a6cf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0805 57 false '-- '-- '-- '-- -21014 1074 292b981b-2c98-5348-94ca-b605e946494a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0805_demographic Dead '-- '-- '-- '-- 21191 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 177 '-- '-- '-- 7d99d068-de13-4ec2-8bd0-e82d13699b03 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0805_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0805_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0805_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8079a2bb-02bf-4e0e-ac5d-cccf6892819a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 2a3a6222-f477-4198-ab9e-cdf527c1a6cf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0805 57 false '-- '-- '-- '-- -21014 1074 292b981b-2c98-5348-94ca-b605e946494a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0805_demographic Dead '-- '-- '-- '-- 21191 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 177 '-- '-- '-- 7d99d068-de13-4ec2-8bd0-e82d13699b03 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0805_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0805_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0805_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cf94005a-c2b8-42ad-aa4f-083962866d1f '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 2a924999-1fbf-470a-97bd-fd2276a9a366 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0885 70 false '-- '-- '-- '-- -25763 '-- 83bbd790-7f3e-5f1e-91be-9aaf019078bd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0885_demographic Alive '-- '-- '-- '-- 25763 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3388.0 '-- '-- 65552a39-e03f-5986-9476-19628f3e6d7e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0885_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0885_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 131907d6-7838-4b60-98ae-48369a37cf62 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 2a924999-1fbf-470a-97bd-fd2276a9a366 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0885 70 false '-- '-- '-- '-- -25763 '-- 83bbd790-7f3e-5f1e-91be-9aaf019078bd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0885_demographic Alive '-- '-- '-- '-- 25763 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3388.0 '-- '-- 65552a39-e03f-5986-9476-19628f3e6d7e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0885_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 208 '-- '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0885_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3c9fc7f5-2aed-50e8-b25b-9b2f60e6e352 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2a924999-1fbf-470a-97bd-fd2276a9a366 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0885 70 false '-- '-- '-- '-- -25763 '-- 83bbd790-7f3e-5f1e-91be-9aaf019078bd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0885_demographic Alive '-- '-- '-- '-- 25763 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3388.0 '-- '-- 65552a39-e03f-5986-9476-19628f3e6d7e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0885_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 110 6 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0885_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 64e62513-8668-47d0-84d3-86d7e2674f2d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2a924999-1fbf-470a-97bd-fd2276a9a366 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0885 70 false '-- '-- '-- '-- -25763 '-- 83bbd790-7f3e-5f1e-91be-9aaf019078bd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0885_demographic Alive '-- '-- '-- '-- 25763 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3388.0 '-- '-- 65552a39-e03f-5986-9476-19628f3e6d7e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0885_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 110 6 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0885_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 9ecbe30b-5c66-4e4c-97f6-6294b1f9ad0a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2ab32e11-80d6-4ed0-a42e-da612219bbdd Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2297 56 false '-- '-- '-- '-- -20487 1699 5e77a0b3-6cd4-5602-bdb2-874b275291f9 '-- not reported female '-- '-- '-- '-- white TCGA-24-2297_demographic Dead '-- '-- '-- '-- 20487 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1699.0 '-- '-- 036f498f-caec-57c3-8ca1-8d83d027149d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2297_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2297_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d15a8c62-719a-4992-93c9-a7fd9ecfeab0 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 2ab32e11-80d6-4ed0-a42e-da612219bbdd Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2297 56 false '-- '-- '-- '-- -20487 1699 5e77a0b3-6cd4-5602-bdb2-874b275291f9 '-- not reported female '-- '-- '-- '-- white TCGA-24-2297_demographic Dead '-- '-- '-- '-- 20487 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1699.0 '-- '-- 036f498f-caec-57c3-8ca1-8d83d027149d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2297_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 153 19 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2297_treatment Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 5530 '-- mg '-- '-- '-- '-- dc3124f9-3068-5934-890b-d005d0885181 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2ab32e11-80d6-4ed0-a42e-da612219bbdd Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2297 56 false '-- '-- '-- '-- -20487 1699 5e77a0b3-6cd4-5602-bdb2-874b275291f9 '-- not reported female '-- '-- '-- '-- white TCGA-24-2297_demographic Dead '-- '-- '-- '-- 20487 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1699.0 '-- '-- 036f498f-caec-57c3-8ca1-8d83d027149d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2297_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 153 19 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2297_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3981 '-- mg '-- '-- '-- '-- ef3c0bca-e79a-4925-a9d0-14c6105c333c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2ae65a06-df0f-4de1-a536-537cae0cc260 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1724 47 false '-- '-- '-- '-- -17168 637 ea68bd4e-83c7-5ede-a7d8-58a344ab1732 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1724_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4e42e060-d17f-4e69-9e42-eee827078056 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1724_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1724_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 187 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1724_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0d2617c9-0226-4eb1-bf15-4263672dfb23 '-- yes '-- '-- Surgery, NOS +TCGA-OV 2ae65a06-df0f-4de1-a536-537cae0cc260 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1724 47 false '-- '-- '-- '-- -17168 637 ea68bd4e-83c7-5ede-a7d8-58a344ab1732 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1724_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4e42e060-d17f-4e69-9e42-eee827078056 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1724_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1724_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1724_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6a306ffe-6af7-492e-ba22-62c48a8e2c37 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 2ae65a06-df0f-4de1-a536-537cae0cc260 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1724 47 false '-- '-- '-- '-- -17168 637 ea68bd4e-83c7-5ede-a7d8-58a344ab1732 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1724_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4e42e060-d17f-4e69-9e42-eee827078056 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1724_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1724_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1724_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- db763293-7ad4-4462-b4b1-39072fc83986 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 2ae65a06-df0f-4de1-a536-537cae0cc260 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1724 47 false '-- '-- '-- '-- -17168 637 ea68bd4e-83c7-5ede-a7d8-58a344ab1732 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1724_demographic Dead '-- '-- '-- '-- 17168 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 637.0 '-- '-- 6395ea1f-b5c3-5f02-a6fb-9d10768d3764 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1724_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 514 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1724_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1b63409b-1a6b-491f-9095-7cb127c4f829 '-- yes '-- '-- Chemotherapy +TCGA-OV 2ae65a06-df0f-4de1-a536-537cae0cc260 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1724 47 false '-- '-- '-- '-- -17168 637 ea68bd4e-83c7-5ede-a7d8-58a344ab1732 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1724_demographic Dead '-- '-- '-- '-- 17168 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 637.0 '-- '-- 6395ea1f-b5c3-5f02-a6fb-9d10768d3764 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1724_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1724_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 34fef059-2a04-52f6-b86d-44c336665b9f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2ae65a06-df0f-4de1-a536-537cae0cc260 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1724 47 false '-- '-- '-- '-- -17168 637 ea68bd4e-83c7-5ede-a7d8-58a344ab1732 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1724_demographic Dead '-- '-- '-- '-- 17168 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 637.0 '-- '-- 6395ea1f-b5c3-5f02-a6fb-9d10768d3764 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1724_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1724_treatment4 Gemcitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4726efea-fd42-477a-8195-26b22f89a228 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2ae65a06-df0f-4de1-a536-537cae0cc260 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1724 47 false '-- '-- '-- '-- -17168 637 ea68bd4e-83c7-5ede-a7d8-58a344ab1732 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1724_demographic Dead '-- '-- '-- '-- 17168 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 637.0 '-- '-- 6395ea1f-b5c3-5f02-a6fb-9d10768d3764 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1724_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 287 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-61-1724_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 74347c6a-0841-4b71-a30e-238e0ba5be5c '-- yes '-- '-- Chemotherapy +TCGA-OV 2ae65a06-df0f-4de1-a536-537cae0cc260 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1724 47 false '-- '-- '-- '-- -17168 637 ea68bd4e-83c7-5ede-a7d8-58a344ab1732 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1724_demographic Dead '-- '-- '-- '-- 17168 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 637.0 '-- '-- 6395ea1f-b5c3-5f02-a6fb-9d10768d3764 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1724_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 608 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1724_treatment6 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a47381d5-22f5-4f74-b5cd-fd7b42735a2c '-- yes '-- '-- Chemotherapy +TCGA-OV 2ae65a06-df0f-4de1-a536-537cae0cc260 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1724 47 false '-- '-- '-- '-- -17168 637 ea68bd4e-83c7-5ede-a7d8-58a344ab1732 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1724_demographic Dead '-- '-- '-- '-- 17168 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 637.0 '-- '-- 6395ea1f-b5c3-5f02-a6fb-9d10768d3764 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1724_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1724_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d13c88c7-2d15-43e8-be23-f607c9d3c584 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 2ae65a06-df0f-4de1-a536-537cae0cc260 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1724 47 false '-- '-- '-- '-- -17168 637 ea68bd4e-83c7-5ede-a7d8-58a344ab1732 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1724_demographic Dead '-- '-- '-- '-- 17168 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 637.0 '-- '-- 6395ea1f-b5c3-5f02-a6fb-9d10768d3764 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1724_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 368 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1724_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e6a58e22-357e-433b-8787-792e5e8706bb '-- yes '-- '-- Chemotherapy +TCGA-OV 2bb96e1e-6992-434d-83e5-2f03713b3911 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1525 47 false '-- '-- '-- '-- -17469 1167 8226e545-0b4d-55df-8d44-f944bce3c78e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1525_demographic Dead '-- '-- '-- '-- 17469 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1167.0 '-- '-- 6ed764d4-9eb2-5e0e-b9f1-c34dd8fefa3f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1525_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 184 16 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-04-1525_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- 888 '-- mg '-- '-- '-- '-- 49d625c5-db5e-4fc6-b084-e6034ee3830c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2bb96e1e-6992-434d-83e5-2f03713b3911 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1525 47 false '-- '-- '-- '-- -17469 1167 8226e545-0b4d-55df-8d44-f944bce3c78e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1525_demographic Dead '-- '-- '-- '-- 17469 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1167.0 '-- '-- 6ed764d4-9eb2-5e0e-b9f1-c34dd8fefa3f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1525_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1525_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5681b42b-1665-4b8d-bbe3-33bca5aa6a13 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 2bb96e1e-6992-434d-83e5-2f03713b3911 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1525 47 false '-- '-- '-- '-- -17469 1167 8226e545-0b4d-55df-8d44-f944bce3c78e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1525_demographic Dead '-- '-- '-- '-- 17469 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1167.0 '-- '-- 6ed764d4-9eb2-5e0e-b9f1-c34dd8fefa3f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1525_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 184 16 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-04-1525_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 59ffb5f5-bfcc-4fcd-a7fb-853870c994d4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2bb96e1e-6992-434d-83e5-2f03713b3911 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1525 47 false '-- '-- '-- '-- -17469 1167 8226e545-0b4d-55df-8d44-f944bce3c78e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1525_demographic Dead '-- '-- '-- '-- 17469 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1167.0 '-- '-- 6ed764d4-9eb2-5e0e-b9f1-c34dd8fefa3f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1525_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 464 436 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1525_treatment Irofulven '-- '-- '-- '-- '-- '-- '-- 31 '-- mg '-- '-- '-- '-- f15e3bb1-0a1d-5181-bc66-205d7acf7659 '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 2bb96e1e-6992-434d-83e5-2f03713b3911 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1525 47 false '-- '-- '-- '-- -17469 1167 8226e545-0b4d-55df-8d44-f944bce3c78e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1525_demographic Dead '-- '-- '-- '-- 17682 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 213 '-- '-- '-- 924119f4-7b3e-4d62-acfd-c8bb794d2e15 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1525_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1525_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1525_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 444c4e4f-8c51-47e5-9cfe-bb7b538eee90 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 2bb96e1e-6992-434d-83e5-2f03713b3911 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1525 47 false '-- '-- '-- '-- -17469 1167 8226e545-0b4d-55df-8d44-f944bce3c78e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1525_demographic Dead '-- '-- '-- '-- 17682 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 213 '-- '-- '-- 924119f4-7b3e-4d62-acfd-c8bb794d2e15 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1525_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1525_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1525_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 964399e3-be65-46e3-86da-e462a604a397 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 2c69f3a4-c26c-4fbb-a1c0-b1f57554c43a '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0757 71 false '-- '-- '-- '-- -25999 340 410b700a-b7b2-58aa-806a-0708255a9406 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0757_demographic Dead '-- '-- '-- '-- 25999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 340.0 '-- '-- 32bf71c7-8d36-5ea4-8fea-5a46b29b8bc9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0757_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 267 211 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0757_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 02d9a5d6-a4d0-4bf0-aaed-5615d6050fe9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2c69f3a4-c26c-4fbb-a1c0-b1f57554c43a '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0757 71 false '-- '-- '-- '-- -25999 340 410b700a-b7b2-58aa-806a-0708255a9406 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0757_demographic Dead '-- '-- '-- '-- 25999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 340.0 '-- '-- 32bf71c7-8d36-5ea4-8fea-5a46b29b8bc9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0757_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 153 36 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0757_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- 502b8bcd-191f-5a7b-9bab-458509142255 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2c69f3a4-c26c-4fbb-a1c0-b1f57554c43a '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0757 71 false '-- '-- '-- '-- -25999 340 410b700a-b7b2-58aa-806a-0708255a9406 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0757_demographic Dead '-- '-- '-- '-- 25999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 340.0 '-- '-- 32bf71c7-8d36-5ea4-8fea-5a46b29b8bc9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0757_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 154 36 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0757_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 78460f82-6c64-4f6b-b3c5-4d13ec5765af Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2c69f3a4-c26c-4fbb-a1c0-b1f57554c43a '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0757 71 false '-- '-- '-- '-- -25999 340 410b700a-b7b2-58aa-806a-0708255a9406 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0757_demographic Dead '-- '-- '-- '-- 25999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 340.0 '-- '-- 32bf71c7-8d36-5ea4-8fea-5a46b29b8bc9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0757_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0757_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9279ecd0-6218-4ce0-90cc-73511f5ad1d1 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 2c69f3a4-c26c-4fbb-a1c0-b1f57554c43a '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0757 71 false '-- '-- '-- '-- -25999 340 410b700a-b7b2-58aa-806a-0708255a9406 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0757_demographic Dead '-- '-- '-- '-- 26292 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 293 '-- '-- '-- c40fcd59-5c23-4e61-b8f8-5628395320b7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0757_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0757_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0757_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 79975afb-de71-4aab-ad8e-c8d1cb7adb6b '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 2c69f3a4-c26c-4fbb-a1c0-b1f57554c43a '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0757 71 false '-- '-- '-- '-- -25999 340 410b700a-b7b2-58aa-806a-0708255a9406 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0757_demographic Dead '-- '-- '-- '-- 26292 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 293 '-- '-- '-- c40fcd59-5c23-4e61-b8f8-5628395320b7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0757_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0757_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0757_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bed296e3-3fce-4790-bce6-46600e056e8f '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 2cb50c2d-e749-4172-b101-d975507435c5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1567 54 false '-- '-- '-- '-- -19843 524 ace5236c-02a5-559b-a2d3-bea9b6fc13a9 '-- not reported female '-- '-- '-- '-- white TCGA-24-1567_demographic Dead '-- '-- '-- '-- 20162 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 319 '-- '-- '-- 729d6f8f-710b-4c86-986c-b9fe559d1c23 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1567_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1567_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1567_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6184abc7-52b8-474c-9c00-40eec9a14054 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 2cb50c2d-e749-4172-b101-d975507435c5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1567 54 false '-- '-- '-- '-- -19843 524 ace5236c-02a5-559b-a2d3-bea9b6fc13a9 '-- not reported female '-- '-- '-- '-- white TCGA-24-1567_demographic Dead '-- '-- '-- '-- 20162 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 319 '-- '-- '-- 729d6f8f-710b-4c86-986c-b9fe559d1c23 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1567_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1567_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1567_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9c0e8bfe-59d4-4d58-aee5-c8a921ae5d57 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 2cb50c2d-e749-4172-b101-d975507435c5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1567 54 false '-- '-- '-- '-- -19843 524 ace5236c-02a5-559b-a2d3-bea9b6fc13a9 '-- not reported female '-- '-- '-- '-- white TCGA-24-1567_demographic Dead '-- '-- '-- '-- 19843 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 524.0 '-- '-- dbe92bcb-69f3-5886-b674-14650afaf711 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1567_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1567_treatment2 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 48511441-675d-4263-88fc-1a942e475384 '-- yes '-- '-- Chemotherapy +TCGA-OV 2cb50c2d-e749-4172-b101-d975507435c5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1567 54 false '-- '-- '-- '-- -19843 524 ace5236c-02a5-559b-a2d3-bea9b6fc13a9 '-- not reported female '-- '-- '-- '-- white TCGA-24-1567_demographic Dead '-- '-- '-- '-- 19843 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 524.0 '-- '-- dbe92bcb-69f3-5886-b674-14650afaf711 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1567_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 153 41 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1567_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4c82f95c-1c51-478f-9f81-06a4307465f1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2cb50c2d-e749-4172-b101-d975507435c5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1567 54 false '-- '-- '-- '-- -19843 524 ace5236c-02a5-559b-a2d3-bea9b6fc13a9 '-- not reported female '-- '-- '-- '-- white TCGA-24-1567_demographic Dead '-- '-- '-- '-- 19843 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 524.0 '-- '-- dbe92bcb-69f3-5886-b674-14650afaf711 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1567_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1567_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 91e72bf5-226b-4417-a17f-1255f2b44126 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 2cb50c2d-e749-4172-b101-d975507435c5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1567 54 false '-- '-- '-- '-- -19843 524 ace5236c-02a5-559b-a2d3-bea9b6fc13a9 '-- not reported female '-- '-- '-- '-- white TCGA-24-1567_demographic Dead '-- '-- '-- '-- 19843 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 524.0 '-- '-- dbe92bcb-69f3-5886-b674-14650afaf711 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1567_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 153 41 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1567_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a278fc4d-ed97-5d6b-8d66-58f0cd87ba68 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 249b85e7-5021-4131-90a7-1a13987a70d2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-2084_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-2084_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2084_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 15a71c6e-1b95-4919-8ad5-e6d7345c2c64 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 249b85e7-5021-4131-90a7-1a13987a70d2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-2084_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-2084_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2084_treatment18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e55e269c-4a75-4129-a4dc-97f74ea6c6c1 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 249b85e7-5021-4131-90a7-1a13987a70d2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-2084_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-2084_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 627 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2084_treatment19 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f7d8c710-b6eb-4fa8-bdaa-c86fd008bd72 '-- yes '-- '-- Surgery, NOS +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- 16493 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1516.0 '-- '-- 2aaa9e6d-1157-5f86-b34f-9c9abf6e82f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2084_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 155 6 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2084_treatment11 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2200 '-- mg '-- '-- '-- '-- 00731b95-f543-4841-9b0e-963c14d2dba3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- 16493 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1516.0 '-- '-- 2aaa9e6d-1157-5f86-b34f-9c9abf6e82f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2084_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 155 6 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2084_treatment8 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4240 '-- mg '-- '-- '-- '-- 04655c22-37cd-4442-b6d5-6bb9c7bba230 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- 16493 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1516.0 '-- '-- 2aaa9e6d-1157-5f86-b34f-9c9abf6e82f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2084_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1401 1381 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2084_treatment13 Ifosfamide '-- '-- '-- '-- '-- '-- '-- 1615 '-- mg '-- '-- '-- '-- 04d6de93-8690-4ec3-b4b6-149bc797cbe8 '-- yes '-- '-- Chemotherapy +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- 16493 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1516.0 '-- '-- 2aaa9e6d-1157-5f86-b34f-9c9abf6e82f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2084_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1359 1324 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2084_treatment9 Topotecan '-- '-- '-- '-- '-- '-- '-- 14 '-- mg '-- '-- '-- '-- 066e57f2-a226-45b3-a64e-762370f310f1 '-- yes '-- '-- Chemotherapy +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- 16493 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1516.0 '-- '-- 2aaa9e6d-1157-5f86-b34f-9c9abf6e82f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2084_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1240 1183 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2084_treatment7 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 195 '-- mg '-- '-- '-- '-- 10202b07-b609-4311-80d2-07cad98d485c '-- yes '-- '-- Chemotherapy +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- 16493 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1516.0 '-- '-- 2aaa9e6d-1157-5f86-b34f-9c9abf6e82f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2084_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1169 1127 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2084_treatment12 Clinical Trial '-- '-- '-- '-- '-- '-- '-- 1680 '-- mg '-- '-- '-- '-- 1d387342-edf8-4092-ba9d-d8c1de4309f5 '-- yes '-- '-- Immunotherapy (Including Vaccines) +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- 16493 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1516.0 '-- '-- 2aaa9e6d-1157-5f86-b34f-9c9abf6e82f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2084_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1485 1457 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-23-2084_treatment3 Etoposide '-- '-- '-- '-- '-- '-- '-- 100 '-- mg '-- '-- '-- '-- 2b4c0d6e-bf02-44b8-8d62-2596c13d0abb '-- yes '-- '-- Chemotherapy +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- 16493 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1516.0 '-- '-- 2aaa9e6d-1157-5f86-b34f-9c9abf6e82f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2084_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 701 631 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2084_treatment4 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 12600 '-- mg '-- '-- '-- '-- 2e14a974-2885-4686-9510-103b15a2c4a3 '-- yes '-- '-- Chemotherapy +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- 16493 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1516.0 '-- '-- 2aaa9e6d-1157-5f86-b34f-9c9abf6e82f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2084_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 701 631 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2084_treatment6 Cisplatin '-- '-- '-- '-- '-- '-- '-- 700 '-- mg '-- '-- '-- '-- 2eafdfc5-2789-46db-9729-bf282c08b824 '-- yes '-- '-- Chemotherapy +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- 16493 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1516.0 '-- '-- 2aaa9e6d-1157-5f86-b34f-9c9abf6e82f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2084_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1425 1425 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2084_treatment10 Ifosfamide '-- '-- '-- '-- '-- '-- '-- 730 '-- mg '-- '-- '-- '-- 49c7fef3-07b5-4a7e-a420-22835559d8d9 '-- yes '-- '-- Chemotherapy +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- 16493 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1516.0 '-- '-- 2aaa9e6d-1157-5f86-b34f-9c9abf6e82f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2084_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1302 1261 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2084_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 360 '-- mg '-- '-- '-- '-- 690424b3-19bc-4b30-88e1-4d50621964f7 '-- yes '-- '-- Chemotherapy +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- 16493 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1516.0 '-- '-- 2aaa9e6d-1157-5f86-b34f-9c9abf6e82f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2084_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1425 1425 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2084_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 100 '-- mg '-- '-- '-- '-- 7a3b9a37-c86c-5a54-a1c3-5bc54d09979c '-- yes '-- '-- Chemotherapy +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- 16493 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1516.0 '-- '-- 2aaa9e6d-1157-5f86-b34f-9c9abf6e82f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2084_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2084_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a0db4270-5e4c-40ee-ba8f-33f67f02b4b4 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- 16493 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1516.0 '-- '-- 2aaa9e6d-1157-5f86-b34f-9c9abf6e82f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2084_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1401 1381 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2084_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 920 '-- mg '-- '-- '-- '-- e8e4e06d-0eb3-49e4-83fd-22a18d07700c '-- yes '-- '-- Chemotherapy +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- 17112 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 619 '-- '-- '-- d177ba06-5520-4358-abc6-730595bfd2b6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-2084_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-2084_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2084_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 63813c91-0802-4388-8ba0-5411cbb84ec8 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 2cb82948-7cbe-4b6c-8414-c02f662de2d0 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2084 45 false '-- '-- '-- '-- -16493 1516 0344269b-0441-5bd3-9846-3c0415320ab6 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2084_demographic Dead '-- '-- '-- '-- 17112 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 619 '-- '-- '-- d177ba06-5520-4358-abc6-730595bfd2b6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-2084_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-2084_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2084_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 781c1e97-9783-4184-b8d4-84cbf0dffc29 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 2dfd8a0e-e642-49b3-abd7-f0334927eebb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1119 64 false '-- '-- '-- '-- -23686 '-- f3da4ea8-cbc9-5519-9037-d701e149a8f6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1119_demographic Alive '-- '-- '-- '-- 27064 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 3378 '-- '-- '-- 8f1e3f64-95d0-4d3a-9658-049e35597ae6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1119_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1119_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1119_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b2881a0c-3a68-4de9-b874-155ebd1cc5be '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 2dfd8a0e-e642-49b3-abd7-f0334927eebb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1119 64 false '-- '-- '-- '-- -23686 '-- f3da4ea8-cbc9-5519-9037-d701e149a8f6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1119_demographic Alive '-- '-- '-- '-- 27064 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 3378 '-- '-- '-- 8f1e3f64-95d0-4d3a-9658-049e35597ae6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1119_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1119_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1119_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b7e73882-3cd1-4d88-9be2-1206e8b8442c '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 2dfd8a0e-e642-49b3-abd7-f0334927eebb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1119 64 false '-- '-- '-- '-- -23686 '-- f3da4ea8-cbc9-5519-9037-d701e149a8f6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1119_demographic Alive '-- '-- '-- '-- 23686 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3953.0 '-- '-- cfa1e23f-420a-51df-9119-d916745ddbb1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1119_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1119_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7ac73557-f661-45b0-9d2a-7165cb1698ab Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 2dfd8a0e-e642-49b3-abd7-f0334927eebb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1119 64 false '-- '-- '-- '-- -23686 '-- f3da4ea8-cbc9-5519-9037-d701e149a8f6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1119_demographic Alive '-- '-- '-- '-- 23686 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3953.0 '-- '-- cfa1e23f-420a-51df-9119-d916745ddbb1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1119_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 125 18 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1119_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2700 '-- mg '-- '-- '-- '-- dcff1706-a070-4c88-b15b-8efa735ee9ee Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2dfd8a0e-e642-49b3-abd7-f0334927eebb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1119 64 false '-- '-- '-- '-- -23686 '-- f3da4ea8-cbc9-5519-9037-d701e149a8f6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1119_demographic Alive '-- '-- '-- '-- 23686 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3953.0 '-- '-- cfa1e23f-420a-51df-9119-d916745ddbb1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1119_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 3494 3389 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1119_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 2230 '-- mg '-- '-- '-- '-- f6fee3e9-e14b-5301-96fe-88ab01895f94 '-- yes '-- '-- Chemotherapy +TCGA-OV 2dfd8a0e-e642-49b3-abd7-f0334927eebb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1119 64 false '-- '-- '-- '-- -23686 '-- f3da4ea8-cbc9-5519-9037-d701e149a8f6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1119_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ebd1434b-508f-4260-a6fe-c4560d4ddff0 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1119_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1119_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3378 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1119_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 18a50a36-b7b6-4da0-aed8-330ca65ef417 '-- yes '-- '-- Surgery, NOS +TCGA-OV 2dfd8a0e-e642-49b3-abd7-f0334927eebb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1119 64 false '-- '-- '-- '-- -23686 '-- f3da4ea8-cbc9-5519-9037-d701e149a8f6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1119_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ebd1434b-508f-4260-a6fe-c4560d4ddff0 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1119_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1119_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1119_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 714ce4c1-1bb7-46e5-b8b9-0c673c669c64 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 2dfd8a0e-e642-49b3-abd7-f0334927eebb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1119 64 false '-- '-- '-- '-- -23686 '-- f3da4ea8-cbc9-5519-9037-d701e149a8f6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1119_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ebd1434b-508f-4260-a6fe-c4560d4ddff0 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1119_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1119_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1119_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 922b1095-2a2d-4ba4-9178-dec60619f701 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 2e05cd3a-a55f-43b8-b2a9-72fb742b89c9 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2043 69 false '-- '-- '-- '-- -25480 '-- 4247432d-ccdb-582c-bcb3-afa8a9a98615 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2043_demographic Alive '-- '-- '-- '-- 25480 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 188.0 '-- '-- c74963fd-75f1-556c-9144-3b4f4cb24855 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2043_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2043_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8a24a1bd-f80f-5a06-82e3-b7f8aa13c2d3 Adjuvant no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 2e05cd3a-a55f-43b8-b2a9-72fb742b89c9 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2043 69 false '-- '-- '-- '-- -25480 '-- 4247432d-ccdb-582c-bcb3-afa8a9a98615 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2043_demographic Alive '-- '-- '-- '-- 25480 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 188.0 '-- '-- c74963fd-75f1-556c-9144-3b4f4cb24855 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2043_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2043_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cd7ee348-6dfa-4501-8638-a2211ae895e0 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 2ebb738c-4829-4720-931a-96c0fd117e2a '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-13-0730 71 false '-- '-- '-- '-- -26086 542 1049f24d-d521-549d-bda2-361501386994 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0730_demographic Dead '-- '-- '-- '-- 26086 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 542.0 '-- '-- fc0019a4-0e6b-5e7d-b8f7-e7a1d85c90e6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0730_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0730_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e37bbf48-7ace-5775-9bee-668d8cd94a3a Adjuvant unknown '-- '-- Radiation Therapy, NOS +TCGA-OV 2ee36d9d-128b-4761-aa1a-a637da106f3d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1323 72 false '-- '-- '-- '-- -26602 395 b7f1ad25-47b4-5bb3-8f7d-332afedb0764 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1323_demographic Dead '-- '-- '-- '-- 26967 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 365 '-- '-- '-- 454cb5f3-dd08-4638-b9cf-3ddb39988a72 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1323_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1323_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1323_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 891774d9-9510-46af-b6be-d3d2e7d4e2b2 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 2ee36d9d-128b-4761-aa1a-a637da106f3d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1323 72 false '-- '-- '-- '-- -26602 395 b7f1ad25-47b4-5bb3-8f7d-332afedb0764 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1323_demographic Dead '-- '-- '-- '-- 26967 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 365 '-- '-- '-- 454cb5f3-dd08-4638-b9cf-3ddb39988a72 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1323_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1323_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1323_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9e7c21cc-77e7-40b9-82a2-f3da724edcc4 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 2ee36d9d-128b-4761-aa1a-a637da106f3d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1323 72 false '-- '-- '-- '-- -26602 395 b7f1ad25-47b4-5bb3-8f7d-332afedb0764 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1323_demographic Dead '-- '-- '-- '-- 26602 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 395.0 '-- '-- b3861530-7540-5dbb-af8a-d27f40d5b8d0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1323_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 122 30 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1323_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 13ad5c8d-616f-4150-8d67-bc3c87174b0b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 2ee36d9d-128b-4761-aa1a-a637da106f3d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1323 72 false '-- '-- '-- '-- -26602 395 b7f1ad25-47b4-5bb3-8f7d-332afedb0764 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1323_demographic Dead '-- '-- '-- '-- 26602 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 395.0 '-- '-- b3861530-7540-5dbb-af8a-d27f40d5b8d0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1323_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 365 365 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1323_treatment Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 74ed6bfb-fdc9-586d-aa2b-cfb506e7dcff '-- yes '-- '-- Chemotherapy +TCGA-OV 2ee36d9d-128b-4761-aa1a-a637da106f3d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1323 72 false '-- '-- '-- '-- -26602 395 b7f1ad25-47b4-5bb3-8f7d-332afedb0764 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1323_demographic Dead '-- '-- '-- '-- 26602 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 395.0 '-- '-- b3861530-7540-5dbb-af8a-d27f40d5b8d0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1323_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1323_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c4ce99e8-4a79-4fb6-b87e-4fd086261c46 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 2ee36d9d-128b-4761-aa1a-a637da106f3d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1323 72 false '-- '-- '-- '-- -26602 395 b7f1ad25-47b4-5bb3-8f7d-332afedb0764 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1323_demographic Dead '-- '-- '-- '-- 26602 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 395.0 '-- '-- b3861530-7540-5dbb-af8a-d27f40d5b8d0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1323_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 122 30 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1323_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f9d25e31-331f-4152-9778-f6a00f5a2b0c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3018efe7-13a1-47ae-a726-8fc967c73841 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1430 68 false '-- '-- '-- '-- -24939 863 a7a4f433-78e4-5763-b441-d0eb0f1eb85f '-- not reported female '-- '-- '-- '-- white TCGA-24-1430_demographic Dead '-- '-- '-- '-- 24939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 863.0 '-- '-- 2a0f08c5-3c4b-577d-927e-0626042b4204 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1430_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 106 22 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1430_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1252 '-- mg '-- '-- '-- '-- 203e6089-83fa-465a-96a5-0ee334873fc4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3018efe7-13a1-47ae-a726-8fc967c73841 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1430 68 false '-- '-- '-- '-- -24939 863 a7a4f433-78e4-5763-b441-d0eb0f1eb85f '-- not reported female '-- '-- '-- '-- white TCGA-24-1430_demographic Dead '-- '-- '-- '-- 24939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 863.0 '-- '-- 2a0f08c5-3c4b-577d-927e-0626042b4204 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1430_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 769 652 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1430_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1960 '-- mg '-- '-- '-- '-- 325d666a-482f-4278-8934-afcd1e4052f5 '-- yes '-- '-- Chemotherapy +TCGA-OV 3018efe7-13a1-47ae-a726-8fc967c73841 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1430 68 false '-- '-- '-- '-- -24939 863 a7a4f433-78e4-5763-b441-d0eb0f1eb85f '-- not reported female '-- '-- '-- '-- white TCGA-24-1430_demographic Dead '-- '-- '-- '-- 24939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 863.0 '-- '-- 2a0f08c5-3c4b-577d-927e-0626042b4204 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1430_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 106 22 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1430_treatment6 Amifostine '-- '-- '-- '-- '-- '-- '-- 5301 '-- mg '-- '-- '-- '-- 3bc01f11-f663-4dee-8b7c-e280b4493e54 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3018efe7-13a1-47ae-a726-8fc967c73841 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1430 68 false '-- '-- '-- '-- -24939 863 a7a4f433-78e4-5763-b441-d0eb0f1eb85f '-- not reported female '-- '-- '-- '-- white TCGA-24-1430_demographic Dead '-- '-- '-- '-- 24939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 863.0 '-- '-- 2a0f08c5-3c4b-577d-927e-0626042b4204 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1430_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 106 22 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1430_treatment9 Cisplatin '-- '-- '-- '-- '-- '-- '-- 539 '-- mg '-- '-- '-- '-- 41f374ec-c4b3-463c-ae59-3a5d1f498e07 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3018efe7-13a1-47ae-a726-8fc967c73841 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1430 68 false '-- '-- '-- '-- -24939 863 a7a4f433-78e4-5763-b441-d0eb0f1eb85f '-- not reported female '-- '-- '-- '-- white TCGA-24-1430_demographic Dead '-- '-- '-- '-- 24939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 863.0 '-- '-- 2a0f08c5-3c4b-577d-927e-0626042b4204 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1430_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1430_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 48459bde-383b-4c7d-86da-28c2cb819c70 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 3018efe7-13a1-47ae-a726-8fc967c73841 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1430 68 false '-- '-- '-- '-- -24939 863 a7a4f433-78e4-5763-b441-d0eb0f1eb85f '-- not reported female '-- '-- '-- '-- white TCGA-24-1430_demographic Dead '-- '-- '-- '-- 24939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 863.0 '-- '-- 2a0f08c5-3c4b-577d-927e-0626042b4204 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1430_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 841 804 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1430_treatment Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 81 '-- mg '-- '-- '-- '-- 5b1f79c6-9afc-5ccc-b844-1230f88cf803 '-- yes '-- '-- Chemotherapy +TCGA-OV 3018efe7-13a1-47ae-a726-8fc967c73841 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1430 68 false '-- '-- '-- '-- -24939 863 a7a4f433-78e4-5763-b441-d0eb0f1eb85f '-- not reported female '-- '-- '-- '-- white TCGA-24-1430_demographic Dead '-- '-- '-- '-- 24939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 863.0 '-- '-- 2a0f08c5-3c4b-577d-927e-0626042b4204 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1430_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 547 463 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1430_treatment5 Topotecan '-- '-- '-- '-- '-- '-- '-- 45 '-- mg '-- '-- '-- '-- 74dfe6fb-7196-4ac2-9d4b-a035365a47ff '-- yes '-- '-- Chemotherapy +TCGA-OV 3018efe7-13a1-47ae-a726-8fc967c73841 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1430 68 false '-- '-- '-- '-- -24939 863 a7a4f433-78e4-5763-b441-d0eb0f1eb85f '-- not reported female '-- '-- '-- '-- white TCGA-24-1430_demographic Dead '-- '-- '-- '-- 24939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 863.0 '-- '-- 2a0f08c5-3c4b-577d-927e-0626042b4204 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1430_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 624 568 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1430_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 177 '-- mg '-- '-- '-- '-- b8bee02c-9827-44ac-9095-dd96b8b3cede '-- yes '-- '-- Chemotherapy +TCGA-OV 3018efe7-13a1-47ae-a726-8fc967c73841 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1430 68 false '-- '-- '-- '-- -24939 863 a7a4f433-78e4-5763-b441-d0eb0f1eb85f '-- not reported female '-- '-- '-- '-- white TCGA-24-1430_demographic Dead '-- '-- '-- '-- 24939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 863.0 '-- '-- 2a0f08c5-3c4b-577d-927e-0626042b4204 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1430_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 769 652 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1430_treatment7 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 128 '-- mg '-- '-- '-- '-- b9c8d654-6dbf-4648-8af0-b391640bf458 '-- yes '-- '-- Chemotherapy +TCGA-OV 3018efe7-13a1-47ae-a726-8fc967c73841 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1430 68 false '-- '-- '-- '-- -24939 863 a7a4f433-78e4-5763-b441-d0eb0f1eb85f '-- not reported female '-- '-- '-- '-- white TCGA-24-1430_demographic Dead '-- '-- '-- '-- 24939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 863.0 '-- '-- 2a0f08c5-3c4b-577d-927e-0626042b4204 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1430_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 841 804 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1430_treatment8 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 5150 '-- mg '-- '-- '-- '-- df6007c1-d9d0-44dd-b778-ae766eca3372 '-- yes '-- '-- Chemotherapy +TCGA-OV 3018efe7-13a1-47ae-a726-8fc967c73841 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1430 68 false '-- '-- '-- '-- -24939 863 a7a4f433-78e4-5763-b441-d0eb0f1eb85f '-- not reported female '-- '-- '-- '-- white TCGA-24-1430_demographic Dead '-- '-- '-- '-- 25388 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 449 '-- '-- '-- 3e6723d1-3e38-4804-8fe6-0cb8769f400c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1430_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1430_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1430_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bd17983a-e3b6-42e4-aba1-7512c2d9ec6c '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 3018efe7-13a1-47ae-a726-8fc967c73841 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1430 68 false '-- '-- '-- '-- -24939 863 a7a4f433-78e4-5763-b441-d0eb0f1eb85f '-- not reported female '-- '-- '-- '-- white TCGA-24-1430_demographic Dead '-- '-- '-- '-- 25388 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 449 '-- '-- '-- 3e6723d1-3e38-4804-8fe6-0cb8769f400c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1430_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1430_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1430_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f3aca692-8516-483a-bb37-a13000fd24b0 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 30b8f4cd-9245-4496-a8a8-c3e59093bc0a Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-04-1367 50 false '-- '-- '-- '-- -18577 '-- 7dffb595-5391-570b-aa02-39fe8823bbe3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1367_demographic Alive '-- '-- '-- '-- 21574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 2997 '-- '-- '-- 9df665d3-b2de-4c37-bd40-1c8e68cbad77 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1367_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1367_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1367_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2d1e61c4-3a7a-47b0-ad39-559f2e6ba815 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 30b8f4cd-9245-4496-a8a8-c3e59093bc0a Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-04-1367 50 false '-- '-- '-- '-- -18577 '-- 7dffb595-5391-570b-aa02-39fe8823bbe3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1367_demographic Alive '-- '-- '-- '-- 21574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 2997 '-- '-- '-- 9df665d3-b2de-4c37-bd40-1c8e68cbad77 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1367_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1367_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1367_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 40202b7d-d105-4162-b271-6727efc88481 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 30b8f4cd-9245-4496-a8a8-c3e59093bc0a Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-04-1367 50 false '-- '-- '-- '-- -18577 '-- 7dffb595-5391-570b-aa02-39fe8823bbe3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1367_demographic Alive '-- '-- '-- '-- 18577 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3145.0 '-- '-- a0983259-4f02-50ac-9c49-68b091804b7d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1367_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1367_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0e53b0c4-a577-467d-b59f-39c749bc98c0 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 30b8f4cd-9245-4496-a8a8-c3e59093bc0a Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-04-1367 50 false '-- '-- '-- '-- -18577 '-- 7dffb595-5391-570b-aa02-39fe8823bbe3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1367_demographic Alive '-- '-- '-- '-- 18577 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3145.0 '-- '-- a0983259-4f02-50ac-9c49-68b091804b7d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1367_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 199 24 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1367_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 721 '-- mg '-- '-- '-- '-- 50cc183a-a880-5ae8-9a71-3d2070aaaddd Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 30b8f4cd-9245-4496-a8a8-c3e59093bc0a Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-04-1367 50 false '-- '-- '-- '-- -18577 '-- 7dffb595-5391-570b-aa02-39fe8823bbe3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1367_demographic Alive '-- '-- '-- '-- 18577 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3145.0 '-- '-- a0983259-4f02-50ac-9c49-68b091804b7d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1367_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 199 24 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1367_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1925 '-- mg '-- '-- '-- '-- ea664cb2-9304-4b13-ba20-b590962a1f4b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 314e446d-3a57-4c91-ac2e-4fc211456ee6 Informed Consent 37 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1649 74 false '-- '-- '-- '-- -27165 '-- 7d9bd3e6-dd70-5776-a2e1-a0edd3c1a0b8 '-- not reported female '-- '-- '-- '-- white TCGA-04-1649_demographic Alive '-- '-- '-- '-- 27165 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1966.0 '-- '-- 57cdb54a-f555-502a-a0a7-70669c41dc02 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1649_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 1704 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1649_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4071b4c2-2551-4f42-a002-93252d65fdca '-- yes '-- '-- Chemotherapy +TCGA-OV 314e446d-3a57-4c91-ac2e-4fc211456ee6 Informed Consent 37 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1649 74 false '-- '-- '-- '-- -27165 '-- 7d9bd3e6-dd70-5776-a2e1-a0edd3c1a0b8 '-- not reported female '-- '-- '-- '-- white TCGA-04-1649_demographic Alive '-- '-- '-- '-- 27165 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1966.0 '-- '-- 57cdb54a-f555-502a-a0a7-70669c41dc02 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1649_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1649_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 84ed68b7-d2de-471a-aa26-8ad85332aa45 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 314e446d-3a57-4c91-ac2e-4fc211456ee6 Informed Consent 37 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1649 74 false '-- '-- '-- '-- -27165 '-- 7d9bd3e6-dd70-5776-a2e1-a0edd3c1a0b8 '-- not reported female '-- '-- '-- '-- white TCGA-04-1649_demographic Alive '-- '-- '-- '-- 27165 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1966.0 '-- '-- 57cdb54a-f555-502a-a0a7-70669c41dc02 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1649_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 1704 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1649_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b327656a-f0b8-5064-b6e6-757f65c9606e '-- yes '-- '-- Chemotherapy +TCGA-OV 314e446d-3a57-4c91-ac2e-4fc211456ee6 Informed Consent 37 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1649 74 false '-- '-- '-- '-- -27165 '-- 7d9bd3e6-dd70-5776-a2e1-a0edd3c1a0b8 '-- not reported female '-- '-- '-- '-- white TCGA-04-1649_demographic Alive '-- '-- '-- '-- 28837 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1672 '-- '-- '-- 70652943-dbf9-494d-8728-acd037f84cb0 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1649_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1649_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1649_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 204704f4-0364-4036-b6f5-f3784233a900 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 314e446d-3a57-4c91-ac2e-4fc211456ee6 Informed Consent 37 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1649 74 false '-- '-- '-- '-- -27165 '-- 7d9bd3e6-dd70-5776-a2e1-a0edd3c1a0b8 '-- not reported female '-- '-- '-- '-- white TCGA-04-1649_demographic Alive '-- '-- '-- '-- 28837 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1672 '-- '-- '-- 70652943-dbf9-494d-8728-acd037f84cb0 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1649_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1649_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1649_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 551c5420-2b9e-4381-82b2-feb736d1179a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 31872f6a-d225-4f91-b38d-4505d19e406c Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1338 78 false '-- '-- '-- '-- -28789 '-- e8692f76-bc92-57a4-9d02-6ea94d74b7b9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1338_demographic Alive '-- '-- '-- '-- 28789 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1418.0 '-- '-- 5a6c0be4-e300-56d1-85c2-bb11bf6409b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1338_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 201 0 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1338_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 281b59c3-bf65-5194-ae83-64187eba70fc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 31872f6a-d225-4f91-b38d-4505d19e406c Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1338 78 false '-- '-- '-- '-- -28789 '-- e8692f76-bc92-57a4-9d02-6ea94d74b7b9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1338_demographic Alive '-- '-- '-- '-- 28789 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1418.0 '-- '-- 5a6c0be4-e300-56d1-85c2-bb11bf6409b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1338_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 510 415 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1338_treatment5 Docetaxel '-- '-- '-- '-- '-- '-- '-- 812 '-- mg '-- '-- '-- '-- 54422771-5f2e-4183-b7d5-fb25a0533734 '-- yes '-- '-- Chemotherapy +TCGA-OV 31872f6a-d225-4f91-b38d-4505d19e406c Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1338 78 false '-- '-- '-- '-- -28789 '-- e8692f76-bc92-57a4-9d02-6ea94d74b7b9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1338_demographic Alive '-- '-- '-- '-- 28789 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1418.0 '-- '-- 5a6c0be4-e300-56d1-85c2-bb11bf6409b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1338_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 627 597 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1338_treatment2 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 800 '-- mg '-- '-- '-- '-- 5bbdf4ef-abc5-4695-b688-db3b92c1f3aa '-- yes '-- '-- Chemotherapy +TCGA-OV 31872f6a-d225-4f91-b38d-4505d19e406c Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1338 78 false '-- '-- '-- '-- -28789 '-- e8692f76-bc92-57a4-9d02-6ea94d74b7b9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1338_demographic Alive '-- '-- '-- '-- 28789 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1418.0 '-- '-- 5a6c0be4-e300-56d1-85c2-bb11bf6409b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1338_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1338_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6bf283f9-f5fc-44d6-86fd-5a98cd84d9ab Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 31872f6a-d225-4f91-b38d-4505d19e406c Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1338 78 false '-- '-- '-- '-- -28789 '-- e8692f76-bc92-57a4-9d02-6ea94d74b7b9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1338_demographic Alive '-- '-- '-- '-- 28789 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1418.0 '-- '-- 5a6c0be4-e300-56d1-85c2-bb11bf6409b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1338_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- 627 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1338_treatment3 Tamoxifen '-- '-- '-- '-- '-- '-- '-- 10 '-- mg '-- '-- '-- '-- 8d220e33-4b39-4244-982b-64a18d969683 '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 31872f6a-d225-4f91-b38d-4505d19e406c Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1338 78 false '-- '-- '-- '-- -28789 '-- e8692f76-bc92-57a4-9d02-6ea94d74b7b9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1338_demographic Alive '-- '-- '-- '-- 28789 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1418.0 '-- '-- 5a6c0be4-e300-56d1-85c2-bb11bf6409b8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1338_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 201 0 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1338_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b39b6eae-ba30-4905-9091-619a9fd685d4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 31872f6a-d225-4f91-b38d-4505d19e406c Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1338 78 false '-- '-- '-- '-- -28789 '-- e8692f76-bc92-57a4-9d02-6ea94d74b7b9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1338_demographic Alive '-- '-- '-- '-- 29169 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 380 '-- '-- '-- d1f7c511-dd1b-4cc0-a721-c107fc185104 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1338_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1338_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1338_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3929a89f-85d1-4550-ad40-00a52133edb6 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 31872f6a-d225-4f91-b38d-4505d19e406c Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1338 78 false '-- '-- '-- '-- -28789 '-- e8692f76-bc92-57a4-9d02-6ea94d74b7b9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1338_demographic Alive '-- '-- '-- '-- 29169 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 380 '-- '-- '-- d1f7c511-dd1b-4cc0-a721-c107fc185104 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1338_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1338_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1338_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 94b71972-de7c-4806-90f5-220dbf4d5e01 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 31b997dd-aaea-4003-a64d-11d3e19b0bbc '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0921 72 false '-- '-- '-- '-- -26606 1483 713b8732-7456-5a66-ba93-51e1f87f97da '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0921_demographic Dead '-- '-- '-- '-- 26606 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1483.0 '-- '-- c09578a3-f8e8-52b8-a38b-997b15c6d59b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0921_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 140 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-13-0921_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1e7dab23-dfe0-5645-95f7-b120f294a721 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 31b997dd-aaea-4003-a64d-11d3e19b0bbc '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0921 72 false '-- '-- '-- '-- -26606 1483 713b8732-7456-5a66-ba93-51e1f87f97da '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0921_demographic Dead '-- '-- '-- '-- 26606 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1483.0 '-- '-- c09578a3-f8e8-52b8-a38b-997b15c6d59b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0921_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0921_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2f786d32-0044-4361-b8fd-d0af22973b1d Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 31b997dd-aaea-4003-a64d-11d3e19b0bbc '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0921 72 false '-- '-- '-- '-- -26606 1483 713b8732-7456-5a66-ba93-51e1f87f97da '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0921_demographic Dead '-- '-- '-- '-- 26606 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1483.0 '-- '-- c09578a3-f8e8-52b8-a38b-997b15c6d59b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0921_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 140 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-13-0921_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- da30c6a5-897f-4465-b549-ab9109d864e2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 32960bc7-839a-42c5-9460-3917fa578ffc '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0726 55 false '-- '-- '-- '-- -20134 949 056db782-ad0b-5cfe-9fe5-55f48edf37d0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0726_demographic Dead '-- '-- '-- '-- 20526 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 392 '-- '-- '-- 2b9277e8-f892-4b03-a950-d7a2999f2a76 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0726_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0726_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0726_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 21f31345-921a-429b-9946-e9b94974e56d '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 32960bc7-839a-42c5-9460-3917fa578ffc '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0726 55 false '-- '-- '-- '-- -20134 949 056db782-ad0b-5cfe-9fe5-55f48edf37d0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0726_demographic Dead '-- '-- '-- '-- 20526 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 392 '-- '-- '-- 2b9277e8-f892-4b03-a950-d7a2999f2a76 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0726_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0726_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0726_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 267baecd-0140-4a0d-9dac-b4c6a5577581 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 32960bc7-839a-42c5-9460-3917fa578ffc '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0726 55 false '-- '-- '-- '-- -20134 949 056db782-ad0b-5cfe-9fe5-55f48edf37d0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0726_demographic Dead '-- '-- '-- '-- 20134 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 949.0 '-- '-- ed0b214c-e415-5615-bfad-27541c16d7bd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0726_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 169 29 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0726_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a3cd27d8-3518-4678-9c17-a5ae59a5a5f1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 32960bc7-839a-42c5-9460-3917fa578ffc '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0726 55 false '-- '-- '-- '-- -20134 949 056db782-ad0b-5cfe-9fe5-55f48edf37d0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0726_demographic Dead '-- '-- '-- '-- 20134 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 949.0 '-- '-- ed0b214c-e415-5615-bfad-27541c16d7bd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0726_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 169 29 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0726_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- a659d0d0-4cd3-5dfa-82bf-b1f1d7eae1bb Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 32960bc7-839a-42c5-9460-3917fa578ffc '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0726 55 false '-- '-- '-- '-- -20134 949 056db782-ad0b-5cfe-9fe5-55f48edf37d0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0726_demographic Dead '-- '-- '-- '-- 20134 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 949.0 '-- '-- ed0b214c-e415-5615-bfad-27541c16d7bd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0726_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0726_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c492257b-e89f-4546-b268-aab65b08ff09 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 32d4d200-1fdf-44ed-b81f-1954a9c93926 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1667 61 false '-- '-- '-- '-- -22306 '-- 74bea85c-1cac-5272-9bd3-f20fe9ca3b0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1667_demographic Alive '-- '-- '-- '-- 22766 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 460 '-- '-- '-- 84ba6cba-36d9-43bc-b567-0898cfb29516 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1667_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1667_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1667_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 14e45dee-699b-4fda-89cd-b253cffa75f5 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 32d4d200-1fdf-44ed-b81f-1954a9c93926 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1667 61 false '-- '-- '-- '-- -22306 '-- 74bea85c-1cac-5272-9bd3-f20fe9ca3b0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1667_demographic Alive '-- '-- '-- '-- 22766 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 460 '-- '-- '-- 84ba6cba-36d9-43bc-b567-0898cfb29516 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1667_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1667_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1667_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b3ddcf31-561e-494e-bf1d-0f6e82322383 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 32d4d200-1fdf-44ed-b81f-1954a9c93926 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1667 61 false '-- '-- '-- '-- -22306 '-- 74bea85c-1cac-5272-9bd3-f20fe9ca3b0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1667_demographic Alive '-- '-- '-- '-- 22306 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1882.0 '-- '-- a6b591a1-0fe2-54bb-b79b-392e1358cdb7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1667_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 118 7 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1667_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 228b952d-ec2c-4294-8f28-bfd5436c5923 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 32d4d200-1fdf-44ed-b81f-1954a9c93926 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1667 61 false '-- '-- '-- '-- -22306 '-- 74bea85c-1cac-5272-9bd3-f20fe9ca3b0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1667_demographic Alive '-- '-- '-- '-- 22306 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1882.0 '-- '-- a6b591a1-0fe2-54bb-b79b-392e1358cdb7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1667_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 685 559 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1667_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 30998180-ec22-4e3d-9d83-9260f99368dd '-- yes '-- '-- Chemotherapy +TCGA-OV 32d4d200-1fdf-44ed-b81f-1954a9c93926 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1667 61 false '-- '-- '-- '-- -22306 '-- 74bea85c-1cac-5272-9bd3-f20fe9ca3b0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1667_demographic Alive '-- '-- '-- '-- 22306 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1882.0 '-- '-- a6b591a1-0fe2-54bb-b79b-392e1358cdb7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1667_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1135 1135 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1667_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- b5f63fb4-f66c-49eb-86a2-86e0e5dc693c '-- yes '-- '-- Chemotherapy +TCGA-OV 32d4d200-1fdf-44ed-b81f-1954a9c93926 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1667 61 false '-- '-- '-- '-- -22306 '-- 74bea85c-1cac-5272-9bd3-f20fe9ca3b0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1667_demographic Alive '-- '-- '-- '-- 22306 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1882.0 '-- '-- a6b591a1-0fe2-54bb-b79b-392e1358cdb7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1667_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 118 7 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1667_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- c28bdc3b-ca3b-4ff7-b4ec-78a9494a5d76 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 32d4d200-1fdf-44ed-b81f-1954a9c93926 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1667 61 false '-- '-- '-- '-- -22306 '-- 74bea85c-1cac-5272-9bd3-f20fe9ca3b0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1667_demographic Alive '-- '-- '-- '-- 22306 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1882.0 '-- '-- a6b591a1-0fe2-54bb-b79b-392e1358cdb7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1667_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1875 820 '-- '-- Progressive Disease '-- '-- '-- '-- 20 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1667_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 40 '-- mg/m2 '-- '-- '-- '-- d1f07464-24c0-43fe-8234-248d1a00cd46 '-- yes '-- '-- Chemotherapy +TCGA-OV 32d4d200-1fdf-44ed-b81f-1954a9c93926 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1667 61 false '-- '-- '-- '-- -22306 '-- 74bea85c-1cac-5272-9bd3-f20fe9ca3b0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1667_demographic Alive '-- '-- '-- '-- 22306 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1882.0 '-- '-- a6b591a1-0fe2-54bb-b79b-392e1358cdb7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1667_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1552 1539 '-- '-- '-- '-- '-- '-- '-- '-- 10.0 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1667_treatment '-- '-- '-- '-- '-- '-- Locoregional Site '-- 3000 '-- cGy '-- '-- '-- '-- dd668383-cf24-5d47-9ef7-1cc2f70f508a Palliative yes '-- '-- Radiation, External Beam +TCGA-OV 32d4d200-1fdf-44ed-b81f-1954a9c93926 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1667 61 false '-- '-- '-- '-- -22306 '-- 74bea85c-1cac-5272-9bd3-f20fe9ca3b0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1667_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- eb52741f-2ca0-44d3-98d8-190d5bdabd6e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1667_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1667_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 511 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1667_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 089e32de-ecfd-4926-b8e2-56da5f235ee8 '-- yes '-- '-- Surgery, NOS +TCGA-OV 32d4d200-1fdf-44ed-b81f-1954a9c93926 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1667 61 false '-- '-- '-- '-- -22306 '-- 74bea85c-1cac-5272-9bd3-f20fe9ca3b0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1667_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- eb52741f-2ca0-44d3-98d8-190d5bdabd6e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1667_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1667_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1667_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7e3f3e97-43d6-4e18-8702-6c57dbe07815 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 32d4d200-1fdf-44ed-b81f-1954a9c93926 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1667 61 false '-- '-- '-- '-- -22306 '-- 74bea85c-1cac-5272-9bd3-f20fe9ca3b0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1667_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- eb52741f-2ca0-44d3-98d8-190d5bdabd6e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1667_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1667_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1667_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 96b222e4-a127-49d1-852f-659444f0717a '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 33d36b64-4688-40a7-9a4f-7cd3d4cc683d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1695 62 false '-- '-- '-- '-- -22895 1229 dce94daf-399a-5bdc-9190-563469a5a908 '-- not reported female '-- '-- '-- '-- white TCGA-29-1695_demographic Dead '-- '-- '-- '-- 22895 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1229.0 '-- '-- 545dae36-7e9c-574c-81a8-71ad91172902 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1695_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1695_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5e98915f-9215-5b0f-a8d2-af86dff4b291 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 33dc48d8-2e01-482b-944c-ac10da727ec9 Informed Consent 5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2003 53 false '-- '-- '-- '-- -19605 '-- 08fce3da-3c8e-5e7f-9af4-734444e2919c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2003_demographic Alive '-- '-- '-- '-- 19605 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 122.0 '-- '-- ad8f87df-db51-56a1-840d-89f7e394ab23 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2003_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- 122 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2003_treatment3 Gemcitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 00c29751-5832-4ae3-9037-ea030ac0855f '-- yes '-- '-- Chemotherapy +TCGA-OV 33dc48d8-2e01-482b-944c-ac10da727ec9 Informed Consent 5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2003 53 false '-- '-- '-- '-- -19605 '-- 08fce3da-3c8e-5e7f-9af4-734444e2919c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2003_demographic Alive '-- '-- '-- '-- 19605 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 122.0 '-- '-- ad8f87df-db51-56a1-840d-89f7e394ab23 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2003_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 121 52 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2003_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 322070a9-b213-4341-9aaa-68b9cd07e9c4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 33dc48d8-2e01-482b-944c-ac10da727ec9 Informed Consent 5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2003 53 false '-- '-- '-- '-- -19605 '-- 08fce3da-3c8e-5e7f-9af4-734444e2919c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2003_demographic Alive '-- '-- '-- '-- 19605 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 122.0 '-- '-- ad8f87df-db51-56a1-840d-89f7e394ab23 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2003_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2003_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 354e5ce7-a1ff-40a1-bde8-5d67059ea432 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 33dc48d8-2e01-482b-944c-ac10da727ec9 Informed Consent 5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2003 53 false '-- '-- '-- '-- -19605 '-- 08fce3da-3c8e-5e7f-9af4-734444e2919c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2003_demographic Alive '-- '-- '-- '-- 19605 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 122.0 '-- '-- ad8f87df-db51-56a1-840d-89f7e394ab23 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2003_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 121 52 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-2003_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 82ae9fb4-8dfa-420b-b76a-f37aba37befe Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 33dc48d8-2e01-482b-944c-ac10da727ec9 Informed Consent 5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2003 53 false '-- '-- '-- '-- -19605 '-- 08fce3da-3c8e-5e7f-9af4-734444e2919c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2003_demographic Alive '-- '-- '-- '-- 19605 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 122.0 '-- '-- ad8f87df-db51-56a1-840d-89f7e394ab23 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2003_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- 122 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2003_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 82bf33a9-33b0-5f3c-a260-0f9e0bc340ec '-- yes '-- '-- Chemotherapy +TCGA-OV 33dc48d8-2e01-482b-944c-ac10da727ec9 Informed Consent 5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2003 53 false '-- '-- '-- '-- -19605 '-- 08fce3da-3c8e-5e7f-9af4-734444e2919c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2003_demographic Alive '-- '-- '-- '-- 19605 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 122.0 '-- '-- ad8f87df-db51-56a1-840d-89f7e394ab23 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2003_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 121 52 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-61-2003_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c4748631-2f0f-4764-98cc-989fd8cd1f28 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3438c018-9856-4628-ae59-7d365713647f Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1664 37 false '-- '-- '-- '-- -13739 2279 b603a7aa-f4ae-58d8-b613-f41c79e7391d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1664_demographic Dead '-- '-- '-- '-- 13739 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2279.0 '-- '-- 913120fe-a16e-591d-8ae5-cb4923775484 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1664_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 139 15 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1664_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2b1985a5-0650-5e6a-8634-6fb1b91b94a2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3438c018-9856-4628-ae59-7d365713647f Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1664 37 false '-- '-- '-- '-- -13739 2279 b603a7aa-f4ae-58d8-b613-f41c79e7391d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1664_demographic Dead '-- '-- '-- '-- 13739 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2279.0 '-- '-- 913120fe-a16e-591d-8ae5-cb4923775484 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1664_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 139 15 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1664_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 48b87ace-b180-4e31-97b7-3359d8d952cd Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3438c018-9856-4628-ae59-7d365713647f Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1664 37 false '-- '-- '-- '-- -13739 2279 b603a7aa-f4ae-58d8-b613-f41c79e7391d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1664_demographic Dead '-- '-- '-- '-- 13739 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2279.0 '-- '-- 913120fe-a16e-591d-8ae5-cb4923775484 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1664_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1664_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8bd13138-c9b9-4f7b-99d7-b91195dce6c4 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 3445c524-5a37-40b6-8614-956d76eed939 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1576 76 false '-- '-- '-- '-- -27778 '-- c18e2936-9d87-546c-a5a8-35e127f24d64 '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1576_demographic Alive '-- '-- '-- '-- 27778 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 915.0 '-- '-- 12f10f5c-d361-5f22-9b2e-011d487caa6b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1576_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 222 12 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1576_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3648 '-- mg '-- '-- '-- '-- 0fbd411f-0552-42d5-a43a-3fac6bba3b02 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3445c524-5a37-40b6-8614-956d76eed939 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1576 76 false '-- '-- '-- '-- -27778 '-- c18e2936-9d87-546c-a5a8-35e127f24d64 '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1576_demographic Alive '-- '-- '-- '-- 27778 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 915.0 '-- '-- 12f10f5c-d361-5f22-9b2e-011d487caa6b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1576_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1576_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 65650e0d-211e-4464-bba6-132817ff1a71 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 3445c524-5a37-40b6-8614-956d76eed939 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1576 76 false '-- '-- '-- '-- -27778 '-- c18e2936-9d87-546c-a5a8-35e127f24d64 '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1576_demographic Alive '-- '-- '-- '-- 27778 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 915.0 '-- '-- 12f10f5c-d361-5f22-9b2e-011d487caa6b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1576_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 222 12 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1576_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2528 '-- mg '-- '-- '-- '-- dff8e585-7ede-5263-b007-1a6ec4555f91 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3445c524-5a37-40b6-8614-956d76eed939 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1576 76 false '-- '-- '-- '-- -27778 '-- c18e2936-9d87-546c-a5a8-35e127f24d64 '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1576_demographic Alive '-- '-- '-- '-- 28595 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 817 '-- '-- '-- bb83cd72-ea25-4e63-a04f-15cd84507e5a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-36-1576_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-36-1576_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1576_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 463edaf6-d0f5-4b6f-88c2-cc6ead78cdcd '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 3445c524-5a37-40b6-8614-956d76eed939 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1576 76 false '-- '-- '-- '-- -27778 '-- c18e2936-9d87-546c-a5a8-35e127f24d64 '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1576_demographic Alive '-- '-- '-- '-- 28595 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 817 '-- '-- '-- bb83cd72-ea25-4e63-a04f-15cd84507e5a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-36-1576_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-36-1576_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1576_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d85bd4c1-5754-42ad-9af0-401d0bbdf74e '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 3491d67a-4f83-4f67-8085-bbb9fe942be5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1918 45 false '-- '-- '-- '-- -16689 479 3e70c222-a83b-5da9-9917-afab5c944561 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1918_demographic Dead '-- '-- '-- '-- 16689 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 479.0 '-- '-- 333c3c88-a293-5542-b167-ffd3a6a82a8d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1918_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 146 9 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1918_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4686 '-- mg '-- '-- '-- '-- 854ad469-98aa-47e9-944c-3b5c18a80cae Adjuvant yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 3491d67a-4f83-4f67-8085-bbb9fe942be5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1918 45 false '-- '-- '-- '-- -16689 479 3e70c222-a83b-5da9-9917-afab5c944561 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1918_demographic Dead '-- '-- '-- '-- 16689 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 479.0 '-- '-- 333c3c88-a293-5542-b167-ffd3a6a82a8d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1918_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 146 9 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1918_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2179 '-- mg '-- '-- '-- '-- 913a1420-0d51-49c3-9f1c-c44985a6b80e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3491d67a-4f83-4f67-8085-bbb9fe942be5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1918 45 false '-- '-- '-- '-- -16689 479 3e70c222-a83b-5da9-9917-afab5c944561 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1918_demographic Dead '-- '-- '-- '-- 16689 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 479.0 '-- '-- 333c3c88-a293-5542-b167-ffd3a6a82a8d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1918_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 146 9 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1918_treatment Gemcitabine '-- '-- '-- '-- '-- '-- '-- 15616 '-- mg '-- '-- '-- '-- 92769dda-b04b-5014-a5a0-0fb807673dfe Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3491d67a-4f83-4f67-8085-bbb9fe942be5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1918 45 false '-- '-- '-- '-- -16689 479 3e70c222-a83b-5da9-9917-afab5c944561 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1918_demographic Dead '-- '-- '-- '-- 16689 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 479.0 '-- '-- 333c3c88-a293-5542-b167-ffd3a6a82a8d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1918_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1918_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 936ec02e-0b1c-44dd-a9b9-def34f1dde01 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 3491d67a-4f83-4f67-8085-bbb9fe942be5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1918 45 false '-- '-- '-- '-- -16689 479 3e70c222-a83b-5da9-9917-afab5c944561 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1918_demographic Dead '-- '-- '-- '-- 17102 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 413 '-- '-- '-- 5db4051e-6a7c-4045-a2ab-38af1f4cb108 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1918_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1918_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1918_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 583cad5d-22da-48fe-b3fc-58408e0bd5df '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 3491d67a-4f83-4f67-8085-bbb9fe942be5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1918 45 false '-- '-- '-- '-- -16689 479 3e70c222-a83b-5da9-9917-afab5c944561 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1918_demographic Dead '-- '-- '-- '-- 17102 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 413 '-- '-- '-- 5db4051e-6a7c-4045-a2ab-38af1f4cb108 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1918_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1918_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1918_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7af469bd-2538-43e6-a48d-9b0a04e30c02 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 34f285ab-6c31-4865-a0a7-a57af3567df0 Informed Consent 51 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-0987 61 false '-- '-- '-- '-- -22287 701 320febbb-04db-59be-aced-d111a47c27ba '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-0987_demographic Dead '-- '-- '-- '-- 22729 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 442 '-- '-- '-- 02b58c15-bd61-4725-9415-296878026063 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-20-0987_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-20-0987_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-20-0987_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6d33b084-050c-4e66-88f4-88f6c32480fd '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 34f285ab-6c31-4865-a0a7-a57af3567df0 Informed Consent 51 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-0987 61 false '-- '-- '-- '-- -22287 701 320febbb-04db-59be-aced-d111a47c27ba '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-0987_demographic Dead '-- '-- '-- '-- 22729 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 442 '-- '-- '-- 02b58c15-bd61-4725-9415-296878026063 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-20-0987_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-20-0987_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-20-0987_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d67070da-5ab1-4dee-8138-c1fd22bcfc0a '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 34f285ab-6c31-4865-a0a7-a57af3567df0 Informed Consent 51 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-0987 61 false '-- '-- '-- '-- -22287 701 320febbb-04db-59be-aced-d111a47c27ba '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-0987_demographic Dead '-- '-- '-- '-- 22287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 701.0 '-- '-- d704293e-b3ad-5c64-946f-4bacf3517263 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-0987_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- 91 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-0987_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2bfaa920-0463-5a3d-aab2-bb32658cfbd7 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 34f285ab-6c31-4865-a0a7-a57af3567df0 Informed Consent 51 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-0987 61 false '-- '-- '-- '-- -22287 701 320febbb-04db-59be-aced-d111a47c27ba '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-0987_demographic Dead '-- '-- '-- '-- 22287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 701.0 '-- '-- d704293e-b3ad-5c64-946f-4bacf3517263 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-0987_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 442 427 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-20-0987_treatment2 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 422b13b1-c194-48d8-a4fa-a5b4e91700af '-- yes '-- '-- Chemotherapy +TCGA-OV 34f285ab-6c31-4865-a0a7-a57af3567df0 Informed Consent 51 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-0987 61 false '-- '-- '-- '-- -22287 701 320febbb-04db-59be-aced-d111a47c27ba '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-0987_demographic Dead '-- '-- '-- '-- 22287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 701.0 '-- '-- d704293e-b3ad-5c64-946f-4bacf3517263 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-0987_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- 91 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-0987_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a095ac2b-3120-4976-80c1-670d10c5dd65 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 34f285ab-6c31-4865-a0a7-a57af3567df0 Informed Consent 51 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-0987 61 false '-- '-- '-- '-- -22287 701 320febbb-04db-59be-aced-d111a47c27ba '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-0987_demographic Dead '-- '-- '-- '-- 22287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 701.0 '-- '-- d704293e-b3ad-5c64-946f-4bacf3517263 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-0987_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-20-0987_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a56823d3-485a-47f5-bab2-41af6e13a991 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5fefd09f-e6da-4962-b32c-38b35b442491 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1467_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1467_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1467_treatment23 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0b278c6d-2c93-4a92-94fc-ad1ca312deaa '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5fefd09f-e6da-4962-b32c-38b35b442491 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1467_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1467_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1467_treatment24 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ba463a42-e9bf-4379-bc26-6d9404f5fa1e '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5fefd09f-e6da-4962-b32c-38b35b442491 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1467_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1467_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1253 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1467_treatment25 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ca037d5d-8892-4cd7-bbb6-2a442f143f0e '-- yes '-- '-- Surgery, NOS +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 19905 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1253 '-- '-- '-- e1abcbcd-957e-4715-9d6d-04eab569f042 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1467_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1467_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1467_treatment22 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 17229468-2145-47c4-a426-98dd7da83805 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 19905 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1253 '-- '-- '-- e1abcbcd-957e-4715-9d6d-04eab569f042 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1467_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1467_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1467_treatment21 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6a547126-bf9f-4d05-a1fb-8dea3b5db96a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3224.0 '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1909 1804 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment19 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1620 '-- mg '-- '-- '-- '-- 0d932fc6-9325-4b71-a93c-0d1c46be9691 '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3224.0 '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1909 1804 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 600 '-- mg '-- '-- '-- '-- 0ddbd0d2-38e5-404e-8bb3-6eb5d48e8390 '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3224.0 '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2737 2561 '-- '-- Progressive Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment4 Docetaxel '-- '-- '-- '-- '-- '-- '-- 1350 '-- mg '-- '-- '-- '-- 10573f4e-ad5f-43c6-9e42-4b309c136f6b '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3224.0 '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 3059 2989 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment8 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 240 '-- mg '-- '-- '-- '-- 1f126068-18e8-43ed-a258-c8965edd3389 '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3224.0 '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- '-- 2758 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment9 Tamoxifen '-- '-- '-- '-- '-- '-- '-- 20 '-- mg '-- '-- '-- '-- 2b09fb39-2ccb-44c3-95ff-a467c6043f8f '-- yes Treatment Ongoing '-- Hormone Therapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3224.0 '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2889 2819 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-1467_treatment3 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 3610 '-- mg '-- '-- '-- '-- 4197ebe3-e7fb-4722-905f-e3bff75de5a4 Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3224.0 '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2737 2561 '-- '-- Progressive Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment11 Cisplatin '-- '-- '-- '-- '-- '-- '-- 115 '-- mg '-- '-- '-- '-- 49ba3b95-5b3e-446f-a60d-e1b88e37179e '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3224.0 '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1467_treatment20 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6f91757e-4593-4310-89be-deb08c8e0597 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3224.0 '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2296 2170 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment15 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- 600 '-- mg '-- '-- '-- '-- 762b9277-43c8-49cf-b704-0cba8c156515 '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3224.0 '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2296 2170 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment13 Topotecan '-- '-- '-- '-- '-- '-- '-- 60 '-- mg '-- '-- '-- '-- 7ea8e5da-2710-4e9f-af67-a280f5f3ef4b '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3224.0 '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2889 2819 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment16 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 50 '-- mg '-- '-- '-- '-- 88db6cc5-7337-4d94-bed8-519caba30bda '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3224.0 '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 3101 3073 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment17 Topotecan '-- '-- '-- '-- '-- '-- '-- 21 '-- mg '-- '-- '-- '-- 900b5cea-ecd5-475a-96f0-f4e35a2fe504 '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3224.0 '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1391 1277 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1780 '-- mg '-- '-- '-- '-- aca9b339-bbca-5160-a750-2a740c69e77d '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3224.0 '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2531 2476 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 240 '-- mg '-- '-- '-- '-- bd344845-a944-43a3-a2c9-cac9287b6a1b '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3224.0 '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 110 6 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment18 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2650 '-- mg '-- '-- '-- '-- bd9a1b9a-7979-4e6f-80c1-202bec310fc6 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3224.0 '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1391 1277 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment14 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1275 '-- mg '-- '-- '-- '-- c0e7b6d2-2e0d-41a8-aabe-576025520ae1 '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3224.0 '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2458 2363 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment7 Tamoxifen '-- '-- '-- '-- '-- '-- '-- 20 '-- mg '-- '-- '-- '-- d3877182-84ec-4b90-8071-fda9dbf8171a '-- yes Treatment Ongoing '-- Hormone Therapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3224.0 '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 110 6 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4565 '-- mg '-- '-- '-- '-- d6b6b288-c3e5-4c3c-8e84-99bb0ca3d631 Adjuvant yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3224.0 '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1391 1277 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment10 Cisplatin '-- '-- '-- '-- '-- '-- '-- 400 '-- mg '-- '-- '-- '-- dc82333f-8085-46a3-9884-0c9e9499aac5 '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 34f545ab-d420-4dd2-8db4-3159896efd23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1467 51 false '-- '-- '-- '-- -18652 3224 6a7e579e-29e7-5428-ae75-1909d32d4438 '-- not reported female '-- '-- '-- '-- white TCGA-24-1467_demographic Dead '-- '-- '-- '-- 18652 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3224.0 '-- '-- e3e76f36-15de-5e61-98f3-e52149f98d4a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1467_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 3059 2989 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1467_treatment12 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 8871 '-- mg '-- '-- '-- '-- e0887fa1-9410-453c-a671-5f49a489e2e8 '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 35916942-e7aa-45db-ad27-03cba67d4d5b Informed Consent -295 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1517 79 false '-- '-- '-- '-- -29045 608 475ebd3e-0dfc-5d80-aa9a-145aa1385328 '-- not reported female '-- '-- '-- '-- white TCGA-04-1517_demographic Dead '-- '-- '-- '-- 29394 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 349 '-- '-- '-- 663c06e7-5a5e-4e97-bf48-b89fc761b77f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1517_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1517_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1517_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4764c147-0298-4b15-ac89-741c08f87f0c '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 35916942-e7aa-45db-ad27-03cba67d4d5b Informed Consent -295 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1517 79 false '-- '-- '-- '-- -29045 608 475ebd3e-0dfc-5d80-aa9a-145aa1385328 '-- not reported female '-- '-- '-- '-- white TCGA-04-1517_demographic Dead '-- '-- '-- '-- 29394 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 349 '-- '-- '-- 663c06e7-5a5e-4e97-bf48-b89fc761b77f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1517_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1517_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1517_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7c95667c-882e-4fe1-ae7c-35b4eae5f379 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 35916942-e7aa-45db-ad27-03cba67d4d5b Informed Consent -295 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1517 79 false '-- '-- '-- '-- -29045 608 475ebd3e-0dfc-5d80-aa9a-145aa1385328 '-- not reported female '-- '-- '-- '-- white TCGA-04-1517_demographic Dead '-- '-- '-- '-- 29045 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 608.0 '-- '-- a533a03b-cac4-5cc9-89ef-905ef85da2e4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1517_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 144 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1517_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- 70 '-- mg/m2 '-- '-- '-- '-- 0927662c-275a-5ab1-a874-90c4ce75b258 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 35916942-e7aa-45db-ad27-03cba67d4d5b Informed Consent -295 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1517 79 false '-- '-- '-- '-- -29045 608 475ebd3e-0dfc-5d80-aa9a-145aa1385328 '-- not reported female '-- '-- '-- '-- white TCGA-04-1517_demographic Dead '-- '-- '-- '-- 29045 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 608.0 '-- '-- a533a03b-cac4-5cc9-89ef-905ef85da2e4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1517_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 144 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1517_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 4b64f1a6-ba24-400d-9b4e-cbb639559e83 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 35916942-e7aa-45db-ad27-03cba67d4d5b Informed Consent -295 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1517 79 false '-- '-- '-- '-- -29045 608 475ebd3e-0dfc-5d80-aa9a-145aa1385328 '-- not reported female '-- '-- '-- '-- white TCGA-04-1517_demographic Dead '-- '-- '-- '-- 29045 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 608.0 '-- '-- a533a03b-cac4-5cc9-89ef-905ef85da2e4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1517_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1517_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 553502c1-ded9-4673-bc84-8efe46c4eba7 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 35916942-e7aa-45db-ad27-03cba67d4d5b Informed Consent -295 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1517 79 false '-- '-- '-- '-- -29045 608 475ebd3e-0dfc-5d80-aa9a-145aa1385328 '-- not reported female '-- '-- '-- '-- white TCGA-04-1517_demographic Dead '-- '-- '-- '-- 29045 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 608.0 '-- '-- a533a03b-cac4-5cc9-89ef-905ef85da2e4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1517_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 421 352 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1517_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6e8803e3-1da5-4131-9a43-cb4afacf0c20 '-- yes '-- '-- Chemotherapy +TCGA-OV 35916942-e7aa-45db-ad27-03cba67d4d5b Informed Consent -295 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1517 79 false '-- '-- '-- '-- -29045 608 475ebd3e-0dfc-5d80-aa9a-145aa1385328 '-- not reported female '-- '-- '-- '-- white TCGA-04-1517_demographic Dead '-- '-- '-- '-- 29045 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 608.0 '-- '-- a533a03b-cac4-5cc9-89ef-905ef85da2e4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1517_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 421 352 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1517_treatment3 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e2c869ba-41e3-4048-bb78-209315887326 '-- yes '-- '-- Chemotherapy +TCGA-OV 35b1bb47-b32b-4acd-8e5e-fe6bd56c0289 Informed Consent -10 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1899 81 false '-- '-- '-- '-- -29692 '-- 5598bf83-0608-5924-ab34-8fb8d9adedd5 '-- not reported female '-- '-- '-- '-- white TCGA-61-1899_demographic Alive '-- '-- '-- '-- 29692 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 256.0 '-- '-- 75a582c5-2c47-5358-8493-c328c8808ef9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1899_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 159 52 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1899_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1104 '-- mg '-- '-- '-- '-- 3b7327cc-7b40-5b9b-9294-c9bb3ed11251 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 35b1bb47-b32b-4acd-8e5e-fe6bd56c0289 Informed Consent -10 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1899 81 false '-- '-- '-- '-- -29692 '-- 5598bf83-0608-5924-ab34-8fb8d9adedd5 '-- not reported female '-- '-- '-- '-- white TCGA-61-1899_demographic Alive '-- '-- '-- '-- 29692 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 256.0 '-- '-- 75a582c5-2c47-5358-8493-c328c8808ef9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1899_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 159 52 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1899_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2220 '-- mg '-- '-- '-- '-- 5825f09d-7305-442b-9815-a2f03a020318 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 35b1bb47-b32b-4acd-8e5e-fe6bd56c0289 Informed Consent -10 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1899 81 false '-- '-- '-- '-- -29692 '-- 5598bf83-0608-5924-ab34-8fb8d9adedd5 '-- not reported female '-- '-- '-- '-- white TCGA-61-1899_demographic Alive '-- '-- '-- '-- 29692 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 256.0 '-- '-- 75a582c5-2c47-5358-8493-c328c8808ef9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1899_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1899_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 75fe53c7-d173-4f70-a5a4-a1653aaaaaed Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 36595b52-2b5f-4e87-80eb-37c29109e92a Informed Consent 21 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-0991 78 false '-- '-- '-- '-- -28694 '-- 36753d6c-f821-5dbf-a8b3-662cb2430bed '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-0991_demographic Alive '-- '-- '-- '-- 28694 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 797.0 '-- '-- b12547de-b3e3-59fe-a426-d67e9bb05533 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-0991_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- 71 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-0991_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 425 '-- mg/m2 '-- '-- '-- '-- 0bac6761-7a5f-5ace-8dca-80cefb181dc5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 36595b52-2b5f-4e87-80eb-37c29109e92a Informed Consent 21 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-0991 78 false '-- '-- '-- '-- -28694 '-- 36753d6c-f821-5dbf-a8b3-662cb2430bed '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-0991_demographic Alive '-- '-- '-- '-- 28694 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 797.0 '-- '-- b12547de-b3e3-59fe-a426-d67e9bb05533 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-0991_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-20-0991_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e3b1ad43-dc0d-4647-b564-ef94d2f52512 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 374ea8df-ecc4-44b0-b519-33efa5078018 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1761 80 false '-- '-- '-- '-- -29337 528 5707415c-114a-55b6-9c7a-ffe492bcd227 '-- not reported female '-- '-- '-- '-- asian TCGA-29-1761_demographic Dead '-- '-- '-- '-- 29337 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 528.0 '-- '-- d4e1d5f5-41cc-55eb-b085-39c793219da6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1761_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 202 '-- '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1761_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1e6a1434-c30c-42cd-b741-99866b474834 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 374ea8df-ecc4-44b0-b519-33efa5078018 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1761 80 false '-- '-- '-- '-- -29337 528 5707415c-114a-55b6-9c7a-ffe492bcd227 '-- not reported female '-- '-- '-- '-- asian TCGA-29-1761_demographic Dead '-- '-- '-- '-- 29337 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 528.0 '-- '-- d4e1d5f5-41cc-55eb-b085-39c793219da6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1761_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 202 49 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1761_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8228dadd-a42b-5674-90c3-3f343a60fdae Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 374ea8df-ecc4-44b0-b519-33efa5078018 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1761 80 false '-- '-- '-- '-- -29337 528 5707415c-114a-55b6-9c7a-ffe492bcd227 '-- not reported female '-- '-- '-- '-- asian TCGA-29-1761_demographic Dead '-- '-- '-- '-- 29337 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 528.0 '-- '-- d4e1d5f5-41cc-55eb-b085-39c793219da6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1761_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1761_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 930c30d2-8197-4f0c-8b8a-135527234da1 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 3768d34f-1527-40db-b116-cd80cee5ec3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2045 50 false '-- '-- '-- '-- -18285 1069 6ca6b1db-10fc-590d-a441-127763862ffa '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2045_demographic Dead '-- '-- '-- '-- 18285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1069.0 '-- '-- 0ffcd742-a709-52d5-b7ac-ea8a72376fdf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2045_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 895 875 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-09-2045_treatment6 Etoposide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 00384dae-a28f-47e3-a395-36bdecd58af0 '-- yes '-- '-- Chemotherapy +TCGA-OV 3768d34f-1527-40db-b116-cd80cee5ec3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2045 50 false '-- '-- '-- '-- -18285 1069 6ca6b1db-10fc-590d-a441-127763862ffa '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2045_demographic Dead '-- '-- '-- '-- 18285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1069.0 '-- '-- 0ffcd742-a709-52d5-b7ac-ea8a72376fdf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2045_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 239 121 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2045_treatment8 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- 07c51cb8-37a0-48c8-9324-57207fde0293 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3768d34f-1527-40db-b116-cd80cee5ec3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2045 50 false '-- '-- '-- '-- -18285 1069 6ca6b1db-10fc-590d-a441-127763862ffa '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2045_demographic Dead '-- '-- '-- '-- 18285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1069.0 '-- '-- 0ffcd742-a709-52d5-b7ac-ea8a72376fdf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2045_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 11 11 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2045_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- 1b2c6cef-ba81-4958-938d-225000f554be Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3768d34f-1527-40db-b116-cd80cee5ec3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2045 50 false '-- '-- '-- '-- -18285 1069 6ca6b1db-10fc-590d-a441-127763862ffa '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2045_demographic Dead '-- '-- '-- '-- 18285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1069.0 '-- '-- 0ffcd742-a709-52d5-b7ac-ea8a72376fdf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2045_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 808 678 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2045_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- 70 '-- mg/m2 '-- '-- '-- '-- 35aab97a-27d7-48df-a26e-68963cecaebb Not Reported yes '-- '-- Chemotherapy +TCGA-OV 3768d34f-1527-40db-b116-cd80cee5ec3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2045 50 false '-- '-- '-- '-- -18285 1069 6ca6b1db-10fc-590d-a441-127763862ffa '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2045_demographic Dead '-- '-- '-- '-- 18285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1069.0 '-- '-- 0ffcd742-a709-52d5-b7ac-ea8a72376fdf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2045_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 11 11 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2045_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 810 '-- mg '-- '-- '-- '-- 3fddf00d-d655-4ee4-b10a-0252399d9e26 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3768d34f-1527-40db-b116-cd80cee5ec3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2045 50 false '-- '-- '-- '-- -18285 1069 6ca6b1db-10fc-590d-a441-127763862ffa '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2045_demographic Dead '-- '-- '-- '-- 18285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1069.0 '-- '-- 0ffcd742-a709-52d5-b7ac-ea8a72376fdf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2045_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 939 933 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2045_treatment9 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1600 '-- mg '-- '-- '-- '-- 49e9ebeb-2801-4180-a82a-7c71790182ca '-- yes '-- '-- Chemotherapy +TCGA-OV 3768d34f-1527-40db-b116-cd80cee5ec3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2045 50 false '-- '-- '-- '-- -18285 1069 6ca6b1db-10fc-590d-a441-127763862ffa '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2045_demographic Dead '-- '-- '-- '-- 18285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1069.0 '-- '-- 0ffcd742-a709-52d5-b7ac-ea8a72376fdf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2045_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 808 678 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2045_treatment10 Topotecan '-- '-- '-- '-- '-- '-- '-- 1 '-- mg/m2 '-- '-- '-- '-- 7d4be807-5188-482b-b262-cb1f3829207c Not Reported yes '-- '-- Chemotherapy +TCGA-OV 3768d34f-1527-40db-b116-cd80cee5ec3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2045 50 false '-- '-- '-- '-- -18285 1069 6ca6b1db-10fc-590d-a441-127763862ffa '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2045_demographic Dead '-- '-- '-- '-- 18285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1069.0 '-- '-- 0ffcd742-a709-52d5-b7ac-ea8a72376fdf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2045_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2045_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c2b741f0-9882-4483-b1ea-6742c0846fd4 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 3768d34f-1527-40db-b116-cd80cee5ec3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2045 50 false '-- '-- '-- '-- -18285 1069 6ca6b1db-10fc-590d-a441-127763862ffa '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2045_demographic Dead '-- '-- '-- '-- 18285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1069.0 '-- '-- 0ffcd742-a709-52d5-b7ac-ea8a72376fdf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2045_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 939 933 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2045_treatment11 Carboplatin '-- '-- '-- '-- '-- '-- '-- 560 '-- mg '-- '-- '-- '-- c7a499ad-5696-4fd4-80fb-5e3509451f5a '-- yes '-- '-- Chemotherapy +TCGA-OV 3768d34f-1527-40db-b116-cd80cee5ec3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2045 50 false '-- '-- '-- '-- -18285 1069 6ca6b1db-10fc-590d-a441-127763862ffa '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2045_demographic Dead '-- '-- '-- '-- 18285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1069.0 '-- '-- 0ffcd742-a709-52d5-b7ac-ea8a72376fdf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2045_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 94 64 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2045_treatment4 Cisplatin '-- '-- '-- '-- '-- '-- '-- 50 '-- mg/m2 '-- '-- '-- '-- d6c5532c-b73c-4446-99aa-9b24d9c6ba22 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3768d34f-1527-40db-b116-cd80cee5ec3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2045 50 false '-- '-- '-- '-- -18285 1069 6ca6b1db-10fc-590d-a441-127763862ffa '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2045_demographic Dead '-- '-- '-- '-- 18285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1069.0 '-- '-- 0ffcd742-a709-52d5-b7ac-ea8a72376fdf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2045_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 94 64 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2045_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 100 '-- mg/m2 '-- '-- '-- '-- e31e9778-3847-42eb-a80b-d9e469c14dea Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3768d34f-1527-40db-b116-cd80cee5ec3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2045 50 false '-- '-- '-- '-- -18285 1069 6ca6b1db-10fc-590d-a441-127763862ffa '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2045_demographic Dead '-- '-- '-- '-- 18285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1069.0 '-- '-- 0ffcd742-a709-52d5-b7ac-ea8a72376fdf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2045_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 239 121 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2045_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 50 '-- mg/m2 '-- '-- '-- '-- fbf4c9d9-7fcc-5779-8624-88535dfac6a3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3768d34f-1527-40db-b116-cd80cee5ec3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2045 50 false '-- '-- '-- '-- -18285 1069 6ca6b1db-10fc-590d-a441-127763862ffa '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2045_demographic Dead '-- '-- '-- '-- 18916 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 631 '-- '-- '-- 16c4841d-ee31-4ee8-b7be-07c59d221633 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-2045_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-2045_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2045_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9ce95555-23bb-4f3f-b044-c5cb8462ed38 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 3768d34f-1527-40db-b116-cd80cee5ec3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2045 50 false '-- '-- '-- '-- -18285 1069 6ca6b1db-10fc-590d-a441-127763862ffa '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2045_demographic Dead '-- '-- '-- '-- 18916 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 631 '-- '-- '-- 16c4841d-ee31-4ee8-b7be-07c59d221633 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-2045_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-2045_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2045_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e836a430-97ed-4f2e-bcab-14bc1b90d409 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 378f7ea2-86b4-4072-80b8-e12d67193106 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0923 74 false '-- '-- '-- '-- -27081 '-- b8d6ce63-c7cb-5f82-a118-f49f9fc7cb75 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0923_demographic Alive '-- '-- '-- '-- 27081 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2547.0 '-- '-- 47744210-bad0-50d1-a104-be4181e7ed85 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0923_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 151 39 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0923_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- 0df3a888-7ae2-4c44-9297-eb7e07254fbc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 378f7ea2-86b4-4072-80b8-e12d67193106 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0923 74 false '-- '-- '-- '-- -27081 '-- b8d6ce63-c7cb-5f82-a118-f49f9fc7cb75 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0923_demographic Alive '-- '-- '-- '-- 27081 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2547.0 '-- '-- 47744210-bad0-50d1-a104-be4181e7ed85 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0923_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 151 39 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0923_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- 4c9c8bc1-8450-5812-85a2-9263e7d23512 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 378f7ea2-86b4-4072-80b8-e12d67193106 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0923 74 false '-- '-- '-- '-- -27081 '-- b8d6ce63-c7cb-5f82-a118-f49f9fc7cb75 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0923_demographic Alive '-- '-- '-- '-- 27081 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2547.0 '-- '-- 47744210-bad0-50d1-a104-be4181e7ed85 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0923_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0923_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 78666a7c-f6aa-4601-8f08-2ab035e611a6 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 378f7ea2-86b4-4072-80b8-e12d67193106 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0923 74 false '-- '-- '-- '-- -27081 '-- b8d6ce63-c7cb-5f82-a118-f49f9fc7cb75 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0923_demographic Alive '-- '-- '-- '-- 27081 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2547.0 '-- '-- 47744210-bad0-50d1-a104-be4181e7ed85 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0923_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 151 39 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0923_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- 9dbbd0d7-4336-4f54-b61c-4d34c1de458c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 378f7ea2-86b4-4072-80b8-e12d67193106 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0923 74 false '-- '-- '-- '-- -27081 '-- b8d6ce63-c7cb-5f82-a118-f49f9fc7cb75 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0923_demographic Alive '-- '-- '-- '-- 28800 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 1719 '-- '-- '-- f29a4b56-64c7-45e8-87e7-147643f6e591 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0923_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0923_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 384170fc-e8be-426a-a54e-bf1ca61f2986 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1431 67 false '-- '-- '-- '-- -24758 567 60cbb98e-688e-507e-8f47-5429ab9d40b4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1431_demographic Dead '-- '-- '-- '-- 24758 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 583.0 '-- '-- 4ea91113-9bc3-52d6-92be-98286edfdb2e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1431_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1431_treatment4 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 414ba74f-851b-4655-9ba4-772aefb4fc88 '-- yes '-- '-- Chemotherapy +TCGA-OV 384170fc-e8be-426a-a54e-bf1ca61f2986 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1431 67 false '-- '-- '-- '-- -24758 567 60cbb98e-688e-507e-8f47-5429ab9d40b4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1431_demographic Dead '-- '-- '-- '-- 24758 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 583.0 '-- '-- 4ea91113-9bc3-52d6-92be-98286edfdb2e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1431_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 147 42 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1431_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 59c0259d-6e2a-5736-ace6-f9f0cb199276 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 384170fc-e8be-426a-a54e-bf1ca61f2986 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1431 67 false '-- '-- '-- '-- -24758 567 60cbb98e-688e-507e-8f47-5429ab9d40b4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1431_demographic Dead '-- '-- '-- '-- 24758 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 583.0 '-- '-- 4ea91113-9bc3-52d6-92be-98286edfdb2e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1431_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1431_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5ac8bf4d-5099-4ba1-b24b-67d17b8069cc Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 384170fc-e8be-426a-a54e-bf1ca61f2986 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1431 67 false '-- '-- '-- '-- -24758 567 60cbb98e-688e-507e-8f47-5429ab9d40b4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1431_demographic Dead '-- '-- '-- '-- 24758 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 583.0 '-- '-- 4ea91113-9bc3-52d6-92be-98286edfdb2e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1431_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 147 42 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1431_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cc78ac0f-bd88-48b9-8aba-62eecb17f0ae Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 384170fc-e8be-426a-a54e-bf1ca61f2986 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1431 67 false '-- '-- '-- '-- -24758 567 60cbb98e-688e-507e-8f47-5429ab9d40b4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1431_demographic Dead '-- '-- '-- '-- 24758 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 583.0 '-- '-- 4ea91113-9bc3-52d6-92be-98286edfdb2e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1431_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 329 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1431_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d1837a45-20b1-4c9b-86ef-e6ce13004e00 '-- yes '-- '-- Chemotherapy +TCGA-OV 384170fc-e8be-426a-a54e-bf1ca61f2986 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1431 67 false '-- '-- '-- '-- -24758 567 60cbb98e-688e-507e-8f47-5429ab9d40b4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1431_demographic Dead '-- '-- '-- '-- 24758 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 583.0 '-- '-- 4ea91113-9bc3-52d6-92be-98286edfdb2e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1431_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 308 262 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1431_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fad950d5-82f9-4283-9f91-44c40036d29e '-- yes '-- '-- Chemotherapy +TCGA-OV 384170fc-e8be-426a-a54e-bf1ca61f2986 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1431 67 false '-- '-- '-- '-- -24758 567 60cbb98e-688e-507e-8f47-5429ab9d40b4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1431_demographic Dead '-- '-- '-- '-- 24957 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 199 '-- '-- '-- f32f5f06-3dc3-4068-9814-8f1e974080e9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1431_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1431_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1431_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3bc9138c-7764-4494-867a-4fa6220f87ec '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 384170fc-e8be-426a-a54e-bf1ca61f2986 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1431 67 false '-- '-- '-- '-- -24758 567 60cbb98e-688e-507e-8f47-5429ab9d40b4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1431_demographic Dead '-- '-- '-- '-- 24957 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 199 '-- '-- '-- f32f5f06-3dc3-4068-9814-8f1e974080e9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1431_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1431_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1431_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bc83be55-d07f-40ef-b077-181c937d9dc8 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 390eed6b-50af-48a9-9fd6-3a68a2bbb7f9 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0800 52 false '-- '-- '-- '-- -19087 '-- 5f1fb8da-be94-5c96-95df-d92366f4f2cd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0800_demographic Alive '-- '-- '-- '-- 20483 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 1396 '-- '-- '-- 6fd200ed-0824-4ad4-9ab0-3a8f25da1069 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0800_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0800_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 390eed6b-50af-48a9-9fd6-3a68a2bbb7f9 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0800 52 false '-- '-- '-- '-- -19087 '-- 5f1fb8da-be94-5c96-95df-d92366f4f2cd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0800_demographic Alive '-- '-- '-- '-- 19087 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2661.0 '-- '-- 876d6193-704f-5a99-a4cc-eff9b4e4f2d5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0800_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 142 30 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0800_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4e4aa7c2-4f66-4465-9565-dc0d9dace86b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 390eed6b-50af-48a9-9fd6-3a68a2bbb7f9 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0800 52 false '-- '-- '-- '-- -19087 '-- 5f1fb8da-be94-5c96-95df-d92366f4f2cd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0800_demographic Alive '-- '-- '-- '-- 19087 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2661.0 '-- '-- 876d6193-704f-5a99-a4cc-eff9b4e4f2d5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0800_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0800_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 900edc18-b269-41b8-ad9c-9e59c5d6048e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 390eed6b-50af-48a9-9fd6-3a68a2bbb7f9 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0800 52 false '-- '-- '-- '-- -19087 '-- 5f1fb8da-be94-5c96-95df-d92366f4f2cd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0800_demographic Alive '-- '-- '-- '-- 19087 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2661.0 '-- '-- 876d6193-704f-5a99-a4cc-eff9b4e4f2d5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0800_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 142 30 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0800_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 97066293-e221-5df0-9097-d6eb462e5791 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 390eed6b-50af-48a9-9fd6-3a68a2bbb7f9 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0800 52 false '-- '-- '-- '-- -19087 '-- 5f1fb8da-be94-5c96-95df-d92366f4f2cd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0800_demographic Alive '-- '-- '-- '-- 19087 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2661.0 '-- '-- 876d6193-704f-5a99-a4cc-eff9b4e4f2d5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0800_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 142 30 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0800_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fe7d2504-4f2d-42f0-b4df-fe230dfe1c31 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3ac45a71-c463-4f0f-b030-58c475a34418 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2008 40 false '-- '-- '-- '-- -14791 '-- 32601890-a62f-5eac-821d-10d86af7637f '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-61-2008_demographic Alive '-- '-- '-- '-- 14791 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 932.0 '-- '-- 4233e6db-8d18-5461-b504-3aa62d11e73f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2008_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 979 861 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2008_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1260 '-- mg '-- '-- '-- '-- 250be9cb-0748-4ce8-9b12-4bde630732da '-- yes '-- '-- Chemotherapy +TCGA-OV 3ac45a71-c463-4f0f-b030-58c475a34418 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2008 40 false '-- '-- '-- '-- -14791 '-- 32601890-a62f-5eac-821d-10d86af7637f '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-61-2008_demographic Alive '-- '-- '-- '-- 14791 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 932.0 '-- '-- 4233e6db-8d18-5461-b504-3aa62d11e73f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2008_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 149 29 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2008_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 690 '-- mg '-- '-- '-- '-- 272bb86f-8af0-4e53-b5bf-85c34c32cdfa Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3ac45a71-c463-4f0f-b030-58c475a34418 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2008 40 false '-- '-- '-- '-- -14791 '-- 32601890-a62f-5eac-821d-10d86af7637f '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-61-2008_demographic Alive '-- '-- '-- '-- 14791 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 932.0 '-- '-- 4233e6db-8d18-5461-b504-3aa62d11e73f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2008_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 149 29 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2008_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3600 '-- mg '-- '-- '-- '-- 58c61cf2-ff51-4029-9532-35c2f6340c86 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3ac45a71-c463-4f0f-b030-58c475a34418 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2008 40 false '-- '-- '-- '-- -14791 '-- 32601890-a62f-5eac-821d-10d86af7637f '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-61-2008_demographic Alive '-- '-- '-- '-- 14791 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 932.0 '-- '-- 4233e6db-8d18-5461-b504-3aa62d11e73f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2008_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 979 861 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-61-2008_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 372 '-- mg '-- '-- '-- '-- 8e378e12-53e5-58b2-b236-5632aa905b06 '-- yes '-- '-- Chemotherapy +TCGA-OV 3ac45a71-c463-4f0f-b030-58c475a34418 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2008 40 false '-- '-- '-- '-- -14791 '-- 32601890-a62f-5eac-821d-10d86af7637f '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-61-2008_demographic Alive '-- '-- '-- '-- 14791 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 932.0 '-- '-- 4233e6db-8d18-5461-b504-3aa62d11e73f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2008_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 979 861 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-2008_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 702 '-- mg '-- '-- '-- '-- be98b2ae-dfc0-4117-8634-22a7a747aa22 '-- yes '-- '-- Chemotherapy +TCGA-OV 3ac45a71-c463-4f0f-b030-58c475a34418 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2008 40 false '-- '-- '-- '-- -14791 '-- 32601890-a62f-5eac-821d-10d86af7637f '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-61-2008_demographic Alive '-- '-- '-- '-- 14791 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 932.0 '-- '-- 4233e6db-8d18-5461-b504-3aa62d11e73f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2008_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2008_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dfe28ad7-c53d-4c03-bc34-9e1c1235e2f3 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 3ac45a71-c463-4f0f-b030-58c475a34418 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2008 40 false '-- '-- '-- '-- -14791 '-- 32601890-a62f-5eac-821d-10d86af7637f '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-61-2008_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4f470568-65cb-4b63-8909-e898849fac6a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2008_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2008_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2008_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 307862de-8876-4961-be58-9aa1f342e590 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 3ac45a71-c463-4f0f-b030-58c475a34418 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2008 40 false '-- '-- '-- '-- -14791 '-- 32601890-a62f-5eac-821d-10d86af7637f '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-61-2008_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4f470568-65cb-4b63-8909-e898849fac6a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2008_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2008_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 828 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2008_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 704b0356-9693-4249-8b41-eae133374222 '-- yes '-- '-- Surgery, NOS +TCGA-OV 3ac45a71-c463-4f0f-b030-58c475a34418 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2008 40 false '-- '-- '-- '-- -14791 '-- 32601890-a62f-5eac-821d-10d86af7637f '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-61-2008_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4f470568-65cb-4b63-8909-e898849fac6a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2008_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2008_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2008_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ede07552-e630-4733-8220-4c7c76f2c0e6 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 3ac45a71-c463-4f0f-b030-58c475a34418 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2008 40 false '-- '-- '-- '-- -14791 '-- 32601890-a62f-5eac-821d-10d86af7637f '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-61-2008_demographic Alive '-- '-- '-- '-- 15609 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 818 '-- '-- '-- a3073331-752e-4629-8585-886ba6f23e1f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2008_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2008_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2008_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2e2e3e78-2ede-4a24-9313-01f9088b3ad1 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 3ac45a71-c463-4f0f-b030-58c475a34418 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2008 40 false '-- '-- '-- '-- -14791 '-- 32601890-a62f-5eac-821d-10d86af7637f '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-61-2008_demographic Alive '-- '-- '-- '-- 15609 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 818 '-- '-- '-- a3073331-752e-4629-8585-886ba6f23e1f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2008_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2008_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2008_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5e091cc7-8da3-45c1-ad0d-3e3ad431b178 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 22474 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1042 '-- '-- '-- 4260a528-be39-47a7-8ba7-50172f482ceb false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1549_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1549_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1549_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1c2e0a4e-5586-4c53-bf4a-1e1645a6aeb4 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 22474 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1042 '-- '-- '-- 4260a528-be39-47a7-8ba7-50172f482ceb false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1549_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1549_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1549_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d62ef05a-9b24-4811-a209-eb38bed371fb '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8dea0054-c483-4b17-bd12-8a56e90c6a84 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1549_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1549_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1154 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1549_treatment20 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0f43e596-e767-447d-982b-2936551f159a '-- yes '-- '-- Surgery, NOS +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8dea0054-c483-4b17-bd12-8a56e90c6a84 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1549_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1549_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1549_treatment18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3abb3992-d703-45c7-886a-f40fa66fa8dc '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8dea0054-c483-4b17-bd12-8a56e90c6a84 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1549_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1549_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1549_treatment19 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 43968a37-4c90-45d0-a455-50ac1f52001c '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 21432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1721.0 '-- '-- f36f2c46-02cd-5d38-a399-09fd46cbb94d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1549_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1549_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 031c8ddf-12ce-4c58-87f2-fd306f41147f '-- yes '-- '-- Chemotherapy +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 21432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1721.0 '-- '-- f36f2c46-02cd-5d38-a399-09fd46cbb94d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1549_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1549_treatment2 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 08a04248-3951-4cb7-aa5e-f682192216cd '-- yes '-- '-- Chemotherapy +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 21432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1721.0 '-- '-- f36f2c46-02cd-5d38-a399-09fd46cbb94d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1549_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1549_treatment8 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0c73d25a-f82a-45ad-93a1-d4e7cd37d758 '-- yes '-- '-- Chemotherapy +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 21432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1721.0 '-- '-- f36f2c46-02cd-5d38-a399-09fd46cbb94d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1549_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1549_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2a4136fa-2fd1-4a08-bf13-d6e790284cf4 '-- yes '-- '-- Chemotherapy +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 21432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1721.0 '-- '-- f36f2c46-02cd-5d38-a399-09fd46cbb94d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1549_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- 1518 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1549_treatment10 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 342487bd-18ae-4221-80d4-30ce5b227fce '-- yes '-- '-- Chemotherapy +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 21432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1721.0 '-- '-- f36f2c46-02cd-5d38-a399-09fd46cbb94d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1549_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1549_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 473999fe-f843-4ec1-8b1b-45a4cedb3d94 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 21432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1721.0 '-- '-- f36f2c46-02cd-5d38-a399-09fd46cbb94d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1549_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1549_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 537014ac-188c-42ec-b054-06b27a1ce5cd Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 21432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1721.0 '-- '-- f36f2c46-02cd-5d38-a399-09fd46cbb94d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1549_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1549_treatment11 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5e07770a-70f1-4738-853c-e3e37bcbe6b8 '-- yes '-- '-- Chemotherapy +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 21432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1721.0 '-- '-- f36f2c46-02cd-5d38-a399-09fd46cbb94d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1549_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-1549_treatment13 Capecitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aa6abe6f-70f6-42cd-b191-b4f22f5153f4 '-- yes '-- '-- Chemotherapy +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 21432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1721.0 '-- '-- f36f2c46-02cd-5d38-a399-09fd46cbb94d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1549_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1549_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ad5ea13e-3382-5f99-a511-54945c4d6605 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 21432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1721.0 '-- '-- f36f2c46-02cd-5d38-a399-09fd46cbb94d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1549_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1549_treatment6 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b0fc5f1a-bfe9-4b47-833e-d32fba3f1e42 '-- yes '-- '-- Chemotherapy +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 21432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1721.0 '-- '-- f36f2c46-02cd-5d38-a399-09fd46cbb94d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1549_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1549_treatment14 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c9f4cf12-efa9-4219-b709-774822df3b2f '-- yes '-- '-- Chemotherapy +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 21432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1721.0 '-- '-- f36f2c46-02cd-5d38-a399-09fd46cbb94d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1549_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1549_treatment3 Etoposide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e665dc46-e095-4bf7-a279-38c307ac08dc '-- yes '-- '-- Chemotherapy +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 21432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1721.0 '-- '-- f36f2c46-02cd-5d38-a399-09fd46cbb94d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1549_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1549_treatment12 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- edec7ad3-9664-443b-9c45-9dc6e6034677 '-- yes '-- '-- Chemotherapy +TCGA-OV 3b81ec7c-0934-4649-9231-9919dd26dd15 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1549 58 false '-- '-- '-- '-- -21432 1721 c55541b5-4687-5f7e-ad06-df8ce619bf84 '-- not reported female '-- '-- '-- '-- white TCGA-24-1549_demographic Dead '-- '-- '-- '-- 21432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1721.0 '-- '-- f36f2c46-02cd-5d38-a399-09fd46cbb94d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1549_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1549_treatment9 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- edf31f48-0253-48a3-bcc5-7bc43bb92cdc '-- yes '-- '-- Chemotherapy +TCGA-OV 3bc8a74f-49bd-46b6-a3a4-68ca838e83c6 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2401 64 false '-- '-- '-- '-- -23711 90 61b69ecd-1137-5c6b-8e08-e9acae100eb2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2401_demographic Dead '-- '-- '-- '-- 23711 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 90.0 '-- '-- 012f225f-1cb8-5962-a806-b05cca31ffd9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2401_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2401_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d51b968c-33f8-5c0c-a1e2-7f32f53f231f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 3c037acf-f453-4513-a6dd-129163ddde2a Informed Consent 1956 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2050 65 false '-- '-- '-- '-- -23987 '-- 80f7a366-5553-5d1a-be48-e08d9569fa47 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2050_demographic Alive '-- '-- '-- '-- 23987 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2163.0 '-- '-- 8fa05a4c-5532-5def-9e43-e3eec25dd69c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2050_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2050_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3b99d86d-3bd2-4bb8-b459-d1ce3e6df9ea Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 3c037acf-f453-4513-a6dd-129163ddde2a Informed Consent 1956 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2050 65 false '-- '-- '-- '-- -23987 '-- 80f7a366-5553-5d1a-be48-e08d9569fa47 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2050_demographic Alive '-- '-- '-- '-- 23987 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2163.0 '-- '-- 8fa05a4c-5532-5def-9e43-e3eec25dd69c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2050_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 25 5 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2050_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 5465e29e-47b1-4944-a2fc-acf783d74df3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3c037acf-f453-4513-a6dd-129163ddde2a Informed Consent 1956 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2050 65 false '-- '-- '-- '-- -23987 '-- 80f7a366-5553-5d1a-be48-e08d9569fa47 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2050_demographic Alive '-- '-- '-- '-- 23987 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2163.0 '-- '-- 8fa05a4c-5532-5def-9e43-e3eec25dd69c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2050_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 25 5 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2050_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- a8485f3f-865e-4bfa-a22c-8f502ddb80b6 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3c037acf-f453-4513-a6dd-129163ddde2a Informed Consent 1956 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2050 65 false '-- '-- '-- '-- -23987 '-- 80f7a366-5553-5d1a-be48-e08d9569fa47 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2050_demographic Alive '-- '-- '-- '-- 23987 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2163.0 '-- '-- 8fa05a4c-5532-5def-9e43-e3eec25dd69c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2050_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 110 47 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2050_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- a961ed03-c7ac-40cf-b836-0b7767be9026 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3c037acf-f453-4513-a6dd-129163ddde2a Informed Consent 1956 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2050 65 false '-- '-- '-- '-- -23987 '-- 80f7a366-5553-5d1a-be48-e08d9569fa47 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2050_demographic Alive '-- '-- '-- '-- 23987 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2163.0 '-- '-- 8fa05a4c-5532-5def-9e43-e3eec25dd69c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2050_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 110 47 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2050_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- c65e8262-0d27-528f-8aea-79cc33552f6b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3c8b5986-f9d5-4e7e-9dd4-3ad301451279 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0802 79 false '-- '-- '-- '-- -29075 1552 973ea332-b143-5fcd-a662-fcdf0c5fe724 '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-0802_demographic Dead '-- '-- '-- '-- 29585 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 510 '-- '-- '-- 78c223c4-9214-4637-9071-e8136f5aaaa5 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0802_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0802_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 3c8b5986-f9d5-4e7e-9dd4-3ad301451279 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0802 79 false '-- '-- '-- '-- -29075 1552 973ea332-b143-5fcd-a662-fcdf0c5fe724 '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-0802_demographic Dead '-- '-- '-- '-- 29075 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1552.0 '-- '-- cc4d8111-8848-5bb3-81f9-2a27d7212bed true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0802_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 188 62 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0802_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0d3f48f1-f212-4db8-ab85-244122a77e09 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3c8b5986-f9d5-4e7e-9dd4-3ad301451279 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0802 79 false '-- '-- '-- '-- -29075 1552 973ea332-b143-5fcd-a662-fcdf0c5fe724 '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-0802_demographic Dead '-- '-- '-- '-- 29075 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1552.0 '-- '-- cc4d8111-8848-5bb3-81f9-2a27d7212bed true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0802_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 188 62 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0802_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- acaaa583-2c09-587e-b2ee-80d3db2ab8e0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3c8b5986-f9d5-4e7e-9dd4-3ad301451279 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0802 79 false '-- '-- '-- '-- -29075 1552 973ea332-b143-5fcd-a662-fcdf0c5fe724 '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-0802_demographic Dead '-- '-- '-- '-- 29075 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1552.0 '-- '-- cc4d8111-8848-5bb3-81f9-2a27d7212bed true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0802_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0802_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e03ad538-703d-49aa-a871-bcd289d86798 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 3e8a51bf-7e1f-4eab-af83-3c60d04db1bf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0913 53 false '-- '-- '-- '-- -19573 '-- 7566af4a-1027-5501-b6dd-0c2b437a7790 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0913_demographic Alive '-- '-- '-- '-- 20444 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 871 '-- '-- '-- 2614be00-e0af-4ade-8eea-b9f54a1490d8 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0913_diagnosis4 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0913_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 3e8a51bf-7e1f-4eab-af83-3c60d04db1bf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0913 53 false '-- '-- '-- '-- -19573 '-- 7566af4a-1027-5501-b6dd-0c2b437a7790 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0913_demographic Alive '-- '-- '-- '-- 19573 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3325.0 '-- '-- 2be71456-45a9-5969-9734-1a2d672374ed true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0913_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 161 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0913_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- 1e298880-0a07-516f-990d-749cd230ff0d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3e8a51bf-7e1f-4eab-af83-3c60d04db1bf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0913 53 false '-- '-- '-- '-- -19573 '-- 7566af4a-1027-5501-b6dd-0c2b437a7790 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0913_demographic Alive '-- '-- '-- '-- 19573 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3325.0 '-- '-- 2be71456-45a9-5969-9734-1a2d672374ed true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0913_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0913_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4a9451ac-da4e-459f-b0fc-f2a47aba2120 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 3e8a51bf-7e1f-4eab-af83-3c60d04db1bf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0913 53 false '-- '-- '-- '-- -19573 '-- 7566af4a-1027-5501-b6dd-0c2b437a7790 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0913_demographic Alive '-- '-- '-- '-- 19573 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3325.0 '-- '-- 2be71456-45a9-5969-9734-1a2d672374ed true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0913_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 161 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0913_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- 7fb6a174-7d0d-453f-8498-af0d0bd60e25 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3e8a51bf-7e1f-4eab-af83-3c60d04db1bf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0913 53 false '-- '-- '-- '-- -19573 '-- 7566af4a-1027-5501-b6dd-0c2b437a7790 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0913_demographic Alive '-- '-- '-- '-- 19573 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3325.0 '-- '-- 2be71456-45a9-5969-9734-1a2d672374ed true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0913_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 161 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0913_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- d13f9b5e-6778-46c9-9d24-ae142efdd145 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3e8a51bf-7e1f-4eab-af83-3c60d04db1bf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0913 53 false '-- '-- '-- '-- -19573 '-- 7566af4a-1027-5501-b6dd-0c2b437a7790 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0913_demographic Alive '-- '-- '-- '-- 19573 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3325.0 '-- '-- 2be71456-45a9-5969-9734-1a2d672374ed true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0913_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 1071 962 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0913_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- d5c7052e-0304-4696-8aa1-0e6f76b3cdcf '-- yes '-- '-- Chemotherapy +TCGA-OV 3e8a51bf-7e1f-4eab-af83-3c60d04db1bf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0913 53 false '-- '-- '-- '-- -19573 '-- 7566af4a-1027-5501-b6dd-0c2b437a7790 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0913_demographic Alive '-- '-- '-- '-- 19573 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3325.0 '-- '-- 2be71456-45a9-5969-9734-1a2d672374ed true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0913_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 1071 962 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- 175.0 mg/m2 '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0913_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- db218fa6-a3e8-4a93-b1e6-a737888d35c4 '-- yes '-- '-- Chemotherapy +TCGA-OV 3e8a51bf-7e1f-4eab-af83-3c60d04db1bf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0913 53 false '-- '-- '-- '-- -19573 '-- 7566af4a-1027-5501-b6dd-0c2b437a7790 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0913_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5e2a17e7-64e9-4ea6-88d2-3cfdbf0d159b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0913_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0913_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0913_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1211026f-8ab2-4fd2-a762-11e210788bad '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 3e8a51bf-7e1f-4eab-af83-3c60d04db1bf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0913 53 false '-- '-- '-- '-- -19573 '-- 7566af4a-1027-5501-b6dd-0c2b437a7790 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0913_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5e2a17e7-64e9-4ea6-88d2-3cfdbf0d159b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0913_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0913_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0913_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 48bddafc-8fb4-4739-ace1-e9462641960e '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 3e8a51bf-7e1f-4eab-af83-3c60d04db1bf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0913 53 false '-- '-- '-- '-- -19573 '-- 7566af4a-1027-5501-b6dd-0c2b437a7790 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0913_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5e2a17e7-64e9-4ea6-88d2-3cfdbf0d159b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0913_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0913_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 912 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0913_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f93d283c-a816-4930-857e-2b40e1137999 '-- yes '-- '-- Surgery, NOS +TCGA-OV 3e8a51bf-7e1f-4eab-af83-3c60d04db1bf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0913 53 false '-- '-- '-- '-- -19573 '-- 7566af4a-1027-5501-b6dd-0c2b437a7790 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0913_demographic Alive '-- '-- '-- '-- 20444 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 871 '-- '-- '-- e9774f28-71b2-40ed-8c77-f7c7ea7ee9de false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0913_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0913_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0913_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 46924ae0-e65e-4c36-9c59-95deedf2235e '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 3e8a51bf-7e1f-4eab-af83-3c60d04db1bf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0913 53 false '-- '-- '-- '-- -19573 '-- 7566af4a-1027-5501-b6dd-0c2b437a7790 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0913_demographic Alive '-- '-- '-- '-- 20444 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 871 '-- '-- '-- e9774f28-71b2-40ed-8c77-f7c7ea7ee9de false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0913_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0913_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0913_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4ea2ee65-721a-45a7-9737-fc4d0c050ef2 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 3f917550-89a6-404b-94df-938c99121411 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1628 67 false '-- '-- '-- '-- -24488 627 6e2d232b-ab2e-50d6-bfae-ee839c5600ad '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1628_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 32e96cae-7bf2-487e-97b5-dd2bb49ea751 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1628_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1628_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1628_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6a082f2a-692d-41aa-8285-66e9aab926c9 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 3f917550-89a6-404b-94df-938c99121411 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1628 67 false '-- '-- '-- '-- -24488 627 6e2d232b-ab2e-50d6-bfae-ee839c5600ad '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1628_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 32e96cae-7bf2-487e-97b5-dd2bb49ea751 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1628_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1628_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1628_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b708d9ba-a812-4b35-a46e-30f0aaafbb1a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 3f917550-89a6-404b-94df-938c99121411 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1628 67 false '-- '-- '-- '-- -24488 627 6e2d232b-ab2e-50d6-bfae-ee839c5600ad '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1628_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 32e96cae-7bf2-487e-97b5-dd2bb49ea751 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1628_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1628_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 483 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1628_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b82985d8-ddbc-423c-994c-7a8b7a240476 '-- yes '-- '-- Surgery, NOS +TCGA-OV 3f917550-89a6-404b-94df-938c99121411 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1628 67 false '-- '-- '-- '-- -24488 627 6e2d232b-ab2e-50d6-bfae-ee839c5600ad '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1628_demographic Dead '-- '-- '-- '-- 24775 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 287 '-- '-- '-- 5ba19c31-3f02-41f0-a38e-f1311ebf0e0c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1628_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1628_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1628_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3d6dd47e-4702-44e5-a51d-552ef8a295f3 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 3f917550-89a6-404b-94df-938c99121411 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1628 67 false '-- '-- '-- '-- -24488 627 6e2d232b-ab2e-50d6-bfae-ee839c5600ad '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1628_demographic Dead '-- '-- '-- '-- 24775 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 287 '-- '-- '-- 5ba19c31-3f02-41f0-a38e-f1311ebf0e0c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1628_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1628_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1628_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8c025c21-0227-46a8-93e7-3fbbd903f0bd '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 3f917550-89a6-404b-94df-938c99121411 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1628 67 false '-- '-- '-- '-- -24488 627 6e2d232b-ab2e-50d6-bfae-ee839c5600ad '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1628_demographic Dead '-- '-- '-- '-- 24488 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 627.0 '-- '-- 8a7f1425-a395-5f52-8f54-d892a3e2f7e7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1628_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 182 35 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1628_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1ab570b3-3dbc-4057-bcf2-75fcab876460 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3f917550-89a6-404b-94df-938c99121411 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1628 67 false '-- '-- '-- '-- -24488 627 6e2d232b-ab2e-50d6-bfae-ee839c5600ad '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1628_demographic Dead '-- '-- '-- '-- 24488 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 627.0 '-- '-- 8a7f1425-a395-5f52-8f54-d892a3e2f7e7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1628_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 182 35 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1628_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 23777ecf-03ee-5cd8-a454-ff354ab7ddc9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3f917550-89a6-404b-94df-938c99121411 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1628 67 false '-- '-- '-- '-- -24488 627 6e2d232b-ab2e-50d6-bfae-ee839c5600ad '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1628_demographic Dead '-- '-- '-- '-- 24488 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 627.0 '-- '-- 8a7f1425-a395-5f52-8f54-d892a3e2f7e7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1628_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 350 299 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1628_treatment2 Gemcitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5405e41b-4699-457a-b2a8-26f215d9b05f '-- yes '-- '-- Chemotherapy +TCGA-OV 3f917550-89a6-404b-94df-938c99121411 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1628 67 false '-- '-- '-- '-- -24488 627 6e2d232b-ab2e-50d6-bfae-ee839c5600ad '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1628_demographic Dead '-- '-- '-- '-- 24488 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 627.0 '-- '-- 8a7f1425-a395-5f52-8f54-d892a3e2f7e7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1628_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1628_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- eff0751e-9ef6-460b-8bf2-7f86839c2b8c Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 3fc8f799-5bd3-4f48-baf0-c458ce86ab7e Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1413 51 false '-- '-- '-- '-- -18846 '-- 74a17d97-ff76-50a8-858a-cc082f7219c2 '-- not reported female '-- '-- '-- '-- white TCGA-24-1413_demographic Alive '-- '-- '-- '-- 18846 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 192.0 '-- '-- 7ad436d5-5f18-51e6-a99d-d533a2c7e2cc true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1413_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1413_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d0dc6dab-a6b2-4a19-af37-071410cbd5fa Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 3fc8f799-5bd3-4f48-baf0-c458ce86ab7e Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1413 51 false '-- '-- '-- '-- -18846 '-- 74a17d97-ff76-50a8-858a-cc082f7219c2 '-- not reported female '-- '-- '-- '-- white TCGA-24-1413_demographic Alive '-- '-- '-- '-- 18846 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 192.0 '-- '-- 7ad436d5-5f18-51e6-a99d-d533a2c7e2cc true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1413_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 145 34 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1413_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1340 '-- mg '-- '-- '-- '-- d3c5b21a-960c-5ddb-a798-7eb73176d614 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 3fc8f799-5bd3-4f48-baf0-c458ce86ab7e Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1413 51 false '-- '-- '-- '-- -18846 '-- 74a17d97-ff76-50a8-858a-cc082f7219c2 '-- not reported female '-- '-- '-- '-- white TCGA-24-1413_demographic Alive '-- '-- '-- '-- 18846 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 192.0 '-- '-- 7ad436d5-5f18-51e6-a99d-d533a2c7e2cc true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1413_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 145 34 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1413_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3864 '-- mg '-- '-- '-- '-- d60a093e-acbf-4ec8-a078-af9530c887be Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 40635bf3-d8ba-4833-b623-547e55e5d07e Informed Consent 1802 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2425 60 false '-- '-- '-- '-- -22089 '-- 90915e14-fbfa-56e5-8fcd-04df28f44be4 '-- not reported female '-- '-- '-- '-- white TCGA-29-2425_demographic Alive '-- '-- '-- '-- 22089 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1977.0 '-- '-- 0d0523a7-c86c-5ce8-a0ab-2cc6094af039 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2425_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 202 10 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-2425_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 0f9840d1-0c0d-47f0-b453-3f7b69096726 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 40635bf3-d8ba-4833-b623-547e55e5d07e Informed Consent 1802 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2425 60 false '-- '-- '-- '-- -22089 '-- 90915e14-fbfa-56e5-8fcd-04df28f44be4 '-- not reported female '-- '-- '-- '-- white TCGA-29-2425_demographic Alive '-- '-- '-- '-- 22089 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1977.0 '-- '-- 0d0523a7-c86c-5ce8-a0ab-2cc6094af039 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2425_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 97 10 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-2425_treatment3 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 1000 '-- mg/m2 '-- '-- '-- '-- 3633f109-d50b-4166-988f-e5aed2104055 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 40635bf3-d8ba-4833-b623-547e55e5d07e Informed Consent 1802 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2425 60 false '-- '-- '-- '-- -22089 '-- 90915e14-fbfa-56e5-8fcd-04df28f44be4 '-- not reported female '-- '-- '-- '-- white TCGA-29-2425_demographic Alive '-- '-- '-- '-- 22089 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1977.0 '-- '-- 0d0523a7-c86c-5ce8-a0ab-2cc6094af039 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2425_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2425_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 68e6aad7-87f3-4c08-ae44-ef4276129042 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 40635bf3-d8ba-4833-b623-547e55e5d07e Informed Consent 1802 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2425 60 false '-- '-- '-- '-- -22089 '-- 90915e14-fbfa-56e5-8fcd-04df28f44be4 '-- not reported female '-- '-- '-- '-- white TCGA-29-2425_demographic Alive '-- '-- '-- '-- 22089 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1977.0 '-- '-- 0d0523a7-c86c-5ce8-a0ab-2cc6094af039 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2425_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1696 1584 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-2425_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- afe76cb3-785a-5ba4-b647-a3aa0f8b49fb '-- yes '-- '-- Chemotherapy +TCGA-OV 40635bf3-d8ba-4833-b623-547e55e5d07e Informed Consent 1802 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2425 60 false '-- '-- '-- '-- -22089 '-- 90915e14-fbfa-56e5-8fcd-04df28f44be4 '-- not reported female '-- '-- '-- '-- white TCGA-29-2425_demographic Alive '-- '-- '-- '-- 22089 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1977.0 '-- '-- 0d0523a7-c86c-5ce8-a0ab-2cc6094af039 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2425_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 202 119 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-2425_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- b4caaa99-c67b-4c1f-a574-a72d1b58c271 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 40635bf3-d8ba-4833-b623-547e55e5d07e Informed Consent 1802 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2425 60 false '-- '-- '-- '-- -22089 '-- 90915e14-fbfa-56e5-8fcd-04df28f44be4 '-- not reported female '-- '-- '-- '-- white TCGA-29-2425_demographic Alive '-- '-- '-- '-- 22089 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1977.0 '-- '-- 0d0523a7-c86c-5ce8-a0ab-2cc6094af039 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2425_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1696 1584 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2425_treatment4 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 15 '-- mg/m2 '-- '-- '-- '-- c041fe4b-360e-4dd6-88b1-d822774db67f '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 40635bf3-d8ba-4833-b623-547e55e5d07e Informed Consent 1802 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2425 60 false '-- '-- '-- '-- -22089 '-- 90915e14-fbfa-56e5-8fcd-04df28f44be4 '-- not reported female '-- '-- '-- '-- white TCGA-29-2425_demographic Alive '-- '-- '-- '-- 22089 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1977.0 '-- '-- 0d0523a7-c86c-5ce8-a0ab-2cc6094af039 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2425_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1696 1584 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-2425_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- f57e90a8-d355-4263-840d-19e5274db15b '-- yes '-- '-- Chemotherapy +TCGA-OV 40635bf3-d8ba-4833-b623-547e55e5d07e Informed Consent 1802 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2425 60 false '-- '-- '-- '-- -22089 '-- 90915e14-fbfa-56e5-8fcd-04df28f44be4 '-- not reported female '-- '-- '-- '-- white TCGA-29-2425_demographic Alive '-- '-- '-- '-- 23666 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 1577 '-- '-- '-- 3d06548a-698b-440f-b76b-e1ac9749440e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-2425_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-2425_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2425_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b0835873-6eed-4f1c-bc93-dbd325aa0567 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 40635bf3-d8ba-4833-b623-547e55e5d07e Informed Consent 1802 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2425 60 false '-- '-- '-- '-- -22089 '-- 90915e14-fbfa-56e5-8fcd-04df28f44be4 '-- not reported female '-- '-- '-- '-- white TCGA-29-2425_demographic Alive '-- '-- '-- '-- 23666 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 1577 '-- '-- '-- 3d06548a-698b-440f-b76b-e1ac9749440e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-2425_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-2425_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2425_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ef3a797f-51d9-4131-b749-76283c46d337 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 40635bf3-d8ba-4833-b623-547e55e5d07e Informed Consent 1802 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2425 60 false '-- '-- '-- '-- -22089 '-- 90915e14-fbfa-56e5-8fcd-04df28f44be4 '-- not reported female '-- '-- '-- '-- white TCGA-29-2425_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 552b785f-2291-44a3-9312-2940a1ce3781 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-2425_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-2425_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2425_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0a9fcbcb-1957-4395-bbc1-31d5e39a1635 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 40635bf3-d8ba-4833-b623-547e55e5d07e Informed Consent 1802 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2425 60 false '-- '-- '-- '-- -22089 '-- 90915e14-fbfa-56e5-8fcd-04df28f44be4 '-- not reported female '-- '-- '-- '-- white TCGA-29-2425_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 552b785f-2291-44a3-9312-2940a1ce3781 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-2425_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-2425_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1024 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2425_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 254b609f-f6cf-40fc-89d1-49d7c7df35b6 '-- yes '-- '-- Surgery, NOS +TCGA-OV 40635bf3-d8ba-4833-b623-547e55e5d07e Informed Consent 1802 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2425 60 false '-- '-- '-- '-- -22089 '-- 90915e14-fbfa-56e5-8fcd-04df28f44be4 '-- not reported female '-- '-- '-- '-- white TCGA-29-2425_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 552b785f-2291-44a3-9312-2940a1ce3781 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-2425_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-2425_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2425_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7ee5b947-b08d-4931-884f-d3b60a41d841 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 41178cbc-db73-4007-b5d8-febebf7f578d Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2081 49 false '-- '-- '-- '-- -18162 2342 dff24d73-a1fd-59fb-a913-7e99897a2a11 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2081_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 222ce34a-9038-42ea-ab8c-819ceb2c5ab8 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-2081_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-2081_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2081_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 07baba5d-3edf-4896-88a7-1b8ee0d20320 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 41178cbc-db73-4007-b5d8-febebf7f578d Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2081 49 false '-- '-- '-- '-- -18162 2342 dff24d73-a1fd-59fb-a913-7e99897a2a11 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2081_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 222ce34a-9038-42ea-ab8c-819ceb2c5ab8 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-2081_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-2081_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 250 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2081_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1200a710-9586-41bd-aa61-289cb3912a41 '-- yes '-- '-- Surgery, NOS +TCGA-OV 41178cbc-db73-4007-b5d8-febebf7f578d Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2081 49 false '-- '-- '-- '-- -18162 2342 dff24d73-a1fd-59fb-a913-7e99897a2a11 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2081_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 222ce34a-9038-42ea-ab8c-819ceb2c5ab8 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-2081_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-2081_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2081_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c81b9935-5a94-4fcc-a0e9-8ed80ea45c26 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 41178cbc-db73-4007-b5d8-febebf7f578d Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2081 49 false '-- '-- '-- '-- -18162 2342 dff24d73-a1fd-59fb-a913-7e99897a2a11 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2081_demographic Dead '-- '-- '-- '-- 18162 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2342.0 '-- '-- efeb03d8-43a5-5452-bb12-ad1e0ff9a541 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2081_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 173 16 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2081_treatment10 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4400 '-- mg '-- '-- '-- '-- 11a40866-4604-4819-8607-92de734aaef1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 41178cbc-db73-4007-b5d8-febebf7f578d Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2081 49 false '-- '-- '-- '-- -18162 2342 dff24d73-a1fd-59fb-a913-7e99897a2a11 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2081_demographic Dead '-- '-- '-- '-- 18162 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2342.0 '-- '-- efeb03d8-43a5-5452-bb12-ad1e0ff9a541 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2081_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 960 939 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2081_treatment8 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1400 '-- mg '-- '-- '-- '-- 123df940-bae5-469b-b12f-b7ecae3ad7c0 '-- yes '-- '-- Chemotherapy +TCGA-OV 41178cbc-db73-4007-b5d8-febebf7f578d Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2081 49 false '-- '-- '-- '-- -18162 2342 dff24d73-a1fd-59fb-a913-7e99897a2a11 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2081_demographic Dead '-- '-- '-- '-- 18162 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2342.0 '-- '-- efeb03d8-43a5-5452-bb12-ad1e0ff9a541 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2081_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 960 939 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2081_treatment12 Docetaxel '-- '-- '-- '-- '-- '-- '-- 290 '-- mg '-- '-- '-- '-- 35ce40b2-1852-456d-aaf9-58e5784391f6 '-- yes '-- '-- Chemotherapy +TCGA-OV 41178cbc-db73-4007-b5d8-febebf7f578d Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2081 49 false '-- '-- '-- '-- -18162 2342 dff24d73-a1fd-59fb-a913-7e99897a2a11 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2081_demographic Dead '-- '-- '-- '-- 18162 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2342.0 '-- '-- efeb03d8-43a5-5452-bb12-ad1e0ff9a541 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2081_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1948 1790 '-- '-- Recurrent Disease '-- '-- '-- '-- 11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2081_treatment2 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 13200 '-- mg '-- '-- '-- '-- 6a8e1bcf-cf50-4219-abb6-f11de4e878f2 '-- yes '-- '-- Chemotherapy +TCGA-OV 41178cbc-db73-4007-b5d8-febebf7f578d Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2081 49 false '-- '-- '-- '-- -18162 2342 dff24d73-a1fd-59fb-a913-7e99897a2a11 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2081_demographic Dead '-- '-- '-- '-- 18162 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2342.0 '-- '-- efeb03d8-43a5-5452-bb12-ad1e0ff9a541 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2081_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1154 988 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2081_treatment7 Cisplatin '-- '-- '-- '-- '-- '-- '-- 1020 '-- mg '-- '-- '-- '-- 709fe9e4-2463-409a-b2b5-a20dbf5b4512 '-- yes '-- '-- Chemotherapy +TCGA-OV 41178cbc-db73-4007-b5d8-febebf7f578d Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2081 49 false '-- '-- '-- '-- -18162 2342 dff24d73-a1fd-59fb-a913-7e99897a2a11 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2081_demographic Dead '-- '-- '-- '-- 18162 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2342.0 '-- '-- efeb03d8-43a5-5452-bb12-ad1e0ff9a541 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2081_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 418 331 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2081_treatment6 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 280 '-- mg '-- '-- '-- '-- 71e23f0b-63c5-4d95-9804-c90496c7734e '-- yes '-- '-- Chemotherapy +TCGA-OV 41178cbc-db73-4007-b5d8-febebf7f578d Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2081 49 false '-- '-- '-- '-- -18162 2342 dff24d73-a1fd-59fb-a913-7e99897a2a11 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2081_demographic Dead '-- '-- '-- '-- 18162 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2342.0 '-- '-- efeb03d8-43a5-5452-bb12-ad1e0ff9a541 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2081_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1948 1790 '-- '-- Recurrent Disease '-- '-- '-- '-- 11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2081_treatment4 Cisplatin '-- '-- '-- '-- '-- '-- '-- 660 '-- mg '-- '-- '-- '-- 982c2968-1a52-4581-8cd6-56d39731112d '-- yes '-- '-- Chemotherapy +TCGA-OV 41178cbc-db73-4007-b5d8-febebf7f578d Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2081 49 false '-- '-- '-- '-- -18162 2342 dff24d73-a1fd-59fb-a913-7e99897a2a11 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2081_demographic Dead '-- '-- '-- '-- 18162 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2342.0 '-- '-- efeb03d8-43a5-5452-bb12-ad1e0ff9a541 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2081_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 2173 2070 '-- '-- Recurrent Disease '-- '-- '-- '-- 11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-23-2081_treatment3 Motesanib Diphosphate '-- '-- '-- '-- '-- '-- '-- 1325 '-- mg '-- '-- '-- '-- 9ab4a57e-504f-425b-9faf-4c58a667321a '-- yes '-- '-- Chemotherapy +TCGA-OV 41178cbc-db73-4007-b5d8-febebf7f578d Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2081 49 false '-- '-- '-- '-- -18162 2342 dff24d73-a1fd-59fb-a913-7e99897a2a11 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2081_demographic Dead '-- '-- '-- '-- 18162 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2342.0 '-- '-- efeb03d8-43a5-5452-bb12-ad1e0ff9a541 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2081_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2081_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a779c9c5-743c-438e-840c-a2ae5e4ed344 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 41178cbc-db73-4007-b5d8-febebf7f578d Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2081 49 false '-- '-- '-- '-- -18162 2342 dff24d73-a1fd-59fb-a913-7e99897a2a11 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2081_demographic Dead '-- '-- '-- '-- 18162 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2342.0 '-- '-- efeb03d8-43a5-5452-bb12-ad1e0ff9a541 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2081_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1154 988 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2081_treatment9 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 20400 '-- mg '-- '-- '-- '-- b0abd8a7-c5bf-4ac0-9925-f1063de23a8e '-- yes '-- '-- Chemotherapy +TCGA-OV 41178cbc-db73-4007-b5d8-febebf7f578d Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2081 49 false '-- '-- '-- '-- -18162 2342 dff24d73-a1fd-59fb-a913-7e99897a2a11 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2081_demographic Dead '-- '-- '-- '-- 18162 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2342.0 '-- '-- efeb03d8-43a5-5452-bb12-ad1e0ff9a541 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2081_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 173 16 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2081_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2480 '-- mg '-- '-- '-- '-- c7eb96df-04a4-4fcb-bf89-02abbaa5e930 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 41178cbc-db73-4007-b5d8-febebf7f578d Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2081 49 false '-- '-- '-- '-- -18162 2342 dff24d73-a1fd-59fb-a913-7e99897a2a11 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2081_demographic Dead '-- '-- '-- '-- 18162 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2342.0 '-- '-- efeb03d8-43a5-5452-bb12-ad1e0ff9a541 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2081_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- Persistent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2081_treatment Bevacizumab '-- '-- '-- '-- '-- '-- '-- 1750 '-- mg '-- '-- '-- '-- cc127931-50ad-5ffb-bf29-fee0891a156f Not Reported yes '-- '-- Chemotherapy +TCGA-OV 41178cbc-db73-4007-b5d8-febebf7f578d Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2081 49 false '-- '-- '-- '-- -18162 2342 dff24d73-a1fd-59fb-a913-7e99897a2a11 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2081_demographic Dead '-- '-- '-- '-- 18162 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2342.0 '-- '-- efeb03d8-43a5-5452-bb12-ad1e0ff9a541 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2081_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- Persistent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2081_treatment11 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 300 '-- mg '-- '-- '-- '-- fe58be9f-c897-4cab-9705-56ca0de2cb34 Not Reported yes '-- '-- Chemotherapy +TCGA-OV 4160e048-f0b0-40f5-805b-e277a5893a3b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1464 70 false '-- '-- '-- '-- -25874 379 12069954-6818-59be-9f0a-bea245e7b149 '-- not reported female '-- '-- '-- '-- white TCGA-24-1464_demographic Dead '-- '-- '-- '-- 25874 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 379.0 '-- '-- 3092467a-bee4-5eb1-bd74-5efa87d5836e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- no No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1464_diagnosis '-- No Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 343 342 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1464_treatment4 Topotecan '-- '-- '-- '-- '-- '-- '-- 8 '-- mg '-- '-- '-- '-- 088cbc72-80b4-46da-b3b6-9440676b6861 '-- yes '-- '-- Chemotherapy +TCGA-OV 4160e048-f0b0-40f5-805b-e277a5893a3b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1464 70 false '-- '-- '-- '-- -25874 379 12069954-6818-59be-9f0a-bea245e7b149 '-- not reported female '-- '-- '-- '-- white TCGA-24-1464_demographic Dead '-- '-- '-- '-- 25874 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 379.0 '-- '-- 3092467a-bee4-5eb1-bd74-5efa87d5836e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- no No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1464_diagnosis '-- No Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 163 28 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1464_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1937 '-- mg '-- '-- '-- '-- 730c9e55-5213-4968-b058-f4af56e25db1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4160e048-f0b0-40f5-805b-e277a5893a3b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1464 70 false '-- '-- '-- '-- -25874 379 12069954-6818-59be-9f0a-bea245e7b149 '-- not reported female '-- '-- '-- '-- white TCGA-24-1464_demographic Dead '-- '-- '-- '-- 25874 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 379.0 '-- '-- 3092467a-bee4-5eb1-bd74-5efa87d5836e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- no No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1464_diagnosis '-- No Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- '-- 353 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1464_treatment '-- '-- '-- '-- '-- '-- Primary Tumor Field '-- '-- '-- '-- '-- '-- '-- '-- ab42f598-17c8-5847-ae16-a068190bd6f0 '-- yes '-- '-- Radiation, External Beam +TCGA-OV 4160e048-f0b0-40f5-805b-e277a5893a3b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1464 70 false '-- '-- '-- '-- -25874 379 12069954-6818-59be-9f0a-bea245e7b149 '-- not reported female '-- '-- '-- '-- white TCGA-24-1464_demographic Dead '-- '-- '-- '-- 25874 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 379.0 '-- '-- 3092467a-bee4-5eb1-bd74-5efa87d5836e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- no No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1464_diagnosis '-- No Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 163 28 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1464_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5555 '-- mg '-- '-- '-- '-- f8cea108-0048-4719-bacf-3d63febd19a5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4160e048-f0b0-40f5-805b-e277a5893a3b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1464 70 false '-- '-- '-- '-- -25874 379 12069954-6818-59be-9f0a-bea245e7b149 '-- not reported female '-- '-- '-- '-- white TCGA-24-1464_demographic Dead '-- '-- '-- '-- 26197 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 323 '-- '-- '-- 5ed9b570-2f63-4dbc-af77-0b0b391f86c6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1464_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1464_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1464_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8c72f479-fc0a-42b2-9d5e-c31a1b1fec45 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 4160e048-f0b0-40f5-805b-e277a5893a3b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1464 70 false '-- '-- '-- '-- -25874 379 12069954-6818-59be-9f0a-bea245e7b149 '-- not reported female '-- '-- '-- '-- white TCGA-24-1464_demographic Dead '-- '-- '-- '-- 26197 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 323 '-- '-- '-- 5ed9b570-2f63-4dbc-af77-0b0b391f86c6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1464_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1464_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1464_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d7b94ff0-97ac-4e0d-bf26-a2810a7bb622 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 73bfbaa5-616b-4dd8-b686-71d50d4919d1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1710_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1710_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1710_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9f3547b1-2a0e-44b1-9fb4-7f890e2e6a39 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 73bfbaa5-616b-4dd8-b686-71d50d4919d1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1710_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1710_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1710_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dac26356-c27c-4cb6-8e41-d62cdca87113 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 73bfbaa5-616b-4dd8-b686-71d50d4919d1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1710_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1710_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 878 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1710_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e5882412-3dc3-4e77-889b-00425c58f4ad '-- yes '-- '-- Surgery, NOS +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- 20284 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 315 '-- '-- '-- c4120ba5-db89-42ef-b1f4-ae863666b979 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1710_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1710_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1710_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3c9b4e03-0ae4-42e3-a95d-88ed54f8db32 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- 20284 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 315 '-- '-- '-- c4120ba5-db89-42ef-b1f4-ae863666b979 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1710_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1710_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1710_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- efe16a81-c621-4213-8693-f9eaec5e9da4 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- 19969 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 951.0 '-- '-- fcbce65c-5e58-502e-bbc5-5dce69cd809f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1710_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1710_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0918c0f9-7e62-49eb-8cf7-ecf8984a0d5a Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- 19969 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 951.0 '-- '-- fcbce65c-5e58-502e-bbc5-5dce69cd809f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1710_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 542 468 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1710_treatment11 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 1410 '-- mg '-- '-- '-- '-- 18fe54ba-a10d-48a3-bb8f-6e9f1b89de35 '-- yes '-- '-- Chemotherapy +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- 19969 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 951.0 '-- '-- fcbce65c-5e58-502e-bbc5-5dce69cd809f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1710_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 52 31 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1710_treatment4 Oxaliplatin '-- '-- '-- '-- '-- '-- '-- 300 '-- mg '-- '-- '-- '-- 1a1fa3ec-9fff-4b87-a5f6-46489fcc243c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- 19969 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 951.0 '-- '-- fcbce65c-5e58-502e-bbc5-5dce69cd809f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1710_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 766 682 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1710_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 310 '-- mg '-- '-- '-- '-- 27cc88ca-4f90-4bb7-9b7b-b4725711a685 '-- yes '-- '-- Chemotherapy +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- 19969 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 951.0 '-- '-- fcbce65c-5e58-502e-bbc5-5dce69cd809f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1710_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 150 88 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1710_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1200 '-- mg '-- '-- '-- '-- 29cda261-919a-51bc-a091-536c588f2ac4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- 19969 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 951.0 '-- '-- fcbce65c-5e58-502e-bbc5-5dce69cd809f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1710_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 437 322 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1710_treatment10 Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 70 '-- mg '-- '-- '-- '-- 385b4ff8-7f4b-4376-814e-111fc6e6f02a '-- yes '-- '-- Chemotherapy +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- 19969 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 951.0 '-- '-- fcbce65c-5e58-502e-bbc5-5dce69cd809f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1710_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 580 556 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1710_treatment9 Carboplatin '-- '-- '-- '-- '-- '-- '-- 700 '-- mg '-- '-- '-- '-- 3c97355a-2c61-4b0c-86ac-304e1220d07c '-- yes '-- '-- Chemotherapy +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- 19969 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 951.0 '-- '-- fcbce65c-5e58-502e-bbc5-5dce69cd809f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1710_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 150 88 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1710_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2790 '-- mg '-- '-- '-- '-- 6bd239c1-eb01-40cd-ac3b-198510d69a9b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- 19969 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 951.0 '-- '-- fcbce65c-5e58-502e-bbc5-5dce69cd809f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1710_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 52 31 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1710_treatment5 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 1870 '-- mg '-- '-- '-- '-- b052256b-d062-4009-bd3f-28b3c0d5397d Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- 19969 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 951.0 '-- '-- fcbce65c-5e58-502e-bbc5-5dce69cd809f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1710_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 52 31 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1710_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- 260 '-- mg '-- '-- '-- '-- bd66d308-b6da-4083-976b-a70fbe91103f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- 19969 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 951.0 '-- '-- fcbce65c-5e58-502e-bbc5-5dce69cd809f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1710_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 653 619 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1710_treatment8 Pan-VEGFR/TIE2 Tyrosine Kinase Inhibitor CEP-11981 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cf5b8471-82cc-4784-bc63-73f01a778cfd '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 4261267c-7042-4c6e-83ed-12fb401003fc Informed Consent 874 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1710 54 false '-- '-- '-- '-- -19969 951 9a82b4e9-f427-5855-bbf0-dc8473c619e0 '-- not reported female '-- '-- '-- '-- white TCGA-29-1710_demographic Dead '-- '-- '-- '-- 19969 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 951.0 '-- '-- fcbce65c-5e58-502e-bbc5-5dce69cd809f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1710_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 853 780 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1710_treatment7 Topotecan '-- '-- '-- '-- '-- '-- '-- 7 '-- mg '-- '-- '-- '-- e2af0b48-f184-4173-92e5-acb1b760c7bb '-- yes '-- '-- Chemotherapy +TCGA-OV 42b3dfa3-152f-4ab7-ac9f-988c7f473bea '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1530 68 false '-- '-- '-- '-- -25013 3622 1403a8ca-ec97-5425-bb3c-49e4dc50322c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1530_demographic Dead '-- '-- '-- '-- 25013 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3622.0 '-- '-- 3f5e6198-cbee-5262-a733-ce32d75b7057 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1530_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 153 43 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1530_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1218 '-- mg '-- '-- '-- '-- 153f2aef-ee14-5507-8a67-d42e561f5ace Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 42b3dfa3-152f-4ab7-ac9f-988c7f473bea '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1530 68 false '-- '-- '-- '-- -25013 3622 1403a8ca-ec97-5425-bb3c-49e4dc50322c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1530_demographic Dead '-- '-- '-- '-- 25013 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3622.0 '-- '-- 3f5e6198-cbee-5262-a733-ce32d75b7057 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1530_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 550 382 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1530_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2490 '-- mg '-- '-- '-- '-- 2c740855-2322-47dc-a9a2-2208805ddc01 '-- yes '-- '-- Chemotherapy +TCGA-OV 42b3dfa3-152f-4ab7-ac9f-988c7f473bea '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1530 68 false '-- '-- '-- '-- -25013 3622 1403a8ca-ec97-5425-bb3c-49e4dc50322c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1530_demographic Dead '-- '-- '-- '-- 25013 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3622.0 '-- '-- 3f5e6198-cbee-5262-a733-ce32d75b7057 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1530_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 550 382 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1530_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1200 '-- mg '-- '-- '-- '-- bfaa57b9-4981-4a10-863c-7663e568160b '-- yes '-- '-- Chemotherapy +TCGA-OV 42b3dfa3-152f-4ab7-ac9f-988c7f473bea '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1530 68 false '-- '-- '-- '-- -25013 3622 1403a8ca-ec97-5425-bb3c-49e4dc50322c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1530_demographic Dead '-- '-- '-- '-- 25013 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3622.0 '-- '-- 3f5e6198-cbee-5262-a733-ce32d75b7057 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1530_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1530_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ccc617ec-f106-4b76-ab01-434402640ba7 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 42b3dfa3-152f-4ab7-ac9f-988c7f473bea '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1530 68 false '-- '-- '-- '-- -25013 3622 1403a8ca-ec97-5425-bb3c-49e4dc50322c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1530_demographic Dead '-- '-- '-- '-- 25013 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3622.0 '-- '-- 3f5e6198-cbee-5262-a733-ce32d75b7057 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1530_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 153 43 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1530_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 678 '-- mg '-- '-- '-- '-- dcea6857-fbd5-45cc-ad9b-c9afeb8aba2f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 42b3dfa3-152f-4ab7-ac9f-988c7f473bea '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1530 68 false '-- '-- '-- '-- -25013 3622 1403a8ca-ec97-5425-bb3c-49e4dc50322c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1530_demographic Dead '-- '-- '-- '-- 25363 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 350 '-- '-- '-- 6a343d24-2a8c-47ee-b991-dc54a3f5c212 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1530_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1530_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1530_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 379604df-cb6e-45fb-bfd2-9375e44e4768 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 42b3dfa3-152f-4ab7-ac9f-988c7f473bea '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1530 68 false '-- '-- '-- '-- -25013 3622 1403a8ca-ec97-5425-bb3c-49e4dc50322c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1530_demographic Dead '-- '-- '-- '-- 25363 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 350 '-- '-- '-- 6a343d24-2a8c-47ee-b991-dc54a3f5c212 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1530_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1530_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1530_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4f772505-7ad6-476e-8704-94a4fd93eacd '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 42b3dfa3-152f-4ab7-ac9f-988c7f473bea '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1530 68 false '-- '-- '-- '-- -25013 3622 1403a8ca-ec97-5425-bb3c-49e4dc50322c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1530_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7c8a1fcd-72cb-413f-97b8-90e165c2b587 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1530_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1530_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1530_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3aa05285-02d7-48a1-8812-4c64a54b04dd '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 42b3dfa3-152f-4ab7-ac9f-988c7f473bea '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1530 68 false '-- '-- '-- '-- -25013 3622 1403a8ca-ec97-5425-bb3c-49e4dc50322c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1530_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7c8a1fcd-72cb-413f-97b8-90e165c2b587 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1530_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1530_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 350 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1530_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 989a9de2-1878-413e-9b20-0fc1a821ef46 '-- yes '-- '-- Surgery, NOS +TCGA-OV 42b3dfa3-152f-4ab7-ac9f-988c7f473bea '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1530 68 false '-- '-- '-- '-- -25013 3622 1403a8ca-ec97-5425-bb3c-49e4dc50322c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1530_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7c8a1fcd-72cb-413f-97b8-90e165c2b587 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1530_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1530_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1530_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ae9c79a9-bd6b-4752-9d9f-e9f5b840b6aa '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 42ebd30b-175e-4ece-a806-e55cb7e40e96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1697 62 false '-- '-- '-- '-- -22933 949 c1569def-c3d1-50c7-89d8-2a3decd38865 '-- not reported female '-- '-- '-- '-- white TCGA-29-1697_demographic Dead '-- '-- '-- '-- 22933 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 949.0 '-- '-- 0be1c54a-5169-5542-894c-fa5257137496 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1697_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1697_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0093c11b-312f-4836-b4c3-9c3e300dad45 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 42ebd30b-175e-4ece-a806-e55cb7e40e96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1697 62 false '-- '-- '-- '-- -22933 949 c1569def-c3d1-50c7-89d8-2a3decd38865 '-- not reported female '-- '-- '-- '-- white TCGA-29-1697_demographic Dead '-- '-- '-- '-- 22933 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 949.0 '-- '-- 0be1c54a-5169-5542-894c-fa5257137496 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1697_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 934 927 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1697_treatment5 Topotecan Hydrochloride '-- '-- '-- '-- '-- '-- '-- 5 '-- mg '-- '-- '-- '-- 3638e3ea-a207-4bd8-ae99-eef94c600687 '-- yes '-- '-- Chemotherapy +TCGA-OV 42ebd30b-175e-4ece-a806-e55cb7e40e96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1697 62 false '-- '-- '-- '-- -22933 949 c1569def-c3d1-50c7-89d8-2a3decd38865 '-- not reported female '-- '-- '-- '-- white TCGA-29-1697_demographic Dead '-- '-- '-- '-- 22933 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 949.0 '-- '-- 0be1c54a-5169-5542-894c-fa5257137496 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1697_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 182 28 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1697_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4512 '-- mg '-- '-- '-- '-- 4580a2a1-9488-4e7d-b484-60f4e74dc30a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 42ebd30b-175e-4ece-a806-e55cb7e40e96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1697 62 false '-- '-- '-- '-- -22933 949 c1569def-c3d1-50c7-89d8-2a3decd38865 '-- not reported female '-- '-- '-- '-- white TCGA-29-1697_demographic Dead '-- '-- '-- '-- 22933 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 949.0 '-- '-- 0be1c54a-5169-5542-894c-fa5257137496 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1697_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 927 927 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1697_treatment8 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 650 '-- mg '-- '-- '-- '-- 5ec4bb66-ee00-4634-a262-59921e81c2f3 '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 42ebd30b-175e-4ece-a806-e55cb7e40e96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1697 62 false '-- '-- '-- '-- -22933 949 c1569def-c3d1-50c7-89d8-2a3decd38865 '-- not reported female '-- '-- '-- '-- white TCGA-29-1697_demographic Dead '-- '-- '-- '-- 22933 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 949.0 '-- '-- 0be1c54a-5169-5542-894c-fa5257137496 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1697_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 843 780 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1697_treatment9 Doxorubicin '-- '-- '-- '-- '-- '-- '-- 70 '-- mg '-- '-- '-- '-- 6090ef0d-fa17-419b-a228-033f242776bb '-- yes '-- '-- Chemotherapy +TCGA-OV 42ebd30b-175e-4ece-a806-e55cb7e40e96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1697 62 false '-- '-- '-- '-- -22933 949 c1569def-c3d1-50c7-89d8-2a3decd38865 '-- not reported female '-- '-- '-- '-- white TCGA-29-1697_demographic Dead '-- '-- '-- '-- 22933 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 949.0 '-- '-- 0be1c54a-5169-5542-894c-fa5257137496 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1697_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 182 111 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1697_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1246 '-- mg '-- '-- '-- '-- acc4fc59-718a-462e-a20d-b3d66a2bc38b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 42ebd30b-175e-4ece-a806-e55cb7e40e96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1697 62 false '-- '-- '-- '-- -22933 949 c1569def-c3d1-50c7-89d8-2a3decd38865 '-- not reported female '-- '-- '-- '-- white TCGA-29-1697_demographic Dead '-- '-- '-- '-- 22933 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 949.0 '-- '-- 0be1c54a-5169-5542-894c-fa5257137496 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1697_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 664 552 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1697_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 574 '-- mg '-- '-- '-- '-- e7859140-0f37-40cd-9c88-604bd98fc386 '-- yes '-- '-- Chemotherapy +TCGA-OV 42ebd30b-175e-4ece-a806-e55cb7e40e96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1697 62 false '-- '-- '-- '-- -22933 949 c1569def-c3d1-50c7-89d8-2a3decd38865 '-- not reported female '-- '-- '-- '-- white TCGA-29-1697_demographic Dead '-- '-- '-- '-- 22933 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 949.0 '-- '-- 0be1c54a-5169-5542-894c-fa5257137496 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1697_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 535 510 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1697_treatment7 Docetaxel '-- '-- '-- '-- '-- '-- '-- 54 '-- mg '-- '-- '-- '-- ea6096d3-702c-48a8-8a87-de53c8e2c7d8 '-- yes '-- '-- Chemotherapy +TCGA-OV 42ebd30b-175e-4ece-a806-e55cb7e40e96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1697 62 false '-- '-- '-- '-- -22933 949 c1569def-c3d1-50c7-89d8-2a3decd38865 '-- not reported female '-- '-- '-- '-- white TCGA-29-1697_demographic Dead '-- '-- '-- '-- 22933 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 949.0 '-- '-- 0be1c54a-5169-5542-894c-fa5257137496 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1697_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 899 878 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1697_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 574 '-- mg '-- '-- '-- '-- f33119dc-404b-4298-8405-5cf8fcbe0b46 '-- yes '-- '-- Chemotherapy +TCGA-OV 42ebd30b-175e-4ece-a806-e55cb7e40e96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1697 62 false '-- '-- '-- '-- -22933 949 c1569def-c3d1-50c7-89d8-2a3decd38865 '-- not reported female '-- '-- '-- '-- white TCGA-29-1697_demographic Dead '-- '-- '-- '-- 22933 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 949.0 '-- '-- 0be1c54a-5169-5542-894c-fa5257137496 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1697_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 91 28 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1697_treatment Gemcitabine '-- '-- '-- '-- '-- '-- '-- 11184 '-- mg '-- '-- '-- '-- f79e3788-db4d-56a4-994a-eb405d6fccc4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 42ebd30b-175e-4ece-a806-e55cb7e40e96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1697 62 false '-- '-- '-- '-- -22933 949 c1569def-c3d1-50c7-89d8-2a3decd38865 '-- not reported female '-- '-- '-- '-- white TCGA-29-1697_demographic Dead '-- '-- '-- '-- 23433 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 500 '-- '-- '-- ca96c961-89b4-45d3-a32d-ff969094eae9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1697_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1697_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1697_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 310cb32d-7350-4769-892f-6a7a8b3ea202 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 42ebd30b-175e-4ece-a806-e55cb7e40e96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1697 62 false '-- '-- '-- '-- -22933 949 c1569def-c3d1-50c7-89d8-2a3decd38865 '-- not reported female '-- '-- '-- '-- white TCGA-29-1697_demographic Dead '-- '-- '-- '-- 23433 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 500 '-- '-- '-- ca96c961-89b4-45d3-a32d-ff969094eae9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1697_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1697_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1697_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fb93bcd1-76f6-4c62-a2c5-cf62756a49a9 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 44493c23-82e9-4d9f-8e3c-7b3f9ae44970 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1412 41 false '-- '-- '-- '-- -15119 984 508280ff-d353-55f9-81ae-6297b536d706 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1412_demographic Dead '-- '-- '-- '-- 15528 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 409 '-- '-- '-- 28402af8-e51c-47e5-b9e3-c65bffcc3179 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1412_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1412_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 44493c23-82e9-4d9f-8e3c-7b3f9ae44970 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1412 41 false '-- '-- '-- '-- -15119 984 508280ff-d353-55f9-81ae-6297b536d706 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1412_demographic Dead '-- '-- '-- '-- 15119 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 984.0 '-- '-- e5d0e833-ab2e-532b-b446-cd09d2ee49be true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1412_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 121 37 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1412_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4ca53cd6-3040-462a-a6f3-686db721cbba Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 44493c23-82e9-4d9f-8e3c-7b3f9ae44970 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1412 41 false '-- '-- '-- '-- -15119 984 508280ff-d353-55f9-81ae-6297b536d706 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1412_demographic Dead '-- '-- '-- '-- 15119 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 984.0 '-- '-- e5d0e833-ab2e-532b-b446-cd09d2ee49be true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1412_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 205 156 '-- '-- '-- '-- '-- '-- '-- 3 '-- 75.0 mg/m2 '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-1412_treatment5 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 55d2faa9-8769-4a40-b1ad-17a2caf30574 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 44493c23-82e9-4d9f-8e3c-7b3f9ae44970 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1412 41 false '-- '-- '-- '-- -15119 984 508280ff-d353-55f9-81ae-6297b536d706 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1412_demographic Dead '-- '-- '-- '-- 15119 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 984.0 '-- '-- e5d0e833-ab2e-532b-b446-cd09d2ee49be true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1412_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 121 37 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1412_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 6e8666de-71d7-5dfe-abe1-a0d10c5fde8a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 44493c23-82e9-4d9f-8e3c-7b3f9ae44970 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1412 41 false '-- '-- '-- '-- -15119 984 508280ff-d353-55f9-81ae-6297b536d706 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1412_demographic Dead '-- '-- '-- '-- 15119 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 984.0 '-- '-- e5d0e833-ab2e-532b-b446-cd09d2ee49be true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1412_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1412_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7fadcf13-a7c6-48ea-a56b-abd126835d26 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 44493c23-82e9-4d9f-8e3c-7b3f9ae44970 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1412 41 false '-- '-- '-- '-- -15119 984 508280ff-d353-55f9-81ae-6297b536d706 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1412_demographic Dead '-- '-- '-- '-- 15119 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 984.0 '-- '-- e5d0e833-ab2e-532b-b446-cd09d2ee49be true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1412_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 205 156 '-- '-- '-- '-- '-- '-- '-- 3 '-- 135.0 mg/m2 '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1412_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 863d713a-a3fc-4f81-8c4a-8c4f07883048 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 44493c23-82e9-4d9f-8e3c-7b3f9ae44970 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1412 41 false '-- '-- '-- '-- -15119 984 508280ff-d353-55f9-81ae-6297b536d706 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1412_demographic Dead '-- '-- '-- '-- 15119 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 984.0 '-- '-- e5d0e833-ab2e-532b-b446-cd09d2ee49be true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1412_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 205 156 '-- '-- '-- '-- '-- '-- '-- 3 '-- 60.0 mg/m2 '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-1412_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e9f9d833-ee68-4e8a-a1c9-a70312e55b3c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 446ce2a3-d328-443c-a419-3344baad0e16 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0725 44 false '-- '-- '-- '-- -16086 377 7e7cc471-edf6-5cd4-aee4-062c81eadd47 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-13-0725_demographic Dead '-- '-- '-- '-- 16086 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 377.0 '-- '-- 5f3845f7-ab3b-5c4b-94b1-84a7afef4150 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0725_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 131 15 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0725_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3bae5da7-1f71-4294-ac34-52d8bbda7ba5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 446ce2a3-d328-443c-a419-3344baad0e16 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0725 44 false '-- '-- '-- '-- -16086 377 7e7cc471-edf6-5cd4-aee4-062c81eadd47 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-13-0725_demographic Dead '-- '-- '-- '-- 16086 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 377.0 '-- '-- 5f3845f7-ab3b-5c4b-94b1-84a7afef4150 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0725_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0725_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 59bd4288-9081-4c76-8865-54dd0f37fc0a Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 446ce2a3-d328-443c-a419-3344baad0e16 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0725 44 false '-- '-- '-- '-- -16086 377 7e7cc471-edf6-5cd4-aee4-062c81eadd47 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-13-0725_demographic Dead '-- '-- '-- '-- 16086 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 377.0 '-- '-- 5f3845f7-ab3b-5c4b-94b1-84a7afef4150 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0725_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 131 15 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0725_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- d2a7c89b-5c15-4b20-88bb-4d1ce3b02f68 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 446ce2a3-d328-443c-a419-3344baad0e16 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0725 44 false '-- '-- '-- '-- -16086 377 7e7cc471-edf6-5cd4-aee4-062c81eadd47 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-13-0725_demographic Dead '-- '-- '-- '-- 16086 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 377.0 '-- '-- 5f3845f7-ab3b-5c4b-94b1-84a7afef4150 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0725_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 215 190 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0725_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- f02227b1-3a4c-5751-86f1-a116d2791b03 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 446ce2a3-d328-443c-a419-3344baad0e16 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0725 44 false '-- '-- '-- '-- -16086 377 7e7cc471-edf6-5cd4-aee4-062c81eadd47 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-13-0725_demographic Dead '-- '-- '-- '-- 16276 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 190 '-- '-- '-- dcfa80b8-cd6f-4ee9-946f-5081d0f918db false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0725_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0725_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0725_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 283e45a2-90d4-4cde-92e5-0d1e64a499ca '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 446ce2a3-d328-443c-a419-3344baad0e16 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0725 44 false '-- '-- '-- '-- -16086 377 7e7cc471-edf6-5cd4-aee4-062c81eadd47 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-13-0725_demographic Dead '-- '-- '-- '-- 16276 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 190 '-- '-- '-- dcfa80b8-cd6f-4ee9-946f-5081d0f918db false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0725_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0725_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0725_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 844dd9dd-cc9b-48b2-88c6-2bf53f0633cf '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 44e840c9-ea54-4dba-9b2a-264ef1f2c304 Informed Consent 269 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1778 77 false '-- '-- '-- '-- -28147 '-- c85be1b6-1039-536e-988b-2c193dd334e2 '-- not reported female '-- '-- '-- '-- white TCGA-29-1778_demographic Alive '-- '-- '-- '-- 28147 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 454.0 '-- '-- 64f96092-ae3e-556c-9c0c-cbba2bdef290 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1778_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 80 17 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1778_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 500 '-- mg '-- '-- '-- '-- 0cad2edd-2f81-4bbb-bb99-953f27c75ef5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 44e840c9-ea54-4dba-9b2a-264ef1f2c304 Informed Consent 269 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1778 77 false '-- '-- '-- '-- -28147 '-- c85be1b6-1039-536e-988b-2c193dd334e2 '-- not reported female '-- '-- '-- '-- white TCGA-29-1778_demographic Alive '-- '-- '-- '-- 28147 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 454.0 '-- '-- 64f96092-ae3e-556c-9c0c-cbba2bdef290 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1778_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 125 101 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1778_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 410 '-- mg '-- '-- '-- '-- 5f208d34-5ee4-4d51-8e5e-7bea411ca0d0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 44e840c9-ea54-4dba-9b2a-264ef1f2c304 Informed Consent 269 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1778 77 false '-- '-- '-- '-- -28147 '-- c85be1b6-1039-536e-988b-2c193dd334e2 '-- not reported female '-- '-- '-- '-- white TCGA-29-1778_demographic Alive '-- '-- '-- '-- 28147 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 454.0 '-- '-- 64f96092-ae3e-556c-9c0c-cbba2bdef290 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1778_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1778_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8969e8ec-68aa-4c1f-a8e6-2002058a1999 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 44e840c9-ea54-4dba-9b2a-264ef1f2c304 Informed Consent 269 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1778 77 false '-- '-- '-- '-- -28147 '-- c85be1b6-1039-536e-988b-2c193dd334e2 '-- not reported female '-- '-- '-- '-- white TCGA-29-1778_demographic Alive '-- '-- '-- '-- 28147 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 454.0 '-- '-- 64f96092-ae3e-556c-9c0c-cbba2bdef290 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1778_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 125 101 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1778_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 110 '-- mg '-- '-- '-- '-- dd84cb40-8d12-49e3-a665-5546ab870857 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 44e840c9-ea54-4dba-9b2a-264ef1f2c304 Informed Consent 269 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1778 77 false '-- '-- '-- '-- -28147 '-- c85be1b6-1039-536e-988b-2c193dd334e2 '-- not reported female '-- '-- '-- '-- white TCGA-29-1778_demographic Alive '-- '-- '-- '-- 28147 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 454.0 '-- '-- 64f96092-ae3e-556c-9c0c-cbba2bdef290 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1778_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 80 17 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1778_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 325 '-- mg '-- '-- '-- '-- fb421159-b9d1-5a4c-8cbd-1e1b8de351f6 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 45957be6-e4df-4245-acf8-39dfc118ee19 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0919 52 false '-- '-- '-- '-- -19337 '-- fe9c6beb-795a-5dfc-a75b-f7e489b3a0c7 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0919_demographic Alive '-- '-- '-- '-- 19337 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2571.0 '-- '-- d224cf7c-e190-56a6-bbe1-38e2134e4739 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0919_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0919_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1307f035-868d-422e-bf2c-a12f4cb6b676 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 45957be6-e4df-4245-acf8-39dfc118ee19 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0919 52 false '-- '-- '-- '-- -19337 '-- fe9c6beb-795a-5dfc-a75b-f7e489b3a0c7 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0919_demographic Alive '-- '-- '-- '-- 19337 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2571.0 '-- '-- d224cf7c-e190-56a6-bbe1-38e2134e4739 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0919_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 160 42 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0919_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- beddb3a2-4b7f-5012-827a-292cb976b5a8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 45957be6-e4df-4245-acf8-39dfc118ee19 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0919 52 false '-- '-- '-- '-- -19337 '-- fe9c6beb-795a-5dfc-a75b-f7e489b3a0c7 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0919_demographic Alive '-- '-- '-- '-- 19337 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2571.0 '-- '-- d224cf7c-e190-56a6-bbe1-38e2134e4739 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0919_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 160 42 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0919_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- da46507a-35bf-4bca-9097-4be9f9db0f12 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 45baebac-32ae-4093-9eba-488b95c1a58d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1857 64 false '-- '-- '-- '-- -23689 8 053eda72-806d-5ada-932d-fc4e667f34f0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1857_demographic Dead '-- '-- '-- '-- 23689 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 8.0 '-- '-- d43fe037-2d6d-5cea-b640-8656fb0ccd5c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1857_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1857_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 45ef6db4-4afa-48ed-a7f3-a4b2e7fe900c Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 45baebac-32ae-4093-9eba-488b95c1a58d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1857 64 false '-- '-- '-- '-- -23689 8 053eda72-806d-5ada-932d-fc4e667f34f0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1857_demographic Dead '-- '-- '-- '-- 23689 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 8.0 '-- '-- d43fe037-2d6d-5cea-b640-8656fb0ccd5c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1857_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1857_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- eda9659e-b534-500a-957b-cc01c9763139 Adjuvant no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 460616ec-f66f-483b-88c1-757edd86261d Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1783 58 false '-- '-- '-- '-- -21284 '-- fd7dbd5b-6da2-5b5c-9857-6f220f063c51 '-- not reported female '-- '-- '-- '-- white TCGA-29-1783_demographic Alive '-- '-- '-- '-- 21284 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 220.0 '-- '-- 76e57c55-e185-57fb-8980-6ccd1a2ee446 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1783_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1783_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 076a4351-0022-4e5a-9dcb-8769322b4ea2 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 460616ec-f66f-483b-88c1-757edd86261d Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1783 58 false '-- '-- '-- '-- -21284 '-- fd7dbd5b-6da2-5b5c-9857-6f220f063c51 '-- not reported female '-- '-- '-- '-- white TCGA-29-1783_demographic Alive '-- '-- '-- '-- 21284 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 220.0 '-- '-- 76e57c55-e185-57fb-8980-6ccd1a2ee446 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1783_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 156 30 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1783_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1623 '-- mg '-- '-- '-- '-- 8bb26b30-d110-496a-ac95-ea733e9513e9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 460616ec-f66f-483b-88c1-757edd86261d Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1783 58 false '-- '-- '-- '-- -21284 '-- fd7dbd5b-6da2-5b5c-9857-6f220f063c51 '-- not reported female '-- '-- '-- '-- white TCGA-29-1783_demographic Alive '-- '-- '-- '-- 21284 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 220.0 '-- '-- 76e57c55-e185-57fb-8980-6ccd1a2ee446 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1783_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 430 52 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1783_treatment2 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 9750 '-- mg '-- '-- '-- '-- 9a548d66-d94b-4360-8c4e-2b4c85808e13 Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV 460616ec-f66f-483b-88c1-757edd86261d Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1783 58 false '-- '-- '-- '-- -21284 '-- fd7dbd5b-6da2-5b5c-9857-6f220f063c51 '-- not reported female '-- '-- '-- '-- white TCGA-29-1783_demographic Alive '-- '-- '-- '-- 21284 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 220.0 '-- '-- 76e57c55-e185-57fb-8980-6ccd1a2ee446 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1783_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 156 30 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1783_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 4536 '-- mg '-- '-- '-- '-- f66ffc46-9d26-52f7-9fde-2f846ac8beb9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 46395c3d-5e51-477f-946e-e58b87cc7baa Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1320 65 false '-- '-- '-- '-- -24018 1155 1720ccc7-09c1-5f51-9513-6a8de9c133e6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1320_demographic Dead '-- '-- '-- '-- 24018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1155.0 '-- '-- 1786b36d-9344-51a7-bf6a-5abd3ce5549b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1320_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 181 28 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1320_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1f604ffe-d0c1-4e05-b0f4-bb3f9b9443fa Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 46395c3d-5e51-477f-946e-e58b87cc7baa Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1320 65 false '-- '-- '-- '-- -24018 1155 1720ccc7-09c1-5f51-9513-6a8de9c133e6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1320_demographic Dead '-- '-- '-- '-- 24018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1155.0 '-- '-- 1786b36d-9344-51a7-bf6a-5abd3ce5549b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1320_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 181 28 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1320_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 28bb59a9-214d-4e0d-ad4a-da5e3d8ee2f9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 46395c3d-5e51-477f-946e-e58b87cc7baa Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1320 65 false '-- '-- '-- '-- -24018 1155 1720ccc7-09c1-5f51-9513-6a8de9c133e6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1320_demographic Dead '-- '-- '-- '-- 24018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1155.0 '-- '-- 1786b36d-9344-51a7-bf6a-5abd3ce5549b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1320_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 181 28 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1320_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5c815fd4-2587-570d-8b77-cdb0cac1612d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 46395c3d-5e51-477f-946e-e58b87cc7baa Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1320 65 false '-- '-- '-- '-- -24018 1155 1720ccc7-09c1-5f51-9513-6a8de9c133e6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1320_demographic Dead '-- '-- '-- '-- 24018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1155.0 '-- '-- 1786b36d-9344-51a7-bf6a-5abd3ce5549b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1320_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1320_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8fc807bc-08c4-486a-8796-68fde0d08375 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 46395c3d-5e51-477f-946e-e58b87cc7baa Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1320 65 false '-- '-- '-- '-- -24018 1155 1720ccc7-09c1-5f51-9513-6a8de9c133e6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1320_demographic Dead '-- '-- '-- '-- 24018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1155.0 '-- '-- 1786b36d-9344-51a7-bf6a-5abd3ce5549b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1320_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 607 424 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1320_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- df449d18-0780-4ca8-b41a-22ba1c245f34 '-- yes '-- '-- Chemotherapy +TCGA-OV 46395c3d-5e51-477f-946e-e58b87cc7baa Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1320 65 false '-- '-- '-- '-- -24018 1155 1720ccc7-09c1-5f51-9513-6a8de9c133e6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1320_demographic Dead '-- '-- '-- '-- 24442 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 424 '-- '-- '-- f2c769da-5e55-4546-be37-3c5806b21a61 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1320_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1320_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1320_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 39ca3461-4a82-45a2-a4e6-adf9537ea535 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 46395c3d-5e51-477f-946e-e58b87cc7baa Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1320 65 false '-- '-- '-- '-- -24018 1155 1720ccc7-09c1-5f51-9513-6a8de9c133e6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1320_demographic Dead '-- '-- '-- '-- 24442 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 424 '-- '-- '-- f2c769da-5e55-4546-be37-3c5806b21a61 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1320_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1320_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1320_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c42a9f5f-eb45-46e9-9fce-cb81ee393cd7 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 47681e4b-01e8-4779-b966-ce57aff4b712 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2097 71 false '-- '-- '-- '-- -25961 '-- 0cec735d-2aa7-5693-9b29-92c27b94bc05 '-- not reported female '-- '-- '-- '-- white TCGA-61-2097_demographic Alive '-- '-- '-- '-- 25961 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1844.0 '-- '-- 2ebeca9d-6570-5225-9bf4-a8868ccddcef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2097_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 48 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2097_treatment2 Recombinant Interferon Gamma '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 79e0b57b-cd69-46cf-9b77-a4c9571e08a7 Adjuvant yes '-- '-- Immunotherapy (Including Vaccines) +TCGA-OV 47681e4b-01e8-4779-b966-ce57aff4b712 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2097 71 false '-- '-- '-- '-- -25961 '-- 0cec735d-2aa7-5693-9b29-92c27b94bc05 '-- not reported female '-- '-- '-- '-- white TCGA-61-2097_demographic Alive '-- '-- '-- '-- 25961 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1844.0 '-- '-- 2ebeca9d-6570-5225-9bf4-a8868ccddcef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2097_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 167 48 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2097_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 3060 '-- mg '-- '-- '-- '-- a077e56e-400d-5b49-bbed-86e4b3016516 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 47681e4b-01e8-4779-b966-ce57aff4b712 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2097 71 false '-- '-- '-- '-- -25961 '-- 0cec735d-2aa7-5693-9b29-92c27b94bc05 '-- not reported female '-- '-- '-- '-- white TCGA-61-2097_demographic Alive '-- '-- '-- '-- 25961 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1844.0 '-- '-- 2ebeca9d-6570-5225-9bf4-a8868ccddcef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2097_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 167 48 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2097_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1814 '-- mg '-- '-- '-- '-- b0bd1422-1409-4ade-b86c-bef25f4ccdc7 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 47681e4b-01e8-4779-b966-ce57aff4b712 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2097 71 false '-- '-- '-- '-- -25961 '-- 0cec735d-2aa7-5693-9b29-92c27b94bc05 '-- not reported female '-- '-- '-- '-- white TCGA-61-2097_demographic Alive '-- '-- '-- '-- 25961 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1844.0 '-- '-- 2ebeca9d-6570-5225-9bf4-a8868ccddcef true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2097_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2097_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ef5a2f73-a263-46fc-bc53-94a5f3d2987e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 48e66676-dbed-48a4-9a7f-a6d247b15c17 Informed Consent 23 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1586 66 false '-- '-- '-- '-- -24304 '-- d42e36ed-2e6e-5b2f-a8eb-51b647fce8a9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1586_demographic Alive '-- '-- '-- '-- 24304 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 679.0 '-- '-- 09ee5001-6b33-5395-aca0-afdc0186713b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1586_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 553 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1586_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 108a20a1-a196-48cd-b597-4f4dfe859afc '-- yes '-- '-- Chemotherapy +TCGA-OV 48e66676-dbed-48a4-9a7f-a6d247b15c17 Informed Consent 23 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1586 66 false '-- '-- '-- '-- -24304 '-- d42e36ed-2e6e-5b2f-a8eb-51b647fce8a9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1586_demographic Alive '-- '-- '-- '-- 24304 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 679.0 '-- '-- 09ee5001-6b33-5395-aca0-afdc0186713b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1586_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1586_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 135fd891-848c-4aff-995d-6745e83d34d3 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 48e66676-dbed-48a4-9a7f-a6d247b15c17 Informed Consent 23 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1586 66 false '-- '-- '-- '-- -24304 '-- d42e36ed-2e6e-5b2f-a8eb-51b647fce8a9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1586_demographic Alive '-- '-- '-- '-- 24304 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 679.0 '-- '-- 09ee5001-6b33-5395-aca0-afdc0186713b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1586_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 542 433 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1586_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 33ea9a1b-2515-43f0-ac81-f7fa64e150e7 '-- yes '-- '-- Chemotherapy +TCGA-OV 48e66676-dbed-48a4-9a7f-a6d247b15c17 Informed Consent 23 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1586 66 false '-- '-- '-- '-- -24304 '-- d42e36ed-2e6e-5b2f-a8eb-51b647fce8a9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1586_demographic Alive '-- '-- '-- '-- 24304 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 679.0 '-- '-- 09ee5001-6b33-5395-aca0-afdc0186713b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1586_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 259 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1586_treatment2 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 85d94bed-00a7-421a-a8bc-64ff87624641 '-- yes '-- '-- Chemotherapy +TCGA-OV 48e66676-dbed-48a4-9a7f-a6d247b15c17 Informed Consent 23 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1586 66 false '-- '-- '-- '-- -24304 '-- d42e36ed-2e6e-5b2f-a8eb-51b647fce8a9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1586_demographic Alive '-- '-- '-- '-- 24304 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 679.0 '-- '-- 09ee5001-6b33-5395-aca0-afdc0186713b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1586_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 553 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1586_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 96ce5d11-414e-43ad-bbfc-88e44ff56bd2 '-- yes '-- '-- Chemotherapy +TCGA-OV 48e66676-dbed-48a4-9a7f-a6d247b15c17 Informed Consent 23 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1586 66 false '-- '-- '-- '-- -24304 '-- d42e36ed-2e6e-5b2f-a8eb-51b647fce8a9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1586_demographic Alive '-- '-- '-- '-- 24304 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 679.0 '-- '-- 09ee5001-6b33-5395-aca0-afdc0186713b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1586_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 259 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1586_treatment6 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ba37a700-7001-4638-b231-305189a12893 '-- yes '-- '-- Chemotherapy +TCGA-OV 48e66676-dbed-48a4-9a7f-a6d247b15c17 Informed Consent 23 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1586 66 false '-- '-- '-- '-- -24304 '-- d42e36ed-2e6e-5b2f-a8eb-51b647fce8a9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1586_demographic Alive '-- '-- '-- '-- 24304 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 679.0 '-- '-- 09ee5001-6b33-5395-aca0-afdc0186713b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1586_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 163 49 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1586_treatment8 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e865eef8-0b9b-4ef3-8b6b-9993506ccbc0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 48e66676-dbed-48a4-9a7f-a6d247b15c17 Informed Consent 23 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1586 66 false '-- '-- '-- '-- -24304 '-- d42e36ed-2e6e-5b2f-a8eb-51b647fce8a9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1586_demographic Alive '-- '-- '-- '-- 24304 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 679.0 '-- '-- 09ee5001-6b33-5395-aca0-afdc0186713b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1586_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 406 323 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1586_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ecb7783c-4d82-4535-9724-05a887cdac52 '-- yes '-- '-- Chemotherapy +TCGA-OV 48e66676-dbed-48a4-9a7f-a6d247b15c17 Informed Consent 23 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1586 66 false '-- '-- '-- '-- -24304 '-- d42e36ed-2e6e-5b2f-a8eb-51b647fce8a9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1586_demographic Alive '-- '-- '-- '-- 24304 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 679.0 '-- '-- 09ee5001-6b33-5395-aca0-afdc0186713b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1586_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 163 49 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1586_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f6788a24-d566-5385-86e1-ee0fcc2fbb64 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 48e66676-dbed-48a4-9a7f-a6d247b15c17 Informed Consent 23 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1586 66 false '-- '-- '-- '-- -24304 '-- d42e36ed-2e6e-5b2f-a8eb-51b647fce8a9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1586_demographic Alive '-- '-- '-- '-- 24563 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 259 '-- '-- '-- 337db49c-e09b-4ca8-9d1a-67d5402e761c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-57-1586_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-57-1586_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1586_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ca54f398-316a-4c1c-8a9c-527fae9b825e '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 48e66676-dbed-48a4-9a7f-a6d247b15c17 Informed Consent 23 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1586 66 false '-- '-- '-- '-- -24304 '-- d42e36ed-2e6e-5b2f-a8eb-51b647fce8a9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1586_demographic Alive '-- '-- '-- '-- 24563 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 259 '-- '-- '-- 337db49c-e09b-4ca8-9d1a-67d5402e761c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-57-1586_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-57-1586_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1586_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e2ba3237-f9b5-44a8-8859-0914c2101d4f '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 48f831b0-5d91-44ae-bc4e-db57ca84fe46 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1417 54 false '-- '-- '-- '-- -19775 '-- f9e14320-3849-5728-8080-595d28eab5c8 '-- not reported female '-- '-- '-- '-- white TCGA-24-1417_demographic Alive '-- '-- '-- '-- 19775 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 238.0 '-- '-- 4b027297-035f-56ce-821c-31213eea6b4c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1417_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 156 25 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1417_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5500 '-- mg '-- '-- '-- '-- 55606813-3cc9-4745-964d-470343421c6f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 48f831b0-5d91-44ae-bc4e-db57ca84fe46 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1417 54 false '-- '-- '-- '-- -19775 '-- f9e14320-3849-5728-8080-595d28eab5c8 '-- not reported female '-- '-- '-- '-- white TCGA-24-1417_demographic Alive '-- '-- '-- '-- 19775 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 238.0 '-- '-- 4b027297-035f-56ce-821c-31213eea6b4c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1417_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 156 25 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1417_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2538 '-- mg '-- '-- '-- '-- 58e34a10-744d-5bc5-9e6f-18ccef94b95d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 48f831b0-5d91-44ae-bc4e-db57ca84fe46 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1417 54 false '-- '-- '-- '-- -19775 '-- f9e14320-3849-5728-8080-595d28eab5c8 '-- not reported female '-- '-- '-- '-- white TCGA-24-1417_demographic Alive '-- '-- '-- '-- 19775 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 238.0 '-- '-- 4b027297-035f-56ce-821c-31213eea6b4c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1417_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1417_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e2ee047e-b2e7-4bd4-ba51-8d7f394ce69c Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 48f8afa8-7712-4428-b0d0-d8c3340504b6 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0935 68 false '-- '-- '-- '-- -25098 1078 f4315847-b41c-55ac-8a5a-a65a393e7580 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-10-0935_demographic Dead '-- '-- '-- '-- 25098 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1078.0 '-- '-- 373aaa40-d274-59f0-b5c9-d1a13c63cc4e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0935_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 34 34 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0935_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 385 '-- mg '-- '-- '-- '-- 0cf7ab0f-f3e9-4cfc-af09-b9c2a870af85 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 48f8afa8-7712-4428-b0d0-d8c3340504b6 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0935 68 false '-- '-- '-- '-- -25098 1078 f4315847-b41c-55ac-8a5a-a65a393e7580 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-10-0935_demographic Dead '-- '-- '-- '-- 25098 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1078.0 '-- '-- 373aaa40-d274-59f0-b5c9-d1a13c63cc4e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0935_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0935_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1b4114b7-f8d6-4c0d-a20e-458726def855 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 48f8afa8-7712-4428-b0d0-d8c3340504b6 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0935 68 false '-- '-- '-- '-- -25098 1078 f4315847-b41c-55ac-8a5a-a65a393e7580 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-10-0935_demographic Dead '-- '-- '-- '-- 25098 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1078.0 '-- '-- 373aaa40-d274-59f0-b5c9-d1a13c63cc4e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0935_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 34 34 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0935_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 240 '-- mg '-- '-- '-- '-- a838b511-8e3c-573d-863a-1a979fc00311 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 499a9b57-ee1a-4012-bbab-c6ad955b5e0a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1551 53 false '-- '-- '-- '-- -19661 1579 ca38c8a5-7219-5217-8608-05cd8bd450f7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1551_demographic Dead '-- '-- '-- '-- 20425 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 764 '-- '-- '-- 3d4895e1-00ae-44ca-a588-46a16a7e2b88 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1551_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1551_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1551_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2e8f549a-15a4-416c-ade9-43c402f2132a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 499a9b57-ee1a-4012-bbab-c6ad955b5e0a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1551 53 false '-- '-- '-- '-- -19661 1579 ca38c8a5-7219-5217-8608-05cd8bd450f7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1551_demographic Dead '-- '-- '-- '-- 20425 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 764 '-- '-- '-- 3d4895e1-00ae-44ca-a588-46a16a7e2b88 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1551_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1551_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1551_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ec987fa6-69c2-4420-9a04-cbd0649cc049 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 499a9b57-ee1a-4012-bbab-c6ad955b5e0a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1551 53 false '-- '-- '-- '-- -19661 1579 ca38c8a5-7219-5217-8608-05cd8bd450f7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1551_demographic Dead '-- '-- '-- '-- 19661 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1579.0 '-- '-- d6ee4cbf-9c84-5fef-bb8e-d5df71a1e6f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1551_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1254 1227 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1551_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 160 '-- mg '-- '-- '-- '-- 1a4acd01-6ad0-4e94-9371-92f7c3647656 '-- yes '-- '-- Chemotherapy +TCGA-OV 499a9b57-ee1a-4012-bbab-c6ad955b5e0a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1551 53 false '-- '-- '-- '-- -19661 1579 ca38c8a5-7219-5217-8608-05cd8bd450f7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1551_demographic Dead '-- '-- '-- '-- 19661 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1579.0 '-- '-- d6ee4cbf-9c84-5fef-bb8e-d5df71a1e6f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1551_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 975 842 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1551_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3600 '-- mg '-- '-- '-- '-- 45472f83-8e69-4667-a314-ff9e420a015f '-- yes '-- '-- Chemotherapy +TCGA-OV 499a9b57-ee1a-4012-bbab-c6ad955b5e0a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1551 53 false '-- '-- '-- '-- -19661 1579 ca38c8a5-7219-5217-8608-05cd8bd450f7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1551_demographic Dead '-- '-- '-- '-- 19661 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1579.0 '-- '-- d6ee4cbf-9c84-5fef-bb8e-d5df71a1e6f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1551_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1437 1289 '-- '-- Recurrent Disease '-- '-- '-- '-- 19 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1551_treatment7 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 3020 '-- mg '-- '-- '-- '-- 738aaa3c-34b7-44f5-b4d0-c544414cf4ad '-- yes '-- '-- Chemotherapy +TCGA-OV 499a9b57-ee1a-4012-bbab-c6ad955b5e0a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1551 53 false '-- '-- '-- '-- -19661 1579 ca38c8a5-7219-5217-8608-05cd8bd450f7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1551_demographic Dead '-- '-- '-- '-- 19661 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1579.0 '-- '-- d6ee4cbf-9c84-5fef-bb8e-d5df71a1e6f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1551_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 135 10 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1551_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2080 '-- mg '-- '-- '-- '-- 8522d583-4d5a-41be-922b-49275f537d64 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 499a9b57-ee1a-4012-bbab-c6ad955b5e0a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1551 53 false '-- '-- '-- '-- -19661 1579 ca38c8a5-7219-5217-8608-05cd8bd450f7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1551_demographic Dead '-- '-- '-- '-- 19661 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1579.0 '-- '-- d6ee4cbf-9c84-5fef-bb8e-d5df71a1e6f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1551_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 790 790 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1551_treatment Topotecan '-- '-- '-- '-- '-- '-- '-- 13 '-- mg '-- '-- '-- '-- 9951e7f0-c6b1-519b-b0ef-0e857cde665b '-- yes '-- '-- Chemotherapy +TCGA-OV 499a9b57-ee1a-4012-bbab-c6ad955b5e0a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1551 53 false '-- '-- '-- '-- -19661 1579 ca38c8a5-7219-5217-8608-05cd8bd450f7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1551_demographic Dead '-- '-- '-- '-- 19661 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1579.0 '-- '-- d6ee4cbf-9c84-5fef-bb8e-d5df71a1e6f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1551_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1549 1549 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1551_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 80 '-- mg '-- '-- '-- '-- a1a7df60-b346-4de9-81eb-8fda658ddd8b '-- yes '-- '-- Chemotherapy +TCGA-OV 499a9b57-ee1a-4012-bbab-c6ad955b5e0a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1551 53 false '-- '-- '-- '-- -19661 1579 ca38c8a5-7219-5217-8608-05cd8bd450f7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1551_demographic Dead '-- '-- '-- '-- 19661 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1579.0 '-- '-- d6ee4cbf-9c84-5fef-bb8e-d5df71a1e6f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1551_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 135 10 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1551_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4140 '-- mg '-- '-- '-- '-- a9f49113-cd53-435c-bc3d-deb978a12fe5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 499a9b57-ee1a-4012-bbab-c6ad955b5e0a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1551 53 false '-- '-- '-- '-- -19661 1579 ca38c8a5-7219-5217-8608-05cd8bd450f7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1551_demographic Dead '-- '-- '-- '-- 19661 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1579.0 '-- '-- d6ee4cbf-9c84-5fef-bb8e-d5df71a1e6f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1551_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1551_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cdf71ad8-6a55-4fc7-a2e0-598119aae116 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 49bfd0fe-48ce-49db-9f76-ce2310410950 Consent by Death 629 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1485 48 false '-- '-- '-- '-- -17642 629 4ad24e85-b885-58a1-a2c0-f1278fae3a4a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1485_demographic Dead '-- '-- '-- '-- 17812 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 170 '-- '-- '-- b162e4e9-2127-49e0-8928-d4bdd875d883 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1485_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1485_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1485_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6ae01c7c-3498-4d04-9cce-726cf212fd13 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 49bfd0fe-48ce-49db-9f76-ce2310410950 Consent by Death 629 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1485 48 false '-- '-- '-- '-- -17642 629 4ad24e85-b885-58a1-a2c0-f1278fae3a4a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1485_demographic Dead '-- '-- '-- '-- 17812 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 170 '-- '-- '-- b162e4e9-2127-49e0-8928-d4bdd875d883 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1485_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1485_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1485_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9f90dfdf-73f7-46ed-9a12-b0fda052c09b '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 49bfd0fe-48ce-49db-9f76-ce2310410950 Consent by Death 629 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1485 48 false '-- '-- '-- '-- -17642 629 4ad24e85-b885-58a1-a2c0-f1278fae3a4a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1485_demographic Dead '-- '-- '-- '-- 17642 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 629.0 '-- '-- ee7f23f5-f972-5fb6-8afe-1a30f1780e54 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1485_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 149 45 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1485_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 1670b32f-3bb7-4341-8efa-51d1947d92c3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 49bfd0fe-48ce-49db-9f76-ce2310410950 Consent by Death 629 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1485 48 false '-- '-- '-- '-- -17642 629 4ad24e85-b885-58a1-a2c0-f1278fae3a4a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1485_demographic Dead '-- '-- '-- '-- 17642 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 629.0 '-- '-- ee7f23f5-f972-5fb6-8afe-1a30f1780e54 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1485_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 149 45 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1485_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3671878d-769a-51b6-b78a-2378e342c7b4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 49bfd0fe-48ce-49db-9f76-ce2310410950 Consent by Death 629 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1485 48 false '-- '-- '-- '-- -17642 629 4ad24e85-b885-58a1-a2c0-f1278fae3a4a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1485_demographic Dead '-- '-- '-- '-- 17642 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 629.0 '-- '-- ee7f23f5-f972-5fb6-8afe-1a30f1780e54 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1485_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1485_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6ccfc718-03a0-4b6b-818d-a1b42519de07 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 49d2c0cf-a3f3-4519-a755-0a5f769df2ea Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1435 57 false '-- '-- '-- '-- -21107 1324 1a799775-3d93-5950-9ea0-0ac519e37476 '-- not reported female '-- '-- '-- '-- white TCGA-24-1435_demographic Dead '-- '-- '-- '-- 21107 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1324.0 '-- '-- 020510a4-78b5-5290-a377-54a07c066478 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1435_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1189 1140 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1435_treatment5 Cisplatin '-- '-- '-- '-- '-- '-- '-- 263 '-- mg '-- '-- '-- '-- 16d57f7e-ca7d-43c5-9ef1-5b960266dbcd '-- yes '-- '-- Chemotherapy +TCGA-OV 49d2c0cf-a3f3-4519-a755-0a5f769df2ea Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1435 57 false '-- '-- '-- '-- -21107 1324 1a799775-3d93-5950-9ea0-0ac519e37476 '-- not reported female '-- '-- '-- '-- white TCGA-24-1435_demographic Dead '-- '-- '-- '-- 21107 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1324.0 '-- '-- 020510a4-78b5-5290-a377-54a07c066478 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1435_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 912 814 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1435_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2350 '-- mg '-- '-- '-- '-- 5b769cab-0807-42e9-bb6b-0b69e04b78e6 '-- yes '-- '-- Chemotherapy +TCGA-OV 49d2c0cf-a3f3-4519-a755-0a5f769df2ea Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1435 57 false '-- '-- '-- '-- -21107 1324 1a799775-3d93-5950-9ea0-0ac519e37476 '-- not reported female '-- '-- '-- '-- white TCGA-24-1435_demographic Dead '-- '-- '-- '-- 21107 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1324.0 '-- '-- 020510a4-78b5-5290-a377-54a07c066478 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1435_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 149 27 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1435_treatment9 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1848 '-- mg '-- '-- '-- '-- 77c9a497-741e-4700-86b2-6ed961da47ad Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 49d2c0cf-a3f3-4519-a755-0a5f769df2ea Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1435 57 false '-- '-- '-- '-- -21107 1324 1a799775-3d93-5950-9ea0-0ac519e37476 '-- not reported female '-- '-- '-- '-- white TCGA-24-1435_demographic Dead '-- '-- '-- '-- 21107 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1324.0 '-- '-- 020510a4-78b5-5290-a377-54a07c066478 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1435_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1435_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7d4a01fb-5191-41d1-af8b-2dd8881b158c Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 49d2c0cf-a3f3-4519-a755-0a5f769df2ea Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1435 57 false '-- '-- '-- '-- -21107 1324 1a799775-3d93-5950-9ea0-0ac519e37476 '-- not reported female '-- '-- '-- '-- white TCGA-24-1435_demographic Dead '-- '-- '-- '-- 21107 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1324.0 '-- '-- 020510a4-78b5-5290-a377-54a07c066478 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1435_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 771 511 '-- '-- Recurrent Disease '-- '-- '-- '-- 13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1435_treatment6 Topotecan '-- '-- '-- '-- '-- '-- '-- 136 '-- mg '-- '-- '-- '-- 860856be-14fb-4f16-8f9d-7dd57beb3564 '-- yes '-- '-- Chemotherapy +TCGA-OV 49d2c0cf-a3f3-4519-a755-0a5f769df2ea Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1435 57 false '-- '-- '-- '-- -21107 1324 1a799775-3d93-5950-9ea0-0ac519e37476 '-- not reported female '-- '-- '-- '-- white TCGA-24-1435_demographic Dead '-- '-- '-- '-- 21107 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1324.0 '-- '-- 020510a4-78b5-5290-a377-54a07c066478 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1435_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1126 1058 '-- '-- Progressive Disease '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1435_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 4500 '-- mg '-- '-- '-- '-- 9504fd23-5eba-5a30-b910-8975b0786281 '-- yes '-- '-- Chemotherapy +TCGA-OV 49d2c0cf-a3f3-4519-a755-0a5f769df2ea Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1435 57 false '-- '-- '-- '-- -21107 1324 1a799775-3d93-5950-9ea0-0ac519e37476 '-- not reported female '-- '-- '-- '-- white TCGA-24-1435_demographic Dead '-- '-- '-- '-- 21107 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1324.0 '-- '-- 020510a4-78b5-5290-a377-54a07c066478 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1435_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1266 1259 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1435_treatment8 Topotecan '-- '-- '-- '-- '-- '-- '-- 10 '-- mg '-- '-- '-- '-- 9e4c8b10-a60c-47fe-bb5a-daa07fc528c1 '-- yes '-- '-- Chemotherapy +TCGA-OV 49d2c0cf-a3f3-4519-a755-0a5f769df2ea Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1435 57 false '-- '-- '-- '-- -21107 1324 1a799775-3d93-5950-9ea0-0ac519e37476 '-- not reported female '-- '-- '-- '-- white TCGA-24-1435_demographic Dead '-- '-- '-- '-- 21107 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1324.0 '-- '-- 020510a4-78b5-5290-a377-54a07c066478 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1435_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1028 944 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1435_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 286 '-- mg '-- '-- '-- '-- ed6f872f-33fe-4f89-bf8f-9fee4b97e635 '-- yes '-- '-- Chemotherapy +TCGA-OV 49d2c0cf-a3f3-4519-a755-0a5f769df2ea Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1435 57 false '-- '-- '-- '-- -21107 1324 1a799775-3d93-5950-9ea0-0ac519e37476 '-- not reported female '-- '-- '-- '-- white TCGA-24-1435_demographic Dead '-- '-- '-- '-- 21107 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1324.0 '-- '-- 020510a4-78b5-5290-a377-54a07c066478 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1435_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 149 27 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1435_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3590 '-- mg '-- '-- '-- '-- fbf5915f-7650-4fbb-9927-88b519f9bf8f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 49d2c0cf-a3f3-4519-a755-0a5f769df2ea Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1435 57 false '-- '-- '-- '-- -21107 1324 1a799775-3d93-5950-9ea0-0ac519e37476 '-- not reported female '-- '-- '-- '-- white TCGA-24-1435_demographic Dead '-- '-- '-- '-- 21107 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1324.0 '-- '-- 020510a4-78b5-5290-a377-54a07c066478 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1435_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1189 1140 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1435_treatment3 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 6952 '-- mg '-- '-- '-- '-- fd723dd2-1e4b-46c2-97c9-8951ac58dda9 '-- yes '-- '-- Chemotherapy +TCGA-OV 49d2c0cf-a3f3-4519-a755-0a5f769df2ea Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1435 57 false '-- '-- '-- '-- -21107 1324 1a799775-3d93-5950-9ea0-0ac519e37476 '-- not reported female '-- '-- '-- '-- white TCGA-24-1435_demographic Dead '-- '-- '-- '-- 21612 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 505 '-- '-- '-- e7ed2ea1-9ef5-4b7a-a8d1-9176d0f68a58 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1435_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1435_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1435_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8b59d4ce-1cdc-437b-9fff-be59b508c145 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 49d2c0cf-a3f3-4519-a755-0a5f769df2ea Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1435 57 false '-- '-- '-- '-- -21107 1324 1a799775-3d93-5950-9ea0-0ac519e37476 '-- not reported female '-- '-- '-- '-- white TCGA-24-1435_demographic Dead '-- '-- '-- '-- 21612 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 505 '-- '-- '-- e7ed2ea1-9ef5-4b7a-a8d1-9176d0f68a58 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1435_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1435_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1435_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e6f1f16b-79e5-47be-aff6-eef926f91e30 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 49e5ee61-a1c9-4038-84ac-92683e573a65 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2641 85 false '-- '-- '-- '-- -31232 '-- ebb3b102-e6c9-5125-ad70-045067b68d1c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-2641_demographic Alive '-- '-- '-- '-- 31232 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 84.0 '-- '-- d8203891-268f-547a-877f-a5f188630884 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2641_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2641_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4fee8377-2e84-56b4-b235-8c2c32158049 Adjuvant yes Not Reported '-- Pharmaceutical Therapy, NOS +TCGA-OV 49e5ee61-a1c9-4038-84ac-92683e573a65 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2641 85 false '-- '-- '-- '-- -31232 '-- ebb3b102-e6c9-5125-ad70-045067b68d1c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-2641_demographic Alive '-- '-- '-- '-- 31232 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 84.0 '-- '-- d8203891-268f-547a-877f-a5f188630884 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2641_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2641_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7e91dd8d-5f2f-4a61-83b7-c5c4b95c21ec Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- 22525 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 181 '-- '-- '-- 3ced4a1f-57da-4da6-8a55-4ded98135aaf false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1891_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1891_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1891_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 105f5bd4-6df5-4c26-9bdb-e378ec91376b '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- 22525 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 181 '-- '-- '-- 3ced4a1f-57da-4da6-8a55-4ded98135aaf false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1891_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1891_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1891_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2b720462-0929-4d60-82c0-96dd541ac986 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 990ded5c-9c58-4bdb-be3d-2398998433b9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1891_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1891_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 536 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1891_treatment18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 34dab85a-764c-42ed-a63f-67e2a6c63220 '-- yes '-- '-- Surgery, NOS +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 990ded5c-9c58-4bdb-be3d-2398998433b9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1891_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1891_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1891_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d5436e61-6a6a-4052-bc0c-1c0a4e0d9629 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 990ded5c-9c58-4bdb-be3d-2398998433b9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1891_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1891_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1891_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e6150d34-8936-4889-bd97-8dff5a988218 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- 22344 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 914.0 '-- '-- dcbdfdd3-dfe8-51f7-969c-02ea3474bc0a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1891_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 453 400 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1891_treatment10 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 700 '-- mg/m2 '-- '-- '-- '-- 009c92d3-e61c-4306-aad5-66335a71784f '-- yes '-- '-- Chemotherapy +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- 22344 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 914.0 '-- '-- dcbdfdd3-dfe8-51f7-969c-02ea3474bc0a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1891_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 141 15 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1891_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 03657ced-08b1-4548-9cf6-22bbdd03c415 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- 22344 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 914.0 '-- '-- dcbdfdd3-dfe8-51f7-969c-02ea3474bc0a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1891_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 386 358 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1891_treatment12 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 10 '-- mg/kg '-- '-- '-- '-- 0e18e6f8-d84d-4437-a22b-e975f02d8e91 '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- 22344 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 914.0 '-- '-- dcbdfdd3-dfe8-51f7-969c-02ea3474bc0a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1891_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 330 189 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1891_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 40 '-- mg/m2 '-- '-- '-- '-- 149136a7-5786-4467-8ac5-8317a1434b8b '-- yes '-- '-- Chemotherapy +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- 22344 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 914.0 '-- '-- dcbdfdd3-dfe8-51f7-969c-02ea3474bc0a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1891_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 890 855 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1891_treatment9 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- 25 '-- mg/m2 '-- '-- '-- '-- 24db5202-afa4-4ad9-ab8a-150c774b878d '-- yes '-- '-- Chemotherapy +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- 22344 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 914.0 '-- '-- dcbdfdd3-dfe8-51f7-969c-02ea3474bc0a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1891_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 890 701 '-- '-- Progressive Disease '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1891_treatment6 Topotecan '-- '-- '-- '-- '-- '-- '-- 3 '-- mg/m2 '-- '-- '-- '-- 6551131f-3935-4c0f-88a1-8fe21171c8ee '-- yes '-- '-- Chemotherapy +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- 22344 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 914.0 '-- '-- dcbdfdd3-dfe8-51f7-969c-02ea3474bc0a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1891_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1891_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 764dda18-f3e2-4d40-8075-ba78491cd643 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- 22344 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 914.0 '-- '-- dcbdfdd3-dfe8-51f7-969c-02ea3474bc0a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1891_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 526 460 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1891_treatment2 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 700 '-- mg/m2 '-- '-- '-- '-- 81f6baa3-8771-49b1-884e-e1e129ecb82f '-- yes '-- '-- Chemotherapy +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- 22344 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 914.0 '-- '-- dcbdfdd3-dfe8-51f7-969c-02ea3474bc0a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1891_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 694 666 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1891_treatment11 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 80 '-- mg/m2 '-- '-- '-- '-- 8ba281c3-0444-467a-a641-c0d8c30e1392 '-- yes '-- '-- Chemotherapy +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- 22344 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 914.0 '-- '-- dcbdfdd3-dfe8-51f7-969c-02ea3474bc0a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1891_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 141 15 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1891_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- b51582d6-b9b9-50c0-af2a-db58b79a9638 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- 22344 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 914.0 '-- '-- dcbdfdd3-dfe8-51f7-969c-02ea3474bc0a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1891_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 526 460 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1891_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- cacba9ca-d4cb-4f4e-bb81-9b6190b142e6 '-- yes '-- '-- Chemotherapy +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- 22344 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 914.0 '-- '-- dcbdfdd3-dfe8-51f7-969c-02ea3474bc0a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1891_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 638 554 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-30-1891_treatment5 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- d9abf83d-f7a5-4183-b353-656ff114b74d '-- yes '-- '-- Chemotherapy +TCGA-OV 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1891 61 false '-- '-- '-- '-- -22344 914 1270303a-3e2c-5099-b188-7454f3ec9414 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1891_demographic Dead '-- '-- '-- '-- 22344 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 914.0 '-- '-- dcbdfdd3-dfe8-51f7-969c-02ea3474bc0a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1891_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 386 358 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-30-1891_treatment8 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 50 '-- mg '-- '-- '-- '-- ef5b3ccb-4704-4056-9b87-fa2ec35ff237 '-- yes '-- '-- Chemotherapy +TCGA-OV 4b930a10-4b12-4428-84f9-3255b4a3bc4f Informed Consent 2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1349 69 false '-- '-- '-- '-- -25213 656 50ba6034-2da4-534b-a0a1-9b8cf6a5196e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1349_demographic Dead '-- '-- '-- '-- 25641 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 428 '-- '-- '-- 0a6b0a64-84b3-4e23-a817-e5082458ed9a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1349_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1349_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1349_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8dbf9cf8-8f4a-4a07-875c-b11837135f2a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 4b930a10-4b12-4428-84f9-3255b4a3bc4f Informed Consent 2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1349 69 false '-- '-- '-- '-- -25213 656 50ba6034-2da4-534b-a0a1-9b8cf6a5196e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1349_demographic Dead '-- '-- '-- '-- 25641 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 428 '-- '-- '-- 0a6b0a64-84b3-4e23-a817-e5082458ed9a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1349_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1349_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1349_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a0d8a2a7-48cf-4f42-ac65-51d80c48395d '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 4b930a10-4b12-4428-84f9-3255b4a3bc4f Informed Consent 2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1349 69 false '-- '-- '-- '-- -25213 656 50ba6034-2da4-534b-a0a1-9b8cf6a5196e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1349_demographic Dead '-- '-- '-- '-- 25213 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 656.0 '-- '-- 841735ac-4c9a-5d91-a48b-55eb520708f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1349_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 653 436 '-- '-- Progressive Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1349_treatment8 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 750 '-- mg/m2 '-- '-- '-- '-- 12be0070-862d-4ea1-90f5-21f9f5793223 '-- yes '-- '-- Chemotherapy +TCGA-OV 4b930a10-4b12-4428-84f9-3255b4a3bc4f Informed Consent 2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1349 69 false '-- '-- '-- '-- -25213 656 50ba6034-2da4-534b-a0a1-9b8cf6a5196e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1349_demographic Dead '-- '-- '-- '-- 25213 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 656.0 '-- '-- 841735ac-4c9a-5d91-a48b-55eb520708f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1349_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 373 1 '-- '-- '-- '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1349_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- 1356a4ef-820d-54f5-bf03-bad1837e71bc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4b930a10-4b12-4428-84f9-3255b4a3bc4f Informed Consent 2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1349 69 false '-- '-- '-- '-- -25213 656 50ba6034-2da4-534b-a0a1-9b8cf6a5196e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1349_demographic Dead '-- '-- '-- '-- 25213 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 656.0 '-- '-- 841735ac-4c9a-5d91-a48b-55eb520708f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1349_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 373 1 '-- '-- '-- '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1349_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- 592f5b38-399e-44ab-a120-54e9bc9757d9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4b930a10-4b12-4428-84f9-3255b4a3bc4f Informed Consent 2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1349 69 false '-- '-- '-- '-- -25213 656 50ba6034-2da4-534b-a0a1-9b8cf6a5196e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1349_demographic Dead '-- '-- '-- '-- 25213 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 656.0 '-- '-- 841735ac-4c9a-5d91-a48b-55eb520708f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1349_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 373 1 '-- '-- '-- '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1349_treatment7 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 7a2b52f3-3ec1-4410-8781-869443895f53 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4b930a10-4b12-4428-84f9-3255b4a3bc4f Informed Consent 2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1349 69 false '-- '-- '-- '-- -25213 656 50ba6034-2da4-534b-a0a1-9b8cf6a5196e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1349_demographic Dead '-- '-- '-- '-- 25213 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 656.0 '-- '-- 841735ac-4c9a-5d91-a48b-55eb520708f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1349_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 653 436 '-- '-- Progressive Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-04-1349_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- 86634057-fd0d-4a15-a226-cff0791a99d7 '-- yes '-- '-- Chemotherapy +TCGA-OV 4b930a10-4b12-4428-84f9-3255b4a3bc4f Informed Consent 2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1349 69 false '-- '-- '-- '-- -25213 656 50ba6034-2da4-534b-a0a1-9b8cf6a5196e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1349_demographic Dead '-- '-- '-- '-- 25213 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 656.0 '-- '-- 841735ac-4c9a-5d91-a48b-55eb520708f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1349_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 653 436 '-- '-- Progressive Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1349_treatment9 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 30 '-- mg/m2 '-- '-- '-- '-- 8efa7270-ba19-4587-998d-2b70a0b03a19 '-- yes '-- '-- Chemotherapy +TCGA-OV 4b930a10-4b12-4428-84f9-3255b4a3bc4f Informed Consent 2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1349 69 false '-- '-- '-- '-- -25213 656 50ba6034-2da4-534b-a0a1-9b8cf6a5196e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1349_demographic Dead '-- '-- '-- '-- 25213 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 656.0 '-- '-- 841735ac-4c9a-5d91-a48b-55eb520708f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1349_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1349_treatment2 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 5 '-- mg/kg '-- '-- '-- '-- c002ccd7-f5cc-43ee-b26b-ebe0b1da2bcf '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 4b930a10-4b12-4428-84f9-3255b4a3bc4f Informed Consent 2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1349 69 false '-- '-- '-- '-- -25213 656 50ba6034-2da4-534b-a0a1-9b8cf6a5196e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1349_demographic Dead '-- '-- '-- '-- 25213 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 656.0 '-- '-- 841735ac-4c9a-5d91-a48b-55eb520708f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1349_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1349_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c3e1c1b5-4332-431b-9814-d03de89ac396 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 4b930a10-4b12-4428-84f9-3255b4a3bc4f Informed Consent 2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1349 69 false '-- '-- '-- '-- -25213 656 50ba6034-2da4-534b-a0a1-9b8cf6a5196e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1349_demographic Dead '-- '-- '-- '-- 25213 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 656.0 '-- '-- 841735ac-4c9a-5d91-a48b-55eb520708f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1349_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 653 436 '-- '-- Progressive Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1349_treatment4 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- d75e1289-706e-4cd3-9f01-1a04efd16bcb '-- yes '-- '-- Chemotherapy +TCGA-OV 4b930a10-4b12-4428-84f9-3255b4a3bc4f Informed Consent 2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1349 69 false '-- '-- '-- '-- -25213 656 50ba6034-2da4-534b-a0a1-9b8cf6a5196e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1349_demographic Dead '-- '-- '-- '-- 25213 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 656.0 '-- '-- 841735ac-4c9a-5d91-a48b-55eb520708f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1349_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 653 436 '-- '-- Progressive Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-04-1349_treatment6 Cisplatin '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- f3dc6693-60f1-42f1-8de5-f7e71934192b '-- yes '-- '-- Chemotherapy +TCGA-OV 4c099644-047c-42a3-8187-bfcbfe6662e4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2397 59 false '-- '-- '-- '-- -21581 365 e9fd5616-7956-5538-a35d-f4e76dc57e64 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2397_demographic Dead '-- '-- '-- '-- 21581 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 365.0 '-- '-- 6ebe67e6-e13c-5b7f-b1b0-a64ed14ec771 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2397_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2397_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 127f7a00-acf1-5504-83f2-8ab4651c1be8 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 4c18d9cf-4af4-4a86-8b1c-f78795fbbd7e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1562 67 false '-- '-- '-- '-- -24747 1384 3740a77e-8604-5e34-a9b5-3f155618c3a1 '-- not reported female '-- '-- '-- '-- white TCGA-24-1562_demographic Dead '-- '-- '-- '-- 24976 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 229 '-- '-- '-- 1038d518-c555-403e-9629-07af60627542 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1562_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1562_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1562_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2bdafee2-1e92-4b1f-bca9-42f64ad357f4 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 4c18d9cf-4af4-4a86-8b1c-f78795fbbd7e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1562 67 false '-- '-- '-- '-- -24747 1384 3740a77e-8604-5e34-a9b5-3f155618c3a1 '-- not reported female '-- '-- '-- '-- white TCGA-24-1562_demographic Dead '-- '-- '-- '-- 24976 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 229 '-- '-- '-- 1038d518-c555-403e-9629-07af60627542 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1562_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1562_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1562_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- accadfe5-b236-47f1-8c20-efcf5c53c081 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 4c18d9cf-4af4-4a86-8b1c-f78795fbbd7e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1562 67 false '-- '-- '-- '-- -24747 1384 3740a77e-8604-5e34-a9b5-3f155618c3a1 '-- not reported female '-- '-- '-- '-- white TCGA-24-1562_demographic Dead '-- '-- '-- '-- 24747 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1384.0 '-- '-- dc319f5b-52f4-5442-b2fd-18f751b79b72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1562_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1157 '-- '-- '-- Progressive Disease '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1562_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 03c7a17b-13d1-4c7b-b3e6-1349e8bf380a '-- yes '-- '-- Chemotherapy +TCGA-OV 4c18d9cf-4af4-4a86-8b1c-f78795fbbd7e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1562 67 false '-- '-- '-- '-- -24747 1384 3740a77e-8604-5e34-a9b5-3f155618c3a1 '-- not reported female '-- '-- '-- '-- white TCGA-24-1562_demographic Dead '-- '-- '-- '-- 24747 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1384.0 '-- '-- dc319f5b-52f4-5442-b2fd-18f751b79b72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1562_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 848 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1562_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2a193a3f-26e3-5c56-9e56-681f8a714c4b '-- yes '-- '-- Chemotherapy +TCGA-OV 4c18d9cf-4af4-4a86-8b1c-f78795fbbd7e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1562 67 false '-- '-- '-- '-- -24747 1384 3740a77e-8604-5e34-a9b5-3f155618c3a1 '-- not reported female '-- '-- '-- '-- white TCGA-24-1562_demographic Dead '-- '-- '-- '-- 24747 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1384.0 '-- '-- dc319f5b-52f4-5442-b2fd-18f751b79b72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1562_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 677 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1562_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2bf89866-18ef-459b-b417-9ca907d1eea9 '-- yes '-- '-- Chemotherapy +TCGA-OV 4c18d9cf-4af4-4a86-8b1c-f78795fbbd7e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1562 67 false '-- '-- '-- '-- -24747 1384 3740a77e-8604-5e34-a9b5-3f155618c3a1 '-- not reported female '-- '-- '-- '-- white TCGA-24-1562_demographic Dead '-- '-- '-- '-- 24747 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1384.0 '-- '-- dc319f5b-52f4-5442-b2fd-18f751b79b72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1562_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 152 21 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1562_treatment8 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 379d0790-7bdd-4b54-b6d7-7eb106d3de79 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4c18d9cf-4af4-4a86-8b1c-f78795fbbd7e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1562 67 false '-- '-- '-- '-- -24747 1384 3740a77e-8604-5e34-a9b5-3f155618c3a1 '-- not reported female '-- '-- '-- '-- white TCGA-24-1562_demographic Dead '-- '-- '-- '-- 24747 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1384.0 '-- '-- dc319f5b-52f4-5442-b2fd-18f751b79b72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1562_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 642 531 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1562_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 375 '-- mg '-- '-- '-- '-- 4dec6b46-b571-4800-b101-cf74abd98b8d '-- yes '-- '-- Chemotherapy +TCGA-OV 4c18d9cf-4af4-4a86-8b1c-f78795fbbd7e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1562 67 false '-- '-- '-- '-- -24747 1384 3740a77e-8604-5e34-a9b5-3f155618c3a1 '-- not reported female '-- '-- '-- '-- white TCGA-24-1562_demographic Dead '-- '-- '-- '-- 24747 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1384.0 '-- '-- dc319f5b-52f4-5442-b2fd-18f751b79b72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1562_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 677 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1562_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 70f3c6e6-b2f6-4c3e-ab0e-68e94c47824e '-- yes '-- '-- Chemotherapy +TCGA-OV 4c18d9cf-4af4-4a86-8b1c-f78795fbbd7e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1562 67 false '-- '-- '-- '-- -24747 1384 3740a77e-8604-5e34-a9b5-3f155618c3a1 '-- not reported female '-- '-- '-- '-- white TCGA-24-1562_demographic Dead '-- '-- '-- '-- 24747 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1384.0 '-- '-- dc319f5b-52f4-5442-b2fd-18f751b79b72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1562_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 405 257 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1562_treatment9 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 956c66a3-0fc0-4ede-947d-f409b60cc515 '-- yes '-- '-- Chemotherapy +TCGA-OV 4c18d9cf-4af4-4a86-8b1c-f78795fbbd7e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1562 67 false '-- '-- '-- '-- -24747 1384 3740a77e-8604-5e34-a9b5-3f155618c3a1 '-- not reported female '-- '-- '-- '-- white TCGA-24-1562_demographic Dead '-- '-- '-- '-- 24747 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1384.0 '-- '-- dc319f5b-52f4-5442-b2fd-18f751b79b72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1562_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 152 21 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1562_treatment7 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b4ea8c44-2b80-4e4f-a7bf-888f7e6a701f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4c18d9cf-4af4-4a86-8b1c-f78795fbbd7e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1562 67 false '-- '-- '-- '-- -24747 1384 3740a77e-8604-5e34-a9b5-3f155618c3a1 '-- not reported female '-- '-- '-- '-- white TCGA-24-1562_demographic Dead '-- '-- '-- '-- 24747 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1384.0 '-- '-- dc319f5b-52f4-5442-b2fd-18f751b79b72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1562_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1562_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d3ada5e2-fb1d-4f4f-9360-f1133487f18f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 4c18d9cf-4af4-4a86-8b1c-f78795fbbd7e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1562 67 false '-- '-- '-- '-- -24747 1384 3740a77e-8604-5e34-a9b5-3f155618c3a1 '-- not reported female '-- '-- '-- '-- white TCGA-24-1562_demographic Dead '-- '-- '-- '-- 24747 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1384.0 '-- '-- dc319f5b-52f4-5442-b2fd-18f751b79b72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1562_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 848 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1562_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- df9971e9-c0d5-443e-8d1f-b962e47331fd '-- yes '-- '-- Chemotherapy +TCGA-OV 4ca9c0e8-75a7-4665-9d88-6dd2bb44b1e1 Informed Consent -10 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1950 76 false '-- '-- '-- '-- -28100 '-- 2e01658c-ae7d-592e-8f7b-a56b8851c913 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1950_demographic Alive '-- '-- '-- '-- 28100 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 571.0 '-- '-- c87e9e32-50c5-54fd-8808-7ca57c0c7543 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1950_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 571 431 '-- '-- Recurrent Disease '-- '-- '-- '-- 18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1950_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1440 '-- mg '-- '-- '-- '-- 0b4b1ab2-75a9-5a17-aa6e-00429fdae651 '-- yes '-- '-- Chemotherapy +TCGA-OV 4ca9c0e8-75a7-4665-9d88-6dd2bb44b1e1 Informed Consent -10 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1950 76 false '-- '-- '-- '-- -28100 '-- 2e01658c-ae7d-592e-8f7b-a56b8851c913 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1950_demographic Alive '-- '-- '-- '-- 28100 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 571.0 '-- '-- c87e9e32-50c5-54fd-8808-7ca57c0c7543 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1950_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1950_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5169d1ff-2ee6-4e77-bbc5-fd903710723e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 4ca9c0e8-75a7-4665-9d88-6dd2bb44b1e1 Informed Consent -10 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1950 76 false '-- '-- '-- '-- -28100 '-- 2e01658c-ae7d-592e-8f7b-a56b8851c913 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1950_demographic Alive '-- '-- '-- '-- 28100 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 571.0 '-- '-- c87e9e32-50c5-54fd-8808-7ca57c0c7543 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1950_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 144 33 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1950_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3300 '-- mg '-- '-- '-- '-- 8d0855eb-5fc6-45f4-a03c-d7deceef8370 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4ca9c0e8-75a7-4665-9d88-6dd2bb44b1e1 Informed Consent -10 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1950 76 false '-- '-- '-- '-- -28100 '-- 2e01658c-ae7d-592e-8f7b-a56b8851c913 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1950_demographic Alive '-- '-- '-- '-- 28449 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 349 '-- '-- '-- f266d1bc-b3ee-48e6-a75c-c6528675fe99 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-31-1950_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-31-1950_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1950_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 58a40638-4e9a-4327-b8cf-0f61ac635f38 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 4ca9c0e8-75a7-4665-9d88-6dd2bb44b1e1 Informed Consent -10 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1950 76 false '-- '-- '-- '-- -28100 '-- 2e01658c-ae7d-592e-8f7b-a56b8851c913 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1950_demographic Alive '-- '-- '-- '-- 28449 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 349 '-- '-- '-- f266d1bc-b3ee-48e6-a75c-c6528675fe99 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-31-1950_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-31-1950_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1950_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c88da270-1031-4962-b511-f2ac639562eb '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 4d71dd15-cd01-4dae-ad70-6dc325140207 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1029 46 false '-- '-- '-- '-- -16889 '-- 47da8915-429e-5f86-a3b6-e4843fb7c2fb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1029_demographic Alive '-- '-- '-- '-- 16889 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 268.0 '-- '-- d9297888-91e7-5eb6-9a85-03216ab39514 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1029_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 78 30 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-23-1029_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1212 '-- mg '-- '-- '-- '-- 06f0f0d2-b145-53d0-92bf-9bac4e55328c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4d71dd15-cd01-4dae-ad70-6dc325140207 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1029 46 false '-- '-- '-- '-- -16889 '-- 47da8915-429e-5f86-a3b6-e4843fb7c2fb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1029_demographic Alive '-- '-- '-- '-- 16889 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 268.0 '-- '-- d9297888-91e7-5eb6-9a85-03216ab39514 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1029_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1029_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1a34cb57-ce8a-4d69-8d4f-9210fb502fcf Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 4d71dd15-cd01-4dae-ad70-6dc325140207 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1029 46 false '-- '-- '-- '-- -16889 '-- 47da8915-429e-5f86-a3b6-e4843fb7c2fb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1029_demographic Alive '-- '-- '-- '-- 16889 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 268.0 '-- '-- d9297888-91e7-5eb6-9a85-03216ab39514 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1029_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 78 30 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-23-1029_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 375 '-- mg '-- '-- '-- '-- 42e7fe3e-7eb0-4301-933a-97d7eb1c7944 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4e6f88de-7624-4719-8234-4c9e5b2e2988 Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1673 50 false '-- '-- '-- '-- -18599 '-- 52ee8dcb-6b70-54da-9a9b-846e68a0b566 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1673_demographic Alive '-- '-- '-- '-- 18599 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 92.0 '-- '-- 18cf8d27-34a1-592b-b795-f9dd1ad5ee52 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1673_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- 25 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1673_treatment2 Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 21025756-0f6d-4b51-8fdb-fa54631dd241 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4e6f88de-7624-4719-8234-4c9e5b2e2988 Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1673 50 false '-- '-- '-- '-- -18599 '-- 52ee8dcb-6b70-54da-9a9b-846e68a0b566 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1673_demographic Alive '-- '-- '-- '-- 18599 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 92.0 '-- '-- 18cf8d27-34a1-592b-b795-f9dd1ad5ee52 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1673_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- 25 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1673_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8a696dc3-800d-55d6-ad6e-a0a36d15bc7c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4e6f88de-7624-4719-8234-4c9e5b2e2988 Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1673 50 false '-- '-- '-- '-- -18599 '-- 52ee8dcb-6b70-54da-9a9b-846e68a0b566 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1673_demographic Alive '-- '-- '-- '-- 18599 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 92.0 '-- '-- 18cf8d27-34a1-592b-b795-f9dd1ad5ee52 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1673_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1673_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ffbe2df7-6b80-471a-975c-c6bce9ff1baf Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 4ea50685-3b63-440a-b037-597ef2529e7d Informed Consent 2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1582 50 false '-- '-- '-- '-- '-- 731 cabdf363-332d-5055-8622-1a81a9a566fc '-- not reported female '-- '-- '-- '-- white TCGA-57-1582_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 731.0 '-- '-- 46a3eb27-df60-59e2-9770-f710ce3057a5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1582_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 718 597 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1582_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 176080a4-c282-4285-8ad5-004315036ccc '-- yes '-- '-- Chemotherapy +TCGA-OV 4ea50685-3b63-440a-b037-597ef2529e7d Informed Consent 2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1582 50 false '-- '-- '-- '-- '-- 731 cabdf363-332d-5055-8622-1a81a9a566fc '-- not reported female '-- '-- '-- '-- white TCGA-57-1582_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 731.0 '-- '-- 46a3eb27-df60-59e2-9770-f710ce3057a5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1582_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 597 505 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1582_treatment Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2012c078-f776-54bd-9420-efc9f564bc6f '-- yes '-- '-- Chemotherapy +TCGA-OV 4ea50685-3b63-440a-b037-597ef2529e7d Informed Consent 2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1582 50 false '-- '-- '-- '-- '-- 731 cabdf363-332d-5055-8622-1a81a9a566fc '-- not reported female '-- '-- '-- '-- white TCGA-57-1582_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 731.0 '-- '-- 46a3eb27-df60-59e2-9770-f710ce3057a5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1582_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1582_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 24b7aaec-18ce-4780-a941-5ae4ed36a271 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 4ea50685-3b63-440a-b037-597ef2529e7d Informed Consent 2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1582 50 false '-- '-- '-- '-- '-- 731 cabdf363-332d-5055-8622-1a81a9a566fc '-- not reported female '-- '-- '-- '-- white TCGA-57-1582_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 731.0 '-- '-- 46a3eb27-df60-59e2-9770-f710ce3057a5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1582_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 718 597 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1582_treatment3 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 55334b85-51e8-4675-8e0e-4335cf6f92d2 '-- yes '-- '-- Chemotherapy +TCGA-OV 4ea50685-3b63-440a-b037-597ef2529e7d Informed Consent 2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1582 50 false '-- '-- '-- '-- '-- 731 cabdf363-332d-5055-8622-1a81a9a566fc '-- not reported female '-- '-- '-- '-- white TCGA-57-1582_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 731.0 '-- '-- 46a3eb27-df60-59e2-9770-f710ce3057a5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1582_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 170 17 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-57-1582_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 56bde0e7-c055-43c0-ba18-27faf7390fd8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4ea50685-3b63-440a-b037-597ef2529e7d Informed Consent 2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1582 50 false '-- '-- '-- '-- '-- 731 cabdf363-332d-5055-8622-1a81a9a566fc '-- not reported female '-- '-- '-- '-- white TCGA-57-1582_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 731.0 '-- '-- 46a3eb27-df60-59e2-9770-f710ce3057a5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1582_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 170 17 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-57-1582_treatment4 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 61f4692a-7268-4461-a871-1b5e02e8c8a8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4ea50685-3b63-440a-b037-597ef2529e7d Informed Consent 2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1582 50 false '-- '-- '-- '-- '-- 731 cabdf363-332d-5055-8622-1a81a9a566fc '-- not reported female '-- '-- '-- '-- white TCGA-57-1582_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 731.0 '-- '-- 46a3eb27-df60-59e2-9770-f710ce3057a5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1582_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- 260 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1582_treatment7 Patupilone '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9b795355-3b64-4525-bd3e-43069f9c2791 '-- yes '-- '-- Chemotherapy +TCGA-OV 4ea50685-3b63-440a-b037-597ef2529e7d Informed Consent 2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1582 50 false '-- '-- '-- '-- '-- 731 cabdf363-332d-5055-8622-1a81a9a566fc '-- not reported female '-- '-- '-- '-- white TCGA-57-1582_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 731.0 '-- '-- 46a3eb27-df60-59e2-9770-f710ce3057a5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1582_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 505 444 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-57-1582_treatment6 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a7588e5f-b988-4bf6-a886-c9d7fc49cb93 '-- yes '-- '-- Chemotherapy +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- 21546 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 480 '-- '-- '-- 18444f35-98f2-4fd5-bbc7-ad49d879917c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1666_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1666_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1666_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3855879e-c166-4563-9302-eba37cd48f99 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- 21546 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 480 '-- '-- '-- 18444f35-98f2-4fd5-bbc7-ad49d879917c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1666_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1666_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1666_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b5efa45b-7e48-4802-8a6b-0c0cbf4cb774 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- 21066 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1752.0 '-- '-- 2bb77198-9515-588e-b65c-6ed8cd866bca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1666_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1666_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1e4f6afc-29d8-4278-bec1-c358c60ebe09 '-- yes '-- '-- Chemotherapy +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- 21066 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1752.0 '-- '-- 2bb77198-9515-588e-b65c-6ed8cd866bca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1666_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 1598 1507 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1666_treatment9 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2b35f255-fec7-427d-9098-7edee6a70f43 '-- yes '-- '-- Chemotherapy +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- 21066 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1752.0 '-- '-- 2bb77198-9515-588e-b65c-6ed8cd866bca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1666_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1666_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3ee73cfc-9dac-4c4f-a2d6-3393583c435f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- 21066 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1752.0 '-- '-- 2bb77198-9515-588e-b65c-6ed8cd866bca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1666_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 73 27 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1666_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 620da498-4408-440f-bbe1-29af11c5db51 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- 21066 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1752.0 '-- '-- 2bb77198-9515-588e-b65c-6ed8cd866bca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1666_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 480 256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1666_treatment6 Oregovomab '-- '-- '-- '-- '-- '-- '-- 2 '-- mg '-- '-- '-- '-- 696eecc3-2731-4881-95eb-a1faaf92f14d Adjuvant yes '-- '-- Immunotherapy (Including Vaccines) +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- 21066 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1752.0 '-- '-- 2bb77198-9515-588e-b65c-6ed8cd866bca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1666_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 708 616 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1666_treatment11 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1000 '-- mg/m2 '-- '-- '-- '-- 776cff9a-03b2-471a-8acc-1cfe2cb403c4 '-- yes '-- '-- Chemotherapy +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- 21066 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1752.0 '-- '-- 2bb77198-9515-588e-b65c-6ed8cd866bca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1666_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 1757 1604 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1666_treatment4 Letrozole '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9022c6c4-4ce3-4620-8a18-9b5bce5c4686 '-- yes '-- '-- Hormone Therapy +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- 21066 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1752.0 '-- '-- 2bb77198-9515-588e-b65c-6ed8cd866bca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1666_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1666_treatment8 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 973c3bd0-9c7c-4b0a-927a-cd514dc9baa1 '-- yes '-- '-- Chemotherapy +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- 21066 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1752.0 '-- '-- 2bb77198-9515-588e-b65c-6ed8cd866bca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1666_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 173 101 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1666_treatment10 Docetaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- 9d92a0b6-7a45-4f85-ad21-48631184673c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- 21066 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1752.0 '-- '-- 2bb77198-9515-588e-b65c-6ed8cd866bca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1666_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 708 616 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1666_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- d09f35af-12ca-4db0-a6a5-ac6779ee7c08 '-- yes '-- '-- Chemotherapy +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- 21066 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1752.0 '-- '-- 2bb77198-9515-588e-b65c-6ed8cd866bca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1666_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 73 27 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1666_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- e69dea00-1e6c-5edb-a6f4-8b6eac4085fa Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- 21066 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1752.0 '-- '-- 2bb77198-9515-588e-b65c-6ed8cd866bca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1666_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 173 101 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1666_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- fae6d290-6ea8-43b3-bd20-c4063a9195fe Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e6da324b-8969-42f4-ac69-467a5a86a137 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1666_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1666_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 568 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1666_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 28ea4571-0358-4c7f-ac9a-88ffd123f8a0 '-- yes '-- '-- Surgery, NOS +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e6da324b-8969-42f4-ac69-467a5a86a137 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1666_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1666_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1666_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f15703ad-3ede-4563-9a14-4c2fc91e8f0b '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 4eac2c98-86d2-4ee6-a1d3-157d013c78dc Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1666 57 false '-- '-- '-- '-- -21066 '-- 365f1918-1b27-5ca8-8eb2-e4ba49ddcfeb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1666_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e6da324b-8969-42f4-ac69-467a5a86a137 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1666_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1666_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1666_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fdd07908-dc4d-4621-b6bf-d32e949e7c48 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 502e8d02-2953-4514-a2e1-6179dd94da73 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1507 77 false '-- '-- '-- '-- -28445 1993 4b3ee618-9be0-5230-9ca5-33cab6e8a02f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1507_demographic Dead '-- '-- '-- '-- 28445 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1993.0 '-- '-- 3b1937d2-acf2-5a70-ac4c-0df7f5e295f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1507_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 166 54 '-- '-- '-- '-- '-- '-- '-- 6 '-- 37.5 mg/m2 '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-1507_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6341084e-dd54-4eca-a294-1a01f2a73bdc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 502e8d02-2953-4514-a2e1-6179dd94da73 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1507 77 false '-- '-- '-- '-- -28445 1993 4b3ee618-9be0-5230-9ca5-33cab6e8a02f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1507_demographic Dead '-- '-- '-- '-- 28445 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1993.0 '-- '-- 3b1937d2-acf2-5a70-ac4c-0df7f5e295f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1507_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1507_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 669fb723-5f51-4ed4-8e65-b040bad08e27 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 502e8d02-2953-4514-a2e1-6179dd94da73 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1507 77 false '-- '-- '-- '-- -28445 1993 4b3ee618-9be0-5230-9ca5-33cab6e8a02f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1507_demographic Dead '-- '-- '-- '-- 28445 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1993.0 '-- '-- 3b1937d2-acf2-5a70-ac4c-0df7f5e295f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1507_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 166 54 '-- '-- '-- '-- '-- '-- '-- 6 '-- 60.0 mg/m2 '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-1507_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 96b1ed58-d60c-4261-ba7b-540dcd8b7cf3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 502e8d02-2953-4514-a2e1-6179dd94da73 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1507 77 false '-- '-- '-- '-- -28445 1993 4b3ee618-9be0-5230-9ca5-33cab6e8a02f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1507_demographic Dead '-- '-- '-- '-- 28445 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1993.0 '-- '-- 3b1937d2-acf2-5a70-ac4c-0df7f5e295f7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1507_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 166 54 '-- '-- '-- '-- '-- '-- '-- 6 '-- 135.0 mg/m2 '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1507_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ba370601-81b6-599a-b4bb-9ae81c595161 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 502e8d02-2953-4514-a2e1-6179dd94da73 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1507 77 false '-- '-- '-- '-- -28445 1993 4b3ee618-9be0-5230-9ca5-33cab6e8a02f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1507_demographic Dead '-- '-- '-- '-- 28769 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 324 '-- '-- '-- 658ecc0e-035c-4deb-8781-b2701eb3c031 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1507_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1507_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 512de609-757b-42be-8b30-c414f71af422 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2016 51 false '-- '-- '-- '-- -18788 36 29e38624-fecd-5f04-b88e-09db2f1de386 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2016_demographic Dead '-- '-- '-- '-- 18788 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 36.0 '-- '-- ff9cb7c9-66ac-5907-9329-78183e6e5040 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2016_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2016_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 70c37684-9f15-5798-9b71-4dcfe6f95f9c Adjuvant yes Progressive Disease '-- Pharmaceutical Therapy, NOS +TCGA-OV 512de609-757b-42be-8b30-c414f71af422 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2016 51 false '-- '-- '-- '-- -18788 36 29e38624-fecd-5f04-b88e-09db2f1de386 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2016_demographic Dead '-- '-- '-- '-- 18788 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 36.0 '-- '-- ff9cb7c9-66ac-5907-9329-78183e6e5040 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2016_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2016_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e0ab3ec4-ba52-4e73-a25a-7cf964ef338f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 514aa64e-a58d-48c2-aff9-498604cc11d6 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0758 60 false '-- '-- '-- '-- -22088 346 bcdad231-7fa6-563b-8f59-860a1f6771ef '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0758_demographic Dead '-- '-- '-- '-- 22300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 212 '-- '-- '-- 526da1f0-45a6-4573-95f1-363726111d13 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0758_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0758_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0758_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4073da54-7520-4304-82fa-5df78345d89c '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 514aa64e-a58d-48c2-aff9-498604cc11d6 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0758 60 false '-- '-- '-- '-- -22088 346 bcdad231-7fa6-563b-8f59-860a1f6771ef '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0758_demographic Dead '-- '-- '-- '-- 22300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 212 '-- '-- '-- 526da1f0-45a6-4573-95f1-363726111d13 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0758_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0758_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0758_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b7724ec1-5ed3-4275-96a5-36a54f4fa376 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 514aa64e-a58d-48c2-aff9-498604cc11d6 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0758 60 false '-- '-- '-- '-- -22088 346 bcdad231-7fa6-563b-8f59-860a1f6771ef '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0758_demographic Dead '-- '-- '-- '-- 22088 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 346.0 '-- '-- b117db27-ce63-5ca6-a22e-ae78c9d90892 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0758_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 161 14 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0758_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5258e2b8-49a1-5bc6-b23a-65d2b366373e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 514aa64e-a58d-48c2-aff9-498604cc11d6 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0758 60 false '-- '-- '-- '-- -22088 346 bcdad231-7fa6-563b-8f59-860a1f6771ef '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0758_demographic Dead '-- '-- '-- '-- 22088 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 346.0 '-- '-- b117db27-ce63-5ca6-a22e-ae78c9d90892 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0758_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 161 14 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0758_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- a0ec04ea-0881-4a41-8502-742f83eb59f2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 514aa64e-a58d-48c2-aff9-498604cc11d6 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0758 60 false '-- '-- '-- '-- -22088 346 bcdad231-7fa6-563b-8f59-860a1f6771ef '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0758_demographic Dead '-- '-- '-- '-- 22088 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 346.0 '-- '-- b117db27-ce63-5ca6-a22e-ae78c9d90892 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0758_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0758_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d50abeb1-2e64-4c0b-8926-730a3a9bc051 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5201ee13-2aed-4641-9169-4d5ee07a23da Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2023 54 false '-- '-- '-- '-- -19901 1364 324846aa-8368-59b7-8d95-4373adb15ded '-- not reported female '-- '-- '-- '-- white TCGA-24-2023_demographic Dead '-- '-- '-- '-- 19901 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1364.0 '-- '-- 04bf3f6d-f3c0-510b-a8eb-a46860525c7f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 214 6 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2023_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2151 '-- mg '-- '-- '-- '-- 13f840e8-656a-5562-86e9-db457e4e02ca Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5201ee13-2aed-4641-9169-4d5ee07a23da Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2023 54 false '-- '-- '-- '-- -19901 1364 324846aa-8368-59b7-8d95-4373adb15ded '-- not reported female '-- '-- '-- '-- white TCGA-24-2023_demographic Dead '-- '-- '-- '-- 19901 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1364.0 '-- '-- 04bf3f6d-f3c0-510b-a8eb-a46860525c7f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 502 273 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2023_treatment2 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 3000 '-- mg '-- '-- '-- '-- 1c8538da-3a1e-4044-a893-66f03f76884c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5201ee13-2aed-4641-9169-4d5ee07a23da Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2023 54 false '-- '-- '-- '-- -19901 1364 324846aa-8368-59b7-8d95-4373adb15ded '-- not reported female '-- '-- '-- '-- white TCGA-24-2023_demographic Dead '-- '-- '-- '-- 19901 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1364.0 '-- '-- 04bf3f6d-f3c0-510b-a8eb-a46860525c7f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 214 6 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2023_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5775 '-- mg '-- '-- '-- '-- 4491e28f-2a38-4c61-a85f-7bb63c634a07 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5201ee13-2aed-4641-9169-4d5ee07a23da Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2023 54 false '-- '-- '-- '-- -19901 1364 324846aa-8368-59b7-8d95-4373adb15ded '-- not reported female '-- '-- '-- '-- white TCGA-24-2023_demographic Dead '-- '-- '-- '-- 19901 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1364.0 '-- '-- 04bf3f6d-f3c0-510b-a8eb-a46860525c7f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2023_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6102e2ad-f893-4bad-b3c9-0960d0ce1d39 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5201ee13-2aed-4641-9169-4d5ee07a23da Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2023 54 false '-- '-- '-- '-- -19901 1364 324846aa-8368-59b7-8d95-4373adb15ded '-- not reported female '-- '-- '-- '-- white TCGA-24-2023_demographic Dead '-- '-- '-- '-- 19901 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1364.0 '-- '-- 04bf3f6d-f3c0-510b-a8eb-a46860525c7f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 502 273 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2023_treatment4 Cisplatin '-- '-- '-- '-- '-- '-- '-- 450 '-- mg '-- '-- '-- '-- 763ece27-bc88-4020-9783-5100e0bf7441 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5201ee13-2aed-4641-9169-4d5ee07a23da Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2023 54 false '-- '-- '-- '-- -19901 1364 324846aa-8368-59b7-8d95-4373adb15ded '-- not reported female '-- '-- '-- '-- white TCGA-24-2023_demographic Dead '-- '-- '-- '-- 19901 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1364.0 '-- '-- 04bf3f6d-f3c0-510b-a8eb-a46860525c7f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 1245 1126 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2023_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2100 '-- mg '-- '-- '-- '-- b4df2539-5d11-48fa-841b-ef1061338e2d '-- yes '-- '-- Chemotherapy +TCGA-OV 5201ee13-2aed-4641-9169-4d5ee07a23da Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2023 54 false '-- '-- '-- '-- -19901 1364 324846aa-8368-59b7-8d95-4373adb15ded '-- not reported female '-- '-- '-- '-- white TCGA-24-2023_demographic Dead '-- '-- '-- '-- 19901 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1364.0 '-- '-- 04bf3f6d-f3c0-510b-a8eb-a46860525c7f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 1245 1126 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2023_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2740 '-- mg '-- '-- '-- '-- be9a9bed-cf10-4274-ac9f-279b3335cded '-- yes '-- '-- Chemotherapy +TCGA-OV 5201ee13-2aed-4641-9169-4d5ee07a23da Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2023 54 false '-- '-- '-- '-- -19901 1364 324846aa-8368-59b7-8d95-4373adb15ded '-- not reported female '-- '-- '-- '-- white TCGA-24-2023_demographic Dead '-- '-- '-- '-- 20970 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1069 '-- '-- '-- f5a29f38-5c09-4a11-95bf-95df2186a010 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2023_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2023_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2023_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7d26a090-dd70-439f-8e14-7c35652afb2b '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 5201ee13-2aed-4641-9169-4d5ee07a23da Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2023 54 false '-- '-- '-- '-- -19901 1364 324846aa-8368-59b7-8d95-4373adb15ded '-- not reported female '-- '-- '-- '-- white TCGA-24-2023_demographic Dead '-- '-- '-- '-- 20970 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1069 '-- '-- '-- f5a29f38-5c09-4a11-95bf-95df2186a010 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2023_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2023_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2023_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a4053662-7528-47fc-a0f1-21e7fe01581f '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 52386f66-2877-4c75-894e-5c1dc03e6ef4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1563 66 false '-- '-- '-- '-- -24274 1451 f6f97e46-62a4-5b7b-bd32-9be8b0952a2c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1563_demographic Dead '-- '-- '-- '-- 24670 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 396 '-- '-- '-- 909e3a6d-61df-4c5e-9078-9de93fd9f40a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1563_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1563_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1563_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b55b83cc-90f7-4fec-b863-cc4b7b677d86 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 52386f66-2877-4c75-894e-5c1dc03e6ef4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1563 66 false '-- '-- '-- '-- -24274 1451 f6f97e46-62a4-5b7b-bd32-9be8b0952a2c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1563_demographic Dead '-- '-- '-- '-- 24670 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 396 '-- '-- '-- 909e3a6d-61df-4c5e-9078-9de93fd9f40a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1563_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1563_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1563_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ec31d48f-a20f-4977-be27-637a3ccef65f '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 52386f66-2877-4c75-894e-5c1dc03e6ef4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1563 66 false '-- '-- '-- '-- -24274 1451 f6f97e46-62a4-5b7b-bd32-9be8b0952a2c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1563_demographic Dead '-- '-- '-- '-- 24274 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1451.0 '-- '-- c88a4db0-50d4-5c23-969b-c211f9b47565 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1563_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1182 1087 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-1563_treatment3 Tamoxifen '-- '-- '-- '-- '-- '-- '-- 20 '-- mg/day '-- '-- '-- '-- 0818d747-5335-459e-9fc3-93ddefbbc2da '-- yes '-- '-- Hormone Therapy +TCGA-OV 52386f66-2877-4c75-894e-5c1dc03e6ef4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1563 66 false '-- '-- '-- '-- -24274 1451 f6f97e46-62a4-5b7b-bd32-9be8b0952a2c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1563_demographic Dead '-- '-- '-- '-- 24274 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1451.0 '-- '-- c88a4db0-50d4-5c23-969b-c211f9b47565 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1563_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1402 1402 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1563_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 459 '-- mg '-- '-- '-- '-- 0a0c2312-a94f-4bc2-9891-8f94cd344321 '-- yes '-- '-- Chemotherapy +TCGA-OV 52386f66-2877-4c75-894e-5c1dc03e6ef4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1563 66 false '-- '-- '-- '-- -24274 1451 f6f97e46-62a4-5b7b-bd32-9be8b0952a2c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1563_demographic Dead '-- '-- '-- '-- 24274 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1451.0 '-- '-- c88a4db0-50d4-5c23-969b-c211f9b47565 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1563_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 868 812 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1563_treatment9 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 2820 '-- mg '-- '-- '-- '-- 19f4300e-e27c-486f-a908-6be29937de1f '-- yes '-- '-- Chemotherapy +TCGA-OV 52386f66-2877-4c75-894e-5c1dc03e6ef4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1563 66 false '-- '-- '-- '-- -24274 1451 f6f97e46-62a4-5b7b-bd32-9be8b0952a2c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1563_demographic Dead '-- '-- '-- '-- 24274 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1451.0 '-- '-- c88a4db0-50d4-5c23-969b-c211f9b47565 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1563_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 144 22 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1563_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1910 '-- mg '-- '-- '-- '-- 272b1cb9-849f-44df-97a9-ad3cbf7511fe Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 52386f66-2877-4c75-894e-5c1dc03e6ef4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1563 66 false '-- '-- '-- '-- -24274 1451 f6f97e46-62a4-5b7b-bd32-9be8b0952a2c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1563_demographic Dead '-- '-- '-- '-- 24274 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1451.0 '-- '-- c88a4db0-50d4-5c23-969b-c211f9b47565 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1563_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 805 728 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1563_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1050 '-- mg '-- '-- '-- '-- 27512de5-2152-56f1-9d7a-00e7b5484dbc '-- yes '-- '-- Chemotherapy +TCGA-OV 52386f66-2877-4c75-894e-5c1dc03e6ef4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1563 66 false '-- '-- '-- '-- -24274 1451 f6f97e46-62a4-5b7b-bd32-9be8b0952a2c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1563_demographic Dead '-- '-- '-- '-- 24274 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1451.0 '-- '-- c88a4db0-50d4-5c23-969b-c211f9b47565 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1563_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1061 889 '-- '-- Progressive Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1563_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3310 '-- mg '-- '-- '-- '-- 2e237671-642f-4ffc-902b-7037478323eb '-- yes '-- '-- Chemotherapy +TCGA-OV 52386f66-2877-4c75-894e-5c1dc03e6ef4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1563 66 false '-- '-- '-- '-- -24274 1451 f6f97e46-62a4-5b7b-bd32-9be8b0952a2c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1563_demographic Dead '-- '-- '-- '-- 24274 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1451.0 '-- '-- c88a4db0-50d4-5c23-969b-c211f9b47565 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1563_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 676 408 '-- '-- Recurrent Disease '-- '-- '-- '-- 14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1563_treatment7 Topotecan '-- '-- '-- '-- '-- '-- '-- 135 '-- mg '-- '-- '-- '-- 7296c1ff-2cbe-463c-bfbf-a5c4dc32ce8a '-- yes '-- '-- Chemotherapy +TCGA-OV 52386f66-2877-4c75-894e-5c1dc03e6ef4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1563 66 false '-- '-- '-- '-- -24274 1451 f6f97e46-62a4-5b7b-bd32-9be8b0952a2c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1563_demographic Dead '-- '-- '-- '-- 24274 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1451.0 '-- '-- c88a4db0-50d4-5c23-969b-c211f9b47565 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1563_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1563_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 88da9fa3-0a0f-46b9-abba-5425adbd6a57 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 52386f66-2877-4c75-894e-5c1dc03e6ef4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1563 66 false '-- '-- '-- '-- -24274 1451 f6f97e46-62a4-5b7b-bd32-9be8b0952a2c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1563_demographic Dead '-- '-- '-- '-- 24274 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1451.0 '-- '-- c88a4db0-50d4-5c23-969b-c211f9b47565 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1563_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1239 1183 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1563_treatment4 Topotecan '-- '-- '-- '-- '-- '-- '-- 25 '-- mg '-- '-- '-- '-- 962c838c-be09-4fc6-be19-a93dfc0f54dd '-- yes '-- '-- Chemotherapy +TCGA-OV 52386f66-2877-4c75-894e-5c1dc03e6ef4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1563 66 false '-- '-- '-- '-- -24274 1451 f6f97e46-62a4-5b7b-bd32-9be8b0952a2c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1563_demographic Dead '-- '-- '-- '-- 24274 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1451.0 '-- '-- c88a4db0-50d4-5c23-969b-c211f9b47565 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1563_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 868 812 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1563_treatment8 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 181 '-- mg '-- '-- '-- '-- 9c2b4275-edd4-4c59-8c54-fb627c27e099 '-- yes '-- '-- Chemotherapy +TCGA-OV 52386f66-2877-4c75-894e-5c1dc03e6ef4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1563 66 false '-- '-- '-- '-- -24274 1451 f6f97e46-62a4-5b7b-bd32-9be8b0952a2c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1563_demographic Dead '-- '-- '-- '-- 24274 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1451.0 '-- '-- c88a4db0-50d4-5c23-969b-c211f9b47565 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1563_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 144 22 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1563_treatment10 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3450 '-- mg '-- '-- '-- '-- d54b90f1-95ac-4f66-b85d-8545a5bc7260 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 533f5ff9-466c-4cdb-9c46-b841c2626775 Informed Consent -20 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1580 82 false '-- '-- '-- '-- -29992 737 8a7b50d7-9032-55a0-b9b9-293f589052cc '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1580_demographic Dead '-- '-- '-- '-- 29992 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 737.0 '-- '-- b6c3e3e6-e354-5dd8-a77d-95a47bd63099 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1580_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 553 454 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1580_treatment2 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 222 '-- mg '-- '-- '-- '-- 17deb49e-ee6d-4fce-a88d-9c01c5d63a53 '-- yes '-- '-- Chemotherapy +TCGA-OV 533f5ff9-466c-4cdb-9c46-b841c2626775 Informed Consent -20 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1580 82 false '-- '-- '-- '-- -29992 737 8a7b50d7-9032-55a0-b9b9-293f589052cc '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1580_demographic Dead '-- '-- '-- '-- 29992 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 737.0 '-- '-- b6c3e3e6-e354-5dd8-a77d-95a47bd63099 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1580_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1580_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5bd90d18-71b8-4c2e-83bf-5130ae149beb Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 533f5ff9-466c-4cdb-9c46-b841c2626775 Informed Consent -20 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1580 82 false '-- '-- '-- '-- -29992 737 8a7b50d7-9032-55a0-b9b9-293f589052cc '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1580_demographic Dead '-- '-- '-- '-- 29992 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 737.0 '-- '-- b6c3e3e6-e354-5dd8-a77d-95a47bd63099 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1580_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 348 18 '-- '-- '-- '-- '-- '-- '-- 11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1580_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 4796 '-- mg '-- '-- '-- '-- 66904e0f-853e-5754-88cb-e9402250bd98 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 533f5ff9-466c-4cdb-9c46-b841c2626775 Informed Consent -20 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1580 82 false '-- '-- '-- '-- -29992 737 8a7b50d7-9032-55a0-b9b9-293f589052cc '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1580_demographic Dead '-- '-- '-- '-- 30432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 440 '-- '-- '-- ba1ae469-6a40-4bd2-8ab2-92281e46cebf false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-36-1580_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-36-1580_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1580_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 320f2a3b-58ab-4994-9107-478381b5ea2e '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 533f5ff9-466c-4cdb-9c46-b841c2626775 Informed Consent -20 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1580 82 false '-- '-- '-- '-- -29992 737 8a7b50d7-9032-55a0-b9b9-293f589052cc '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1580_demographic Dead '-- '-- '-- '-- 30432 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 440 '-- '-- '-- ba1ae469-6a40-4bd2-8ab2-92281e46cebf false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-36-1580_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-36-1580_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1580_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ed502f8c-6c58-47c1-89d7-4dd03769bf96 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 538acb2a-c4ca-4656-a91c-841a42dbf15f Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1336 55 false '-- '-- '-- '-- -20271 '-- 67e22dd4-d738-504a-bedf-80ec29309914 '-- not reported female '-- '-- '-- '-- white TCGA-04-1336_demographic Alive '-- '-- '-- '-- 20271 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1495.0 '-- '-- b5bebec5-e5c5-5eb1-bfe1-f50e3f38c4ab true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1336_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 144 50 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1336_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- 1e4ac437-de2e-55ec-9a28-2be31c311c71 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 538acb2a-c4ca-4656-a91c-841a42dbf15f Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1336 55 false '-- '-- '-- '-- -20271 '-- 67e22dd4-d738-504a-bedf-80ec29309914 '-- not reported female '-- '-- '-- '-- white TCGA-04-1336_demographic Alive '-- '-- '-- '-- 20271 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1495.0 '-- '-- b5bebec5-e5c5-5eb1-bfe1-f50e3f38c4ab true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1336_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 144 50 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1336_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 30a3c59f-2dce-4981-8f25-441527692987 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 538acb2a-c4ca-4656-a91c-841a42dbf15f Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1336 55 false '-- '-- '-- '-- -20271 '-- 67e22dd4-d738-504a-bedf-80ec29309914 '-- not reported female '-- '-- '-- '-- white TCGA-04-1336_demographic Alive '-- '-- '-- '-- 20271 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1495.0 '-- '-- b5bebec5-e5c5-5eb1-bfe1-f50e3f38c4ab true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1336_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1336_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- db103371-3963-422a-b0ee-e88d239113b5 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 538acb2a-c4ca-4656-a91c-841a42dbf15f Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1336 55 false '-- '-- '-- '-- -20271 '-- 67e22dd4-d738-504a-bedf-80ec29309914 '-- not reported female '-- '-- '-- '-- white TCGA-04-1336_demographic Alive '-- '-- '-- '-- 20271 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1495.0 '-- '-- b5bebec5-e5c5-5eb1-bfe1-f50e3f38c4ab true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1336_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 542 179 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1336_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- db707ff5-b0e1-44d4-87ba-0a0fd0b00551 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5495b18a-10ec-427b-83b8-03ef4b587b13 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1762 59 false '-- '-- '-- '-- -21879 2634 5670d6e7-a5d0-5321-9e29-1b6c44e7d0d4 '-- not reported female '-- '-- '-- '-- white TCGA-29-1762_demographic Dead '-- '-- '-- '-- 21879 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2634.0 '-- '-- 0516c666-98fd-5556-b9f5-084913c790dc true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1762_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2488 2439 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1762_treatment Topotecan Hydrochloride '-- '-- '-- '-- '-- '-- '-- 60 '-- mg '-- '-- '-- '-- 166b8b13-30ac-58cb-b940-cfae6060fb58 '-- yes '-- '-- Chemotherapy +TCGA-OV 5495b18a-10ec-427b-83b8-03ef4b587b13 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1762 59 false '-- '-- '-- '-- -21879 2634 5670d6e7-a5d0-5321-9e29-1b6c44e7d0d4 '-- not reported female '-- '-- '-- '-- white TCGA-29-1762_demographic Dead '-- '-- '-- '-- 21879 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2634.0 '-- '-- 0516c666-98fd-5556-b9f5-084913c790dc true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1762_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2555 2509 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1762_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 150 '-- mg '-- '-- '-- '-- 1b7f47b2-c73d-487e-a20d-8f7e706bbd7c '-- yes '-- '-- Chemotherapy +TCGA-OV 5495b18a-10ec-427b-83b8-03ef4b587b13 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1762 59 false '-- '-- '-- '-- -21879 2634 5670d6e7-a5d0-5321-9e29-1b6c44e7d0d4 '-- not reported female '-- '-- '-- '-- white TCGA-29-1762_demographic Dead '-- '-- '-- '-- 21879 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2634.0 '-- '-- 0516c666-98fd-5556-b9f5-084913c790dc true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1762_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 140 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1762_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3fc0ea83-55c4-4a69-999b-5bac0043263b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5495b18a-10ec-427b-83b8-03ef4b587b13 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1762 59 false '-- '-- '-- '-- -21879 2634 5670d6e7-a5d0-5321-9e29-1b6c44e7d0d4 '-- not reported female '-- '-- '-- '-- white TCGA-29-1762_demographic Dead '-- '-- '-- '-- 21879 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2634.0 '-- '-- 0516c666-98fd-5556-b9f5-084913c790dc true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1762_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1762_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 75ab93d6-46eb-4629-ad7d-9f4df5a8893b Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5495b18a-10ec-427b-83b8-03ef4b587b13 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1762 59 false '-- '-- '-- '-- -21879 2634 5670d6e7-a5d0-5321-9e29-1b6c44e7d0d4 '-- not reported female '-- '-- '-- '-- white TCGA-29-1762_demographic Dead '-- '-- '-- '-- 21879 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2634.0 '-- '-- 0516c666-98fd-5556-b9f5-084913c790dc true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1762_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 140 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1762_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 96e784b6-5f0c-4171-8a78-71972f06cf6a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5495b18a-10ec-427b-83b8-03ef4b587b13 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1762 59 false '-- '-- '-- '-- -21879 2634 5670d6e7-a5d0-5321-9e29-1b6c44e7d0d4 '-- not reported female '-- '-- '-- '-- white TCGA-29-1762_demographic Dead '-- '-- '-- '-- 21879 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2634.0 '-- '-- 0516c666-98fd-5556-b9f5-084913c790dc true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1762_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2229 2167 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1762_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 80 '-- mg '-- '-- '-- '-- a01ccccd-a453-4e1f-89b2-65dd6936059f '-- yes '-- '-- Chemotherapy +TCGA-OV 5495b18a-10ec-427b-83b8-03ef4b587b13 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1762 59 false '-- '-- '-- '-- -21879 2634 5670d6e7-a5d0-5321-9e29-1b6c44e7d0d4 '-- not reported female '-- '-- '-- '-- white TCGA-29-1762_demographic Dead '-- '-- '-- '-- 21879 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2634.0 '-- '-- 0516c666-98fd-5556-b9f5-084913c790dc true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1762_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1513 1387 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1762_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a6adc36c-930e-4959-990a-bfd700765a1c '-- yes '-- '-- Chemotherapy +TCGA-OV 5495b18a-10ec-427b-83b8-03ef4b587b13 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1762 59 false '-- '-- '-- '-- -21879 2634 5670d6e7-a5d0-5321-9e29-1b6c44e7d0d4 '-- not reported female '-- '-- '-- '-- white TCGA-29-1762_demographic Dead '-- '-- '-- '-- 21879 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2634.0 '-- '-- 0516c666-98fd-5556-b9f5-084913c790dc true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1762_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2418 2255 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1762_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 400 '-- mg '-- '-- '-- '-- a7d6e11e-28a9-4e88-91ec-098175ede13a '-- yes '-- '-- Chemotherapy +TCGA-OV 5495b18a-10ec-427b-83b8-03ef4b587b13 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1762 59 false '-- '-- '-- '-- -21879 2634 5670d6e7-a5d0-5321-9e29-1b6c44e7d0d4 '-- not reported female '-- '-- '-- '-- white TCGA-29-1762_demographic Dead '-- '-- '-- '-- 23254 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1375 '-- '-- '-- bfae6d63-0208-44fa-a2af-aff6c858a271 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1762_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1762_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1762_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0e2864d7-500d-40b3-89e1-472afe8e8d82 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 5495b18a-10ec-427b-83b8-03ef4b587b13 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1762 59 false '-- '-- '-- '-- -21879 2634 5670d6e7-a5d0-5321-9e29-1b6c44e7d0d4 '-- not reported female '-- '-- '-- '-- white TCGA-29-1762_demographic Dead '-- '-- '-- '-- 23254 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1375 '-- '-- '-- bfae6d63-0208-44fa-a2af-aff6c858a271 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1762_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1762_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1762_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6428ace6-3cf6-4bc9-95d4-c8bcb66f64aa '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 54cf3bfe-51c0-4cca-9054-bf76b05a9371 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0803 81 false '-- '-- '-- '-- -29685 1334 93a05009-08fa-5a58-aa45-a9f8c7552de8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0803_demographic Dead '-- '-- '-- '-- 29685 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1334.0 '-- '-- ac7d5efc-5f29-5feb-b503-d8e317656be8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0803_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 147 '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0803_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 03f34d8a-6074-5631-a540-66f49da6c6ea Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 54cf3bfe-51c0-4cca-9054-bf76b05a9371 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0803 81 false '-- '-- '-- '-- -29685 1334 93a05009-08fa-5a58-aa45-a9f8c7552de8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0803_demographic Dead '-- '-- '-- '-- 29685 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1334.0 '-- '-- ac7d5efc-5f29-5feb-b503-d8e317656be8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0803_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 147 '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0803_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 0cfe7b76-5b83-49e8-9390-8630bb97de8d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 54cf3bfe-51c0-4cca-9054-bf76b05a9371 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0803 81 false '-- '-- '-- '-- -29685 1334 93a05009-08fa-5a58-aa45-a9f8c7552de8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0803_demographic Dead '-- '-- '-- '-- 29685 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1334.0 '-- '-- ac7d5efc-5f29-5feb-b503-d8e317656be8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0803_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0803_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 80d49275-c3b5-4cec-bc82-f17d499d1c5e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 54cf3bfe-51c0-4cca-9054-bf76b05a9371 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0803 81 false '-- '-- '-- '-- -29685 1334 93a05009-08fa-5a58-aa45-a9f8c7552de8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0803_demographic Dead '-- '-- '-- '-- 30022 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 337 '-- '-- '-- b3e32098-3d45-4832-8bb4-53860992fb01 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0803_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0803_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0803_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 588212b4-649c-4d40-bf41-ac8673068c67 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 54cf3bfe-51c0-4cca-9054-bf76b05a9371 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0803 81 false '-- '-- '-- '-- -29685 1334 93a05009-08fa-5a58-aa45-a9f8c7552de8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0803_demographic Dead '-- '-- '-- '-- 30022 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 337 '-- '-- '-- b3e32098-3d45-4832-8bb4-53860992fb01 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0803_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0803_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0803_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6d7ec686-8b96-4719-8361-4604f2330e04 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 5503b3a1-7d03-41b2-9ec8-e478c5414d67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1434 59 false '-- '-- '-- '-- -21810 568 c792a067-b1c0-5367-8655-db6c055fbd87 '-- not reported female '-- '-- '-- '-- white TCGA-24-1434_demographic Dead '-- '-- '-- '-- 21810 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 568.0 '-- '-- 13f08258-6176-5a27-8f77-a01958a576b2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1434_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 371 343 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1434_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 160 '-- mg '-- '-- '-- '-- 0d0e3b8a-69b9-4db8-abe8-fd8fd118a0d9 '-- yes '-- '-- Chemotherapy +TCGA-OV 5503b3a1-7d03-41b2-9ec8-e478c5414d67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1434 59 false '-- '-- '-- '-- -21810 568 c792a067-b1c0-5367-8655-db6c055fbd87 '-- not reported female '-- '-- '-- '-- white TCGA-24-1434_demographic Dead '-- '-- '-- '-- 21810 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 568.0 '-- '-- 13f08258-6176-5a27-8f77-a01958a576b2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1434_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 228 45 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1434_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1890 '-- mg '-- '-- '-- '-- 13a8470e-e4f4-417a-b653-8de9aefa8092 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5503b3a1-7d03-41b2-9ec8-e478c5414d67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1434 59 false '-- '-- '-- '-- -21810 568 c792a067-b1c0-5367-8655-db6c055fbd87 '-- not reported female '-- '-- '-- '-- white TCGA-24-1434_demographic Dead '-- '-- '-- '-- 21810 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 568.0 '-- '-- 13f08258-6176-5a27-8f77-a01958a576b2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1434_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 228 45 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1434_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 284 '-- mg '-- '-- '-- '-- 4e4f41fc-5ade-4d91-9eeb-e7bea60a2ee5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5503b3a1-7d03-41b2-9ec8-e478c5414d67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1434 59 false '-- '-- '-- '-- -21810 568 c792a067-b1c0-5367-8655-db6c055fbd87 '-- not reported female '-- '-- '-- '-- white TCGA-24-1434_demographic Dead '-- '-- '-- '-- 21810 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 568.0 '-- '-- 13f08258-6176-5a27-8f77-a01958a576b2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1434_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 535 496 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1434_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 756 '-- mg '-- '-- '-- '-- 8c1f4723-4bcf-5383-a19d-9c115b44b9cd '-- yes '-- '-- Chemotherapy +TCGA-OV 5503b3a1-7d03-41b2-9ec8-e478c5414d67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1434 59 false '-- '-- '-- '-- -21810 568 c792a067-b1c0-5367-8655-db6c055fbd87 '-- not reported female '-- '-- '-- '-- white TCGA-24-1434_demographic Dead '-- '-- '-- '-- 21810 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 568.0 '-- '-- 13f08258-6176-5a27-8f77-a01958a576b2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1434_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 314 281 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1434_treatment6 Topotecan '-- '-- '-- '-- '-- '-- '-- 24 '-- mg '-- '-- '-- '-- b36476c4-9d80-461b-8fe4-8dafb55c6f97 '-- yes '-- '-- Chemotherapy +TCGA-OV 5503b3a1-7d03-41b2-9ec8-e478c5414d67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1434 59 false '-- '-- '-- '-- -21810 568 c792a067-b1c0-5367-8655-db6c055fbd87 '-- not reported female '-- '-- '-- '-- white TCGA-24-1434_demographic Dead '-- '-- '-- '-- 21810 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 568.0 '-- '-- 13f08258-6176-5a27-8f77-a01958a576b2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1434_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 426 395 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-1434_treatment7 Etoposide '-- '-- '-- '-- '-- '-- '-- 4200 '-- mg '-- '-- '-- '-- bb80675e-b313-4c5c-a4df-3ff8a176f78c '-- yes '-- '-- Chemotherapy +TCGA-OV 5503b3a1-7d03-41b2-9ec8-e478c5414d67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1434 59 false '-- '-- '-- '-- -21810 568 c792a067-b1c0-5367-8655-db6c055fbd87 '-- not reported female '-- '-- '-- '-- white TCGA-24-1434_demographic Dead '-- '-- '-- '-- 21810 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 568.0 '-- '-- 13f08258-6176-5a27-8f77-a01958a576b2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1434_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 228 45 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1434_treatment4 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 16000 '-- mg '-- '-- '-- '-- db9fca23-8a89-4724-afbe-d833ee38fdf5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5503b3a1-7d03-41b2-9ec8-e478c5414d67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1434 59 false '-- '-- '-- '-- -21810 568 c792a067-b1c0-5367-8655-db6c055fbd87 '-- not reported female '-- '-- '-- '-- white TCGA-24-1434_demographic Dead '-- '-- '-- '-- 21810 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 568.0 '-- '-- 13f08258-6176-5a27-8f77-a01958a576b2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1434_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1434_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fb42c0c8-2823-4675-b205-9a59dbcf6fa5 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5503b3a1-7d03-41b2-9ec8-e478c5414d67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1434 59 false '-- '-- '-- '-- -21810 568 c792a067-b1c0-5367-8655-db6c055fbd87 '-- not reported female '-- '-- '-- '-- white TCGA-24-1434_demographic Dead '-- '-- '-- '-- 22147 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 337 '-- '-- '-- 9a8c4759-9737-4304-bb96-565c0bca443b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1434_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1434_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1434_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8c448beb-e513-4dbb-9a47-5953027930be '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 5503b3a1-7d03-41b2-9ec8-e478c5414d67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1434 59 false '-- '-- '-- '-- -21810 568 c792a067-b1c0-5367-8655-db6c055fbd87 '-- not reported female '-- '-- '-- '-- white TCGA-24-1434_demographic Dead '-- '-- '-- '-- 22147 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 337 '-- '-- '-- 9a8c4759-9737-4304-bb96-565c0bca443b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1434_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1434_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1434_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9534d90e-c885-4dba-b5bf-49ebeb79ec7d '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 55153632-1673-487a-85c0-f156377db1fc Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1651 53 false '-- '-- '-- '-- -19628 1102 3b99b3f1-6556-5121-8085-9073925eba9d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1651_demographic Dead '-- '-- '-- '-- 20618 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 990 '-- '-- '-- 5514e5c4-d795-4a5f-ab87-936148ec4ec7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1651_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1651_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1651_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 57dcf1aa-9de3-4396-b484-b59017d377e2 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 55153632-1673-487a-85c0-f156377db1fc Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1651 53 false '-- '-- '-- '-- -19628 1102 3b99b3f1-6556-5121-8085-9073925eba9d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1651_demographic Dead '-- '-- '-- '-- 20618 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 990 '-- '-- '-- 5514e5c4-d795-4a5f-ab87-936148ec4ec7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1651_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1651_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1651_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- da3c9cf1-676c-4e94-b541-5171d70eecda '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 55153632-1673-487a-85c0-f156377db1fc Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1651 53 false '-- '-- '-- '-- -19628 1102 3b99b3f1-6556-5121-8085-9073925eba9d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1651_demographic Dead '-- '-- '-- '-- 19628 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1102.0 '-- '-- d97f7ad8-0280-573e-a4e4-226d1a92d8fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1651_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 150 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1651_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3228 '-- mg '-- '-- '-- '-- 1f25d82a-747a-40ba-a518-13a894a437c3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 55153632-1673-487a-85c0-f156377db1fc Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1651 53 false '-- '-- '-- '-- -19628 1102 3b99b3f1-6556-5121-8085-9073925eba9d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1651_demographic Dead '-- '-- '-- '-- 19628 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1102.0 '-- '-- d97f7ad8-0280-573e-a4e4-226d1a92d8fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1651_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1651_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 31cdc88d-6094-4323-9431-8a7ea500577e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 55153632-1673-487a-85c0-f156377db1fc Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1651 53 false '-- '-- '-- '-- -19628 1102 3b99b3f1-6556-5121-8085-9073925eba9d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1651_demographic Dead '-- '-- '-- '-- 19628 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1102.0 '-- '-- d97f7ad8-0280-573e-a4e4-226d1a92d8fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1651_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 150 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1651_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1869 '-- mg '-- '-- '-- '-- 70576f37-118f-5afe-87eb-148820617bac Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 55153632-1673-487a-85c0-f156377db1fc Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1651 53 false '-- '-- '-- '-- -19628 1102 3b99b3f1-6556-5121-8085-9073925eba9d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1651_demographic Dead '-- '-- '-- '-- 19628 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1102.0 '-- '-- d97f7ad8-0280-573e-a4e4-226d1a92d8fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1651_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- 994 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1651_treatment5 Gemcitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- af5c71f4-efaf-4ec2-8318-9095abee7918 '-- yes '-- '-- Chemotherapy +TCGA-OV 55153632-1673-487a-85c0-f156377db1fc Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1651 53 false '-- '-- '-- '-- -19628 1102 3b99b3f1-6556-5121-8085-9073925eba9d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1651_demographic Dead '-- '-- '-- '-- 19628 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1102.0 '-- '-- d97f7ad8-0280-573e-a4e4-226d1a92d8fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1651_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 150 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1651_treatment4 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 4416 '-- mg '-- '-- '-- '-- ed2e6040-a1c0-41f5-9977-9106762894c3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 55153632-1673-487a-85c0-f156377db1fc Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1651 53 false '-- '-- '-- '-- -19628 1102 3b99b3f1-6556-5121-8085-9073925eba9d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1651_demographic Dead '-- '-- '-- '-- 19628 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1102.0 '-- '-- d97f7ad8-0280-573e-a4e4-226d1a92d8fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1651_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- 638 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1651_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ff6c5ba1-89c7-439f-890b-72931d6dc85f '-- yes '-- '-- Chemotherapy +TCGA-OV 5554a003-da6f-4ddf-9f05-6785987ac46c Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2643 74 false '-- '-- '-- '-- -27093 '-- ab6aff8f-899c-5ff1-b0b2-3c6efde9bdd9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-2643_demographic Alive '-- '-- '-- '-- 27093 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 143.0 '-- '-- b024b366-a2be-58c4-a62c-529ecfce2ee9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2643_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2643_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 00d62d79-da90-40c4-9577-40f45197d1c7 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5554a003-da6f-4ddf-9f05-6785987ac46c Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2643 74 false '-- '-- '-- '-- -27093 '-- ab6aff8f-899c-5ff1-b0b2-3c6efde9bdd9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-2643_demographic Alive '-- '-- '-- '-- 27093 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 143.0 '-- '-- b024b366-a2be-58c4-a62c-529ecfce2ee9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2643_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 129 45 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-23-2643_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1295 '-- mg '-- '-- '-- '-- 0ce97e5c-8eb8-48ff-82ab-6bfbdc2b498d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5554a003-da6f-4ddf-9f05-6785987ac46c Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2643 74 false '-- '-- '-- '-- -27093 '-- ab6aff8f-899c-5ff1-b0b2-3c6efde9bdd9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-2643_demographic Alive '-- '-- '-- '-- 27093 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 143.0 '-- '-- b024b366-a2be-58c4-a62c-529ecfce2ee9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2643_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 129 45 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-23-2643_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 610 '-- mg '-- '-- '-- '-- 41c9640a-1b83-4075-ac2e-f9bbdab8e91a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5554a003-da6f-4ddf-9f05-6785987ac46c Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2643 74 false '-- '-- '-- '-- -27093 '-- ab6aff8f-899c-5ff1-b0b2-3c6efde9bdd9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-2643_demographic Alive '-- '-- '-- '-- 27093 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 143.0 '-- '-- b024b366-a2be-58c4-a62c-529ecfce2ee9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2643_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 24 24 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-23-2643_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 294 '-- mg '-- '-- '-- '-- 47daaccc-d72d-50e4-bf84-b28efc1e3b96 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5554a003-da6f-4ddf-9f05-6785987ac46c Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2643 74 false '-- '-- '-- '-- -27093 '-- ab6aff8f-899c-5ff1-b0b2-3c6efde9bdd9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-2643_demographic Alive '-- '-- '-- '-- 27093 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 143.0 '-- '-- b024b366-a2be-58c4-a62c-529ecfce2ee9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2643_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 24 24 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-23-2643_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 373 '-- mg '-- '-- '-- '-- e4f09ec9-9e25-4da9-ac4a-cc79b72f8a14 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 561968ce-da9a-4d69-8bc2-bc87b9550f93 Informed Consent 21 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1501 50 false '-- '-- '-- '-- -18393 1314 e89502e6-68a4-5a1d-a6c1-13aa96457707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1501_demographic Dead '-- '-- '-- '-- 18785 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 392 '-- '-- '-- 4d1851c9-a412-4b26-ad0c-81a11f711b85 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1501_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1501_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 561968ce-da9a-4d69-8bc2-bc87b9550f93 Informed Consent 21 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1501 50 false '-- '-- '-- '-- -18393 1314 e89502e6-68a4-5a1d-a6c1-13aa96457707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1501_demographic Dead '-- '-- '-- '-- 18785 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 392 '-- '-- '-- 50d4c471-8de1-4a9a-8dec-ce0ead27b6a4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1501_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1501_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1501_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 64d65c9d-1175-421a-9627-24c8c664ab91 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 561968ce-da9a-4d69-8bc2-bc87b9550f93 Informed Consent 21 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1501 50 false '-- '-- '-- '-- -18393 1314 e89502e6-68a4-5a1d-a6c1-13aa96457707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1501_demographic Dead '-- '-- '-- '-- 18785 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 392 '-- '-- '-- 50d4c471-8de1-4a9a-8dec-ce0ead27b6a4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1501_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1501_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1501_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 84583b2e-e5fc-4a06-ae1a-da06cf783f06 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 561968ce-da9a-4d69-8bc2-bc87b9550f93 Informed Consent 21 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1501 50 false '-- '-- '-- '-- -18393 1314 e89502e6-68a4-5a1d-a6c1-13aa96457707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1501_demographic Dead '-- '-- '-- '-- 18393 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1314.0 '-- '-- 834e617b-cd0e-5abb-b039-d8e48e862451 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1501_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1501_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 936548fe-50bb-423f-8e44-6daaf6311412 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 561968ce-da9a-4d69-8bc2-bc87b9550f93 Informed Consent 21 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1501 50 false '-- '-- '-- '-- -18393 1314 e89502e6-68a4-5a1d-a6c1-13aa96457707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1501_demographic Dead '-- '-- '-- '-- 18393 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1314.0 '-- '-- 834e617b-cd0e-5abb-b039-d8e48e862451 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1501_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 183 78 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1501_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- fd6af9dd-59a5-5c52-82e8-86bcf871cdde Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 561968ce-da9a-4d69-8bc2-bc87b9550f93 Informed Consent 21 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1501 50 false '-- '-- '-- '-- -18393 1314 e89502e6-68a4-5a1d-a6c1-13aa96457707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1501_demographic Dead '-- '-- '-- '-- 18393 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1314.0 '-- '-- 834e617b-cd0e-5abb-b039-d8e48e862451 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1501_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 183 78 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1501_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fe3ed706-5c5c-40ae-9a15-3652d4596e19 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 563853a2-9ac2-48be-adf3-1e547ee2b274 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1860 58 false '-- '-- '-- '-- -21406 1366 e6e91e72-6dca-5afc-a512-914d653d4a4f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-30-1860_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 24bd1d15-e2f6-40c4-a942-61e7a9532177 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1860_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1860_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1860_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 407b0aa0-9eeb-48a5-986d-da6b5732f78a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 563853a2-9ac2-48be-adf3-1e547ee2b274 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1860 58 false '-- '-- '-- '-- -21406 1366 e6e91e72-6dca-5afc-a512-914d653d4a4f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-30-1860_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 24bd1d15-e2f6-40c4-a942-61e7a9532177 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1860_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1860_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 974 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1860_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 89e9969d-7fb7-4ba3-8972-da40f8b7c8a7 '-- yes '-- '-- Surgery, NOS +TCGA-OV 563853a2-9ac2-48be-adf3-1e547ee2b274 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1860 58 false '-- '-- '-- '-- -21406 1366 e6e91e72-6dca-5afc-a512-914d653d4a4f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-30-1860_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 24bd1d15-e2f6-40c4-a942-61e7a9532177 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1860_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1860_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1860_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e48f98d3-7483-4fb6-b1c6-df8a1f0731c6 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 563853a2-9ac2-48be-adf3-1e547ee2b274 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1860 58 false '-- '-- '-- '-- -21406 1366 e6e91e72-6dca-5afc-a512-914d653d4a4f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-30-1860_demographic Dead '-- '-- '-- '-- 21406 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1366.0 '-- '-- 770910a1-1949-574d-a201-4d4ada40e373 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1860_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1055 1006 '-- '-- Progressive Disease '-- '-- '-- '-- '-- 25.0 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1860_treatment '-- '-- '-- '-- '-- '-- Primary Tumor Field '-- 4500 '-- cGy '-- '-- '-- '-- 0849482a-d6f8-57ba-94b3-5252b4b71bd2 '-- yes '-- '-- Radiation, External Beam +TCGA-OV 563853a2-9ac2-48be-adf3-1e547ee2b274 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1860 58 false '-- '-- '-- '-- -21406 1366 e6e91e72-6dca-5afc-a512-914d653d4a4f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-30-1860_demographic Dead '-- '-- '-- '-- 21406 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1366.0 '-- '-- 770910a1-1949-574d-a201-4d4ada40e373 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1860_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1069 994 '-- '-- Progressive Disease '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1860_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 70 '-- mg/m2 '-- '-- '-- '-- 13176bbb-ea6a-4911-9b46-4a8835b6f0ab '-- yes '-- '-- Chemotherapy +TCGA-OV 563853a2-9ac2-48be-adf3-1e547ee2b274 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1860 58 false '-- '-- '-- '-- -21406 1366 e6e91e72-6dca-5afc-a512-914d653d4a4f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-30-1860_demographic Dead '-- '-- '-- '-- 21406 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1366.0 '-- '-- 770910a1-1949-574d-a201-4d4ada40e373 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1860_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1246 1191 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1860_treatment7 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- 15 '-- mg/m2 '-- '-- '-- '-- 3056e6b1-edd0-4a9a-8b4d-00a0a702570c '-- yes '-- '-- Chemotherapy +TCGA-OV 563853a2-9ac2-48be-adf3-1e547ee2b274 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1860 58 false '-- '-- '-- '-- -21406 1366 e6e91e72-6dca-5afc-a512-914d653d4a4f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-30-1860_demographic Dead '-- '-- '-- '-- 21406 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1366.0 '-- '-- 770910a1-1949-574d-a201-4d4ada40e373 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1860_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 915 744 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1860_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 391e5db0-979e-4ca6-8445-09dc53c37d4e '-- yes '-- '-- Chemotherapy +TCGA-OV 563853a2-9ac2-48be-adf3-1e547ee2b274 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1860 58 false '-- '-- '-- '-- -21406 1366 e6e91e72-6dca-5afc-a512-914d653d4a4f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-30-1860_demographic Dead '-- '-- '-- '-- 21406 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1366.0 '-- '-- 770910a1-1949-574d-a201-4d4ada40e373 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1860_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 957 915 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1860_treatment4 Topotecan '-- '-- '-- '-- '-- '-- '-- 4 '-- mg/m2 '-- '-- '-- '-- 61dbeb69-f923-4383-8537-ffab3a2808c2 '-- yes '-- '-- Chemotherapy +TCGA-OV 563853a2-9ac2-48be-adf3-1e547ee2b274 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1860 58 false '-- '-- '-- '-- -21406 1366 e6e91e72-6dca-5afc-a512-914d653d4a4f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-30-1860_demographic Dead '-- '-- '-- '-- 21406 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1366.0 '-- '-- 770910a1-1949-574d-a201-4d4ada40e373 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1860_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 561 413 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1860_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 40 '-- mg '-- '-- '-- '-- 7d8f3296-279e-473e-af8d-ded9f9f92015 '-- yes '-- '-- Chemotherapy +TCGA-OV 563853a2-9ac2-48be-adf3-1e547ee2b274 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1860 58 false '-- '-- '-- '-- -21406 1366 e6e91e72-6dca-5afc-a512-914d653d4a4f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-30-1860_demographic Dead '-- '-- '-- '-- 21406 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1366.0 '-- '-- 770910a1-1949-574d-a201-4d4ada40e373 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1860_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 207 22 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1860_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 898e6272-479e-4c0a-b8fe-d6e586a33ed3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 563853a2-9ac2-48be-adf3-1e547ee2b274 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1860 58 false '-- '-- '-- '-- -21406 1366 e6e91e72-6dca-5afc-a512-914d653d4a4f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-30-1860_demographic Dead '-- '-- '-- '-- 21406 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1366.0 '-- '-- 770910a1-1949-574d-a201-4d4ada40e373 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1860_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 915 744 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1860_treatment8 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 750 '-- mg/m2 '-- '-- '-- '-- a483b92b-6a0e-4239-aa79-32e515ed04fe '-- yes '-- '-- Chemotherapy +TCGA-OV 563853a2-9ac2-48be-adf3-1e547ee2b274 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1860 58 false '-- '-- '-- '-- -21406 1366 e6e91e72-6dca-5afc-a512-914d653d4a4f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-30-1860_demographic Dead '-- '-- '-- '-- 21406 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1366.0 '-- '-- 770910a1-1949-574d-a201-4d4ada40e373 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1860_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 207 22 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1860_treatment9 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- a64f233a-f3bd-4155-832f-7a4ec8e08aa2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 563853a2-9ac2-48be-adf3-1e547ee2b274 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1860 58 false '-- '-- '-- '-- -21406 1366 e6e91e72-6dca-5afc-a512-914d653d4a4f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-30-1860_demographic Dead '-- '-- '-- '-- 21406 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1366.0 '-- '-- 770910a1-1949-574d-a201-4d4ada40e373 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1860_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1246 1191 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-30-1860_treatment10 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 10 '-- mg/kg '-- '-- '-- '-- c2d4f971-db3c-41ff-a89d-c735cfcc1831 '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 563853a2-9ac2-48be-adf3-1e547ee2b274 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1860 58 false '-- '-- '-- '-- -21406 1366 e6e91e72-6dca-5afc-a512-914d653d4a4f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-30-1860_demographic Dead '-- '-- '-- '-- 21803 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 397 '-- '-- '-- da50dd49-3786-4cdd-9d8d-11c8122a72ac false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1860_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1860_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1860_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4e624a42-0533-4474-b852-03a98f259bcb '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 563853a2-9ac2-48be-adf3-1e547ee2b274 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1860 58 false '-- '-- '-- '-- -21406 1366 e6e91e72-6dca-5afc-a512-914d653d4a4f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-30-1860_demographic Dead '-- '-- '-- '-- 21803 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 397 '-- '-- '-- da50dd49-3786-4cdd-9d8d-11c8122a72ac false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1860_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1860_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1860_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5aec2a0b-f6bb-490c-9c36-5220b033711d '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 565d06a1-3640-4274-8fb3-8cad7e578876 Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1998 48 false '-- '-- '-- '-- -17855 '-- dcf3372c-5c88-5b4b-96fe-6f38ca251168 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1998_demographic Alive '-- '-- '-- '-- 17855 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 168.0 '-- '-- 720e8667-af0a-5909-9705-68bab71ed9f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1998_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- 52 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1998_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 62001908-9063-4d71-9d13-79ca02ffce76 Adjuvant yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 565d06a1-3640-4274-8fb3-8cad7e578876 Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1998 48 false '-- '-- '-- '-- -17855 '-- dcf3372c-5c88-5b4b-96fe-6f38ca251168 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1998_demographic Alive '-- '-- '-- '-- 17855 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 168.0 '-- '-- 720e8667-af0a-5909-9705-68bab71ed9f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1998_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- 52 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1998_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 911145e7-d12b-4215-824f-7cc4eec3c18d Adjuvant yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 565d06a1-3640-4274-8fb3-8cad7e578876 Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1998 48 false '-- '-- '-- '-- -17855 '-- dcf3372c-5c88-5b4b-96fe-6f38ca251168 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1998_demographic Alive '-- '-- '-- '-- 17855 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 168.0 '-- '-- 720e8667-af0a-5909-9705-68bab71ed9f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1998_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1998_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dcb56e2e-758f-42b3-9f0c-6d34e4cbacb5 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 565d06a1-3640-4274-8fb3-8cad7e578876 Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1998 48 false '-- '-- '-- '-- -17855 '-- dcf3372c-5c88-5b4b-96fe-6f38ca251168 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1998_demographic Alive '-- '-- '-- '-- 17855 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 168.0 '-- '-- 720e8667-af0a-5909-9705-68bab71ed9f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1998_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 77 10 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1998_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 188 '-- mg '-- '-- '-- '-- e3fafe10-5118-51b1-8db6-d84c45daec73 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 56a30462-2819-4c18-95be-8e73880a4921 Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1498 73 false '-- '-- '-- '-- -26820 2012 28950168-4541-54cc-bdd4-8a03516ad698 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1498_demographic Dead '-- '-- '-- '-- 27354 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 534 '-- '-- '-- 54084f8c-e126-47db-9731-fae1b99f770c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1498_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1498_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 56a30462-2819-4c18-95be-8e73880a4921 Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1498 73 false '-- '-- '-- '-- -26820 2012 28950168-4541-54cc-bdd4-8a03516ad698 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1498_demographic Dead '-- '-- '-- '-- 26820 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2012.0 '-- '-- 7014b3d8-1e77-5bd5-963a-cc54ff5b2d8f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1498_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1498_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 136a80a3-326d-44ad-a068-0bf22a1fba92 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 56a30462-2819-4c18-95be-8e73880a4921 Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1498 73 false '-- '-- '-- '-- -26820 2012 28950168-4541-54cc-bdd4-8a03516ad698 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1498_demographic Dead '-- '-- '-- '-- 26820 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2012.0 '-- '-- 7014b3d8-1e77-5bd5-963a-cc54ff5b2d8f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1498_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 216 7 '-- '-- '-- '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1498_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 41d12a62-4875-42a0-b950-53b6f6b09aa6 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 56a30462-2819-4c18-95be-8e73880a4921 Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1498 73 false '-- '-- '-- '-- -26820 2012 28950168-4541-54cc-bdd4-8a03516ad698 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1498_demographic Dead '-- '-- '-- '-- 26820 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2012.0 '-- '-- 7014b3d8-1e77-5bd5-963a-cc54ff5b2d8f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1498_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 216 7 '-- '-- '-- '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1498_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- c5f54909-dc1a-531f-bce2-b9e66054c35d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 56a30462-2819-4c18-95be-8e73880a4921 Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1498 73 false '-- '-- '-- '-- -26820 2012 28950168-4541-54cc-bdd4-8a03516ad698 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1498_demographic Dead '-- '-- '-- '-- 26820 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2012.0 '-- '-- 7014b3d8-1e77-5bd5-963a-cc54ff5b2d8f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1498_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 632 250 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1498_treatment3 Letrozole '-- '-- '-- '-- '-- '-- '-- 3 '-- mg '-- '-- '-- '-- dec310c6-f8f1-4fcf-ae2e-f119d21778ee Adjuvant yes '-- '-- Hormone Therapy +TCGA-OV 56a30462-2819-4c18-95be-8e73880a4921 Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1498 73 false '-- '-- '-- '-- -26820 2012 28950168-4541-54cc-bdd4-8a03516ad698 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1498_demographic Dead '-- '-- '-- '-- 27354 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 534 '-- '-- '-- ecbbd75b-7002-4572-ac75-4248043e7376 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1498_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1498_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1498_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1140b715-8aff-4573-b807-5d062d0aba23 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 56a30462-2819-4c18-95be-8e73880a4921 Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1498 73 false '-- '-- '-- '-- -26820 2012 28950168-4541-54cc-bdd4-8a03516ad698 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1498_demographic Dead '-- '-- '-- '-- 27354 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 534 '-- '-- '-- ecbbd75b-7002-4572-ac75-4248043e7376 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1498_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1498_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1498_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- de1f757d-a85f-4b21-a3ec-27f37183dccd '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 56c4bd48-ab15-4b49-ae2f-968653052b50 Informed Consent 16 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2057 59 false '-- '-- '-- '-- -21554 '-- cc63f271-e881-5665-98f6-772d0cfe34f1 '-- not reported female '-- '-- '-- '-- white TCGA-13-2057_demographic Alive '-- '-- '-- '-- 22451 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 897 '-- '-- '-- 08bb7a49-7619-498a-9926-b498a4333304 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-2057_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-2057_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 56c4bd48-ab15-4b49-ae2f-968653052b50 Informed Consent 16 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2057 59 false '-- '-- '-- '-- -21554 '-- cc63f271-e881-5665-98f6-772d0cfe34f1 '-- not reported female '-- '-- '-- '-- white TCGA-13-2057_demographic Alive '-- '-- '-- '-- 21554 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2434.0 '-- '-- 36236a58-f1bd-50af-aaf5-60af5be5f60e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2057_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 159 51 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-2057_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6efd352c-84ce-5ef1-b125-a8c12071ddd4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 56c4bd48-ab15-4b49-ae2f-968653052b50 Informed Consent 16 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2057 59 false '-- '-- '-- '-- -21554 '-- cc63f271-e881-5665-98f6-772d0cfe34f1 '-- not reported female '-- '-- '-- '-- white TCGA-13-2057_demographic Alive '-- '-- '-- '-- 21554 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2434.0 '-- '-- 36236a58-f1bd-50af-aaf5-60af5be5f60e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2057_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 159 51 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-2057_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- fb18ec9d-8ef2-4003-9e24-e8c6775e6e1e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 56c4bd48-ab15-4b49-ae2f-968653052b50 Informed Consent 16 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2057 59 false '-- '-- '-- '-- -21554 '-- cc63f271-e881-5665-98f6-772d0cfe34f1 '-- not reported female '-- '-- '-- '-- white TCGA-13-2057_demographic Alive '-- '-- '-- '-- 21554 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2434.0 '-- '-- 36236a58-f1bd-50af-aaf5-60af5be5f60e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2057_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-2057_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fe42cd59-a344-4424-aead-58445e653cec Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 58427bce-6b81-4083-aeda-25f59e292bbc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1316 55 false '-- '-- '-- '-- -20331 1279 8f0f2afc-3c1a-5e58-bdac-9601041f917b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1316_demographic Dead '-- '-- '-- '-- 20331 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1279.0 '-- '-- 01932ba3-2753-5aa5-b4bc-15b1972bc184 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1316_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1316_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0b7bb02d-d027-4418-a50c-2ef1228b5095 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 58427bce-6b81-4083-aeda-25f59e292bbc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1316 55 false '-- '-- '-- '-- -20331 1279 8f0f2afc-3c1a-5e58-bdac-9601041f917b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1316_demographic Dead '-- '-- '-- '-- 20331 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1279.0 '-- '-- 01932ba3-2753-5aa5-b4bc-15b1972bc184 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1316_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 214 61 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1316_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8e28bb3e-4bda-45a1-8344-8eb3fac2c2b5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 58427bce-6b81-4083-aeda-25f59e292bbc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1316 55 false '-- '-- '-- '-- -20331 1279 8f0f2afc-3c1a-5e58-bdac-9601041f917b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1316_demographic Dead '-- '-- '-- '-- 20331 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1279.0 '-- '-- 01932ba3-2753-5aa5-b4bc-15b1972bc184 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1316_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 214 61 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1316_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9ffd597a-dcc4-59f7-97dc-c7f403419f02 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 58427bce-6b81-4083-aeda-25f59e292bbc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1316 55 false '-- '-- '-- '-- -20331 1279 8f0f2afc-3c1a-5e58-bdac-9601041f917b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1316_demographic Dead '-- '-- '-- '-- 20331 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1279.0 '-- '-- 01932ba3-2753-5aa5-b4bc-15b1972bc184 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1316_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 406 276 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1316_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f4cfc8c4-51de-4532-9b7b-3a7ea2d6dd0c '-- yes '-- '-- Chemotherapy +TCGA-OV 58427bce-6b81-4083-aeda-25f59e292bbc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1316 55 false '-- '-- '-- '-- -20331 1279 8f0f2afc-3c1a-5e58-bdac-9601041f917b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1316_demographic Dead '-- '-- '-- '-- 20607 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 276 '-- '-- '-- f13c29b6-1341-45ec-ab53-bcf5b6f811b7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1316_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1316_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1316_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 80de5f50-ac0d-4536-a46a-a2133a606b1b '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 58427bce-6b81-4083-aeda-25f59e292bbc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1316 55 false '-- '-- '-- '-- -20331 1279 8f0f2afc-3c1a-5e58-bdac-9601041f917b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1316_demographic Dead '-- '-- '-- '-- 20607 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 276 '-- '-- '-- f13c29b6-1341-45ec-ab53-bcf5b6f811b7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1316_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1316_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1316_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ab3237ec-6ad5-41b9-bbee-29845c8e2695 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 58d34254-4f5b-40a4-9e9f-7160062fb2a4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0912 58 false '-- '-- '-- '-- -21427 1145 79f67d65-cb1d-5430-9879-274661ddb93f '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0912_demographic Dead '-- '-- '-- '-- 21427 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1145.0 '-- '-- 4fe8a517-236c-5cbc-acb8-58326c6a7a6a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0912_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 147 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0912_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- 6d9e3b39-11f4-47d9-8b55-ddc56112b3ab Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 58d34254-4f5b-40a4-9e9f-7160062fb2a4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0912 58 false '-- '-- '-- '-- -21427 1145 79f67d65-cb1d-5430-9879-274661ddb93f '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0912_demographic Dead '-- '-- '-- '-- 21427 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1145.0 '-- '-- 4fe8a517-236c-5cbc-acb8-58326c6a7a6a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0912_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 147 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0912_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- 849cc962-34ea-5a9d-9b1a-26491fe27c7a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 58d34254-4f5b-40a4-9e9f-7160062fb2a4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0912 58 false '-- '-- '-- '-- -21427 1145 79f67d65-cb1d-5430-9879-274661ddb93f '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0912_demographic Dead '-- '-- '-- '-- 21427 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1145.0 '-- '-- 4fe8a517-236c-5cbc-acb8-58326c6a7a6a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0912_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 147 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0912_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- afe6e6c9-dd5b-4197-b345-3c180c7d400f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 58d34254-4f5b-40a4-9e9f-7160062fb2a4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0912 58 false '-- '-- '-- '-- -21427 1145 79f67d65-cb1d-5430-9879-274661ddb93f '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0912_demographic Dead '-- '-- '-- '-- 21427 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1145.0 '-- '-- 4fe8a517-236c-5cbc-acb8-58326c6a7a6a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0912_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0912_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ee815d7b-a5e1-461d-88d1-109c278a79cf Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 58d34254-4f5b-40a4-9e9f-7160062fb2a4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0912 58 false '-- '-- '-- '-- -21427 1145 79f67d65-cb1d-5430-9879-274661ddb93f '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0912_demographic Dead '-- '-- '-- '-- 21896 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 469 '-- '-- '-- 535594d8-e0aa-4134-b130-fbeaed17e846 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0912_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0912_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0912_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7ad186dc-4d73-468f-bb55-311c90537d90 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 58d34254-4f5b-40a4-9e9f-7160062fb2a4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0912 58 false '-- '-- '-- '-- -21427 1145 79f67d65-cb1d-5430-9879-274661ddb93f '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0912_demographic Dead '-- '-- '-- '-- 21896 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 469 '-- '-- '-- 535594d8-e0aa-4134-b130-fbeaed17e846 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0912_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0912_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0912_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bfe68c0f-da20-4825-9df8-366fcf474dc8 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 58d34254-4f5b-40a4-9e9f-7160062fb2a4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0912 58 false '-- '-- '-- '-- -21427 1145 79f67d65-cb1d-5430-9879-274661ddb93f '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0912_demographic Dead '-- '-- '-- '-- 21896 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 469 '-- '-- '-- 6018a6fb-503c-452b-bc73-8852acc79b9c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0912_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0912_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 58f5a54e-de50-4cca-afa1-cc331d8b3479 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1862 65 false '-- '-- '-- '-- -23895 186 bf047813-e305-5aa3-a47a-6582e28a88c3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1862_demographic Dead '-- '-- '-- '-- 23895 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 186.0 '-- '-- 43530a4f-d2b9-5c4b-b4a5-1450b2fa35a4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1862_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1862_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e901e62d-705b-53c7-8bfa-c10e4797f089 Adjuvant no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 58f5a54e-de50-4cca-afa1-cc331d8b3479 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1862 65 false '-- '-- '-- '-- -23895 186 bf047813-e305-5aa3-a47a-6582e28a88c3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1862_demographic Dead '-- '-- '-- '-- 23895 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 186.0 '-- '-- 43530a4f-d2b9-5c4b-b4a5-1450b2fa35a4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1862_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1862_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- efdcf2b9-b539-432b-baad-bd550adc0fd9 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 59b3fbfe-0b7c-41e5-b756-ee7e23730df5 Informed Consent 1259 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2281 68 false '-- '-- '-- '-- -25019 '-- 31c47fb8-f9c9-5bd3-a2e0-1416b999df2b '-- not reported female '-- '-- '-- '-- white TCGA-24-2281_demographic Alive '-- '-- '-- '-- 25019 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1357.0 '-- '-- c9b6188c-636e-5f19-9261-7b9a70e42044 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2281_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2281_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1b582411-3b41-47a3-bd49-86596e895f74 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 59b3fbfe-0b7c-41e5-b756-ee7e23730df5 Informed Consent 1259 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2281 68 false '-- '-- '-- '-- -25019 '-- 31c47fb8-f9c9-5bd3-a2e0-1416b999df2b '-- not reported female '-- '-- '-- '-- white TCGA-24-2281_demographic Alive '-- '-- '-- '-- 25019 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1357.0 '-- '-- c9b6188c-636e-5f19-9261-7b9a70e42044 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2281_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2281_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7f1743f0-eb08-56bc-88cc-14c67bb223f5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 59b3fbfe-0b7c-41e5-b756-ee7e23730df5 Informed Consent 1259 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2281 68 false '-- '-- '-- '-- -25019 '-- 31c47fb8-f9c9-5bd3-a2e0-1416b999df2b '-- not reported female '-- '-- '-- '-- white TCGA-24-2281_demographic Alive '-- '-- '-- '-- 25019 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1357.0 '-- '-- c9b6188c-636e-5f19-9261-7b9a70e42044 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2281_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2281_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a5b5f1d7-c84c-4818-ad7b-6c2bcac46f7c Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5abb6d80-fc39-49a4-8db5-3db24543feb6 Informed Consent 472 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1770 54 false '-- '-- '-- '-- -20015 '-- 08af8cb4-296c-5a4f-b5fc-951011920166 '-- not reported female '-- '-- '-- '-- white TCGA-29-1770_demographic Alive '-- '-- '-- '-- 20015 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 741.0 '-- '-- 05b7bdb6-00fc-573b-88b0-3985a0a97199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1770_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 546 384 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1770_treatment6 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1370 '-- mg '-- '-- '-- '-- 443b5df5-23e8-4a13-9de9-278eb64b37dc '-- yes '-- '-- Chemotherapy +TCGA-OV 5abb6d80-fc39-49a4-8db5-3db24543feb6 Informed Consent 472 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1770 54 false '-- '-- '-- '-- -20015 '-- 08af8cb4-296c-5a4f-b5fc-951011920166 '-- not reported female '-- '-- '-- '-- white TCGA-29-1770_demographic Alive '-- '-- '-- '-- 20015 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 741.0 '-- '-- 05b7bdb6-00fc-573b-88b0-3985a0a97199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1770_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 68 19 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1770_treatment8 Carboplatin '-- '-- '-- '-- '-- '-- '-- 630 '-- mg '-- '-- '-- '-- 6cfc5a11-51df-4ddd-88bc-9632e13ce305 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5abb6d80-fc39-49a4-8db5-3db24543feb6 Informed Consent 472 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1770 54 false '-- '-- '-- '-- -20015 '-- 08af8cb4-296c-5a4f-b5fc-951011920166 '-- not reported female '-- '-- '-- '-- white TCGA-29-1770_demographic Alive '-- '-- '-- '-- 20015 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 741.0 '-- '-- 05b7bdb6-00fc-573b-88b0-3985a0a97199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1770_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 546 384 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1770_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 650 '-- mg '-- '-- '-- '-- 908b1b35-18d5-4630-96e8-309fc9d1b285 '-- yes '-- '-- Chemotherapy +TCGA-OV 5abb6d80-fc39-49a4-8db5-3db24543feb6 Informed Consent 472 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1770 54 false '-- '-- '-- '-- -20015 '-- 08af8cb4-296c-5a4f-b5fc-951011920166 '-- not reported female '-- '-- '-- '-- white TCGA-29-1770_demographic Alive '-- '-- '-- '-- 20015 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 741.0 '-- '-- 05b7bdb6-00fc-573b-88b0-3985a0a97199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1770_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1770_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a5231e45-8b6c-41c2-8228-5baa5e0d666f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5abb6d80-fc39-49a4-8db5-3db24543feb6 Informed Consent 472 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1770 54 false '-- '-- '-- '-- -20015 '-- 08af8cb4-296c-5a4f-b5fc-951011920166 '-- not reported female '-- '-- '-- '-- white TCGA-29-1770_demographic Alive '-- '-- '-- '-- 20015 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 741.0 '-- '-- 05b7bdb6-00fc-573b-88b0-3985a0a97199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1770_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 136 87 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1770_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- 100 '-- mg '-- '-- '-- '-- bafb4da9-41ca-51be-92f7-f757fdb708d4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5abb6d80-fc39-49a4-8db5-3db24543feb6 Informed Consent 472 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1770 54 false '-- '-- '-- '-- -20015 '-- 08af8cb4-296c-5a4f-b5fc-951011920166 '-- not reported female '-- '-- '-- '-- white TCGA-29-1770_demographic Alive '-- '-- '-- '-- 20015 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 741.0 '-- '-- 05b7bdb6-00fc-573b-88b0-3985a0a97199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1770_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 762 741 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1770_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e9df8ae6-2b65-47a5-8db6-51fe58ecaf17 '-- yes '-- '-- Chemotherapy +TCGA-OV 5abb6d80-fc39-49a4-8db5-3db24543feb6 Informed Consent 472 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1770 54 false '-- '-- '-- '-- -20015 '-- 08af8cb4-296c-5a4f-b5fc-951011920166 '-- not reported female '-- '-- '-- '-- white TCGA-29-1770_demographic Alive '-- '-- '-- '-- 20015 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 741.0 '-- '-- 05b7bdb6-00fc-573b-88b0-3985a0a97199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1770_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 762 741 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1770_treatment7 Bevacizumab '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f20b6495-e469-49db-82c2-cc0718135776 '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 5abb6d80-fc39-49a4-8db5-3db24543feb6 Informed Consent 472 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1770 54 false '-- '-- '-- '-- -20015 '-- 08af8cb4-296c-5a4f-b5fc-951011920166 '-- not reported female '-- '-- '-- '-- white TCGA-29-1770_demographic Alive '-- '-- '-- '-- 20015 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 741.0 '-- '-- 05b7bdb6-00fc-573b-88b0-3985a0a97199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1770_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 68 19 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1770_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 300 '-- mg '-- '-- '-- '-- f65e27f0-1b37-4c30-b82e-82cbcdb4488e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5abb6d80-fc39-49a4-8db5-3db24543feb6 Informed Consent 472 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1770 54 false '-- '-- '-- '-- -20015 '-- 08af8cb4-296c-5a4f-b5fc-951011920166 '-- not reported female '-- '-- '-- '-- white TCGA-29-1770_demographic Alive '-- '-- '-- '-- 20015 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 741.0 '-- '-- 05b7bdb6-00fc-573b-88b0-3985a0a97199 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1770_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 136 87 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1770_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 690 '-- mg '-- '-- '-- '-- fe359b27-3817-4434-9e27-8c5b669746bd Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5abb6d80-fc39-49a4-8db5-3db24543feb6 Informed Consent 472 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1770 54 false '-- '-- '-- '-- -20015 '-- 08af8cb4-296c-5a4f-b5fc-951011920166 '-- not reported female '-- '-- '-- '-- white TCGA-29-1770_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8226c65c-a259-4ac0-95be-666861f672c6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1770_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1770_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1770_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a742d93a-9532-4197-9251-a3c459725524 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 5abb6d80-fc39-49a4-8db5-3db24543feb6 Informed Consent 472 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1770 54 false '-- '-- '-- '-- -20015 '-- 08af8cb4-296c-5a4f-b5fc-951011920166 '-- not reported female '-- '-- '-- '-- white TCGA-29-1770_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8226c65c-a259-4ac0-95be-666861f672c6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1770_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1770_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 432 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1770_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cacd68ff-a11d-4c58-8a2e-ec3402dea68e '-- yes '-- '-- Surgery, NOS +TCGA-OV 5abb6d80-fc39-49a4-8db5-3db24543feb6 Informed Consent 472 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1770 54 false '-- '-- '-- '-- -20015 '-- 08af8cb4-296c-5a4f-b5fc-951011920166 '-- not reported female '-- '-- '-- '-- white TCGA-29-1770_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8226c65c-a259-4ac0-95be-666861f672c6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1770_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1770_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1770_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dec8894f-f205-4f68-b101-fce23981d06a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 5abb6d80-fc39-49a4-8db5-3db24543feb6 Informed Consent 472 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1770 54 false '-- '-- '-- '-- -20015 '-- 08af8cb4-296c-5a4f-b5fc-951011920166 '-- not reported female '-- '-- '-- '-- white TCGA-29-1770_demographic Alive '-- '-- '-- '-- 20392 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 377 '-- '-- '-- 97a677fa-900b-4eda-93bb-0e67955b61c9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1770_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1770_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1770_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d3361652-37d3-4817-ab31-2179d9841c76 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 5abb6d80-fc39-49a4-8db5-3db24543feb6 Informed Consent 472 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1770 54 false '-- '-- '-- '-- -20015 '-- 08af8cb4-296c-5a4f-b5fc-951011920166 '-- not reported female '-- '-- '-- '-- white TCGA-29-1770_demographic Alive '-- '-- '-- '-- 20392 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 377 '-- '-- '-- 97a677fa-900b-4eda-93bb-0e67955b61c9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1770_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1770_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1770_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d47e7b27-0d75-40e7-9c73-9831f3c78dcb '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 5c127332-5ca0-45f1-a5ac-4876ad94e491 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2400 76 false '-- '-- '-- '-- -27789 1278 3c33fcef-becb-52f1-8639-ed1171c7abf6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2400_demographic Dead '-- '-- '-- '-- 28366 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 577 '-- '-- '-- 84aace27-28e2-4c2d-bd5f-6d006468d4c4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-2400_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-2400_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2400_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2b769a28-f29a-4a58-bf22-4fb52cc12a21 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 5c127332-5ca0-45f1-a5ac-4876ad94e491 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2400 76 false '-- '-- '-- '-- -27789 1278 3c33fcef-becb-52f1-8639-ed1171c7abf6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2400_demographic Dead '-- '-- '-- '-- 28366 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 577 '-- '-- '-- 84aace27-28e2-4c2d-bd5f-6d006468d4c4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-2400_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-2400_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2400_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 773d32f0-2559-48d7-8ccb-acf9b75024af '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 5c127332-5ca0-45f1-a5ac-4876ad94e491 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2400 76 false '-- '-- '-- '-- -27789 1278 3c33fcef-becb-52f1-8639-ed1171c7abf6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2400_demographic Dead '-- '-- '-- '-- 27789 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1278.0 '-- '-- f39bd60a-a005-5137-a928-fc58efb4c5d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2400_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 182 61 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2400_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 42214af6-e6c0-52d7-8f63-48cb7d376457 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5c127332-5ca0-45f1-a5ac-4876ad94e491 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2400 76 false '-- '-- '-- '-- -27789 1278 3c33fcef-becb-52f1-8639-ed1171c7abf6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2400_demographic Dead '-- '-- '-- '-- 27789 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1278.0 '-- '-- f39bd60a-a005-5137-a928-fc58efb4c5d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2400_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 669 577 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2400_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 42eede57-aaac-4755-83a1-4a8500723795 '-- yes '-- '-- Chemotherapy +TCGA-OV 5c127332-5ca0-45f1-a5ac-4876ad94e491 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2400 76 false '-- '-- '-- '-- -27789 1278 3c33fcef-becb-52f1-8639-ed1171c7abf6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2400_demographic Dead '-- '-- '-- '-- 27789 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1278.0 '-- '-- f39bd60a-a005-5137-a928-fc58efb4c5d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2400_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 182 61 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2400_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5ce7f159-aaed-4362-924c-cde10e9ff207 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5c127332-5ca0-45f1-a5ac-4876ad94e491 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2400 76 false '-- '-- '-- '-- -27789 1278 3c33fcef-becb-52f1-8639-ed1171c7abf6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2400_demographic Dead '-- '-- '-- '-- 27789 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1278.0 '-- '-- f39bd60a-a005-5137-a928-fc58efb4c5d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2400_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2400_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 66f265ab-5ae1-40ef-aec3-9a7b5d8457fe Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5c127332-5ca0-45f1-a5ac-4876ad94e491 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2400 76 false '-- '-- '-- '-- -27789 1278 3c33fcef-becb-52f1-8639-ed1171c7abf6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2400_demographic Dead '-- '-- '-- '-- 27789 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1278.0 '-- '-- f39bd60a-a005-5137-a928-fc58efb4c5d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2400_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 669 577 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2400_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f1720cea-df1c-497c-a133-14d98c83ca27 '-- yes '-- '-- Chemotherapy +TCGA-OV 5c159ab5-8475-4d93-89b8-b6befed4a5b3 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0883 61 false '-- '-- '-- '-- -22395 2097 580cfffe-92f6-5401-9167-dac54793bc2e '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0883_demographic Dead '-- '-- '-- '-- 22395 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2097.0 '-- '-- 1ca82c95-b632-5780-9c0b-cc470669922c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0883_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 350 227 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0883_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- 027e878c-a4fd-4bdc-a372-f25f31a487f7 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5c159ab5-8475-4d93-89b8-b6befed4a5b3 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0883 61 false '-- '-- '-- '-- -22395 2097 580cfffe-92f6-5401-9167-dac54793bc2e '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0883_demographic Dead '-- '-- '-- '-- 22395 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2097.0 '-- '-- 1ca82c95-b632-5780-9c0b-cc470669922c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0883_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0883_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 303f2bd5-edf8-4f07-99c9-d30c65cf20fc Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5c159ab5-8475-4d93-89b8-b6befed4a5b3 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0883 61 false '-- '-- '-- '-- -22395 2097 580cfffe-92f6-5401-9167-dac54793bc2e '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0883_demographic Dead '-- '-- '-- '-- 22395 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2097.0 '-- '-- 1ca82c95-b632-5780-9c0b-cc470669922c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0883_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 143 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0883_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aa138e2d-759a-59fa-85ed-c7a2a5d7e157 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5c159ab5-8475-4d93-89b8-b6befed4a5b3 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0883 61 false '-- '-- '-- '-- -22395 2097 580cfffe-92f6-5401-9167-dac54793bc2e '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0883_demographic Dead '-- '-- '-- '-- 22395 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2097.0 '-- '-- 1ca82c95-b632-5780-9c0b-cc470669922c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0883_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 143 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0883_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- e10e56b1-8cf7-4006-b757-b5e7c5dcd901 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5c159ab5-8475-4d93-89b8-b6befed4a5b3 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0883 61 false '-- '-- '-- '-- -22395 2097 580cfffe-92f6-5401-9167-dac54793bc2e '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0883_demographic Dead '-- '-- '-- '-- 23214 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 819 '-- '-- '-- 533e3312-532f-4d12-9a45-2f5dcff94ee2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0883_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0883_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0883_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0a2f2bad-3614-40c2-9df6-c3d567c10af1 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 5c159ab5-8475-4d93-89b8-b6befed4a5b3 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0883 61 false '-- '-- '-- '-- -22395 2097 580cfffe-92f6-5401-9167-dac54793bc2e '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0883_demographic Dead '-- '-- '-- '-- 23214 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 819 '-- '-- '-- 533e3312-532f-4d12-9a45-2f5dcff94ee2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0883_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0883_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0883_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f9d0d82c-2eb0-4ff8-b4fe-03e2c6eaaf8b '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 5c6f3cd4-19c5-418d-b1be-d3fbf63e99db '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0899 60 false '-- '-- '-- '-- -22031 2012 cb83a315-81d1-5941-9ecb-26ee6ebcbe64 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0899_demographic Dead '-- '-- '-- '-- 22031 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2012.0 '-- '-- 39542801-2152-5d8a-85de-8d641a606424 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0899_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 126 16 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0899_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1050 '-- mg/m2 '-- '-- '-- '-- 2e4dc611-2eae-5df7-8df5-1cb73dce374a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5c6f3cd4-19c5-418d-b1be-d3fbf63e99db '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0899 60 false '-- '-- '-- '-- -22031 2012 cb83a315-81d1-5941-9ecb-26ee6ebcbe64 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0899_demographic Dead '-- '-- '-- '-- 22031 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2012.0 '-- '-- 39542801-2152-5d8a-85de-8d641a606424 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0899_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 126 16 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0899_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4c4048f0-fde5-4edf-aa69-c1e0be4c4fc5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5c6f3cd4-19c5-418d-b1be-d3fbf63e99db '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0899 60 false '-- '-- '-- '-- -22031 2012 cb83a315-81d1-5941-9ecb-26ee6ebcbe64 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0899_demographic Dead '-- '-- '-- '-- 22031 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2012.0 '-- '-- 39542801-2152-5d8a-85de-8d641a606424 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0899_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0899_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ac95baaf-2e95-4fe6-b5a1-4957925cbaa4 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5c6f3cd4-19c5-418d-b1be-d3fbf63e99db '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0899 60 false '-- '-- '-- '-- -22031 2012 cb83a315-81d1-5941-9ecb-26ee6ebcbe64 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0899_demographic Dead '-- '-- '-- '-- 22578 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 547 '-- '-- '-- bfd5f40e-c889-4a9a-9ee7-a8b2bc89a64f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0899_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0899_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 5c6f3cd4-19c5-418d-b1be-d3fbf63e99db '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0899 60 false '-- '-- '-- '-- -22031 2012 cb83a315-81d1-5941-9ecb-26ee6ebcbe64 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0899_demographic Dead '-- '-- '-- '-- 22578 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 547 '-- '-- '-- e733a14d-88f5-4d03-804d-7cfa61def598 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0899_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0899_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0899_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3940f055-a9b5-4edf-b33c-4f1c2036e0a1 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 5c6f3cd4-19c5-418d-b1be-d3fbf63e99db '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0899 60 false '-- '-- '-- '-- -22031 2012 cb83a315-81d1-5941-9ecb-26ee6ebcbe64 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0899_demographic Dead '-- '-- '-- '-- 22578 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 547 '-- '-- '-- e733a14d-88f5-4d03-804d-7cfa61def598 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0899_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0899_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0899_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5c2499dc-9ed1-4e27-94c6-78dcb9404aa4 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 5ced5b58-fab4-4bcd-b706-d6e49ce0cfc5 Informed Consent 206 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1777 47 false '-- '-- '-- '-- -17356 '-- 76f43d25-03dd-5e87-a305-baf33d049fbf '-- not reported female '-- '-- '-- '-- white TCGA-29-1777_demographic Alive '-- '-- '-- '-- 17356 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 374.0 '-- '-- 06faab0f-085d-5399-a16e-833cb5d7e9d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1777_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 346 346 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1777_treatment Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 70 '-- mg '-- '-- '-- '-- 1926b00e-c834-5070-8fe4-063f9171cb7f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5ced5b58-fab4-4bcd-b706-d6e49ce0cfc5 Informed Consent 206 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1777 47 false '-- '-- '-- '-- -17356 '-- 76f43d25-03dd-5e87-a305-baf33d049fbf '-- not reported female '-- '-- '-- '-- white TCGA-29-1777_demographic Alive '-- '-- '-- '-- 17356 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 374.0 '-- '-- 06faab0f-085d-5399-a16e-833cb5d7e9d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1777_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 303 87 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1777_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 740 '-- mg '-- '-- '-- '-- 336bd139-0954-497b-a453-c6c528b1a12c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5ced5b58-fab4-4bcd-b706-d6e49ce0cfc5 Informed Consent 206 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1777 47 false '-- '-- '-- '-- -17356 '-- 76f43d25-03dd-5e87-a305-baf33d049fbf '-- not reported female '-- '-- '-- '-- white TCGA-29-1777_demographic Alive '-- '-- '-- '-- 17356 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 374.0 '-- '-- 06faab0f-085d-5399-a16e-833cb5d7e9d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1777_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1777_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3a540b46-fef9-46e4-93f2-39d11faf817a Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5ced5b58-fab4-4bcd-b706-d6e49ce0cfc5 Informed Consent 206 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1777 47 false '-- '-- '-- '-- -17356 '-- 76f43d25-03dd-5e87-a305-baf33d049fbf '-- not reported female '-- '-- '-- '-- white TCGA-29-1777_demographic Alive '-- '-- '-- '-- 17356 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 374.0 '-- '-- 06faab0f-085d-5399-a16e-833cb5d7e9d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1777_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 325 325 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1777_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 660 '-- mg '-- '-- '-- '-- d6e3536c-05db-4c39-a217-2c9587ca1367 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5d1a54fe-e0df-4c17-b623-b649a136dc82 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2101 55 false '-- '-- '-- '-- -20287 1688 b7c5d9f0-7661-5b83-b542-63db349c7ce3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2101_demographic Dead '-- '-- '-- '-- 20287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1688.0 '-- '-- bcf6dd1a-9c55-5d62-950c-9c3e804897d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2101_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 1190 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2101_treatment11 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0dfe3e5d-7fad-415e-bd8c-f2a8439e476e '-- yes '-- '-- Chemotherapy +TCGA-OV 5d1a54fe-e0df-4c17-b623-b649a136dc82 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2101 55 false '-- '-- '-- '-- -20287 1688 b7c5d9f0-7661-5b83-b542-63db349c7ce3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2101_demographic Dead '-- '-- '-- '-- 20287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1688.0 '-- '-- bcf6dd1a-9c55-5d62-950c-9c3e804897d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2101_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 1251 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2101_treatment6 Etoposide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1219b49d-3b60-434b-a177-6cf2b44c7be1 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d1a54fe-e0df-4c17-b623-b649a136dc82 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2101 55 false '-- '-- '-- '-- -20287 1688 b7c5d9f0-7661-5b83-b542-63db349c7ce3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2101_demographic Dead '-- '-- '-- '-- 20287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1688.0 '-- '-- bcf6dd1a-9c55-5d62-950c-9c3e804897d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2101_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 1129 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-61-2101_treatment13 Recombinant Interleukin-12 '-- '-- '-- '-- '-- '-- '-- 300 '-- mg/kg '-- '-- '-- '-- 12961344-2b40-4122-ae47-25b5bf3705cb '-- yes '-- '-- Immunotherapy (Including Vaccines) +TCGA-OV 5d1a54fe-e0df-4c17-b623-b649a136dc82 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2101 55 false '-- '-- '-- '-- -20287 1688 b7c5d9f0-7661-5b83-b542-63db349c7ce3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2101_demographic Dead '-- '-- '-- '-- 20287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1688.0 '-- '-- bcf6dd1a-9c55-5d62-950c-9c3e804897d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2101_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 221 152 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2101_treatment12 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3050 '-- mg '-- '-- '-- '-- 215561ca-48af-4d44-a9ff-7783cd43b3da Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5d1a54fe-e0df-4c17-b623-b649a136dc82 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2101 55 false '-- '-- '-- '-- -20287 1688 b7c5d9f0-7661-5b83-b542-63db349c7ce3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2101_demographic Dead '-- '-- '-- '-- 20287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1688.0 '-- '-- bcf6dd1a-9c55-5d62-950c-9c3e804897d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2101_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 117 2 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2101_treatment9 Cisplatin '-- '-- '-- '-- '-- '-- '-- 762 '-- mg '-- '-- '-- '-- 24ae518b-4b79-4688-a044-5c1633c9498f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5d1a54fe-e0df-4c17-b623-b649a136dc82 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2101 55 false '-- '-- '-- '-- -20287 1688 b7c5d9f0-7661-5b83-b542-63db349c7ce3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2101_demographic Dead '-- '-- '-- '-- 20287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1688.0 '-- '-- bcf6dd1a-9c55-5d62-950c-9c3e804897d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2101_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 1159 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2101_treatment8 Altretamine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3c269e0a-117f-4ed0-b279-aa33a864f798 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d1a54fe-e0df-4c17-b623-b649a136dc82 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2101 55 false '-- '-- '-- '-- -20287 1688 b7c5d9f0-7661-5b83-b542-63db349c7ce3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2101_demographic Dead '-- '-- '-- '-- 20287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1688.0 '-- '-- bcf6dd1a-9c55-5d62-950c-9c3e804897d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2101_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1327 1309 '-- '-- '-- '-- '-- '-- '-- '-- 2.0 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2101_treatment '-- '-- '-- '-- '-- '-- Locoregional Site '-- 600 '-- cGy '-- '-- '-- '-- 420624e8-613c-5017-8e58-2363bfb58d49 Palliative yes '-- '-- Radiation, External Beam +TCGA-OV 5d1a54fe-e0df-4c17-b623-b649a136dc82 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2101 55 false '-- '-- '-- '-- -20287 1688 b7c5d9f0-7661-5b83-b542-63db349c7ce3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2101_demographic Dead '-- '-- '-- '-- 20287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1688.0 '-- '-- bcf6dd1a-9c55-5d62-950c-9c3e804897d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2101_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 733 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2101_treatment10 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1420 '-- mg '-- '-- '-- '-- 5ee8d7c9-5a2b-480c-8b74-ae11df4fcf79 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d1a54fe-e0df-4c17-b623-b649a136dc82 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2101 55 false '-- '-- '-- '-- -20287 1688 b7c5d9f0-7661-5b83-b542-63db349c7ce3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2101_demographic Dead '-- '-- '-- '-- 20287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1688.0 '-- '-- bcf6dd1a-9c55-5d62-950c-9c3e804897d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2101_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 221 152 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2101_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1200 '-- mg '-- '-- '-- '-- 99545768-a347-4122-9c55-a7c2873ca9ec Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5d1a54fe-e0df-4c17-b623-b649a136dc82 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2101 55 false '-- '-- '-- '-- -20287 1688 b7c5d9f0-7661-5b83-b542-63db349c7ce3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2101_demographic Dead '-- '-- '-- '-- 20287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1688.0 '-- '-- bcf6dd1a-9c55-5d62-950c-9c3e804897d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2101_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 1220 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2101_treatment7 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a008b8e8-64e7-4489-bbea-37c1581c8235 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d1a54fe-e0df-4c17-b623-b649a136dc82 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2101 55 false '-- '-- '-- '-- -20287 1688 b7c5d9f0-7661-5b83-b542-63db349c7ce3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2101_demographic Dead '-- '-- '-- '-- 20287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1688.0 '-- '-- bcf6dd1a-9c55-5d62-950c-9c3e804897d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2101_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 733 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2101_treatment14 Altretamine '-- '-- '-- '-- '-- '-- '-- 800 '-- mg '-- '-- '-- '-- bd63d595-0f0f-4e7c-8730-c311a2576c1f '-- yes '-- '-- Chemotherapy +TCGA-OV 5d1a54fe-e0df-4c17-b623-b649a136dc82 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2101 55 false '-- '-- '-- '-- -20287 1688 b7c5d9f0-7661-5b83-b542-63db349c7ce3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2101_demographic Dead '-- '-- '-- '-- 20287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1688.0 '-- '-- bcf6dd1a-9c55-5d62-950c-9c3e804897d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2101_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 1103 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2101_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- db4cc135-e327-49bc-95b0-5191d894dee2 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d1a54fe-e0df-4c17-b623-b649a136dc82 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2101 55 false '-- '-- '-- '-- -20287 1688 b7c5d9f0-7661-5b83-b542-63db349c7ce3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2101_demographic Dead '-- '-- '-- '-- 20287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1688.0 '-- '-- bcf6dd1a-9c55-5d62-950c-9c3e804897d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2101_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 117 2 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2101_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1800 '-- mg '-- '-- '-- '-- ead30eab-4fa4-416d-a8d3-45527707be2c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5d1a54fe-e0df-4c17-b623-b649a136dc82 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2101 55 false '-- '-- '-- '-- -20287 1688 b7c5d9f0-7661-5b83-b542-63db349c7ce3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2101_demographic Dead '-- '-- '-- '-- 20287 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1688.0 '-- '-- bcf6dd1a-9c55-5d62-950c-9c3e804897d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2101_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1327 1319 '-- '-- '-- '-- '-- '-- '-- '-- 7.0 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2101_treatment2 '-- '-- '-- '-- '-- '-- Primary Tumor Field '-- 1960 '-- cGy '-- '-- '-- '-- f452c737-2355-44b0-8764-b16cdc16aa3c Palliative yes '-- '-- Radiation, External Beam +TCGA-OV 5d36676e-4140-44b5-aa0e-b2af092b7dc0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1555 50 false '-- '-- '-- '-- -18404 2692 c78d7d69-2916-5e30-85d8-5d59a1e088d4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1555_demographic Dead '-- '-- '-- '-- 19981 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1577 '-- '-- '-- 6abd2c15-7ecd-4384-9a78-51e401ec5db1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1555_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1555_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1555_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2bbbfc29-2f2d-4216-9cf1-494ccb8323d5 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 5d36676e-4140-44b5-aa0e-b2af092b7dc0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1555 50 false '-- '-- '-- '-- -18404 2692 c78d7d69-2916-5e30-85d8-5d59a1e088d4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1555_demographic Dead '-- '-- '-- '-- 19981 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1577 '-- '-- '-- 6abd2c15-7ecd-4384-9a78-51e401ec5db1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1555_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1555_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1555_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ec0246d9-0792-4dbf-ad96-7f2199a15abb '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 5d36676e-4140-44b5-aa0e-b2af092b7dc0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1555 50 false '-- '-- '-- '-- -18404 2692 c78d7d69-2916-5e30-85d8-5d59a1e088d4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1555_demographic Dead '-- '-- '-- '-- 18404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2692.0 '-- '-- b46f42db-5cc4-512f-b5e5-6c173746e090 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1555_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1555_treatment8 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0fb4b848-c1b1-49d8-9f9c-50e08aee739d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5d36676e-4140-44b5-aa0e-b2af092b7dc0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1555 50 false '-- '-- '-- '-- -18404 2692 c78d7d69-2916-5e30-85d8-5d59a1e088d4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1555_demographic Dead '-- '-- '-- '-- 18404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2692.0 '-- '-- b46f42db-5cc4-512f-b5e5-6c173746e090 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1555_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- 2635 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1555_treatment9 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 26faac52-0b0b-4f10-b426-f4260a7f4523 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d36676e-4140-44b5-aa0e-b2af092b7dc0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1555 50 false '-- '-- '-- '-- -18404 2692 c78d7d69-2916-5e30-85d8-5d59a1e088d4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1555_demographic Dead '-- '-- '-- '-- 18404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2692.0 '-- '-- b46f42db-5cc4-512f-b5e5-6c173746e090 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1555_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 2415 2262 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1555_treatment7 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3010a2dc-ac30-4fc1-ab7a-aaa8f21ed56b '-- yes '-- '-- Chemotherapy +TCGA-OV 5d36676e-4140-44b5-aa0e-b2af092b7dc0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1555 50 false '-- '-- '-- '-- -18404 2692 c78d7d69-2916-5e30-85d8-5d59a1e088d4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1555_demographic Dead '-- '-- '-- '-- 18404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2692.0 '-- '-- b46f42db-5cc4-512f-b5e5-6c173746e090 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1555_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- 2635 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1555_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 358a6b06-36fa-41e1-a62f-32becf0c8e92 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d36676e-4140-44b5-aa0e-b2af092b7dc0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1555 50 false '-- '-- '-- '-- -18404 2692 c78d7d69-2916-5e30-85d8-5d59a1e088d4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1555_demographic Dead '-- '-- '-- '-- 18404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2692.0 '-- '-- b46f42db-5cc4-512f-b5e5-6c173746e090 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1555_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 2628 2506 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1555_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 49eb4760-e35c-4c6e-bbd3-815ce5a830d3 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d36676e-4140-44b5-aa0e-b2af092b7dc0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1555 50 false '-- '-- '-- '-- -18404 2692 c78d7d69-2916-5e30-85d8-5d59a1e088d4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1555_demographic Dead '-- '-- '-- '-- 18404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2692.0 '-- '-- b46f42db-5cc4-512f-b5e5-6c173746e090 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1555_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1555_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5911c347-f532-4335-af9b-a2af5cb9b851 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5d36676e-4140-44b5-aa0e-b2af092b7dc0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1555 50 false '-- '-- '-- '-- -18404 2692 c78d7d69-2916-5e30-85d8-5d59a1e088d4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1555_demographic Dead '-- '-- '-- '-- 18404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2692.0 '-- '-- b46f42db-5cc4-512f-b5e5-6c173746e090 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1555_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 2415 2262 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1555_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5e72e0cf-8bd9-4d4c-93b0-ec6f1ccb60f6 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d36676e-4140-44b5-aa0e-b2af092b7dc0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1555 50 false '-- '-- '-- '-- -18404 2692 c78d7d69-2916-5e30-85d8-5d59a1e088d4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1555_demographic Dead '-- '-- '-- '-- 18404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2692.0 '-- '-- b46f42db-5cc4-512f-b5e5-6c173746e090 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1555_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1555_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 95719a4a-3b93-4436-83d7-ab183aa6dd67 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5d36676e-4140-44b5-aa0e-b2af092b7dc0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1555 50 false '-- '-- '-- '-- -18404 2692 c78d7d69-2916-5e30-85d8-5d59a1e088d4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1555_demographic Dead '-- '-- '-- '-- 18404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2692.0 '-- '-- b46f42db-5cc4-512f-b5e5-6c173746e090 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1555_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 2050 1959 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1555_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c1a1763f-4eaa-4e70-8b96-6e8b2ec62fb0 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d36676e-4140-44b5-aa0e-b2af092b7dc0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1555 50 false '-- '-- '-- '-- -18404 2692 c78d7d69-2916-5e30-85d8-5d59a1e088d4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1555_demographic Dead '-- '-- '-- '-- 18404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2692.0 '-- '-- b46f42db-5cc4-512f-b5e5-6c173746e090 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1555_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1928 1563 '-- '-- Recurrent Disease '-- '-- '-- '-- 16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1555_treatment Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e0430018-d232-53b2-aa49-4487cde4b9d9 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d36676e-4140-44b5-aa0e-b2af092b7dc0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1555 50 false '-- '-- '-- '-- -18404 2692 c78d7d69-2916-5e30-85d8-5d59a1e088d4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1555_demographic Dead '-- '-- '-- '-- 18404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2692.0 '-- '-- b46f42db-5cc4-512f-b5e5-6c173746e090 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1555_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 2628 2506 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1555_treatment11 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ebd98370-7bbc-429c-b978-1c03af85ce7f '-- yes '-- '-- Chemotherapy +TCGA-OV 5d36676e-4140-44b5-aa0e-b2af092b7dc0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1555 50 false '-- '-- '-- '-- -18404 2692 c78d7d69-2916-5e30-85d8-5d59a1e088d4 '-- not reported female '-- '-- '-- '-- white TCGA-24-1555_demographic Dead '-- '-- '-- '-- 18404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2692.0 '-- '-- b46f42db-5cc4-512f-b5e5-6c173746e090 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1555_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 2050 1959 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1555_treatment10 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- eede01b7-00b9-40da-b9fb-47a7e93ee68b '-- yes '-- '-- Chemotherapy +TCGA-OV 5d603bba-62e6-48fb-b8fc-401109abcaee Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1853 58 false '-- '-- '-- '-- -21404 1103 9649f5ae-33a3-5b79-b29f-c90792bbbc57 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1853_demographic Dead '-- '-- '-- '-- 21404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1103.0 '-- '-- 0de0b75a-d428-5237-ac4d-c3078e11272d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1853_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1011 950 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1853_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 40 '-- mg/m2 '-- '-- '-- '-- 77a013cd-fda7-4fd4-8e2f-8a208c6e7d5d '-- yes '-- '-- Chemotherapy +TCGA-OV 5d603bba-62e6-48fb-b8fc-401109abcaee Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1853 58 false '-- '-- '-- '-- -21404 1103 9649f5ae-33a3-5b79-b29f-c90792bbbc57 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1853_demographic Dead '-- '-- '-- '-- 21404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1103.0 '-- '-- 0de0b75a-d428-5237-ac4d-c3078e11272d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1853_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 126 42 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1853_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 7878b72f-6bb4-41df-ad82-ba3f2f61bb1c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5d603bba-62e6-48fb-b8fc-401109abcaee Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1853 58 false '-- '-- '-- '-- -21404 1103 9649f5ae-33a3-5b79-b29f-c90792bbbc57 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1853_demographic Dead '-- '-- '-- '-- 21404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1103.0 '-- '-- 0de0b75a-d428-5237-ac4d-c3078e11272d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1853_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1853_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 928fb99c-5f7f-471a-930b-0442f1c52af4 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5d603bba-62e6-48fb-b8fc-401109abcaee Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1853 58 false '-- '-- '-- '-- -21404 1103 9649f5ae-33a3-5b79-b29f-c90792bbbc57 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1853_demographic Dead '-- '-- '-- '-- 21404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1103.0 '-- '-- 0de0b75a-d428-5237-ac4d-c3078e11272d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1853_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 778 669 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1853_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 92fcd1cb-811d-50be-9e36-8cfd9f8c6788 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d603bba-62e6-48fb-b8fc-401109abcaee Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1853 58 false '-- '-- '-- '-- -21404 1103 9649f5ae-33a3-5b79-b29f-c90792bbbc57 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1853_demographic Dead '-- '-- '-- '-- 21404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1103.0 '-- '-- 0de0b75a-d428-5237-ac4d-c3078e11272d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1853_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 778 669 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1853_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- bed401e8-ffdf-4581-877e-3795ecb66739 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d603bba-62e6-48fb-b8fc-401109abcaee Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1853 58 false '-- '-- '-- '-- -21404 1103 9649f5ae-33a3-5b79-b29f-c90792bbbc57 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1853_demographic Dead '-- '-- '-- '-- 21404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1103.0 '-- '-- 0de0b75a-d428-5237-ac4d-c3078e11272d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1853_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 126 42 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1853_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- e757d107-ad46-4b01-b70d-968c043f181e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5d603bba-62e6-48fb-b8fc-401109abcaee Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1853 58 false '-- '-- '-- '-- -21404 1103 9649f5ae-33a3-5b79-b29f-c90792bbbc57 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1853_demographic Dead '-- '-- '-- '-- 21404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1103.0 '-- '-- 0de0b75a-d428-5237-ac4d-c3078e11272d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1853_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 932 886 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1853_treatment6 Trabectedin '-- '-- '-- '-- '-- '-- '-- 580 '-- mg/m2 '-- '-- '-- '-- e870d900-784b-4d71-9d16-e7e503cfd563 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d603bba-62e6-48fb-b8fc-401109abcaee Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1853 58 false '-- '-- '-- '-- -21404 1103 9649f5ae-33a3-5b79-b29f-c90792bbbc57 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1853_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0fd2b359-09a3-4556-9cd3-dd17477172ac false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1853_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1853_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1853_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 61f80d6c-e782-4bf8-bb7f-4dbbf1c27aeb '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 5d603bba-62e6-48fb-b8fc-401109abcaee Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1853 58 false '-- '-- '-- '-- -21404 1103 9649f5ae-33a3-5b79-b29f-c90792bbbc57 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1853_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0fd2b359-09a3-4556-9cd3-dd17477172ac false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1853_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1853_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1853_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d890b0e5-373a-4b6f-9c4a-276982e4eef4 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 5d603bba-62e6-48fb-b8fc-401109abcaee Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1853 58 false '-- '-- '-- '-- -21404 1103 9649f5ae-33a3-5b79-b29f-c90792bbbc57 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1853_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0fd2b359-09a3-4556-9cd3-dd17477172ac false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1853_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1853_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 654 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1853_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e5f7541f-53fa-4007-8977-86b479b77ae2 '-- yes '-- '-- Surgery, NOS +TCGA-OV 5d603bba-62e6-48fb-b8fc-401109abcaee Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1853 58 false '-- '-- '-- '-- -21404 1103 9649f5ae-33a3-5b79-b29f-c90792bbbc57 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1853_demographic Dead '-- '-- '-- '-- 22038 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 634 '-- '-- '-- 8e6ad8e0-3446-4e1f-8e29-ce59180bf620 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1853_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1853_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1853_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 28c5f642-e24d-4eb2-9120-8fead16756ca '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 5d603bba-62e6-48fb-b8fc-401109abcaee Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1853 58 false '-- '-- '-- '-- -21404 1103 9649f5ae-33a3-5b79-b29f-c90792bbbc57 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1853_demographic Dead '-- '-- '-- '-- 22038 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 634 '-- '-- '-- 8e6ad8e0-3446-4e1f-8e29-ce59180bf620 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1853_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1853_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1853_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6a54fa17-2525-4dc4-af7e-c25a4e9d41ce '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 5d7027f5-60a0-47ab-a79d-667c9acc0e54 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1616 56 false '-- '-- '-- '-- -20785 1163 b5a2d23a-7e9e-5ce2-bf23-c98e8e04a0a6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1616_demographic Dead '-- '-- '-- '-- 21190 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 405 '-- '-- '-- 13aea83e-f432-4e05-be35-60d24a3228a9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1616_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1616_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1616_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6bce0348-131c-4741-91d0-905eb5ca8720 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 5d7027f5-60a0-47ab-a79d-667c9acc0e54 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1616 56 false '-- '-- '-- '-- -20785 1163 b5a2d23a-7e9e-5ce2-bf23-c98e8e04a0a6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1616_demographic Dead '-- '-- '-- '-- 21190 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 405 '-- '-- '-- 13aea83e-f432-4e05-be35-60d24a3228a9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1616_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1616_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1616_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6c1aaf2a-e72c-4953-8b2c-84c1cd64354b '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 5d7027f5-60a0-47ab-a79d-667c9acc0e54 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1616 56 false '-- '-- '-- '-- -20785 1163 b5a2d23a-7e9e-5ce2-bf23-c98e8e04a0a6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1616_demographic Dead '-- '-- '-- '-- 20785 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1163.0 '-- '-- 661d13d0-4961-5a39-bd67-d1665dda7bc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1616_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1616_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0d768c44-38a7-4627-8846-ae5a63d4dd31 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5d7027f5-60a0-47ab-a79d-667c9acc0e54 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1616 56 false '-- '-- '-- '-- -20785 1163 b5a2d23a-7e9e-5ce2-bf23-c98e8e04a0a6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1616_demographic Dead '-- '-- '-- '-- 20785 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1163.0 '-- '-- 661d13d0-4961-5a39-bd67-d1665dda7bc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1616_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1616_treatment7 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2730a219-7650-42e0-bcd1-334ad728e981 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d7027f5-60a0-47ab-a79d-667c9acc0e54 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1616 56 false '-- '-- '-- '-- -20785 1163 b5a2d23a-7e9e-5ce2-bf23-c98e8e04a0a6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1616_demographic Dead '-- '-- '-- '-- 20785 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1163.0 '-- '-- 661d13d0-4961-5a39-bd67-d1665dda7bc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1616_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 165 18 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1616_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3ba7c5ba-dd01-4d67-b376-261d5a0b252a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5d7027f5-60a0-47ab-a79d-667c9acc0e54 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1616 56 false '-- '-- '-- '-- -20785 1163 b5a2d23a-7e9e-5ce2-bf23-c98e8e04a0a6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1616_demographic Dead '-- '-- '-- '-- 20785 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1163.0 '-- '-- 661d13d0-4961-5a39-bd67-d1665dda7bc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1616_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1616_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4ef84249-1a91-4bc9-a319-e03e460c7c3f '-- yes '-- '-- Chemotherapy +TCGA-OV 5d7027f5-60a0-47ab-a79d-667c9acc0e54 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1616 56 false '-- '-- '-- '-- -20785 1163 b5a2d23a-7e9e-5ce2-bf23-c98e8e04a0a6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1616_demographic Dead '-- '-- '-- '-- 20785 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1163.0 '-- '-- 661d13d0-4961-5a39-bd67-d1665dda7bc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1616_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1616_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 66e37796-d934-4591-a2c3-2debcd70a252 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d7027f5-60a0-47ab-a79d-667c9acc0e54 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1616 56 false '-- '-- '-- '-- -20785 1163 b5a2d23a-7e9e-5ce2-bf23-c98e8e04a0a6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1616_demographic Dead '-- '-- '-- '-- 20785 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1163.0 '-- '-- 661d13d0-4961-5a39-bd67-d1665dda7bc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1616_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1616_treatment6 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aaf5de22-871e-4c8e-8a05-84d29eac47c3 '-- yes '-- '-- Chemotherapy +TCGA-OV 5d7027f5-60a0-47ab-a79d-667c9acc0e54 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1616 56 false '-- '-- '-- '-- -20785 1163 b5a2d23a-7e9e-5ce2-bf23-c98e8e04a0a6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1616_demographic Dead '-- '-- '-- '-- 20785 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1163.0 '-- '-- 661d13d0-4961-5a39-bd67-d1665dda7bc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1616_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 165 18 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1616_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c4986947-2385-4b8c-9339-5866dc639f0d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5d7027f5-60a0-47ab-a79d-667c9acc0e54 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1616 56 false '-- '-- '-- '-- -20785 1163 b5a2d23a-7e9e-5ce2-bf23-c98e8e04a0a6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1616_demographic Dead '-- '-- '-- '-- 20785 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1163.0 '-- '-- 661d13d0-4961-5a39-bd67-d1665dda7bc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1616_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1616_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e6ea5986-200c-5661-801e-6fd1cda8c46f '-- yes '-- '-- Chemotherapy +TCGA-OV 5d7027f5-60a0-47ab-a79d-667c9acc0e54 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1616 56 false '-- '-- '-- '-- -20785 1163 b5a2d23a-7e9e-5ce2-bf23-c98e8e04a0a6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1616_demographic Dead '-- '-- '-- '-- 20785 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1163.0 '-- '-- 661d13d0-4961-5a39-bd67-d1665dda7bc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1616_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1616_treatment8 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ed3fd914-79cd-43fc-ae65-08f0790fbb5b '-- yes '-- '-- Chemotherapy +TCGA-OV 5e18b17d-4626-4b6d-8ac6-e560cee0376c Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1419 62 false '-- '-- '-- '-- -22659 '-- 3f13178e-a4ea-57f8-a075-e6c7d1ca68bd '-- not reported female '-- '-- '-- '-- white TCGA-24-1419_demographic Alive '-- '-- '-- '-- 22659 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 239.0 '-- '-- 0e5dd5f1-3f97-56e1-a043-2c72b348edc7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1419_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 131 17 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1419_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- 806 '-- mg '-- '-- '-- '-- 0f4a1fac-8450-4791-9d6d-bc258fa915d0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5e18b17d-4626-4b6d-8ac6-e560cee0376c Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1419 62 false '-- '-- '-- '-- -22659 '-- 3f13178e-a4ea-57f8-a075-e6c7d1ca68bd '-- not reported female '-- '-- '-- '-- white TCGA-24-1419_demographic Alive '-- '-- '-- '-- 22659 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 239.0 '-- '-- 0e5dd5f1-3f97-56e1-a043-2c72b348edc7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1419_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 121 17 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1419_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3882 '-- mg '-- '-- '-- '-- 38f759a7-11ca-4404-92ff-210fd99eae1d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5e18b17d-4626-4b6d-8ac6-e560cee0376c Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1419 62 false '-- '-- '-- '-- -22659 '-- 3f13178e-a4ea-57f8-a075-e6c7d1ca68bd '-- not reported female '-- '-- '-- '-- white TCGA-24-1419_demographic Alive '-- '-- '-- '-- 22659 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 239.0 '-- '-- 0e5dd5f1-3f97-56e1-a043-2c72b348edc7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1419_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- 197 '-- '-- Not Reported '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1419_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 478 '-- mg '-- '-- '-- '-- 9d51deb3-1711-5307-8b2d-811f88bca941 Consolidation Therapy yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 5e18b17d-4626-4b6d-8ac6-e560cee0376c Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1419 62 false '-- '-- '-- '-- -22659 '-- 3f13178e-a4ea-57f8-a075-e6c7d1ca68bd '-- not reported female '-- '-- '-- '-- white TCGA-24-1419_demographic Alive '-- '-- '-- '-- 22659 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 239.0 '-- '-- 0e5dd5f1-3f97-56e1-a043-2c72b348edc7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1419_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1419_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c9c3c288-be02-47ad-b1d0-32238952d967 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5e90e1ed-cbfd-44ba-a6ff-63ff576b3c73 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0793 40 false '-- '-- '-- '-- -14708 '-- f0076020-7d2c-56b5-9da0-cb664d4e0802 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0793_demographic Alive '-- '-- '-- '-- 14708 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3263.0 '-- '-- 110a3845-3878-53bb-8cef-b227574af4f9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0793_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 362 200 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0793_treatment Clinical Trial '-- '-- '-- '-- '-- '-- '-- 2 '-- mg '-- '-- '-- '-- 7443848c-3670-5e89-94d4-9ad6b40eb4d6 Adjuvant yes '-- '-- Immunotherapy (Including Vaccines) +TCGA-OV 5e90e1ed-cbfd-44ba-a6ff-63ff576b3c73 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0793 40 false '-- '-- '-- '-- -14708 '-- f0076020-7d2c-56b5-9da0-cb664d4e0802 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0793_demographic Alive '-- '-- '-- '-- 14708 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3263.0 '-- '-- 110a3845-3878-53bb-8cef-b227574af4f9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0793_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 159 47 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0793_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- e3468a3f-a02a-44c6-b316-11fadea8e9eb Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5e90e1ed-cbfd-44ba-a6ff-63ff576b3c73 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0793 40 false '-- '-- '-- '-- -14708 '-- f0076020-7d2c-56b5-9da0-cb664d4e0802 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0793_demographic Alive '-- '-- '-- '-- 14708 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3263.0 '-- '-- 110a3845-3878-53bb-8cef-b227574af4f9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0793_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0793_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e3a545d4-5bb8-43d2-8372-8126eeff4f2c Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5e90e1ed-cbfd-44ba-a6ff-63ff576b3c73 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0793 40 false '-- '-- '-- '-- -14708 '-- f0076020-7d2c-56b5-9da0-cb664d4e0802 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0793_demographic Alive '-- '-- '-- '-- 14708 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3263.0 '-- '-- 110a3845-3878-53bb-8cef-b227574af4f9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0793_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 159 47 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0793_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f5970838-5a5a-4202-9657-d86aa13943f5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5e90e1ed-cbfd-44ba-a6ff-63ff576b3c73 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0793 40 false '-- '-- '-- '-- -14708 '-- f0076020-7d2c-56b5-9da0-cb664d4e0802 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0793_demographic Alive '-- '-- '-- '-- 15059 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 351 '-- '-- '-- 60e4a2aa-3027-46ef-919b-32c684cc6f20 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0793_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0793_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 5e90e1ed-cbfd-44ba-a6ff-63ff576b3c73 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0793 40 false '-- '-- '-- '-- -14708 '-- f0076020-7d2c-56b5-9da0-cb664d4e0802 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0793_demographic Alive '-- '-- '-- '-- 15059 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 351 '-- '-- '-- de4a4c27-7265-4245-94da-503076a68c79 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0793_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0793_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0793_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 74fd8550-c9de-4f9e-bfda-12b4e3b99952 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 5e90e1ed-cbfd-44ba-a6ff-63ff576b3c73 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0793 40 false '-- '-- '-- '-- -14708 '-- f0076020-7d2c-56b5-9da0-cb664d4e0802 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0793_demographic Alive '-- '-- '-- '-- 15059 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 351 '-- '-- '-- de4a4c27-7265-4245-94da-503076a68c79 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0793_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0793_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0793_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bc740bbe-f2b2-4489-b0aa-48dfe575281a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 5ed14506-f69a-4da8-9965-72d3270b9f72 Informed Consent 22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1585 57 false '-- '-- '-- '-- -20862 53 2f038007-2450-5b90-830c-b6054faa83c3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1585_demographic Dead '-- '-- '-- '-- 20862 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 53.0 '-- '-- b2f8b028-ac9c-5bbc-9a49-f4d0e7331f71 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1585_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1585_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5d7f2c53-09d2-43b4-b8fa-1c22db6c04a9 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5ed14506-f69a-4da8-9965-72d3270b9f72 Informed Consent 22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1585 57 false '-- '-- '-- '-- -20862 53 2f038007-2450-5b90-830c-b6054faa83c3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1585_demographic Dead '-- '-- '-- '-- 20862 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 53.0 '-- '-- b2f8b028-ac9c-5bbc-9a49-f4d0e7331f71 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1585_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 53 18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1585_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f72d699b-9f21-5812-b0e3-9187bf1e3bc9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5ed14506-f69a-4da8-9965-72d3270b9f72 Informed Consent 22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1585 57 false '-- '-- '-- '-- -20862 53 2f038007-2450-5b90-830c-b6054faa83c3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1585_demographic Dead '-- '-- '-- '-- 20862 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 53.0 '-- '-- b2f8b028-ac9c-5bbc-9a49-f4d0e7331f71 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1585_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 53 18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1585_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fe7ccb83-627e-4311-aa56-b9fa86f51019 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5f60bc2d-738f-43fc-a3fb-61ec6e80e3d4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0916 49 false '-- '-- '-- '-- -18189 '-- eb66def4-8b14-5b5c-9c01-bd60707a8e18 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0916_demographic Alive '-- '-- '-- '-- 18189 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1785.0 '-- '-- 013ba4e2-f2d0-5a07-a02e-5293a1da0678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0916_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 161 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0916_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- 0f6be681-a693-5dbc-88d9-01ab2afb79d0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5f60bc2d-738f-43fc-a3fb-61ec6e80e3d4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0916 49 false '-- '-- '-- '-- -18189 '-- eb66def4-8b14-5b5c-9c01-bd60707a8e18 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0916_demographic Alive '-- '-- '-- '-- 18189 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1785.0 '-- '-- 013ba4e2-f2d0-5a07-a02e-5293a1da0678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0916_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0916_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1cce68b8-c2d9-418e-b609-9ac7dc6ae527 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 5f60bc2d-738f-43fc-a3fb-61ec6e80e3d4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0916 49 false '-- '-- '-- '-- -18189 '-- eb66def4-8b14-5b5c-9c01-bd60707a8e18 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0916_demographic Alive '-- '-- '-- '-- 18189 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1785.0 '-- '-- 013ba4e2-f2d0-5a07-a02e-5293a1da0678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0916_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 161 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0916_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- 3e903888-7a29-4c70-9cb1-faec5d4d8d96 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 5f60bc2d-738f-43fc-a3fb-61ec6e80e3d4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0916 49 false '-- '-- '-- '-- -18189 '-- eb66def4-8b14-5b5c-9c01-bd60707a8e18 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0916_demographic Alive '-- '-- '-- '-- 18189 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1785.0 '-- '-- 013ba4e2-f2d0-5a07-a02e-5293a1da0678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0916_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 182 70 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0916_treatment4 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 15 '-- mg/m2 '-- '-- '-- '-- 49ef66b3-42a7-47b1-882a-a35d7254d359 Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV 5f60bc2d-738f-43fc-a3fb-61ec6e80e3d4 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0916 49 false '-- '-- '-- '-- -18189 '-- eb66def4-8b14-5b5c-9c01-bd60707a8e18 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0916_demographic Alive '-- '-- '-- '-- 18189 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1785.0 '-- '-- 013ba4e2-f2d0-5a07-a02e-5293a1da0678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0916_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 161 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0916_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- dc53c6cd-56aa-4b72-91d0-db56fe0d5f64 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 60014a6e-6a13-4f92-bbfd-eeeee9632f98 Informed Consent 36 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1670 57 false '-- '-- '-- '-- -21147 '-- 6b43a657-6688-5c19-a029-98a9960eb782 '-- not reported female '-- '-- '-- '-- white TCGA-09-1670_demographic Alive '-- '-- '-- '-- 21147 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 547.0 '-- '-- 35db92e7-eaa8-5d22-ba3a-cde96978732d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1670_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1670_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 35d92549-68d0-43ae-8d0a-afbe538b8c39 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 60014a6e-6a13-4f92-bbfd-eeeee9632f98 Informed Consent 36 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1670 57 false '-- '-- '-- '-- -21147 '-- 6b43a657-6688-5c19-a029-98a9960eb782 '-- not reported female '-- '-- '-- '-- white TCGA-09-1670_demographic Alive '-- '-- '-- '-- 21147 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 547.0 '-- '-- 35db92e7-eaa8-5d22-ba3a-cde96978732d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1670_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 179 74 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1670_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 95da0672-c7d9-4ce2-b2c2-da571d47c56d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 60014a6e-6a13-4f92-bbfd-eeeee9632f98 Informed Consent 36 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1670 57 false '-- '-- '-- '-- -21147 '-- 6b43a657-6688-5c19-a029-98a9960eb782 '-- not reported female '-- '-- '-- '-- white TCGA-09-1670_demographic Alive '-- '-- '-- '-- 21147 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 547.0 '-- '-- 35db92e7-eaa8-5d22-ba3a-cde96978732d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1670_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 179 74 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1670_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 9d01671a-f866-4718-afd3-6abd6305a976 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 60014a6e-6a13-4f92-bbfd-eeeee9632f98 Informed Consent 36 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1670 57 false '-- '-- '-- '-- -21147 '-- 6b43a657-6688-5c19-a029-98a9960eb782 '-- not reported female '-- '-- '-- '-- white TCGA-09-1670_demographic Alive '-- '-- '-- '-- 21147 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 547.0 '-- '-- 35db92e7-eaa8-5d22-ba3a-cde96978732d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1670_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1670_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ed415d17-e6ec-504f-a7da-248bb4055e92 '-- yes '-- '-- Chemotherapy +TCGA-OV 60014a6e-6a13-4f92-bbfd-eeeee9632f98 Informed Consent 36 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1670 57 false '-- '-- '-- '-- -21147 '-- 6b43a657-6688-5c19-a029-98a9960eb782 '-- not reported female '-- '-- '-- '-- white TCGA-09-1670_demographic Alive '-- '-- '-- '-- 21694 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 547 '-- '-- '-- 9a58a876-17f5-453c-ba25-a826001b9840 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1670_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1670_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1670_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6deb4fee-b8b1-4dc0-89b1-02409355e49c '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 60014a6e-6a13-4f92-bbfd-eeeee9632f98 Informed Consent 36 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1670 57 false '-- '-- '-- '-- -21147 '-- 6b43a657-6688-5c19-a029-98a9960eb782 '-- not reported female '-- '-- '-- '-- white TCGA-09-1670_demographic Alive '-- '-- '-- '-- 21694 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 547 '-- '-- '-- 9a58a876-17f5-453c-ba25-a826001b9840 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1670_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1670_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1670_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e1f21e7c-a4d3-4629-b8dd-f69b417db94f '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 602e2934-223a-44db-8c33-06eb05d72f94 Informed Consent 4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1994 63 false '-- '-- '-- '-- -23062 '-- bd5457d3-56e5-5b22-9a6c-7e0490fffb31 '-- not reported female '-- '-- '-- '-- white TCGA-57-1994_demographic Alive '-- '-- '-- '-- 23062 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 761.0 '-- '-- f930091a-6f43-5cce-960e-931dad13eb66 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1994_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1994_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 11b280e8-d263-5ead-afac-b43658b894c3 Adjuvant no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 602e2934-223a-44db-8c33-06eb05d72f94 Informed Consent 4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1994 63 false '-- '-- '-- '-- -23062 '-- bd5457d3-56e5-5b22-9a6c-7e0490fffb31 '-- not reported female '-- '-- '-- '-- white TCGA-57-1994_demographic Alive '-- '-- '-- '-- 23062 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 761.0 '-- '-- f930091a-6f43-5cce-960e-931dad13eb66 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1994_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1994_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6ccb730d-ebb7-4e4a-aeb8-f22a9dbff266 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 60cce7ac-d27d-44a6-9873-ecf91da5e906 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1123 59 false '-- '-- '-- '-- -21552 1018 ce764708-fee9-5782-b207-acbf274a2c5e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1123_demographic Dead '-- '-- '-- '-- 21552 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1018.0 '-- '-- 394df501-4b80-527f-91ba-621c945330b6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1123_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1123_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1f0188f3-b8a7-4edf-a8bc-cecf07957327 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 60cce7ac-d27d-44a6-9873-ecf91da5e906 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1123 59 false '-- '-- '-- '-- -21552 1018 ce764708-fee9-5782-b207-acbf274a2c5e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1123_demographic Dead '-- '-- '-- '-- 21552 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1018.0 '-- '-- 394df501-4b80-527f-91ba-621c945330b6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1123_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 894 812 '-- '-- Persistent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Not Reported TCGA-23-1123_treatment2 Topotecan '-- '-- '-- '-- '-- '-- '-- 40 '-- mg '-- '-- '-- '-- 2c6020bf-b59a-41d4-9c03-b473eae12ce2 Not Reported yes '-- '-- Chemotherapy +TCGA-OV 60cce7ac-d27d-44a6-9873-ecf91da5e906 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1123 59 false '-- '-- '-- '-- -21552 1018 ce764708-fee9-5782-b207-acbf274a2c5e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1123_demographic Dead '-- '-- '-- '-- 21552 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1018.0 '-- '-- 394df501-4b80-527f-91ba-621c945330b6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1123_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 250 7 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Not Reported TCGA-23-1123_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4800 '-- mg '-- '-- '-- '-- 3dab401e-37f6-4d3c-9130-a7e57b8942e2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 60cce7ac-d27d-44a6-9873-ecf91da5e906 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1123 59 false '-- '-- '-- '-- -21552 1018 ce764708-fee9-5782-b207-acbf274a2c5e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1123_demographic Dead '-- '-- '-- '-- 21552 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1018.0 '-- '-- 394df501-4b80-527f-91ba-621c945330b6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1123_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 599 452 '-- '-- Persistent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1123_treatment3 Doxorubicin '-- '-- '-- '-- '-- '-- '-- 456 '-- mg '-- '-- '-- '-- bd510df9-8aa0-482a-a620-f943fe9ef3f5 Not Reported yes '-- '-- Chemotherapy +TCGA-OV 60cce7ac-d27d-44a6-9873-ecf91da5e906 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1123 59 false '-- '-- '-- '-- -21552 1018 ce764708-fee9-5782-b207-acbf274a2c5e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1123_demographic Dead '-- '-- '-- '-- 21552 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1018.0 '-- '-- 394df501-4b80-527f-91ba-621c945330b6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1123_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 250 7 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Not Reported TCGA-23-1123_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2000 '-- mg '-- '-- '-- '-- fdde878a-f1e1-5022-90a0-86319fee955a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 611600a6-43ec-4029-9682-cd6d6a3312ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1483 61 false '-- '-- '-- '-- -22342 895 1b6e413d-3075-5578-96e1-c7441bed86cd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1483_demographic Dead '-- '-- '-- '-- 22639 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 297 '-- '-- '-- 117df4e6-fe1e-40b0-abd0-de7cbf783e0e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1483_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1483_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1483_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5226d610-e8cf-48bd-a6f3-8891693388c3 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 611600a6-43ec-4029-9682-cd6d6a3312ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1483 61 false '-- '-- '-- '-- -22342 895 1b6e413d-3075-5578-96e1-c7441bed86cd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1483_demographic Dead '-- '-- '-- '-- 22639 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 297 '-- '-- '-- 117df4e6-fe1e-40b0-abd0-de7cbf783e0e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1483_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1483_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1483_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f1757f9d-7ec5-4b4d-a0e5-1b7b7c700553 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 611600a6-43ec-4029-9682-cd6d6a3312ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1483 61 false '-- '-- '-- '-- -22342 895 1b6e413d-3075-5578-96e1-c7441bed86cd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1483_demographic Dead '-- '-- '-- '-- 22342 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 895.0 '-- '-- 7c0462b7-dd23-5dc0-855f-2377dab52877 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1483_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 176 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1483_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 174 '-- mg/m2 '-- '-- '-- '-- 08e9d0d3-78e5-40fa-857e-6961f9464a7e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 611600a6-43ec-4029-9682-cd6d6a3312ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1483 61 false '-- '-- '-- '-- -22342 895 1b6e413d-3075-5578-96e1-c7441bed86cd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1483_demographic Dead '-- '-- '-- '-- 22342 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 895.0 '-- '-- 7c0462b7-dd23-5dc0-855f-2377dab52877 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1483_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 176 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1483_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9e5807f8-483a-484b-bf87-796964f190f4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 611600a6-43ec-4029-9682-cd6d6a3312ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1483 61 false '-- '-- '-- '-- -22342 895 1b6e413d-3075-5578-96e1-c7441bed86cd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1483_demographic Dead '-- '-- '-- '-- 22342 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 895.0 '-- '-- 7c0462b7-dd23-5dc0-855f-2377dab52877 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1483_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1483_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b7818810-dc40-4907-bd02-6b42fd429668 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 611600a6-43ec-4029-9682-cd6d6a3312ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1483 61 false '-- '-- '-- '-- -22342 895 1b6e413d-3075-5578-96e1-c7441bed86cd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1483_demographic Dead '-- '-- '-- '-- 22342 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 895.0 '-- '-- 7c0462b7-dd23-5dc0-855f-2377dab52877 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1483_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 239 219 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-1483_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- d1b07c9f-3521-5664-b0e8-f9a4cb10a15f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 619b14f3-b8cc-4c0a-8304-6719853d592a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0968 59 false '-- '-- '-- '-- -21664 '-- df7b1d1e-430e-5b44-b7fe-e7cadded22e0 '-- not reported female '-- '-- '-- '-- white TCGA-24-0968_demographic Dead '-- '-- '-- '-- 21664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 598.0 '-- '-- 87361581-dac1-527d-bb58-01c4d69a5e91 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0968_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- Persistent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0968_treatment8 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0a5693ff-ef6f-46c6-9e98-4018c1bcbec1 Not Reported yes '-- '-- Chemotherapy +TCGA-OV 619b14f3-b8cc-4c0a-8304-6719853d592a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0968 59 false '-- '-- '-- '-- -21664 '-- df7b1d1e-430e-5b44-b7fe-e7cadded22e0 '-- not reported female '-- '-- '-- '-- white TCGA-24-0968_demographic Dead '-- '-- '-- '-- 21664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 598.0 '-- '-- 87361581-dac1-527d-bb58-01c4d69a5e91 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0968_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-0968_treatment5 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 50 '-- mg/day '-- '-- '-- '-- 259e6b96-e880-450d-8bd2-b46b4bea39e2 '-- yes '-- '-- Chemotherapy +TCGA-OV 619b14f3-b8cc-4c0a-8304-6719853d592a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0968 59 false '-- '-- '-- '-- -21664 '-- df7b1d1e-430e-5b44-b7fe-e7cadded22e0 '-- not reported female '-- '-- '-- '-- white TCGA-24-0968_demographic Dead '-- '-- '-- '-- 21664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 598.0 '-- '-- 87361581-dac1-527d-bb58-01c4d69a5e91 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0968_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 119 35 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0968_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2790 '-- mg '-- '-- '-- '-- 448a8278-2bd2-4e2e-bbcb-a6cf4200aaef Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 619b14f3-b8cc-4c0a-8304-6719853d592a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0968 59 false '-- '-- '-- '-- -21664 '-- df7b1d1e-430e-5b44-b7fe-e7cadded22e0 '-- not reported female '-- '-- '-- '-- white TCGA-24-0968_demographic Dead '-- '-- '-- '-- 21664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 598.0 '-- '-- 87361581-dac1-527d-bb58-01c4d69a5e91 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0968_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-0968_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 61e1d46c-c869-4063-8b1b-efc2ce293e23 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 619b14f3-b8cc-4c0a-8304-6719853d592a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0968 59 false '-- '-- '-- '-- -21664 '-- df7b1d1e-430e-5b44-b7fe-e7cadded22e0 '-- not reported female '-- '-- '-- '-- white TCGA-24-0968_demographic Dead '-- '-- '-- '-- 21664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 598.0 '-- '-- 87361581-dac1-527d-bb58-01c4d69a5e91 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0968_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 119 35 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0968_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1378 '-- mg '-- '-- '-- '-- 77444232-b616-4fdc-9dfb-76251663f28f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 619b14f3-b8cc-4c0a-8304-6719853d592a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0968 59 false '-- '-- '-- '-- -21664 '-- df7b1d1e-430e-5b44-b7fe-e7cadded22e0 '-- not reported female '-- '-- '-- '-- white TCGA-24-0968_demographic Dead '-- '-- '-- '-- 21664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 598.0 '-- '-- 87361581-dac1-527d-bb58-01c4d69a5e91 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0968_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0968_treatment7 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7df4f6c6-efca-4440-b81f-e56ab7cf87d8 '-- yes '-- '-- Chemotherapy +TCGA-OV 619b14f3-b8cc-4c0a-8304-6719853d592a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0968 59 false '-- '-- '-- '-- -21664 '-- df7b1d1e-430e-5b44-b7fe-e7cadded22e0 '-- not reported female '-- '-- '-- '-- white TCGA-24-0968_demographic Dead '-- '-- '-- '-- 21664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 598.0 '-- '-- 87361581-dac1-527d-bb58-01c4d69a5e91 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0968_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- Persistent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0968_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 83813074-0fee-4ab1-983d-73030b6c54f7 Not Reported yes '-- '-- Chemotherapy +TCGA-OV 619b14f3-b8cc-4c0a-8304-6719853d592a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0968 59 false '-- '-- '-- '-- -21664 '-- df7b1d1e-430e-5b44-b7fe-e7cadded22e0 '-- not reported female '-- '-- '-- '-- white TCGA-24-0968_demographic Dead '-- '-- '-- '-- 21664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 598.0 '-- '-- 87361581-dac1-527d-bb58-01c4d69a5e91 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0968_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0968_treatment Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8d2c6479-f37b-5d93-b863-876e8fa63988 '-- yes '-- '-- Chemotherapy +TCGA-OV 619b14f3-b8cc-4c0a-8304-6719853d592a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0968 59 false '-- '-- '-- '-- -21664 '-- df7b1d1e-430e-5b44-b7fe-e7cadded22e0 '-- not reported female '-- '-- '-- '-- white TCGA-24-0968_demographic Dead '-- '-- '-- '-- 21664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 598.0 '-- '-- 87361581-dac1-527d-bb58-01c4d69a5e91 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0968_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- Persistent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0968_treatment4 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fb8ff040-0242-46c3-8f72-5e1d0ac657e2 Not Reported yes '-- '-- Chemotherapy +TCGA-OV 61feee94-3ac9-42fe-aaa3-dc6a3efe563c Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1953 52 false '-- '-- '-- '-- -19064 '-- 3bd53964-0f52-57a9-8645-6b78d6e3b5ce '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-31-1953_demographic Alive '-- '-- '-- '-- 19064 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 204.0 '-- '-- afe49009-fc98-5b1d-9903-ccc3d9c5d4fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1953_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 65 23 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1953_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 840 '-- mg '-- '-- '-- '-- 17c4216b-0dbb-576d-bec5-8806fd89f076 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 61feee94-3ac9-42fe-aaa3-dc6a3efe563c Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1953 52 false '-- '-- '-- '-- -19064 '-- 3bd53964-0f52-57a9-8645-6b78d6e3b5ce '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-31-1953_demographic Alive '-- '-- '-- '-- 19064 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 204.0 '-- '-- afe49009-fc98-5b1d-9903-ccc3d9c5d4fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1953_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1953_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4aa4dd2b-f2c9-4b6b-940c-a8ea32114ebf Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 61feee94-3ac9-42fe-aaa3-dc6a3efe563c Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1953 52 false '-- '-- '-- '-- -19064 '-- 3bd53964-0f52-57a9-8645-6b78d6e3b5ce '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-31-1953_demographic Alive '-- '-- '-- '-- 19064 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 204.0 '-- '-- afe49009-fc98-5b1d-9903-ccc3d9c5d4fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1953_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- 100 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1953_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 69499c5b-e264-4b39-8d85-a5c63b50b778 '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 61feee94-3ac9-42fe-aaa3-dc6a3efe563c Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1953 52 false '-- '-- '-- '-- -19064 '-- 3bd53964-0f52-57a9-8645-6b78d6e3b5ce '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-31-1953_demographic Alive '-- '-- '-- '-- 19064 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 204.0 '-- '-- afe49009-fc98-5b1d-9903-ccc3d9c5d4fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1953_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- 100 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1953_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a7ef8d30-76d5-4de3-b2df-9907511a9612 '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 61feee94-3ac9-42fe-aaa3-dc6a3efe563c Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1953 52 false '-- '-- '-- '-- -19064 '-- 3bd53964-0f52-57a9-8645-6b78d6e3b5ce '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-31-1953_demographic Alive '-- '-- '-- '-- 19064 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 204.0 '-- '-- afe49009-fc98-5b1d-9903-ccc3d9c5d4fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1953_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 65 23 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1953_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1350 '-- mg '-- '-- '-- '-- f89419f4-2685-485f-8384-1e3e99a9bd4d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 61feee94-3ac9-42fe-aaa3-dc6a3efe563c Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1953 52 false '-- '-- '-- '-- -19064 '-- 3bd53964-0f52-57a9-8645-6b78d6e3b5ce '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-31-1953_demographic Alive '-- '-- '-- '-- 19134 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 70 '-- '-- '-- c3d3c345-82ea-47a6-9545-39911db0edcd false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-31-1953_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-31-1953_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1953_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 14c21034-dcff-4b26-be36-9ca3200d00a6 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 61feee94-3ac9-42fe-aaa3-dc6a3efe563c Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1953 52 false '-- '-- '-- '-- -19064 '-- 3bd53964-0f52-57a9-8645-6b78d6e3b5ce '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-31-1953_demographic Alive '-- '-- '-- '-- 19134 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 70 '-- '-- '-- c3d3c345-82ea-47a6-9545-39911db0edcd false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-31-1953_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-31-1953_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1953_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b09d6e66-e1ba-4026-aebf-ed2743378fde '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 6209e80d-a115-4f8e-bf0d-18461401a1c6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1113 48 false '-- '-- '-- '-- -17791 949 5a2431ef-c08f-54a7-8154-48b049a5370f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1113_demographic Dead '-- '-- '-- '-- 17791 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 949.0 '-- '-- b23cc40b-3cda-5ccc-9089-804096c70d8b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1113_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 253 225 '-- '-- Progressive Disease '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1113_treatment6 Doxorubicin '-- '-- '-- '-- '-- '-- '-- 816 '-- mg '-- '-- '-- '-- 32f898c8-4620-435a-b7ff-97ec6d428a7c '-- yes '-- '-- Chemotherapy +TCGA-OV 6209e80d-a115-4f8e-bf0d-18461401a1c6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1113 48 false '-- '-- '-- '-- -17791 949 5a2431ef-c08f-54a7-8154-48b049a5370f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1113_demographic Dead '-- '-- '-- '-- 17791 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 949.0 '-- '-- b23cc40b-3cda-5ccc-9089-804096c70d8b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1113_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1113_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 35a39fc8-8c5b-4d17-85e9-48723b75e55b Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 6209e80d-a115-4f8e-bf0d-18461401a1c6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1113 48 false '-- '-- '-- '-- -17791 949 5a2431ef-c08f-54a7-8154-48b049a5370f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1113_demographic Dead '-- '-- '-- '-- 17791 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 949.0 '-- '-- b23cc40b-3cda-5ccc-9089-804096c70d8b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1113_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 187 102 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1113_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 528 '-- mg '-- '-- '-- '-- 363c63d0-9f36-44e3-8e72-c7e9161507be Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6209e80d-a115-4f8e-bf0d-18461401a1c6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1113 48 false '-- '-- '-- '-- -17791 949 5a2431ef-c08f-54a7-8154-48b049a5370f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1113_demographic Dead '-- '-- '-- '-- 17791 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 949.0 '-- '-- b23cc40b-3cda-5ccc-9089-804096c70d8b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1113_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 187 102 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1113_treatment5 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 11282 '-- mg '-- '-- '-- '-- 52839a35-4a29-4765-a394-d03fbd764e08 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6209e80d-a115-4f8e-bf0d-18461401a1c6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1113 48 false '-- '-- '-- '-- -17791 949 5a2431ef-c08f-54a7-8154-48b049a5370f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1113_demographic Dead '-- '-- '-- '-- 17791 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 949.0 '-- '-- b23cc40b-3cda-5ccc-9089-804096c70d8b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1113_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 74 27 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1113_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 870 '-- mg '-- '-- '-- '-- 69678175-b7f5-4f79-aa5a-254bb7760144 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6209e80d-a115-4f8e-bf0d-18461401a1c6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1113 48 false '-- '-- '-- '-- -17791 949 5a2431ef-c08f-54a7-8154-48b049a5370f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1113_demographic Dead '-- '-- '-- '-- 17791 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 949.0 '-- '-- b23cc40b-3cda-5ccc-9089-804096c70d8b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1113_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 873 253 '-- '-- Progressive Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1113_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- 910 '-- mg '-- '-- '-- '-- f57886e0-cdf6-41bc-aca9-b0874f64d401 '-- yes '-- '-- Chemotherapy +TCGA-OV 6209e80d-a115-4f8e-bf0d-18461401a1c6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1113 48 false '-- '-- '-- '-- -17791 949 5a2431ef-c08f-54a7-8154-48b049a5370f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1113_demographic Dead '-- '-- '-- '-- 17791 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 949.0 '-- '-- b23cc40b-3cda-5ccc-9089-804096c70d8b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1113_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 74 27 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1113_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 1650 '-- mg '-- '-- '-- '-- f9bad516-36e1-5939-aae3-a947ec9eb0b2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 62379be5-13f0-474b-94d3-6f944ec4ee96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1552 77 false '-- '-- '-- '-- -28129 1259 74a423cc-a9ec-5dd0-b5aa-5054a39621ef '-- not reported female '-- '-- '-- '-- white TCGA-24-1552_demographic Dead '-- '-- '-- '-- 28532 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 403 '-- '-- '-- 1e8560cd-2985-47f8-85ba-8e9dfba445ac false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1552_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1552_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1552_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 622ae3e2-fa6d-4034-8758-79fb89f621ad '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 62379be5-13f0-474b-94d3-6f944ec4ee96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1552 77 false '-- '-- '-- '-- -28129 1259 74a423cc-a9ec-5dd0-b5aa-5054a39621ef '-- not reported female '-- '-- '-- '-- white TCGA-24-1552_demographic Dead '-- '-- '-- '-- 28532 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 403 '-- '-- '-- 1e8560cd-2985-47f8-85ba-8e9dfba445ac false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1552_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1552_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1552_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8099f11a-0bdf-4c18-8633-f594065d0364 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 62379be5-13f0-474b-94d3-6f944ec4ee96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1552 77 false '-- '-- '-- '-- -28129 1259 74a423cc-a9ec-5dd0-b5aa-5054a39621ef '-- not reported female '-- '-- '-- '-- white TCGA-24-1552_demographic Dead '-- '-- '-- '-- 28129 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1259.0 '-- '-- 88f98d56-7d93-59ed-92e9-0c71546a7a92 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1552_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1552_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 069a6687-2fa5-4293-8b81-e1bcf38d221c Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 62379be5-13f0-474b-94d3-6f944ec4ee96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1552 77 false '-- '-- '-- '-- -28129 1259 74a423cc-a9ec-5dd0-b5aa-5054a39621ef '-- not reported female '-- '-- '-- '-- white TCGA-24-1552_demographic Dead '-- '-- '-- '-- 28129 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1259.0 '-- '-- 88f98d56-7d93-59ed-92e9-0c71546a7a92 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1552_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 587 479 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1552_treatment5 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 08fd8b81-af11-4a9b-bf27-3401db18e36c '-- yes '-- '-- Chemotherapy +TCGA-OV 62379be5-13f0-474b-94d3-6f944ec4ee96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1552 77 false '-- '-- '-- '-- -28129 1259 74a423cc-a9ec-5dd0-b5aa-5054a39621ef '-- not reported female '-- '-- '-- '-- white TCGA-24-1552_demographic Dead '-- '-- '-- '-- 28129 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1259.0 '-- '-- 88f98d56-7d93-59ed-92e9-0c71546a7a92 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1552_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1030 876 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1552_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 822 '-- mg '-- '-- '-- '-- 1a8ffe0f-0a15-41a1-aaff-a9f7f371b95e '-- yes '-- '-- Chemotherapy +TCGA-OV 62379be5-13f0-474b-94d3-6f944ec4ee96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1552 77 false '-- '-- '-- '-- -28129 1259 74a423cc-a9ec-5dd0-b5aa-5054a39621ef '-- not reported female '-- '-- '-- '-- white TCGA-24-1552_demographic Dead '-- '-- '-- '-- 28129 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1259.0 '-- '-- 88f98d56-7d93-59ed-92e9-0c71546a7a92 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1552_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1170 1044 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1552_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1925 '-- mg '-- '-- '-- '-- 411e11e0-4917-4c5a-87f9-55697a63c0d2 '-- yes '-- '-- Chemotherapy +TCGA-OV 62379be5-13f0-474b-94d3-6f944ec4ee96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1552 77 false '-- '-- '-- '-- -28129 1259 74a423cc-a9ec-5dd0-b5aa-5054a39621ef '-- not reported female '-- '-- '-- '-- white TCGA-24-1552_demographic Dead '-- '-- '-- '-- 28129 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1259.0 '-- '-- 88f98d56-7d93-59ed-92e9-0c71546a7a92 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1552_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 851 728 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1552_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 350 '-- mg '-- '-- '-- '-- 62027927-1ec3-44d3-ab73-3ef1ba5e0927 '-- yes '-- '-- Chemotherapy +TCGA-OV 62379be5-13f0-474b-94d3-6f944ec4ee96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1552 77 false '-- '-- '-- '-- -28129 1259 74a423cc-a9ec-5dd0-b5aa-5054a39621ef '-- not reported female '-- '-- '-- '-- white TCGA-24-1552_demographic Dead '-- '-- '-- '-- 28129 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1259.0 '-- '-- 88f98d56-7d93-59ed-92e9-0c71546a7a92 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1552_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1030 876 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1552_treatment4 Amifostine '-- '-- '-- '-- '-- '-- '-- 4325 '-- mg '-- '-- '-- '-- 68beb98a-56f2-40f6-b63b-fb1905ad846a '-- yes '-- '-- Chemotherapy +TCGA-OV 62379be5-13f0-474b-94d3-6f944ec4ee96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1552 77 false '-- '-- '-- '-- -28129 1259 74a423cc-a9ec-5dd0-b5aa-5054a39621ef '-- not reported female '-- '-- '-- '-- white TCGA-24-1552_demographic Dead '-- '-- '-- '-- 28129 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1259.0 '-- '-- 88f98d56-7d93-59ed-92e9-0c71546a7a92 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1552_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 265 53 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1552_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b46cd276-b012-5291-9186-339e1ef23cd4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 62379be5-13f0-474b-94d3-6f944ec4ee96 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1552 77 false '-- '-- '-- '-- -28129 1259 74a423cc-a9ec-5dd0-b5aa-5054a39621ef '-- not reported female '-- '-- '-- '-- white TCGA-24-1552_demographic Dead '-- '-- '-- '-- 28129 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1259.0 '-- '-- 88f98d56-7d93-59ed-92e9-0c71546a7a92 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1552_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 265 53 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1552_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e1c20eff-5240-44f6-b646-dd9cd4c86f97 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6264e699-d40b-4ebc-b443-0a0edcb220dc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2396 71 false '-- '-- '-- '-- -26145 92 abae41c1-1b5e-5262-b644-b8d7fc00fabd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2396_demographic Dead '-- '-- '-- '-- 26145 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 92.0 '-- '-- 962f2f69-2e79-50fc-ba72-03bf96cc0d4b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2396_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2396_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8f8e49d6-d0fd-5c94-8001-0861b70d6517 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2467.0 '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 274 14 '-- '-- '-- '-- '-- '-- '-- 13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1930_treatment15 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2286 '-- mg '-- '-- '-- '-- 047eebda-6513-4237-a7a2-f8a73d3d1941 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2467.0 '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1083 726 '-- '-- Progressive Disease '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1930_treatment13 Topotecan '-- '-- '-- '-- '-- '-- '-- 95 '-- mg '-- '-- '-- '-- 12cad609-75b0-40b4-8fe1-54ef2403e049 '-- yes '-- '-- Chemotherapy +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2467.0 '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1475 1422 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1930_treatment4 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 11435 '-- mg '-- '-- '-- '-- 1ff4bd51-5307-49e4-a256-e8d1af716974 '-- yes '-- '-- Chemotherapy +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2467.0 '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 707 684 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1930_treatment '-- '-- '-- '-- '-- '-- Distant Site '-- 3750 '-- cGy '-- '-- '-- '-- 2262a9a9-e859-55d3-90bd-5074c52ee546 '-- yes '-- '-- Radiation, External Beam +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2467.0 '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2144 2052 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1930_treatment16 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- 448 '-- mg '-- '-- '-- '-- 51b8d087-6924-4272-a876-17977be5a577 '-- yes '-- '-- Chemotherapy +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2467.0 '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2325 2164 '-- '-- Progressive Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1930_treatment14 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 23008 '-- mg '-- '-- '-- '-- 5a6a2113-df3a-4475-8dcf-67516caaba59 '-- yes '-- '-- Chemotherapy +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2467.0 '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1112 1112 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1930_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 450 '-- mg '-- '-- '-- '-- 66abb5e3-a94e-467a-8a2b-8463fa4ba9cd '-- yes '-- '-- Chemotherapy +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2467.0 '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2325 2164 '-- '-- Progressive Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1930_treatment10 Cisplatin '-- '-- '-- '-- '-- '-- '-- 896 '-- mg '-- '-- '-- '-- aa9d2944-ee13-45b6-8312-57271561c014 '-- yes '-- '-- Chemotherapy +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2467.0 '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1389 1331 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1930_treatment11 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 218 '-- mg '-- '-- '-- '-- c4fa067f-625e-47cc-9e25-b4a138145fcd '-- yes '-- '-- Chemotherapy +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2467.0 '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 274 14 '-- '-- '-- '-- '-- '-- '-- 13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1930_treatment8 Cisplatin '-- '-- '-- '-- '-- '-- '-- 518 '-- mg '-- '-- '-- '-- c6990d1d-f680-4ffe-83b7-4d5b1365fcc8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2467.0 '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 631 547 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1930_treatment2 Clinical Trial '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c8705249-ffde-4560-8e26-ef12d33efb67 '-- yes '-- '-- Chemotherapy +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2467.0 '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1112 1112 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1930_treatment9 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 305 '-- mg '-- '-- '-- '-- d74be33b-dd21-48c9-bc7b-bbd6f720ca9b '-- yes '-- '-- Chemotherapy +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2467.0 '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1275 1135 '-- '-- Progressive Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1930_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3170 '-- mg '-- '-- '-- '-- dcb95037-b962-4a8e-9bb1-3f36ed1b8db5 '-- yes '-- '-- Chemotherapy +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2467.0 '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1684 1492 '-- '-- Progressive Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-1930_treatment17 Altretamine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e294c6a1-52e2-4cac-982c-4d74e3bdb60e '-- yes '-- '-- Chemotherapy +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2467.0 '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2144 2052 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1930_treatment12 Topotecan '-- '-- '-- '-- '-- '-- '-- 45 '-- mg '-- '-- '-- '-- edd33c7f-ce6d-4608-ac0d-303f996ba61e '-- yes '-- '-- Chemotherapy +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2467.0 '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 274 14 '-- '-- '-- '-- '-- '-- '-- 13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1930_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4020 '-- mg '-- '-- '-- '-- fe4f72c0-e2b6-4fc4-af3a-0b475a6035db Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2467.0 '-- '-- 2cd199cc-198a-518f-b3da-a3f3640b2ba7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 274 14 '-- '-- '-- '-- '-- '-- '-- 13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1930_treatment3 Amifostine '-- '-- '-- '-- '-- '-- '-- 1960 '-- mg '-- '-- '-- '-- ff93a496-efcd-4185-a8b2-7f91e3832360 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7bcb095f-1d9f-41e7-8670-50e1c8ae3ab4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1930_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1930_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1930_treatment20 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 27619fc6-40b8-4a2c-9a74-5961fa996296 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7bcb095f-1d9f-41e7-8670-50e1c8ae3ab4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1930_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1930_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1930_treatment21 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 960acd99-1cee-4cfe-96b0-05b0007c9283 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7bcb095f-1d9f-41e7-8670-50e1c8ae3ab4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1930_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1930_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1923 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1930_treatment22 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ac8ed2dd-b78d-459d-8e76-5319d9bfc22f '-- yes '-- '-- Surgery, NOS +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19931 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 544 '-- '-- '-- 958f71e1-e29e-4872-b4e6-8b66be32e1cd false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1930_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1930_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1930_treatment19 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 709f0a03-3fc7-4ec9-821c-343cb65f2899 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- 19931 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 544 '-- '-- '-- 958f71e1-e29e-4872-b4e6-8b66be32e1cd false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1930_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1930_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1930_treatment18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8b9ef7c8-6d4e-4397-9ecb-663e1f77a1c3 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c4395ef6-2b41-4e6c-9cfb-ac632ac25ef6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1930_diagnosis4 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1930_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 670 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1930_treatment25 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0925041f-aebb-40fc-8c28-20d65deffa7d '-- yes '-- '-- Surgery, NOS +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c4395ef6-2b41-4e6c-9cfb-ac632ac25ef6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1930_diagnosis4 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1930_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1930_treatment24 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e58b3e1b-ea69-4b31-a6be-956ece1d9f87 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1930 53 false '-- '-- '-- '-- -19387 2467 54ce0094-e7b7-5ac4-b909-215939d4d01e '-- not reported female '-- '-- '-- '-- white TCGA-24-1930_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c4395ef6-2b41-4e6c-9cfb-ac632ac25ef6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1930_diagnosis4 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1930_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1930_treatment23 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fd4e2ca9-c89f-4b5b-b8bd-afb025c7d679 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 635f5335-b008-428e-b005-615776a6643f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1315 50 false '-- '-- '-- '-- -18263 1583 37be6983-075c-55d9-a482-fc41dcc71bb0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1315_demographic Dead '-- '-- '-- '-- 18416 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 153 '-- '-- '-- 75df72c7-b68d-422d-a9b9-3279740d361d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1315_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1315_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1315_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f1c0091f-937c-4e74-94ea-d8bc737cfba0 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 635f5335-b008-428e-b005-615776a6643f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1315 50 false '-- '-- '-- '-- -18263 1583 37be6983-075c-55d9-a482-fc41dcc71bb0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1315_demographic Dead '-- '-- '-- '-- 18416 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 153 '-- '-- '-- 75df72c7-b68d-422d-a9b9-3279740d361d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1315_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1315_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1315_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fc90eab3-63b2-4273-aab4-b629bf09671c '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 635f5335-b008-428e-b005-615776a6643f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1315 50 false '-- '-- '-- '-- -18263 1583 37be6983-075c-55d9-a482-fc41dcc71bb0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1315_demographic Dead '-- '-- '-- '-- 18263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1583.0 '-- '-- b068f29c-7d2b-5d20-8748-67a56d85ac72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1315_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 153 30 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1315_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 39b7317a-ce7e-4ab2-8606-f26537ee802b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 635f5335-b008-428e-b005-615776a6643f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1315 50 false '-- '-- '-- '-- -18263 1583 37be6983-075c-55d9-a482-fc41dcc71bb0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1315_demographic Dead '-- '-- '-- '-- 18263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1583.0 '-- '-- b068f29c-7d2b-5d20-8748-67a56d85ac72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1315_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1315_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4d45dfe4-bc87-4ab6-82c0-b27d3906f5ed Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 635f5335-b008-428e-b005-615776a6643f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1315 50 false '-- '-- '-- '-- -18263 1583 37be6983-075c-55d9-a482-fc41dcc71bb0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1315_demographic Dead '-- '-- '-- '-- 18263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1583.0 '-- '-- b068f29c-7d2b-5d20-8748-67a56d85ac72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1315_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 334 153 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1315_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 86a51112-d4a8-4657-b68f-3a142224edba '-- yes '-- '-- Chemotherapy +TCGA-OV 635f5335-b008-428e-b005-615776a6643f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1315 50 false '-- '-- '-- '-- -18263 1583 37be6983-075c-55d9-a482-fc41dcc71bb0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1315_demographic Dead '-- '-- '-- '-- 18263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1583.0 '-- '-- b068f29c-7d2b-5d20-8748-67a56d85ac72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1315_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 334 143 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1315_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c24c2473-d7c3-4abe-8e9c-ced9f73c4680 '-- yes '-- '-- Chemotherapy +TCGA-OV 635f5335-b008-428e-b005-615776a6643f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1315 50 false '-- '-- '-- '-- -18263 1583 37be6983-075c-55d9-a482-fc41dcc71bb0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1315_demographic Dead '-- '-- '-- '-- 18263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1583.0 '-- '-- b068f29c-7d2b-5d20-8748-67a56d85ac72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1315_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 153 30 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1315_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f487fba4-2ea2-4178-9977-ca6f7c1f1b41 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 635f5335-b008-428e-b005-615776a6643f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1315 50 false '-- '-- '-- '-- -18263 1583 37be6983-075c-55d9-a482-fc41dcc71bb0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1315_demographic Dead '-- '-- '-- '-- 18263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1583.0 '-- '-- b068f29c-7d2b-5d20-8748-67a56d85ac72 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1315_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 334 153 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1315_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- faca2e40-1fb3-5d24-81c3-6a26cd0dd2d5 '-- yes '-- '-- Chemotherapy +TCGA-OV 635f5335-b008-428e-b005-615776a6643f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1315 50 false '-- '-- '-- '-- -18263 1583 37be6983-075c-55d9-a482-fc41dcc71bb0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1315_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ef73457f-7fda-4f4d-9e79-9cfe2907ea4d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1315_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1315_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 153 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1315_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 059e1a2f-66c3-4091-aedd-ec8d129d00f1 '-- yes '-- '-- Surgery, NOS +TCGA-OV 635f5335-b008-428e-b005-615776a6643f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1315 50 false '-- '-- '-- '-- -18263 1583 37be6983-075c-55d9-a482-fc41dcc71bb0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1315_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ef73457f-7fda-4f4d-9e79-9cfe2907ea4d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1315_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1315_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1315_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 339ea202-7402-4c78-a144-85e708496f29 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 635f5335-b008-428e-b005-615776a6643f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1315 50 false '-- '-- '-- '-- -18263 1583 37be6983-075c-55d9-a482-fc41dcc71bb0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1315_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ef73457f-7fda-4f4d-9e79-9cfe2907ea4d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1315_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1315_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1315_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ee5a9b52-0bd1-4acc-ba23-81f591816f62 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 63a75e0b-9241-4f0e-9236-01a2e2c05b7e '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0884 39 false '-- '-- '-- '-- -14538 3260 ae611d16-8057-5154-9ece-95a2375c0d0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0884_demographic Dead '-- '-- '-- '-- 14538 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3260.0 '-- '-- e48908e4-4f4e-59d5-a1a0-2344695aed5f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0884_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0884_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4956cbbb-8c5c-4090-b8ad-6b485dd2e7e8 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 63a75e0b-9241-4f0e-9236-01a2e2c05b7e '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0884 39 false '-- '-- '-- '-- -14538 3260 ae611d16-8057-5154-9ece-95a2375c0d0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0884_demographic Dead '-- '-- '-- '-- 14538 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3260.0 '-- '-- e48908e4-4f4e-59d5-a1a0-2344695aed5f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0884_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 191 55 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0884_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 58eba621-1e8a-4db2-9689-31d6963bab81 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 63a75e0b-9241-4f0e-9236-01a2e2c05b7e '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0884 39 false '-- '-- '-- '-- -14538 3260 ae611d16-8057-5154-9ece-95a2375c0d0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0884_demographic Dead '-- '-- '-- '-- 14538 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3260.0 '-- '-- e48908e4-4f4e-59d5-a1a0-2344695aed5f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0884_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 191 55 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0884_treatment2 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 800 '-- mg/m2 '-- '-- '-- '-- 70d9bf0c-cc4a-4e10-8273-9bec846908cb Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 63a75e0b-9241-4f0e-9236-01a2e2c05b7e '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0884 39 false '-- '-- '-- '-- -14538 3260 ae611d16-8057-5154-9ece-95a2375c0d0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0884_demographic Dead '-- '-- '-- '-- 14538 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3260.0 '-- '-- e48908e4-4f4e-59d5-a1a0-2344695aed5f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0884_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 191 55 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0884_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- 7867df2e-1008-525a-80a2-a852709f7689 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 63a75e0b-9241-4f0e-9236-01a2e2c05b7e '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0884 39 false '-- '-- '-- '-- -14538 3260 ae611d16-8057-5154-9ece-95a2375c0d0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0884_demographic Dead '-- '-- '-- '-- 14538 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3260.0 '-- '-- e48908e4-4f4e-59d5-a1a0-2344695aed5f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0884_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 307 240 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-13-0884_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 74 '-- mg/m2 '-- '-- '-- '-- 7a07b127-0693-4ed2-afe0-42909955cd56 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 63a75e0b-9241-4f0e-9236-01a2e2c05b7e '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0884 39 false '-- '-- '-- '-- -14538 3260 ae611d16-8057-5154-9ece-95a2375c0d0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0884_demographic Dead '-- '-- '-- '-- 14538 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3260.0 '-- '-- e48908e4-4f4e-59d5-a1a0-2344695aed5f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0884_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 307 240 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-13-0884_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 133 '-- mg/m2 '-- '-- '-- '-- acc55fc4-07a3-4225-ac1e-66057a165d6d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 63a75e0b-9241-4f0e-9236-01a2e2c05b7e '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0884 39 false '-- '-- '-- '-- -14538 3260 ae611d16-8057-5154-9ece-95a2375c0d0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0884_demographic Dead '-- '-- '-- '-- 15789 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1251 '-- '-- '-- ee29289a-1151-461c-8172-6c1c366093d5 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0884_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0884_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0884_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- acac1f70-8881-4491-841b-73ca81056854 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 63a75e0b-9241-4f0e-9236-01a2e2c05b7e '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0884 39 false '-- '-- '-- '-- -14538 3260 ae611d16-8057-5154-9ece-95a2375c0d0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0884_demographic Dead '-- '-- '-- '-- 15789 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1251 '-- '-- '-- ee29289a-1151-461c-8172-6c1c366093d5 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0884_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0884_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0884_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cf1acd5f-e6ad-467c-8db5-c47a03cd0bd7 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 63c6a89b-b28c-434a-a632-5de6545db731 Informed Consent 10 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1492 66 false '-- '-- '-- '-- -24332 3819 71d375c1-b32a-5221-950d-48517ae1bf94 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1492_demographic Dead '-- '-- '-- '-- 24332 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3819.0 '-- '-- a182868e-521c-5039-8b4e-1c047fbbfd11 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1492_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1492_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6ba210eb-987a-4e54-8093-270066aed6c2 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 63c6a89b-b28c-434a-a632-5de6545db731 Informed Consent 10 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1492 66 false '-- '-- '-- '-- -24332 3819 71d375c1-b32a-5221-950d-48517ae1bf94 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1492_demographic Dead '-- '-- '-- '-- 24332 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3819.0 '-- '-- a182868e-521c-5039-8b4e-1c047fbbfd11 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1492_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 247 48 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1492_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bc3d82c5-b314-50ed-802b-3b50c6bdf997 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 63c6a89b-b28c-434a-a632-5de6545db731 Informed Consent 10 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1492 66 false '-- '-- '-- '-- -24332 3819 71d375c1-b32a-5221-950d-48517ae1bf94 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1492_demographic Dead '-- '-- '-- '-- 24332 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3819.0 '-- '-- a182868e-521c-5039-8b4e-1c047fbbfd11 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1492_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 247 48 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1492_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- c0ea6284-466e-4a19-b3a7-596c5efe88bb Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 644a88a7-dc56-468a-af5c-60278aab7642 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1659 51 false '-- '-- '-- '-- -18733 304 a5962b77-641c-5dd7-8efa-361ca8a34954 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1659_demographic Dead '-- '-- '-- '-- 18733 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 304.0 '-- '-- 0f558703-06e8-564a-b36a-1cec509b1429 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1659_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 137 16 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1659_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- 24f276db-8ea8-48d9-8d9d-47238cc5c9c1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 644a88a7-dc56-468a-af5c-60278aab7642 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1659 51 false '-- '-- '-- '-- -18733 304 a5962b77-641c-5dd7-8efa-361ca8a34954 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1659_demographic Dead '-- '-- '-- '-- 18733 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 304.0 '-- '-- 0f558703-06e8-564a-b36a-1cec509b1429 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1659_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 137 16 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1659_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 41d0d5a4-19a7-54b1-8a5b-6025e3d5dc59 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 644a88a7-dc56-468a-af5c-60278aab7642 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1659 51 false '-- '-- '-- '-- -18733 304 a5962b77-641c-5dd7-8efa-361ca8a34954 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1659_demographic Dead '-- '-- '-- '-- 18733 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 304.0 '-- '-- 0f558703-06e8-564a-b36a-1cec509b1429 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1659_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 137 37 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1659_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 110 '-- mg/m2 '-- '-- '-- '-- 538e914e-4a2a-45c2-8d54-406156ac5fb8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 644a88a7-dc56-468a-af5c-60278aab7642 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1659 51 false '-- '-- '-- '-- -18733 304 a5962b77-641c-5dd7-8efa-361ca8a34954 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1659_demographic Dead '-- '-- '-- '-- 18733 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 304.0 '-- '-- 0f558703-06e8-564a-b36a-1cec509b1429 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1659_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 176 176 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-09-1659_treatment4 Altretamine '-- '-- '-- '-- '-- '-- '-- 50 '-- mg/m2 '-- '-- '-- '-- 6f346a32-693e-4558-91fb-e42b7a0875b8 '-- yes '-- '-- Chemotherapy +TCGA-OV 644a88a7-dc56-468a-af5c-60278aab7642 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1659 51 false '-- '-- '-- '-- -18733 304 a5962b77-641c-5dd7-8efa-361ca8a34954 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1659_demographic Dead '-- '-- '-- '-- 18733 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 304.0 '-- '-- 0f558703-06e8-564a-b36a-1cec509b1429 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1659_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1659_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e725f4a0-480c-48d1-b91f-f69221a5777d Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 6485b68f-caa7-45cd-9bc5-78c2add8191d '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0762 65 false '-- '-- '-- '-- -23960 '-- 35416893-69c6-54f9-881e-2201d801d116 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0762_demographic Alive '-- '-- '-- '-- 23960 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3400.0 '-- '-- 814eacd3-27a0-5c0c-b4f7-18f4355ab3c4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0762_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 141 28 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0762_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- 07cfc00a-4e59-4313-b2b8-6ee20ebcca2d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6485b68f-caa7-45cd-9bc5-78c2add8191d '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0762 65 false '-- '-- '-- '-- -23960 '-- 35416893-69c6-54f9-881e-2201d801d116 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0762_demographic Alive '-- '-- '-- '-- 23960 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3400.0 '-- '-- 814eacd3-27a0-5c0c-b4f7-18f4355ab3c4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0762_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0762_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0fa14d2a-9a14-4f1c-990f-95c65e40508e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 6485b68f-caa7-45cd-9bc5-78c2add8191d '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0762 65 false '-- '-- '-- '-- -23960 '-- 35416893-69c6-54f9-881e-2201d801d116 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0762_demographic Alive '-- '-- '-- '-- 23960 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3400.0 '-- '-- 814eacd3-27a0-5c0c-b4f7-18f4355ab3c4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0762_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 141 28 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0762_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- bca2d4a7-9197-54e5-977c-c66c5ac81669 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6485b68f-caa7-45cd-9bc5-78c2add8191d '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0762 65 false '-- '-- '-- '-- -23960 '-- 35416893-69c6-54f9-881e-2201d801d116 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0762_demographic Alive '-- '-- '-- '-- 23960 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3400.0 '-- '-- 814eacd3-27a0-5c0c-b4f7-18f4355ab3c4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0762_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 141 28 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0762_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- dfe09f97-1c99-424c-a632-43dfd1eec2a0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6485b68f-caa7-45cd-9bc5-78c2add8191d '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0762 65 false '-- '-- '-- '-- -23960 '-- 35416893-69c6-54f9-881e-2201d801d116 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0762_demographic Alive '-- '-- '-- '-- 24963 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 1003 '-- '-- '-- c8d3e926-9ba9-4c54-87d0-9410b5303a6b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0762_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0762_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 65435f50-a35d-49e3-a36e-b95d9e274ca0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1604 66 false '-- '-- '-- '-- -24471 2688 88b4acdd-e3e8-5e2a-9820-0fd2ed174d45 '-- not reported female '-- '-- '-- '-- white TCGA-24-1604_demographic Dead '-- '-- '-- '-- 24471 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2688.0 '-- '-- d92abbe4-d3f0-57cb-84bb-a07a6746bd3f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1604_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1604_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 19bd2972-6bee-46f5-a7b5-98745db2e70a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 65435f50-a35d-49e3-a36e-b95d9e274ca0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1604 66 false '-- '-- '-- '-- -24471 2688 88b4acdd-e3e8-5e2a-9820-0fd2ed174d45 '-- not reported female '-- '-- '-- '-- white TCGA-24-1604_demographic Dead '-- '-- '-- '-- 24471 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2688.0 '-- '-- d92abbe4-d3f0-57cb-84bb-a07a6746bd3f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1604_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1604_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2ea30412-aa92-4501-bad6-4ab289609af3 '-- yes '-- '-- Chemotherapy +TCGA-OV 65435f50-a35d-49e3-a36e-b95d9e274ca0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1604 66 false '-- '-- '-- '-- -24471 2688 88b4acdd-e3e8-5e2a-9820-0fd2ed174d45 '-- not reported female '-- '-- '-- '-- white TCGA-24-1604_demographic Dead '-- '-- '-- '-- 24471 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2688.0 '-- '-- d92abbe4-d3f0-57cb-84bb-a07a6746bd3f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1604_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1604_treatment '-- '-- '-- '-- '-- '-- Distant Site '-- '-- '-- '-- '-- '-- '-- '-- 7678f010-6e8d-582c-8bf7-40cdc871a1f8 '-- yes '-- '-- Radiation, External Beam +TCGA-OV 65435f50-a35d-49e3-a36e-b95d9e274ca0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1604 66 false '-- '-- '-- '-- -24471 2688 88b4acdd-e3e8-5e2a-9820-0fd2ed174d45 '-- not reported female '-- '-- '-- '-- white TCGA-24-1604_demographic Dead '-- '-- '-- '-- 24471 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2688.0 '-- '-- d92abbe4-d3f0-57cb-84bb-a07a6746bd3f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1604_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1604_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e6801996-f389-4d5d-9c6e-5537b1324d06 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 65435f50-a35d-49e3-a36e-b95d9e274ca0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1604 66 false '-- '-- '-- '-- -24471 2688 88b4acdd-e3e8-5e2a-9820-0fd2ed174d45 '-- not reported female '-- '-- '-- '-- white TCGA-24-1604_demographic Dead '-- '-- '-- '-- 24471 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2688.0 '-- '-- d92abbe4-d3f0-57cb-84bb-a07a6746bd3f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1604_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1604_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ff4cb4dd-55e9-4a2e-92bf-62ea15e2d006 '-- yes '-- '-- Chemotherapy +TCGA-OV 65ddccd2-70a7-48b3-88e1-9d6fd1dcd11b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0934 50 false '-- '-- '-- '-- -18602 204 bebf0413-27c1-5758-8bfb-0168b5a20b99 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-10-0934_demographic Dead '-- '-- '-- '-- 18713 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 111 '-- '-- '-- 5a326266-0b05-4139-a976-80f38b7148ef false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0934_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0934_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0934_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4944116f-84f9-42e7-a5e0-3c2266b1f286 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 65ddccd2-70a7-48b3-88e1-9d6fd1dcd11b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0934 50 false '-- '-- '-- '-- -18602 204 bebf0413-27c1-5758-8bfb-0168b5a20b99 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-10-0934_demographic Dead '-- '-- '-- '-- 18713 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 111 '-- '-- '-- 5a326266-0b05-4139-a976-80f38b7148ef false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0934_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0934_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0934_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8cfae8a1-af22-4599-bf46-751a8e793e7d '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 65ddccd2-70a7-48b3-88e1-9d6fd1dcd11b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0934 50 false '-- '-- '-- '-- -18602 204 bebf0413-27c1-5758-8bfb-0168b5a20b99 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-10-0934_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 89a8ea87-e809-4724-9c3b-3912962de923 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0934_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0934_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0934_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 642f4f58-f7f2-42cf-8c47-7042b6ca37be '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 65ddccd2-70a7-48b3-88e1-9d6fd1dcd11b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0934 50 false '-- '-- '-- '-- -18602 204 bebf0413-27c1-5758-8bfb-0168b5a20b99 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-10-0934_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 89a8ea87-e809-4724-9c3b-3912962de923 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0934_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0934_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0934_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 84443176-5711-4e91-ae2a-9e3422e09240 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 65ddccd2-70a7-48b3-88e1-9d6fd1dcd11b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0934 50 false '-- '-- '-- '-- -18602 204 bebf0413-27c1-5758-8bfb-0168b5a20b99 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-10-0934_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 89a8ea87-e809-4724-9c3b-3912962de923 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0934_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0934_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 75 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0934_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dfeb2322-d275-44b2-b21d-2f7851328f64 '-- yes '-- '-- Surgery, NOS +TCGA-OV 65ddccd2-70a7-48b3-88e1-9d6fd1dcd11b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0934 50 false '-- '-- '-- '-- -18602 204 bebf0413-27c1-5758-8bfb-0168b5a20b99 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-10-0934_demographic Dead '-- '-- '-- '-- 18602 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 204.0 '-- '-- b67a50b0-1627-587d-b7eb-dfc734a74286 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0934_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 56 40 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0934_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 525 '-- mg/m2 '-- '-- '-- '-- 12c8e62c-13ae-552e-a731-1f1c36e5c149 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 65ddccd2-70a7-48b3-88e1-9d6fd1dcd11b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0934 50 false '-- '-- '-- '-- -18602 204 bebf0413-27c1-5758-8bfb-0168b5a20b99 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-10-0934_demographic Dead '-- '-- '-- '-- 18602 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 204.0 '-- '-- b67a50b0-1627-587d-b7eb-dfc734a74286 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0934_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 56 40 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0934_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5ddeaaa2-ac0d-4bbf-a878-f522825f3054 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 65ddccd2-70a7-48b3-88e1-9d6fd1dcd11b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0934 50 false '-- '-- '-- '-- -18602 204 bebf0413-27c1-5758-8bfb-0168b5a20b99 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-10-0934_demographic Dead '-- '-- '-- '-- 18602 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 204.0 '-- '-- b67a50b0-1627-587d-b7eb-dfc734a74286 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0934_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0934_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c9a357e3-54f6-40b1-b6fe-45e3722bad8f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 662d77d1-1a43-427a-813b-e11edd30868e Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1626 65 false '-- '-- '-- '-- -23932 518 7a6939c1-85fa-5b74-b9c5-60e18347c35a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1626_demographic Dead '-- '-- '-- '-- 24250 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 318 '-- '-- '-- 1254dff9-5886-45a2-b812-2b8d435d21b0 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1626_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1626_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1626_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0d21c667-3bb5-4b64-9c04-08c97904c6c4 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 662d77d1-1a43-427a-813b-e11edd30868e Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1626 65 false '-- '-- '-- '-- -23932 518 7a6939c1-85fa-5b74-b9c5-60e18347c35a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1626_demographic Dead '-- '-- '-- '-- 24250 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 318 '-- '-- '-- 1254dff9-5886-45a2-b812-2b8d435d21b0 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1626_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1626_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1626_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f05f08b3-aa92-43a2-a991-06241180517e '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 662d77d1-1a43-427a-813b-e11edd30868e Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1626 65 false '-- '-- '-- '-- -23932 518 7a6939c1-85fa-5b74-b9c5-60e18347c35a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1626_demographic Dead '-- '-- '-- '-- 23932 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 518.0 '-- '-- f5f5f800-6d60-522d-a538-95bf6adaa275 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1626_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1626_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0ca716a2-b891-4631-b86a-260eb1106748 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 662d77d1-1a43-427a-813b-e11edd30868e Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1626 65 false '-- '-- '-- '-- -23932 518 7a6939c1-85fa-5b74-b9c5-60e18347c35a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1626_demographic Dead '-- '-- '-- '-- 23932 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 518.0 '-- '-- f5f5f800-6d60-522d-a538-95bf6adaa275 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1626_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 319 319 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1626_treatment Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2a73c773-6a90-5db2-b0d0-3a7ef3e20122 '-- yes '-- '-- Chemotherapy +TCGA-OV 662d77d1-1a43-427a-813b-e11edd30868e Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1626 65 false '-- '-- '-- '-- -23932 518 7a6939c1-85fa-5b74-b9c5-60e18347c35a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1626_demographic Dead '-- '-- '-- '-- 23932 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 518.0 '-- '-- f5f5f800-6d60-522d-a538-95bf6adaa275 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1626_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 208 21 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1626_treatment4 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8a27ced1-affd-4ba9-98a0-a9a7df21f3ba Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 662d77d1-1a43-427a-813b-e11edd30868e Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1626 65 false '-- '-- '-- '-- -23932 518 7a6939c1-85fa-5b74-b9c5-60e18347c35a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1626_demographic Dead '-- '-- '-- '-- 23932 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 518.0 '-- '-- f5f5f800-6d60-522d-a538-95bf6adaa275 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1626_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 208 21 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1626_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c34a3c06-6102-400e-876e-0f6e09936eb5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 662d77d1-1a43-427a-813b-e11edd30868e Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1626 65 false '-- '-- '-- '-- -23932 518 7a6939c1-85fa-5b74-b9c5-60e18347c35a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1626_demographic Dead '-- '-- '-- '-- 23932 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 518.0 '-- '-- f5f5f800-6d60-522d-a538-95bf6adaa275 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1626_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 208 21 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1626_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e77492a7-d51d-431c-95d7-8d0bfa76f6b6 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 66a0df9b-096b-4e8e-9b9c-54bf8637720b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2645 54 false '-- '-- '-- '-- -19758 '-- 2452f510-7aa9-5e7a-8100-5737e22814b9 '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-23-2645_demographic Alive '-- '-- '-- '-- 19758 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 137.0 '-- '-- 3bfcbda1-f2e2-58f9-b4a2-03c7d14c8647 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2645_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2645_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6c62e0c1-f0c2-4197-a119-c17e24978ab2 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 66a0df9b-096b-4e8e-9b9c-54bf8637720b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2645 54 false '-- '-- '-- '-- -19758 '-- 2452f510-7aa9-5e7a-8100-5737e22814b9 '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-23-2645_demographic Alive '-- '-- '-- '-- 19758 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 137.0 '-- '-- 3bfcbda1-f2e2-58f9-b4a2-03c7d14c8647 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2645_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2645_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7dc080a2-4174-5644-87cc-a8b4c4ded5b7 Adjuvant yes Not Reported '-- Pharmaceutical Therapy, NOS +TCGA-OV 66c92b9e-de3c-4d1a-bb69-46ffbc6caf33 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1548 57 false '-- '-- '-- '-- -20945 493 31a687e4-6949-5697-b241-1ff704021006 '-- not reported female '-- '-- '-- '-- white TCGA-24-1548_demographic Dead '-- '-- '-- '-- 20945 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 493.0 '-- '-- 8eaff24a-deb4-59b6-9bec-4fdf16ac70bf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1548_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1548_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 28750eb4-dddc-4994-9b08-6180fa9c787e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 66c92b9e-de3c-4d1a-bb69-46ffbc6caf33 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1548 57 false '-- '-- '-- '-- -20945 493 31a687e4-6949-5697-b241-1ff704021006 '-- not reported female '-- '-- '-- '-- white TCGA-24-1548_demographic Dead '-- '-- '-- '-- 20945 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 493.0 '-- '-- 8eaff24a-deb4-59b6-9bec-4fdf16ac70bf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1548_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 488 475 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1548_treatment8 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 360 '-- mg '-- '-- '-- '-- 403b5c7f-9192-4e1a-a3c1-3d20f097bb65 '-- yes '-- '-- Chemotherapy +TCGA-OV 66c92b9e-de3c-4d1a-bb69-46ffbc6caf33 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1548 57 false '-- '-- '-- '-- -20945 493 31a687e4-6949-5697-b241-1ff704021006 '-- not reported female '-- '-- '-- '-- white TCGA-24-1548_demographic Dead '-- '-- '-- '-- 20945 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 493.0 '-- '-- 8eaff24a-deb4-59b6-9bec-4fdf16ac70bf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1548_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 123 6 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1548_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 4790 '-- mg '-- '-- '-- '-- 43227535-0173-536d-954d-34a51afbada3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 66c92b9e-de3c-4d1a-bb69-46ffbc6caf33 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1548 57 false '-- '-- '-- '-- -20945 493 31a687e4-6949-5697-b241-1ff704021006 '-- not reported female '-- '-- '-- '-- white TCGA-24-1548_demographic Dead '-- '-- '-- '-- 20945 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 493.0 '-- '-- 8eaff24a-deb4-59b6-9bec-4fdf16ac70bf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1548_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 242 221 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1548_treatment7 Cisplatin '-- '-- '-- '-- '-- '-- '-- 250 '-- mg '-- '-- '-- '-- 60d6e3ae-23cc-4d79-ae90-19d9d311d5bf '-- yes '-- '-- Chemotherapy +TCGA-OV 66c92b9e-de3c-4d1a-bb69-46ffbc6caf33 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1548 57 false '-- '-- '-- '-- -20945 493 31a687e4-6949-5697-b241-1ff704021006 '-- not reported female '-- '-- '-- '-- white TCGA-24-1548_demographic Dead '-- '-- '-- '-- 20945 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 493.0 '-- '-- 8eaff24a-deb4-59b6-9bec-4fdf16ac70bf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1548_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 327 272 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1548_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 197 '-- mg '-- '-- '-- '-- 6d3db560-8702-40b9-826f-0e74c892312d '-- yes '-- '-- Chemotherapy +TCGA-OV 66c92b9e-de3c-4d1a-bb69-46ffbc6caf33 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1548 57 false '-- '-- '-- '-- -20945 493 31a687e4-6949-5697-b241-1ff704021006 '-- not reported female '-- '-- '-- '-- white TCGA-24-1548_demographic Dead '-- '-- '-- '-- 20945 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 493.0 '-- '-- 8eaff24a-deb4-59b6-9bec-4fdf16ac70bf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1548_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 242 221 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1548_treatment4 Topotecan '-- '-- '-- '-- '-- '-- '-- 10 '-- mg '-- '-- '-- '-- ac6b0094-3ff4-40f3-a266-ee041eadfc94 '-- yes '-- '-- Chemotherapy +TCGA-OV 66c92b9e-de3c-4d1a-bb69-46ffbc6caf33 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1548 57 false '-- '-- '-- '-- -20945 493 31a687e4-6949-5697-b241-1ff704021006 '-- not reported female '-- '-- '-- '-- white TCGA-24-1548_demographic Dead '-- '-- '-- '-- 20945 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 493.0 '-- '-- 8eaff24a-deb4-59b6-9bec-4fdf16ac70bf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1548_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 443 351 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1548_treatment5 Gemcitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c6c03b97-e1bf-4445-963f-86cfab17b1e3 '-- yes '-- '-- Chemotherapy +TCGA-OV 66c92b9e-de3c-4d1a-bb69-46ffbc6caf33 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1548 57 false '-- '-- '-- '-- -20945 493 31a687e4-6949-5697-b241-1ff704021006 '-- not reported female '-- '-- '-- '-- white TCGA-24-1548_demographic Dead '-- '-- '-- '-- 20945 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 493.0 '-- '-- 8eaff24a-deb4-59b6-9bec-4fdf16ac70bf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1548_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 443 351 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1548_treatment2 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c8e5dc72-654f-4193-a720-b283edff1a36 '-- yes '-- '-- Chemotherapy +TCGA-OV 66c92b9e-de3c-4d1a-bb69-46ffbc6caf33 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1548 57 false '-- '-- '-- '-- -20945 493 31a687e4-6949-5697-b241-1ff704021006 '-- not reported female '-- '-- '-- '-- white TCGA-24-1548_demographic Dead '-- '-- '-- '-- 20945 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 493.0 '-- '-- 8eaff24a-deb4-59b6-9bec-4fdf16ac70bf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1548_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 123 6 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1548_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1750 '-- mg '-- '-- '-- '-- d1109875-6874-4dfc-9a91-96352c62acd5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 66c92b9e-de3c-4d1a-bb69-46ffbc6caf33 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1548 57 false '-- '-- '-- '-- -20945 493 31a687e4-6949-5697-b241-1ff704021006 '-- not reported female '-- '-- '-- '-- white TCGA-24-1548_demographic Dead '-- '-- '-- '-- 21152 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 207 '-- '-- '-- c6f45526-f20b-4efa-b27c-100b8d7d67c7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1548_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1548_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1548_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 80a66e64-cba2-4386-ac51-6a2e461b82bc '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 66c92b9e-de3c-4d1a-bb69-46ffbc6caf33 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1548 57 false '-- '-- '-- '-- -20945 493 31a687e4-6949-5697-b241-1ff704021006 '-- not reported female '-- '-- '-- '-- white TCGA-24-1548_demographic Dead '-- '-- '-- '-- 21152 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 207 '-- '-- '-- c6f45526-f20b-4efa-b27c-100b8d7d67c7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1548_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1548_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1548_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 944cee4b-eced-4ce0-a927-3549713caf21 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 66dc6379-a98b-498f-8109-e3a811d043ea Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1672 78 false '-- '-- '-- '-- -28556 '-- 65be4176-d6a9-51c0-af0e-21fb3f65a944 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1672_demographic Alive '-- '-- '-- '-- 28556 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 178.0 '-- '-- b1805955-d176-51bb-8626-230e01dcf4bc true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1672_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- 30 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1672_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4a8dc9c7-61f6-553e-bf69-0a22da284a51 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 66dc6379-a98b-498f-8109-e3a811d043ea Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1672 78 false '-- '-- '-- '-- -28556 '-- 65be4176-d6a9-51c0-af0e-21fb3f65a944 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1672_demographic Alive '-- '-- '-- '-- 28556 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 178.0 '-- '-- b1805955-d176-51bb-8626-230e01dcf4bc true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1672_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1672_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 50a77a42-b98f-40f3-a473-4f40abfb3041 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 66dc6379-a98b-498f-8109-e3a811d043ea Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1672 78 false '-- '-- '-- '-- -28556 '-- 65be4176-d6a9-51c0-af0e-21fb3f65a944 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1672_demographic Alive '-- '-- '-- '-- 28556 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 178.0 '-- '-- b1805955-d176-51bb-8626-230e01dcf4bc true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1672_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- 30 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1672_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 71d6284c-1905-4466-90d9-3dc92de8bd59 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 66face4a-f35c-4364-90e5-8f28e6372606 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1312 69 false '-- '-- '-- '-- -25537 31 3eec1dc1-4d6d-5b73-bbde-6688b95c256a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1312_demographic Dead '-- '-- '-- '-- 25537 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 31.0 '-- '-- 7c0d838a-d4ca-5f23-85c8-672a6ef301b9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1312_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1312_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 46926ff0-1c00-56ad-a1f3-e60215b191eb Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 6746533a-8d0b-4ebc-87ec-49c8738121a8 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0364 80 false '-- '-- '-- '-- -29262 887 96fdbdf8-56b5-569a-b4f2-a155e1ed249d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0364_demographic Dead '-- '-- '-- '-- 29262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 887.0 '-- '-- 42b4a2fe-7c3d-5839-b189-e22b4b061c28 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-0364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 188 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-0364_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 17124546-d814-416e-86bd-5cc2fa98d27f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6746533a-8d0b-4ebc-87ec-49c8738121a8 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0364 80 false '-- '-- '-- '-- -29262 887 96fdbdf8-56b5-569a-b4f2-a155e1ed249d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0364_demographic Dead '-- '-- '-- '-- 29262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 887.0 '-- '-- 42b4a2fe-7c3d-5839-b189-e22b4b061c28 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-0364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 188 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-0364_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 125 '-- mg/m2 '-- '-- '-- '-- d6d8179e-734f-4b94-98f1-7e9afd49d174 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6746533a-8d0b-4ebc-87ec-49c8738121a8 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0364 80 false '-- '-- '-- '-- -29262 887 96fdbdf8-56b5-569a-b4f2-a155e1ed249d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0364_demographic Dead '-- '-- '-- '-- 29262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 887.0 '-- '-- 42b4a2fe-7c3d-5839-b189-e22b4b061c28 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-0364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 538 502 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-0364_treatment '-- '-- '-- '-- '-- '-- Locoregional Site '-- 4400 '-- cGy '-- '-- '-- '-- dabdbfb4-d19e-5d16-b464-b9a38486eafd '-- yes '-- '-- Radiation, External Beam +TCGA-OV 6746533a-8d0b-4ebc-87ec-49c8738121a8 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0364 80 false '-- '-- '-- '-- -29262 887 96fdbdf8-56b5-569a-b4f2-a155e1ed249d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0364_demographic Dead '-- '-- '-- '-- 29657 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 395 '-- '-- '-- 972d5e72-bda8-4185-84c5-787c8bc28bf5 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-0364_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-0364_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-0364_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2e922622-c70a-4107-968d-5fe013a0e242 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 6746533a-8d0b-4ebc-87ec-49c8738121a8 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0364 80 false '-- '-- '-- '-- -29262 887 96fdbdf8-56b5-569a-b4f2-a155e1ed249d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0364_demographic Dead '-- '-- '-- '-- 29657 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 395 '-- '-- '-- 972d5e72-bda8-4185-84c5-787c8bc28bf5 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-0364_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-0364_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-0364_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7930b973-2d27-4f1e-9d89-a87b788b433a '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 67f526f1-def5-43b4-bc89-154baae190fc Informed Consent 11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1846 45 false '-- '-- '-- '-- -16534 '-- c265a8c5-231d-5f56-bea9-1444d77aeceb '-- not reported female '-- '-- '-- '-- not reported TCGA-24-1846_demographic Alive '-- '-- '-- '-- 16534 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 133.0 '-- '-- cc622c11-e77b-5fd6-b673-baeb226d3ce6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1846_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 175 43 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1846_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1173 '-- mg '-- '-- '-- '-- 0e907242-92a0-4153-ae95-35984d0ea412 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 67f526f1-def5-43b4-bc89-154baae190fc Informed Consent 11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1846 45 false '-- '-- '-- '-- -16534 '-- c265a8c5-231d-5f56-bea9-1444d77aeceb '-- not reported female '-- '-- '-- '-- not reported TCGA-24-1846_demographic Alive '-- '-- '-- '-- 16534 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 133.0 '-- '-- cc622c11-e77b-5fd6-b673-baeb226d3ce6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1846_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1846_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 52341a90-92d3-4fb3-a4ba-f39dbce25a49 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 67f526f1-def5-43b4-bc89-154baae190fc Informed Consent 11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1846 45 false '-- '-- '-- '-- -16534 '-- c265a8c5-231d-5f56-bea9-1444d77aeceb '-- not reported female '-- '-- '-- '-- not reported TCGA-24-1846_demographic Alive '-- '-- '-- '-- 16534 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 133.0 '-- '-- cc622c11-e77b-5fd6-b673-baeb226d3ce6 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1846_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 175 43 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1846_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 3800 '-- mg '-- '-- '-- '-- d13984a8-7135-5021-a2f0-7bc08c643fbe Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6a1be87b-c4e0-4fd4-b050-50a245b22038 Informed Consent -13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1631 73 false '-- '-- '-- '-- -26687 9 add82ac4-19b9-5d45-a879-a9ca0d73962b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1631_demographic Dead '-- '-- '-- '-- 26687 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 9.0 '-- '-- 407c0da4-f263-5ceb-abd5-c62004aaf0b5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1631_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1631_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c93a722b-2a1e-412c-b725-2232968dc6c1 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 6a1be87b-c4e0-4fd4-b050-50a245b22038 Informed Consent -13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1631 73 false '-- '-- '-- '-- -26687 9 add82ac4-19b9-5d45-a879-a9ca0d73962b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1631_demographic Dead '-- '-- '-- '-- 26687 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 9.0 '-- '-- 407c0da4-f263-5ceb-abd5-c62004aaf0b5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1631_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1631_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d5a84b53-ef3f-574a-b25e-9ca3b214e0c4 Adjuvant no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 6a57948c-0dc5-4ea2-8043-380f26763752 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0975 58 false '-- '-- '-- '-- -21417 663 7ce08a4a-f076-5e4d-bbe0-a5ed3392d0a2 '-- not reported female '-- '-- '-- '-- white TCGA-24-0975_demographic Dead '-- '-- '-- '-- 21417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 663.0 '-- '-- 76d84c00-0eb7-5a28-bb2c-e6fb683fecb8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0975_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- 22 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0975_treatment2 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 02188573-ad8c-4a2d-b87c-40d7bb0862ff '-- yes '-- '-- Chemotherapy +TCGA-OV 6a57948c-0dc5-4ea2-8043-380f26763752 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0975 58 false '-- '-- '-- '-- -21417 663 7ce08a4a-f076-5e4d-bbe0-a5ed3392d0a2 '-- not reported female '-- '-- '-- '-- white TCGA-24-0975_demographic Dead '-- '-- '-- '-- 21417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 663.0 '-- '-- 76d84c00-0eb7-5a28-bb2c-e6fb683fecb8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0975_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 611 '-- '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0975_treatment5 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0246d614-352a-48c4-995f-6f0c05ce1dee '-- yes '-- '-- Chemotherapy +TCGA-OV 6a57948c-0dc5-4ea2-8043-380f26763752 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0975 58 false '-- '-- '-- '-- -21417 663 7ce08a4a-f076-5e4d-bbe0-a5ed3392d0a2 '-- not reported female '-- '-- '-- '-- white TCGA-24-0975_demographic Dead '-- '-- '-- '-- 21417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 663.0 '-- '-- 76d84c00-0eb7-5a28-bb2c-e6fb683fecb8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0975_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- 22 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0975_treatment7 Gemcitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0be86bba-9865-4aff-8b2c-cb70beafe532 '-- yes '-- '-- Chemotherapy +TCGA-OV 6a57948c-0dc5-4ea2-8043-380f26763752 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0975 58 false '-- '-- '-- '-- -21417 663 7ce08a4a-f076-5e4d-bbe0-a5ed3392d0a2 '-- not reported female '-- '-- '-- '-- white TCGA-24-0975_demographic Dead '-- '-- '-- '-- 21417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 663.0 '-- '-- 76d84c00-0eb7-5a28-bb2c-e6fb683fecb8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0975_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 576 564 '-- '-- Progressive Disease '-- '-- '-- '-- '-- 10.0 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-0975_treatment '-- '-- '-- '-- '-- '-- Distant Site '-- 3000 '-- cGy '-- '-- '-- '-- 2c412943-9ae2-58df-8030-170df09b3888 '-- yes '-- '-- Radiation, External Beam +TCGA-OV 6a57948c-0dc5-4ea2-8043-380f26763752 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0975 58 false '-- '-- '-- '-- -21417 663 7ce08a4a-f076-5e4d-bbe0-a5ed3392d0a2 '-- not reported female '-- '-- '-- '-- white TCGA-24-0975_demographic Dead '-- '-- '-- '-- 21417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 663.0 '-- '-- 76d84c00-0eb7-5a28-bb2c-e6fb683fecb8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0975_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- 22 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0975_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3c7b0072-f24b-4189-ab8c-092881f4afe4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6a57948c-0dc5-4ea2-8043-380f26763752 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0975 58 false '-- '-- '-- '-- -21417 663 7ce08a4a-f076-5e4d-bbe0-a5ed3392d0a2 '-- not reported female '-- '-- '-- '-- white TCGA-24-0975_demographic Dead '-- '-- '-- '-- 21417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 663.0 '-- '-- 76d84c00-0eb7-5a28-bb2c-e6fb683fecb8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0975_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 611 '-- '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0975_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8d7c1b3a-4aaa-4289-b07e-9b41abcbc0bb '-- yes '-- '-- Chemotherapy +TCGA-OV 6a57948c-0dc5-4ea2-8043-380f26763752 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0975 58 false '-- '-- '-- '-- -21417 663 7ce08a4a-f076-5e4d-bbe0-a5ed3392d0a2 '-- not reported female '-- '-- '-- '-- white TCGA-24-0975_demographic Dead '-- '-- '-- '-- 21417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 663.0 '-- '-- 76d84c00-0eb7-5a28-bb2c-e6fb683fecb8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0975_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- 22 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0975_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 94791315-dbd3-43b1-b19d-0c36d7bd3de6 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6ad8bc89-d8e9-48c2-bc25-c8e51f972b4d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1321 65 false '-- '-- '-- '-- -23987 1033 90f4c061-f159-5a33-9711-19ed94507147 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1321_demographic Dead '-- '-- '-- '-- 23987 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1033.0 '-- '-- 75f56478-bab2-51ee-821d-9db5567f6b98 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1321_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 181 28 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1321_treatment Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0210d1cd-b459-5acf-95bd-bd0e38b825be Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6ad8bc89-d8e9-48c2-bc25-c8e51f972b4d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1321 65 false '-- '-- '-- '-- -23987 1033 90f4c061-f159-5a33-9711-19ed94507147 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1321_demographic Dead '-- '-- '-- '-- 23987 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1033.0 '-- '-- 75f56478-bab2-51ee-821d-9db5567f6b98 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1321_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 181 28 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1321_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 48dbd078-85b5-4c38-8e87-e2d79721a694 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6ad8bc89-d8e9-48c2-bc25-c8e51f972b4d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1321 65 false '-- '-- '-- '-- -23987 1033 90f4c061-f159-5a33-9711-19ed94507147 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1321_demographic Dead '-- '-- '-- '-- 23987 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1033.0 '-- '-- 75f56478-bab2-51ee-821d-9db5567f6b98 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1321_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 498 454 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1321_treatment2 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7604a6ef-1ef0-4804-bd19-401a9501276f '-- yes '-- '-- Chemotherapy +TCGA-OV 6ad8bc89-d8e9-48c2-bc25-c8e51f972b4d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1321 65 false '-- '-- '-- '-- -23987 1033 90f4c061-f159-5a33-9711-19ed94507147 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1321_demographic Dead '-- '-- '-- '-- 23987 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1033.0 '-- '-- 75f56478-bab2-51ee-821d-9db5567f6b98 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1321_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 181 28 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1321_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b342ccc0-64a0-45e3-922d-8b72ec012c0f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6ad8bc89-d8e9-48c2-bc25-c8e51f972b4d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1321 65 false '-- '-- '-- '-- -23987 1033 90f4c061-f159-5a33-9711-19ed94507147 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1321_demographic Dead '-- '-- '-- '-- 23987 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1033.0 '-- '-- 75f56478-bab2-51ee-821d-9db5567f6b98 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1321_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1321_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e8f1e952-9bdf-4af7-9bae-e9811eded30f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 6ad8bc89-d8e9-48c2-bc25-c8e51f972b4d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1321 65 false '-- '-- '-- '-- -23987 1033 90f4c061-f159-5a33-9711-19ed94507147 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1321_demographic Dead '-- '-- '-- '-- 24441 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 454 '-- '-- '-- de500cc4-6715-4a34-826e-14f05435e921 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1321_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1321_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1321_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5a3b1f37-1c69-44c9-a4e7-8c89e9534e1b '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 6ad8bc89-d8e9-48c2-bc25-c8e51f972b4d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1321 65 false '-- '-- '-- '-- -23987 1033 90f4c061-f159-5a33-9711-19ed94507147 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1321_demographic Dead '-- '-- '-- '-- 24441 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 454 '-- '-- '-- de500cc4-6715-4a34-826e-14f05435e921 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1321_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1321_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1321_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9d0de300-8ecc-4c32-ab31-ff02972fc5a7 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 6ad8bc89-d8e9-48c2-bc25-c8e51f972b4d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1321 65 false '-- '-- '-- '-- -23987 1033 90f4c061-f159-5a33-9711-19ed94507147 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1321_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f45999d7-5ac3-4ac5-8948-302f5ba094b7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1321_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1321_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1321_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6eaf4a03-b8dc-4200-ac50-4d425101e5f9 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 6ad8bc89-d8e9-48c2-bc25-c8e51f972b4d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1321 65 false '-- '-- '-- '-- -23987 1033 90f4c061-f159-5a33-9711-19ed94507147 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1321_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f45999d7-5ac3-4ac5-8948-302f5ba094b7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1321_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1321_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1321_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d6ab2ac4-a131-4665-b85f-a3649c655ccc '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 6b06281b-d3a9-440e-a86c-ee7db003352a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1690 66 false '-- '-- '-- '-- -24319 1448 bcfa97b6-fdd7-5b5f-8943-3e2bb1b2f8a1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1690_demographic Dead '-- '-- '-- '-- 24319 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1448.0 '-- '-- dd1b849b-25d5-5b61-8c30-9bdbb0ea6514 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1690_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1690_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3462407f-36ea-4dd0-9b1d-5e4f8295fb8d Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 6b06281b-d3a9-440e-a86c-ee7db003352a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1690 66 false '-- '-- '-- '-- -24319 1448 bcfa97b6-fdd7-5b5f-8943-3e2bb1b2f8a1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1690_demographic Dead '-- '-- '-- '-- 24319 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1448.0 '-- '-- dd1b849b-25d5-5b61-8c30-9bdbb0ea6514 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1690_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1690_treatment4 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 500 '-- mg/m2 '-- '-- '-- '-- 39935a53-a498-467c-a864-bb9bd5baea7b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6b06281b-d3a9-440e-a86c-ee7db003352a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1690 66 false '-- '-- '-- '-- -24319 1448 bcfa97b6-fdd7-5b5f-8943-3e2bb1b2f8a1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1690_demographic Dead '-- '-- '-- '-- 24319 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1448.0 '-- '-- dd1b849b-25d5-5b61-8c30-9bdbb0ea6514 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1690_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1690_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 350 '-- mg/m2 '-- '-- '-- '-- 4aed44cf-2a25-43e2-8189-800efbd12ca0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6b06281b-d3a9-440e-a86c-ee7db003352a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1690 66 false '-- '-- '-- '-- -24319 1448 bcfa97b6-fdd7-5b5f-8943-3e2bb1b2f8a1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1690_demographic Dead '-- '-- '-- '-- 24319 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1448.0 '-- '-- dd1b849b-25d5-5b61-8c30-9bdbb0ea6514 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1690_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- 91 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1690_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- e35001a9-1f76-427e-86ba-434ad53a5b65 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6b06281b-d3a9-440e-a86c-ee7db003352a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1690 66 false '-- '-- '-- '-- -24319 1448 bcfa97b6-fdd7-5b5f-8943-3e2bb1b2f8a1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1690_demographic Dead '-- '-- '-- '-- 24319 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1448.0 '-- '-- dd1b849b-25d5-5b61-8c30-9bdbb0ea6514 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1690_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- 91 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1690_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- e83411da-55fb-57c5-b623-4e184c181a72 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6b2a9f9a-fe96-4311-a330-925c4ad36fe7 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1111 63 false '-- '-- '-- '-- -23171 '-- c6a9c1d3-b55e-5ef9-a771-a2a379aa9539 '-- not reported female '-- '-- '-- '-- white TCGA-23-1111_demographic Alive '-- '-- '-- '-- 23171 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 98.0 '-- '-- b706f41e-b852-562e-b355-bba9f964e38a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1111_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 129 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1111_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3389 '-- mg '-- '-- '-- '-- 71a3b9da-1e31-48e1-abb2-226f2078d43c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6b2a9f9a-fe96-4311-a330-925c4ad36fe7 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1111 63 false '-- '-- '-- '-- -23171 '-- c6a9c1d3-b55e-5ef9-a771-a2a379aa9539 '-- not reported female '-- '-- '-- '-- white TCGA-23-1111_demographic Alive '-- '-- '-- '-- 23171 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 98.0 '-- '-- b706f41e-b852-562e-b355-bba9f964e38a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1111_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 129 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1111_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1860 '-- mg '-- '-- '-- '-- 7a566f90-5991-4211-b22b-e31ed5e0f6f9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6b2a9f9a-fe96-4311-a330-925c4ad36fe7 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1111 63 false '-- '-- '-- '-- -23171 '-- c6a9c1d3-b55e-5ef9-a771-a2a379aa9539 '-- not reported female '-- '-- '-- '-- white TCGA-23-1111_demographic Alive '-- '-- '-- '-- 23171 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 98.0 '-- '-- b706f41e-b852-562e-b355-bba9f964e38a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1111_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 129 45 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1111_treatment Bevacizumab '-- '-- '-- '-- '-- '-- '-- 5850 '-- mg '-- '-- '-- '-- a3567e3c-4b84-5146-9bd0-d18a0d6f2496 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6b2a9f9a-fe96-4311-a330-925c4ad36fe7 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1111 63 false '-- '-- '-- '-- -23171 '-- c6a9c1d3-b55e-5ef9-a771-a2a379aa9539 '-- not reported female '-- '-- '-- '-- white TCGA-23-1111_demographic Alive '-- '-- '-- '-- 23171 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 98.0 '-- '-- b706f41e-b852-562e-b355-bba9f964e38a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1111_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1111_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bd795e1b-9997-42d4-b908-b95dc992ad45 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 6c43727d-631a-40fb-b1a1-242a12889eaa Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1369 53 false '-- '-- '-- '-- -19571 642 9b269a55-4273-588c-9175-3b4790b51e60 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1369_demographic Dead '-- '-- '-- '-- 19571 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 642.0 '-- '-- 2133f5e6-15d1-59d7-b0fa-86f8fdc18700 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-04-1369_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 445 392 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- 400.0 mg '-- '-- '-- '-- '-- '-- '-- Oral TCGA-04-1369_treatment2 Sorafenib '-- '-- '-- '-- '-- '-- '-- 30000 '-- mg '-- '-- '-- '-- 0135111a-fa82-4d90-ba8b-c55fb86312c5 '-- yes '-- '-- Chemotherapy +TCGA-OV 6c43727d-631a-40fb-b1a1-242a12889eaa Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1369 53 false '-- '-- '-- '-- -19571 642 9b269a55-4273-588c-9175-3b4790b51e60 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1369_demographic Dead '-- '-- '-- '-- 19571 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 642.0 '-- '-- 2133f5e6-15d1-59d7-b0fa-86f8fdc18700 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-04-1369_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1369_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 036004aa-ec3e-46ef-9507-601efb4dee07 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 6c43727d-631a-40fb-b1a1-242a12889eaa Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1369 53 false '-- '-- '-- '-- -19571 642 9b269a55-4273-588c-9175-3b4790b51e60 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1369_demographic Dead '-- '-- '-- '-- 19571 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 642.0 '-- '-- 2133f5e6-15d1-59d7-b0fa-86f8fdc18700 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-04-1369_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 238 175 '-- '-- '-- '-- '-- '-- '-- 4 '-- 275.0 mg '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1369_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1100 '-- mg '-- '-- '-- '-- 06a38b45-eaa8-53b7-81cb-ecfe9d97fa72 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6c43727d-631a-40fb-b1a1-242a12889eaa Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1369 53 false '-- '-- '-- '-- -19571 642 9b269a55-4273-588c-9175-3b4790b51e60 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1369_demographic Dead '-- '-- '-- '-- 19571 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 642.0 '-- '-- 2133f5e6-15d1-59d7-b0fa-86f8fdc18700 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-04-1369_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 154 56 '-- '-- '-- '-- '-- '-- '-- 4 '-- 3140.0 mg '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1369_treatment3 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 12560 '-- mg '-- '-- '-- '-- effe1a9b-66b3-4e47-a9a7-e8a80c556647 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6c43727d-631a-40fb-b1a1-242a12889eaa Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1369 53 false '-- '-- '-- '-- -19571 642 9b269a55-4273-588c-9175-3b4790b51e60 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1369_demographic Dead '-- '-- '-- '-- 19571 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 642.0 '-- '-- 2133f5e6-15d1-59d7-b0fa-86f8fdc18700 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-04-1369_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 238 56 '-- '-- '-- '-- '-- '-- '-- 8 '-- 464.0 mg '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1369_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4539 '-- mg '-- '-- '-- '-- f5e77320-ee14-48d1-8539-45b04211aea9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6c43727d-631a-40fb-b1a1-242a12889eaa Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1369 53 false '-- '-- '-- '-- -19571 642 9b269a55-4273-588c-9175-3b4790b51e60 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1369_demographic Dead '-- '-- '-- '-- 19886 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 315 '-- '-- '-- 399994fd-c4a2-463f-a860-4aa52f146e31 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1369_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1369_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1369_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- da3da5b2-51c0-405d-b2d2-1667e2aa267d '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 6c43727d-631a-40fb-b1a1-242a12889eaa Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1369 53 false '-- '-- '-- '-- -19571 642 9b269a55-4273-588c-9175-3b4790b51e60 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1369_demographic Dead '-- '-- '-- '-- 19886 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 315 '-- '-- '-- 399994fd-c4a2-463f-a860-4aa52f146e31 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1369_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1369_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1369_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f6c7d546-888d-47b7-a944-5fef9fe5e824 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 6cf9f872-2e59-45cf-bb5e-ebd7fa1b3caf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0888 78 false '-- '-- '-- '-- -28498 2811 352a0590-c7a1-5b86-8a71-0f34b1ff6d0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0888_demographic Dead '-- '-- '-- '-- 28498 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2811.0 '-- '-- 83afec30-398a-5fbb-87e1-c57d34a7da26 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0888_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 232 54 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0888_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2708db92-2815-586a-94ce-9660f24951e3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6cf9f872-2e59-45cf-bb5e-ebd7fa1b3caf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0888 78 false '-- '-- '-- '-- -28498 2811 352a0590-c7a1-5b86-8a71-0f34b1ff6d0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0888_demographic Dead '-- '-- '-- '-- 28498 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2811.0 '-- '-- 83afec30-398a-5fbb-87e1-c57d34a7da26 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0888_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 232 54 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0888_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4c07bb21-e956-43d2-b9d6-e9190b52e02a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6cf9f872-2e59-45cf-bb5e-ebd7fa1b3caf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0888 78 false '-- '-- '-- '-- -28498 2811 352a0590-c7a1-5b86-8a71-0f34b1ff6d0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0888_demographic Dead '-- '-- '-- '-- 28498 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2811.0 '-- '-- 83afec30-398a-5fbb-87e1-c57d34a7da26 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0888_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 253 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0888_treatment2 Letrozole '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 76df10d1-8fc6-431a-b143-ccd4ef0bd3da Adjuvant yes Treatment Ongoing '-- Hormone Therapy +TCGA-OV 6cf9f872-2e59-45cf-bb5e-ebd7fa1b3caf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0888 78 false '-- '-- '-- '-- -28498 2811 352a0590-c7a1-5b86-8a71-0f34b1ff6d0d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0888_demographic Dead '-- '-- '-- '-- 28498 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2811.0 '-- '-- 83afec30-398a-5fbb-87e1-c57d34a7da26 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0888_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0888_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d2e9ed07-f2a6-4d50-af15-57cc934a254a Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 6d10d4ee-6331-4bba-93bc-a7b64cc0b22a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1331 78 false '-- '-- '-- '-- -28848 1336 484bfbce-553b-5967-b6b1-2db46d395d5d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1331_demographic Dead '-- '-- '-- '-- 28848 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1336.0 '-- '-- a5055ee4-957a-58aa-9f8d-4ee8c627de20 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1331_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 169 36 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1331_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 455 '-- mg '-- '-- '-- '-- 605bf3f2-5b65-4de8-bdd2-613d7bf919ec Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6d10d4ee-6331-4bba-93bc-a7b64cc0b22a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1331 78 false '-- '-- '-- '-- -28848 1336 484bfbce-553b-5967-b6b1-2db46d395d5d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1331_demographic Dead '-- '-- '-- '-- 28848 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1336.0 '-- '-- a5055ee4-957a-58aa-9f8d-4ee8c627de20 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1331_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1331_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6bda952f-8c70-4f44-9d25-89fff9523805 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 6d10d4ee-6331-4bba-93bc-a7b64cc0b22a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1331 78 false '-- '-- '-- '-- -28848 1336 484bfbce-553b-5967-b6b1-2db46d395d5d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1331_demographic Dead '-- '-- '-- '-- 28848 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1336.0 '-- '-- a5055ee4-957a-58aa-9f8d-4ee8c627de20 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1331_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 169 36 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1331_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1650 '-- mg '-- '-- '-- '-- ccb64579-fa43-532e-9f4f-97223d2e70ff Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6d10d4ee-6331-4bba-93bc-a7b64cc0b22a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1331 78 false '-- '-- '-- '-- -28848 1336 484bfbce-553b-5967-b6b1-2db46d395d5d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1331_demographic Dead '-- '-- '-- '-- 28848 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1336.0 '-- '-- a5055ee4-957a-58aa-9f8d-4ee8c627de20 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1331_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 498 481 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1331_treatment2 Bortezomib '-- '-- '-- '-- '-- '-- '-- 4 '-- mg '-- '-- '-- '-- e7f109b0-3fea-4980-9373-3ca05967daec '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 6d10d4ee-6331-4bba-93bc-a7b64cc0b22a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1331 78 false '-- '-- '-- '-- -28848 1336 484bfbce-553b-5967-b6b1-2db46d395d5d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1331_demographic Dead '-- '-- '-- '-- 29307 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 459 '-- '-- '-- f1f437ba-ff5b-4114-8da8-7872472782a4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1331_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1331_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1331_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 00316b57-2356-4a6f-b0f5-aea5c3f8b861 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 6d10d4ee-6331-4bba-93bc-a7b64cc0b22a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1331 78 false '-- '-- '-- '-- -28848 1336 484bfbce-553b-5967-b6b1-2db46d395d5d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1331_demographic Dead '-- '-- '-- '-- 29307 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 459 '-- '-- '-- f1f437ba-ff5b-4114-8da8-7872472782a4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1331_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1331_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1331_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 04347034-0516-41ad-b55b-b5de47ac1bb8 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 6e84e89d-4f35-43b8-b47d-b1343b8c1ab9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1436 57 false '-- '-- '-- '-- -20881 260 a0107c28-a218-5aa9-a28b-c327f9ff8509 '-- not reported female '-- '-- '-- '-- white TCGA-24-1436_demographic Dead '-- '-- '-- '-- 20881 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 260.0 '-- '-- c1b7821e-d547-564e-bd56-2021a2829cce true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1436_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 223 157 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1436_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- 28 '-- mg '-- '-- '-- '-- 0050cb2b-28bb-4645-a16e-2ee1752e53bc '-- yes '-- '-- Chemotherapy +TCGA-OV 6e84e89d-4f35-43b8-b47d-b1343b8c1ab9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1436 57 false '-- '-- '-- '-- -20881 260 a0107c28-a218-5aa9-a28b-c327f9ff8509 '-- not reported female '-- '-- '-- '-- white TCGA-24-1436_demographic Dead '-- '-- '-- '-- 20881 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 260.0 '-- '-- c1b7821e-d547-564e-bd56-2021a2829cce true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1436_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 135 24 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1436_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1282 '-- mg '-- '-- '-- '-- 4cca1b40-400e-579f-8430-9ad31c25a430 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6e84e89d-4f35-43b8-b47d-b1343b8c1ab9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1436 57 false '-- '-- '-- '-- -20881 260 a0107c28-a218-5aa9-a28b-c327f9ff8509 '-- not reported female '-- '-- '-- '-- white TCGA-24-1436_demographic Dead '-- '-- '-- '-- 20881 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 260.0 '-- '-- c1b7821e-d547-564e-bd56-2021a2829cce true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1436_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 135 24 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1436_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2730 '-- mg '-- '-- '-- '-- 6590b155-1b6a-4a7e-82bd-c910ce78277b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6e84e89d-4f35-43b8-b47d-b1343b8c1ab9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1436 57 false '-- '-- '-- '-- -20881 260 a0107c28-a218-5aa9-a28b-c327f9ff8509 '-- not reported female '-- '-- '-- '-- white TCGA-24-1436_demographic Dead '-- '-- '-- '-- 20881 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 260.0 '-- '-- c1b7821e-d547-564e-bd56-2021a2829cce true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1436_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1436_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b9ee71ac-5e7c-4de6-9682-02fffd3d7e40 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 6ea9877f-eb8d-4ee9-af4c-32a78474d9a6 Informed Consent -47 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1575 83 false '-- '-- '-- '-- -30592 '-- dd3e8198-e1e2-5976-a248-79485941dd2d '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1575_demographic Alive '-- '-- '-- '-- 30592 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 260.0 '-- '-- e7428b28-df7a-5573-8867-a864e51c6a92 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1575_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1575_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 31d18e73-e380-478d-bccd-f36e8952b0c3 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 6ea9877f-eb8d-4ee9-af4c-32a78474d9a6 Informed Consent -47 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1575 83 false '-- '-- '-- '-- -30592 '-- dd3e8198-e1e2-5976-a248-79485941dd2d '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1575_demographic Alive '-- '-- '-- '-- 30592 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 260.0 '-- '-- e7428b28-df7a-5573-8867-a864e51c6a92 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1575_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1575_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d67ba0e7-920f-53a6-a76e-c8a76ed42d7e Adjuvant yes Not Reported '-- Pharmaceutical Therapy, NOS +TCGA-OV 6f25001a-f890-4fd0-a994-e62a9ea5c6f3 Informed Consent 1606 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2427 60 false '-- '-- '-- '-- -21940 '-- 4444344c-f573-5cad-9e24-348cf054c8ca '-- not reported female '-- '-- '-- '-- white TCGA-29-2427_demographic Alive '-- '-- '-- '-- 23522 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1582 '-- '-- '-- d9519259-0396-4b46-984a-95d3dfe606f6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-2427_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-2427_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2427_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4d1fe40b-8c0e-473e-8bed-93476d9b7f99 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 6f25001a-f890-4fd0-a994-e62a9ea5c6f3 Informed Consent 1606 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2427 60 false '-- '-- '-- '-- -21940 '-- 4444344c-f573-5cad-9e24-348cf054c8ca '-- not reported female '-- '-- '-- '-- white TCGA-29-2427_demographic Alive '-- '-- '-- '-- 23522 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1582 '-- '-- '-- d9519259-0396-4b46-984a-95d3dfe606f6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-2427_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-2427_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2427_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- faaf835c-197b-4473-bc27-38ba06d63f78 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 6f25001a-f890-4fd0-a994-e62a9ea5c6f3 Informed Consent 1606 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2427 60 false '-- '-- '-- '-- -21940 '-- 4444344c-f573-5cad-9e24-348cf054c8ca '-- not reported female '-- '-- '-- '-- white TCGA-29-2427_demographic Alive '-- '-- '-- '-- 21940 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1900.0 '-- '-- da1f114e-7c5a-51fc-9d84-66d67b4f7676 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2427_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 49 7 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-2427_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 252184f3-65c1-51c2-bfbf-33ef83c9971a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6f25001a-f890-4fd0-a994-e62a9ea5c6f3 Informed Consent 1606 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2427 60 false '-- '-- '-- '-- -21940 '-- 4444344c-f573-5cad-9e24-348cf054c8ca '-- not reported female '-- '-- '-- '-- white TCGA-29-2427_demographic Alive '-- '-- '-- '-- 21940 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1900.0 '-- '-- da1f114e-7c5a-51fc-9d84-66d67b4f7676 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2427_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 49 7 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-2427_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 3d4fce0d-9151-49c8-9da7-cdd336f5b399 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6f25001a-f890-4fd0-a994-e62a9ea5c6f3 Informed Consent 1606 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2427 60 false '-- '-- '-- '-- -21940 '-- 4444344c-f573-5cad-9e24-348cf054c8ca '-- not reported female '-- '-- '-- '-- white TCGA-29-2427_demographic Alive '-- '-- '-- '-- 21940 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1900.0 '-- '-- da1f114e-7c5a-51fc-9d84-66d67b4f7676 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2427_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1900 1816 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-2427_treatment4 Nab-paclitaxel '-- '-- '-- '-- '-- '-- '-- 510 '-- mg '-- '-- '-- '-- af855634-09ab-42e4-9e98-7a2b80f5bb29 '-- yes '-- '-- Chemotherapy +TCGA-OV 6f25001a-f890-4fd0-a994-e62a9ea5c6f3 Informed Consent 1606 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2427 60 false '-- '-- '-- '-- -21940 '-- 4444344c-f573-5cad-9e24-348cf054c8ca '-- not reported female '-- '-- '-- '-- white TCGA-29-2427_demographic Alive '-- '-- '-- '-- 21940 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1900.0 '-- '-- da1f114e-7c5a-51fc-9d84-66d67b4f7676 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2427_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 157 73 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- 110.0 mg '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-2427_treatment6 Cisplatin '-- '-- '-- '-- '-- '-- '-- 660 '-- mg '-- '-- '-- '-- d1470afe-5afc-4eb2-ac5b-040077085d55 '-- yes '-- '-- Chemotherapy +TCGA-OV 6f25001a-f890-4fd0-a994-e62a9ea5c6f3 Informed Consent 1606 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2427 60 false '-- '-- '-- '-- -21940 '-- 4444344c-f573-5cad-9e24-348cf054c8ca '-- not reported female '-- '-- '-- '-- white TCGA-29-2427_demographic Alive '-- '-- '-- '-- 21940 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1900.0 '-- '-- da1f114e-7c5a-51fc-9d84-66d67b4f7676 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2427_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2427_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e0ece8ca-f92d-49f5-a0e7-95f097d955ac Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 6f25001a-f890-4fd0-a994-e62a9ea5c6f3 Informed Consent 1606 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2427 60 false '-- '-- '-- '-- -21940 '-- 4444344c-f573-5cad-9e24-348cf054c8ca '-- not reported female '-- '-- '-- '-- white TCGA-29-2427_demographic Alive '-- '-- '-- '-- 21940 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1900.0 '-- '-- da1f114e-7c5a-51fc-9d84-66d67b4f7676 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2427_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 157 73 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- 940.0 mg '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-2427_treatment5 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 5640 '-- mg '-- '-- '-- '-- e4ff42ee-bdf7-4986-93db-9c9e9b9da486 '-- yes '-- '-- Chemotherapy +TCGA-OV 6f25001a-f890-4fd0-a994-e62a9ea5c6f3 Informed Consent 1606 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2427 60 false '-- '-- '-- '-- -21940 '-- 4444344c-f573-5cad-9e24-348cf054c8ca '-- not reported female '-- '-- '-- '-- white TCGA-29-2427_demographic Alive '-- '-- '-- '-- 21940 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1900.0 '-- '-- da1f114e-7c5a-51fc-9d84-66d67b4f7676 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2427_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1690 1584 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-2427_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- f62080ff-0e0b-4408-ac0d-1eef7653fb96 '-- yes '-- '-- Chemotherapy +TCGA-OV 6f592f17-e00b-4d04-a45b-d9d4cf4c3075 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1644 48 false '-- '-- '-- '-- -17725 1487 5e88ecd0-4501-5888-ac4a-15547eb40f46 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1644_demographic Dead '-- '-- '-- '-- 18359 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 634 '-- '-- '-- 2baee9d7-73ed-4ebc-861a-517a4de5372c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1644_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1644_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1644_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 351c0e11-84ba-4a8b-a6a2-5c2c16965d35 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 6f592f17-e00b-4d04-a45b-d9d4cf4c3075 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1644 48 false '-- '-- '-- '-- -17725 1487 5e88ecd0-4501-5888-ac4a-15547eb40f46 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1644_demographic Dead '-- '-- '-- '-- 18359 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 634 '-- '-- '-- 2baee9d7-73ed-4ebc-861a-517a4de5372c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1644_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1644_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1644_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ab156ffa-5fad-4c38-bee2-0b5ce19d6de5 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 6f592f17-e00b-4d04-a45b-d9d4cf4c3075 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1644 48 false '-- '-- '-- '-- -17725 1487 5e88ecd0-4501-5888-ac4a-15547eb40f46 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1644_demographic Dead '-- '-- '-- '-- 17725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1487.0 '-- '-- 59bfe5bd-7603-5525-a4fc-b2e4dad0cacd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-04-1644_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- 661 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1644_treatment5 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 83be2561-1f06-4133-8bc0-1d6ecf154d7b '-- yes '-- '-- Chemotherapy +TCGA-OV 6f592f17-e00b-4d04-a45b-d9d4cf4c3075 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1644 48 false '-- '-- '-- '-- -17725 1487 5e88ecd0-4501-5888-ac4a-15547eb40f46 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1644_demographic Dead '-- '-- '-- '-- 17725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1487.0 '-- '-- 59bfe5bd-7603-5525-a4fc-b2e4dad0cacd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-04-1644_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- 661 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1644_treatment2 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 91251d95-4d7f-43e6-bd69-6e489b34be1b '-- yes '-- '-- Chemotherapy +TCGA-OV 6f592f17-e00b-4d04-a45b-d9d4cf4c3075 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1644 48 false '-- '-- '-- '-- -17725 1487 5e88ecd0-4501-5888-ac4a-15547eb40f46 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1644_demographic Dead '-- '-- '-- '-- 17725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1487.0 '-- '-- 59bfe5bd-7603-5525-a4fc-b2e4dad0cacd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-04-1644_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1644_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9de6628f-531b-4cf7-ba3c-53ff3db98c73 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 6f592f17-e00b-4d04-a45b-d9d4cf4c3075 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1644 48 false '-- '-- '-- '-- -17725 1487 5e88ecd0-4501-5888-ac4a-15547eb40f46 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1644_demographic Dead '-- '-- '-- '-- 17725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1487.0 '-- '-- 59bfe5bd-7603-5525-a4fc-b2e4dad0cacd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-04-1644_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 221 17 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1644_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- e1160c07-4f0d-47b6-b4eb-3e6b7a7caa06 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6f592f17-e00b-4d04-a45b-d9d4cf4c3075 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1644 48 false '-- '-- '-- '-- -17725 1487 5e88ecd0-4501-5888-ac4a-15547eb40f46 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1644_demographic Dead '-- '-- '-- '-- 17725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1487.0 '-- '-- 59bfe5bd-7603-5525-a4fc-b2e4dad0cacd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-04-1644_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 221 113 '-- '-- '-- '-- '-- '-- '-- 4 '-- 300.0 mg '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1644_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1208 '-- mg '-- '-- '-- '-- e2589e38-1fec-55fe-b7a8-a4a861eb8227 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6f592f17-e00b-4d04-a45b-d9d4cf4c3075 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1644 48 false '-- '-- '-- '-- -17725 1487 5e88ecd0-4501-5888-ac4a-15547eb40f46 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1644_demographic Dead '-- '-- '-- '-- 17725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1487.0 '-- '-- 59bfe5bd-7603-5525-a4fc-b2e4dad0cacd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-04-1644_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 120 17 '-- '-- '-- '-- '-- '-- '-- 4 '-- 2704.0 mg '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1644_treatment3 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 12432 '-- mg '-- '-- '-- '-- f0f98f2e-6c6b-4323-9653-9bb456d1f964 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26994 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 694 '-- '-- '-- 657d1f02-4f97-466e-b3f4-266e614a648a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1693_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1693_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1693_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4e8d4a77-b68b-42bc-be59-6f9019c67885 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26994 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 694 '-- '-- '-- 657d1f02-4f97-466e-b3f4-266e614a648a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1693_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1693_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1693_treatment18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b871865b-9442-4d67-a3fe-785238f6d626 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 89abaf41-5b8e-4e2e-a9b0-90498ce3093e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1693_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1693_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2050 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1693_treatment21 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 090a9b98-2ded-4ee3-b389-0c917ab75406 '-- yes '-- '-- Surgery, NOS +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 89abaf41-5b8e-4e2e-a9b0-90498ce3093e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1693_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1693_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1693_treatment19 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e62459de-91d8-4093-b8f5-214f71a61722 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 89abaf41-5b8e-4e2e-a9b0-90498ce3093e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1693_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1693_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1693_treatment20 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ebce814a-3518-4602-9994-72872bbeddae '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3096.0 '-- '-- ebc68b2a-3891-5bad-92aa-ae5e37033678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1693_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2058 2027 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1693_treatment8 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 06730ab9-be62-4a51-9c85-ff41dc82be8e '-- yes '-- '-- Chemotherapy +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3096.0 '-- '-- ebc68b2a-3891-5bad-92aa-ae5e37033678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1693_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2331 2270 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1693_treatment '-- '-- '-- '-- '-- '-- Primary Tumor Field '-- '-- '-- '-- '-- '-- '-- '-- 07f20521-78b1-5110-a0ef-d60bc53f10a8 Palliative yes '-- '-- Radiation, External Beam +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3096.0 '-- '-- ebc68b2a-3891-5bad-92aa-ae5e37033678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1693_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2239 2232 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1693_treatment15 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 08100170-1c62-4cb0-b89e-6cabb7561b2a '-- yes '-- '-- Chemotherapy +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3096.0 '-- '-- ebc68b2a-3891-5bad-92aa-ae5e37033678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1693_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- 1300 '-- '-- Progressive Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1693_treatment16 Carboplatin '-- '-- '-- '-- '-- '-- '-- 345 '-- mg '-- '-- '-- '-- 1b79d812-9081-427f-86b9-89a870843a3f '-- yes '-- '-- Chemotherapy +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3096.0 '-- '-- ebc68b2a-3891-5bad-92aa-ae5e37033678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1693_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 191 19 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1693_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3430 '-- mg '-- '-- '-- '-- 1cc1519f-80a5-4acd-806c-79f6b5cb4f72 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3096.0 '-- '-- ebc68b2a-3891-5bad-92aa-ae5e37033678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1693_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- 3124 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-29-1693_treatment7 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 50 '-- mg '-- '-- '-- '-- 28d5c3ce-e9e6-45d7-b401-a5a39ba7bf8b '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3096.0 '-- '-- ebc68b2a-3891-5bad-92aa-ae5e37033678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1693_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1724 1668 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1693_treatment13 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 1375 '-- mg '-- '-- '-- '-- 2ed70ee2-940f-4393-8db7-649bb942658e '-- yes '-- '-- Chemotherapy +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3096.0 '-- '-- ebc68b2a-3891-5bad-92aa-ae5e37033678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1693_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2669 2627 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1693_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 44491a0f-b72b-4b92-8e05-d60bf9897ddb '-- yes '-- '-- Chemotherapy +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3096.0 '-- '-- ebc68b2a-3891-5bad-92aa-ae5e37033678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1693_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 191 19 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1693_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2240 '-- mg '-- '-- '-- '-- 69fed3fd-6901-406c-9f5c-2041f6e2eba9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3096.0 '-- '-- ebc68b2a-3891-5bad-92aa-ae5e37033678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1693_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 3018 2788 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1693_treatment11 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 71d8d1e6-28ee-4c1c-a2a8-219a4f21d8d9 '-- yes '-- '-- Chemotherapy +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3096.0 '-- '-- ebc68b2a-3891-5bad-92aa-ae5e37033678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1693_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 814 717 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1693_treatment14 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 91e6e65d-5da0-4b3e-bf7b-991e4cf51fc8 '-- yes '-- '-- Chemotherapy +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3096.0 '-- '-- ebc68b2a-3891-5bad-92aa-ae5e37033678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1693_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1157 1069 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1693_treatment4 Paclitaxel Poliglumex '-- '-- '-- '-- '-- '-- '-- 300 '-- mg '-- '-- '-- '-- 97fb91f2-6fd5-495b-a6f8-a80eddf44208 '-- yes '-- '-- Chemotherapy +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3096.0 '-- '-- ebc68b2a-3891-5bad-92aa-ae5e37033678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1693_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 814 717 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1693_treatment9 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- be981a65-aaf4-4306-8801-4c8ef2f80bc6 '-- yes '-- '-- Chemotherapy +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3096.0 '-- '-- ebc68b2a-3891-5bad-92aa-ae5e37033678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1693_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1724 1668 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1693_treatment10 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 740 '-- mg '-- '-- '-- '-- c6d1a024-557f-4ca0-b358-0076e79e40fc '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3096.0 '-- '-- ebc68b2a-3891-5bad-92aa-ae5e37033678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1693_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1892 1780 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1693_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 70 '-- mg '-- '-- '-- '-- e5a73016-f4cc-4b5a-8f5b-1c63a97fd748 '-- yes '-- '-- Chemotherapy +TCGA-OV 6fb71a0c-bc50-48c8-acfa-db94be1e151a Informed Consent 2843 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1693 72 false '-- '-- '-- '-- -26300 '-- 0af1dec6-33f4-596f-864c-bc10b4e264f1 '-- not reported female '-- '-- '-- '-- white TCGA-29-1693_demographic Alive '-- '-- '-- '-- 26300 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3096.0 '-- '-- ebc68b2a-3891-5bad-92aa-ae5e37033678 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1693_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- 3124 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1693_treatment12 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 600 '-- mg '-- '-- '-- '-- ebfbf25d-a432-4be9-8a0d-52c0934b57c4 '-- yes Treatment Ongoing '-- Targeted Molecular Therapy +TCGA-OV 6fee41dc-b8a9-4347-8085-b7e05f813ad0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1944 47 false '-- '-- '-- '-- -17207 '-- 1846915b-b3b0-5629-bb73-f78bf2081edf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1944_demographic Alive '-- '-- '-- '-- 17885 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 678 '-- '-- '-- 7ee5a686-dc85-4bf8-8561-7fe214f21100 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-31-1944_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-31-1944_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1944_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 428a0372-28cf-4300-bb59-c773796a7408 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 6fee41dc-b8a9-4347-8085-b7e05f813ad0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1944 47 false '-- '-- '-- '-- -17207 '-- 1846915b-b3b0-5629-bb73-f78bf2081edf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1944_demographic Alive '-- '-- '-- '-- 17885 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 678 '-- '-- '-- 7ee5a686-dc85-4bf8-8561-7fe214f21100 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-31-1944_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-31-1944_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1944_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5903f4f0-8bdb-465f-8d3e-a71667101674 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 6fee41dc-b8a9-4347-8085-b7e05f813ad0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1944 47 false '-- '-- '-- '-- -17207 '-- 1846915b-b3b0-5629-bb73-f78bf2081edf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1944_demographic Alive '-- '-- '-- '-- 17207 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1386.0 '-- '-- b0da2290-ee62-5e0f-a177-72bc672062ec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1944_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 223 153 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-31-1944_treatment9 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 835 '-- mg '-- '-- '-- '-- 2ec697e2-1690-4ca0-8a50-ce0c6760e49e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6fee41dc-b8a9-4347-8085-b7e05f813ad0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1944 47 false '-- '-- '-- '-- -17207 '-- 1846915b-b3b0-5629-bb73-f78bf2081edf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1944_demographic Alive '-- '-- '-- '-- 17207 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1386.0 '-- '-- b0da2290-ee62-5e0f-a177-72bc672062ec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1944_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1944_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2fafb1f7-616a-47d4-a51c-6b76654785c7 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 6fee41dc-b8a9-4347-8085-b7e05f813ad0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1944 47 false '-- '-- '-- '-- -17207 '-- 1846915b-b3b0-5629-bb73-f78bf2081edf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1944_demographic Alive '-- '-- '-- '-- 17207 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1386.0 '-- '-- b0da2290-ee62-5e0f-a177-72bc672062ec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1944_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 841 721 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1944_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3300 '-- mg '-- '-- '-- '-- 4a293448-642f-4287-8ee1-5cf3df537fb7 '-- yes '-- '-- Chemotherapy +TCGA-OV 6fee41dc-b8a9-4347-8085-b7e05f813ad0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1944 47 false '-- '-- '-- '-- -17207 '-- 1846915b-b3b0-5629-bb73-f78bf2081edf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1944_demographic Alive '-- '-- '-- '-- 17207 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1386.0 '-- '-- b0da2290-ee62-5e0f-a177-72bc672062ec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1944_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- 1032 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-31-1944_treatment4 Olaparib '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 742566b5-34e3-40b6-8c99-132a0cf7f3ce '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 6fee41dc-b8a9-4347-8085-b7e05f813ad0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1944 47 false '-- '-- '-- '-- -17207 '-- 1846915b-b3b0-5629-bb73-f78bf2081edf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1944_demographic Alive '-- '-- '-- '-- 17207 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1386.0 '-- '-- b0da2290-ee62-5e0f-a177-72bc672062ec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1944_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 223 153 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-31-1944_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 345 '-- mg '-- '-- '-- '-- af77367c-9795-421a-9531-8b047b654090 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6fee41dc-b8a9-4347-8085-b7e05f813ad0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1944 47 false '-- '-- '-- '-- -17207 '-- 1846915b-b3b0-5629-bb73-f78bf2081edf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1944_demographic Alive '-- '-- '-- '-- 17207 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1386.0 '-- '-- b0da2290-ee62-5e0f-a177-72bc672062ec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1944_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 944 479 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1944_treatment8 Tamoxifen '-- '-- '-- '-- '-- '-- '-- 9140 '-- mg '-- '-- '-- '-- afc576ae-1f1d-43e1-9287-523ba34d30aa '-- yes '-- '-- Hormone Therapy +TCGA-OV 6fee41dc-b8a9-4347-8085-b7e05f813ad0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1944 47 false '-- '-- '-- '-- -17207 '-- 1846915b-b3b0-5629-bb73-f78bf2081edf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1944_demographic Alive '-- '-- '-- '-- 17207 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1386.0 '-- '-- b0da2290-ee62-5e0f-a177-72bc672062ec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1944_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 126 7 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1944_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4200 '-- mg '-- '-- '-- '-- b4b6a455-43d7-4c6b-95e8-407c9243221d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6fee41dc-b8a9-4347-8085-b7e05f813ad0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1944 47 false '-- '-- '-- '-- -17207 '-- 1846915b-b3b0-5629-bb73-f78bf2081edf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1944_demographic Alive '-- '-- '-- '-- 17207 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1386.0 '-- '-- b0da2290-ee62-5e0f-a177-72bc672062ec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1944_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 1099 944 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-31-1944_treatment Megestrol Acetate '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b53485cf-2228-50ab-a344-6deb35087b3f Not Reported yes '-- '-- Chemotherapy +TCGA-OV 6fee41dc-b8a9-4347-8085-b7e05f813ad0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1944 47 false '-- '-- '-- '-- -17207 '-- 1846915b-b3b0-5629-bb73-f78bf2081edf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1944_demographic Alive '-- '-- '-- '-- 17207 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1386.0 '-- '-- b0da2290-ee62-5e0f-a177-72bc672062ec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1944_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 841 721 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1944_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1650 '-- mg '-- '-- '-- '-- d9d08884-2b28-4ac1-ab35-ecf2a6a39520 '-- yes '-- '-- Chemotherapy +TCGA-OV 6fee41dc-b8a9-4347-8085-b7e05f813ad0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1944 47 false '-- '-- '-- '-- -17207 '-- 1846915b-b3b0-5629-bb73-f78bf2081edf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1944_demographic Alive '-- '-- '-- '-- 17207 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1386.0 '-- '-- b0da2290-ee62-5e0f-a177-72bc672062ec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1944_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 126 7 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1944_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1650 '-- mg '-- '-- '-- '-- f2fdebc0-6ca8-424d-bc5e-aa6c44bfbf7a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 6fee41dc-b8a9-4347-8085-b7e05f813ad0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1944 47 false '-- '-- '-- '-- -17207 '-- 1846915b-b3b0-5629-bb73-f78bf2081edf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1944_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bac9bba2-b0d4-41da-b6a9-09f783847b56 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-31-1944_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-31-1944_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1944_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dc135752-22b6-4ea0-8a43-e6f62472e6fa '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 6fee41dc-b8a9-4347-8085-b7e05f813ad0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1944 47 false '-- '-- '-- '-- -17207 '-- 1846915b-b3b0-5629-bb73-f78bf2081edf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1944_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bac9bba2-b0d4-41da-b6a9-09f783847b56 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-31-1944_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-31-1944_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1944_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e60fc630-2315-4d87-89e7-0f991cc40833 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 6fee41dc-b8a9-4347-8085-b7e05f813ad0 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1944 47 false '-- '-- '-- '-- -17207 '-- 1846915b-b3b0-5629-bb73-f78bf2081edf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1944_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bac9bba2-b0d4-41da-b6a9-09f783847b56 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-31-1944_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-31-1944_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 701 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1944_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ea7c5df7-e12a-4142-9d8e-c33326eff24a '-- yes '-- '-- Surgery, NOS +TCGA-OV 700e91bb-d675-41b2-bbbd-935767c7b447 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1118 45 false '-- '-- '-- '-- -16471 '-- 9365e233-5048-5e21-8118-2106e29f75eb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1118_demographic Alive '-- '-- '-- '-- 16471 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2616.0 '-- '-- 3e654e05-d3e9-57f4-9bda-b31211ca6a22 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1118_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1118_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 00a2cf45-7811-4d00-9acf-7c896bc7c2af Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 700e91bb-d675-41b2-bbbd-935767c7b447 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1118 45 false '-- '-- '-- '-- -16471 '-- 9365e233-5048-5e21-8118-2106e29f75eb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1118_demographic Alive '-- '-- '-- '-- 16471 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2616.0 '-- '-- 3e654e05-d3e9-57f4-9bda-b31211ca6a22 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1118_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 196 56 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-23-1118_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 300 '-- mg '-- '-- '-- '-- 85cb3d17-bf01-575b-b9f6-6a789b2f494f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7016714b-6af8-45dd-8341-1493927e5515 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0936 69 false '-- '-- '-- '-- -25454 1123 014b5a3f-ce4b-5e1b-bb9f-caa0d307e19f '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-10-0936_demographic Dead '-- '-- '-- '-- 25454 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1123.0 '-- '-- 68108d81-543a-5c73-a998-dd9bd6fdcd9e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0936_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0936_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 21b448ee-c075-4f27-a05e-bbf65290d152 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 7016714b-6af8-45dd-8341-1493927e5515 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0936 69 false '-- '-- '-- '-- -25454 1123 014b5a3f-ce4b-5e1b-bb9f-caa0d307e19f '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-10-0936_demographic Dead '-- '-- '-- '-- 25454 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1123.0 '-- '-- 68108d81-543a-5c73-a998-dd9bd6fdcd9e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0936_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 936 810 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0936_treatment8 Docetaxel '-- '-- '-- '-- '-- '-- '-- 750 '-- mg/m2 '-- '-- '-- '-- 4187d75a-cf75-466e-8290-9b30ae1bd317 '-- yes '-- '-- Chemotherapy +TCGA-OV 7016714b-6af8-45dd-8341-1493927e5515 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0936 69 false '-- '-- '-- '-- -25454 1123 014b5a3f-ce4b-5e1b-bb9f-caa0d307e19f '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-10-0936_demographic Dead '-- '-- '-- '-- 25454 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1123.0 '-- '-- 68108d81-543a-5c73-a998-dd9bd6fdcd9e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0936_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 800 678 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0936_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 225 '-- mg/m2 '-- '-- '-- '-- 49df81ca-e27f-46e0-9bb7-dd46346681e9 '-- yes '-- '-- Chemotherapy +TCGA-OV 7016714b-6af8-45dd-8341-1493927e5515 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0936 69 false '-- '-- '-- '-- -25454 1123 014b5a3f-ce4b-5e1b-bb9f-caa0d307e19f '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-10-0936_demographic Dead '-- '-- '-- '-- 25454 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1123.0 '-- '-- 68108d81-543a-5c73-a998-dd9bd6fdcd9e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0936_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 678 621 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0936_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1035 '-- mg/m2 '-- '-- '-- '-- 5b25cd96-198d-4a30-9b20-1a649cd44343 '-- yes '-- '-- Chemotherapy +TCGA-OV 7016714b-6af8-45dd-8341-1493927e5515 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0936 69 false '-- '-- '-- '-- -25454 1123 014b5a3f-ce4b-5e1b-bb9f-caa0d307e19f '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-10-0936_demographic Dead '-- '-- '-- '-- 25454 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1123.0 '-- '-- 68108d81-543a-5c73-a998-dd9bd6fdcd9e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0936_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 1007 939 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0936_treatment Gemcitabine '-- '-- '-- '-- '-- '-- '-- 11200 '-- mg/m2 '-- '-- '-- '-- 7402965a-bc8e-5082-b49c-5c5fa25f5a84 '-- yes '-- '-- Chemotherapy +TCGA-OV 7016714b-6af8-45dd-8341-1493927e5515 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0936 69 false '-- '-- '-- '-- -25454 1123 014b5a3f-ce4b-5e1b-bb9f-caa0d307e19f '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-10-0936_demographic Dead '-- '-- '-- '-- 25454 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1123.0 '-- '-- 68108d81-543a-5c73-a998-dd9bd6fdcd9e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0936_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 194 89 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0936_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1800 '-- mg/m2 '-- '-- '-- '-- 9cc20bf0-70d4-47d7-8ee6-e1347b4ca761 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7016714b-6af8-45dd-8341-1493927e5515 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0936 69 false '-- '-- '-- '-- -25454 1123 014b5a3f-ce4b-5e1b-bb9f-caa0d307e19f '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-10-0936_demographic Dead '-- '-- '-- '-- 25454 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1123.0 '-- '-- 68108d81-543a-5c73-a998-dd9bd6fdcd9e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0936_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 62 20 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0936_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1615 '-- mg/m2 '-- '-- '-- '-- b4fb5d2d-e65e-403c-9f45-ca07e0b32e17 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7016714b-6af8-45dd-8341-1493927e5515 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0936 69 false '-- '-- '-- '-- -25454 1123 014b5a3f-ce4b-5e1b-bb9f-caa0d307e19f '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-10-0936_demographic Dead '-- '-- '-- '-- 25454 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1123.0 '-- '-- 68108d81-543a-5c73-a998-dd9bd6fdcd9e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0936_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 615 237 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0936_treatment7 Letrozole '-- '-- '-- '-- '-- '-- '-- 3 '-- mg/day '-- '-- '-- '-- c945120d-6fdf-42fc-860e-cd416ffdd1c7 '-- yes '-- '-- Hormone Therapy +TCGA-OV 7016714b-6af8-45dd-8341-1493927e5515 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0936 69 false '-- '-- '-- '-- -25454 1123 014b5a3f-ce4b-5e1b-bb9f-caa0d307e19f '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-10-0936_demographic Dead '-- '-- '-- '-- 25454 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1123.0 '-- '-- 68108d81-543a-5c73-a998-dd9bd6fdcd9e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0936_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 194 89 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0936_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2280 '-- mg/m2 '-- '-- '-- '-- db655d89-937e-44e5-896d-02941ad37508 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 708eec28-2348-4e15-b98c-8c6f9d057b1e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2355 58 false '-- '-- '-- '-- '-- 65 ea0a2db7-aa6f-51d6-b99f-2e20666781ef '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-59-2355_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 65.0 '-- '-- 399bd74f-6959-50b6-9977-29d7ab3b4588 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-59-2355_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-2355_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 53746f06-6b6e-4fe2-b720-ebe5c21ae792 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 708eec28-2348-4e15-b98c-8c6f9d057b1e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2355 58 false '-- '-- '-- '-- '-- 65 ea0a2db7-aa6f-51d6-b99f-2e20666781ef '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-59-2355_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 65.0 '-- '-- 399bd74f-6959-50b6-9977-29d7ab3b4588 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-59-2355_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-2355_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c74b03d1-9ee4-5d0f-a5d0-39b066358ffd Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 70fe08bd-a0b4-4a88-b82e-813b176f8e40 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-23-1116 83 false '-- '-- '-- '-- -30464 592 4b9f2013-cf47-571e-8a15-8f1207cd8a5a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1116_demographic Dead '-- '-- '-- '-- 30750 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 286 '-- '-- '-- 02ff8b29-727c-4cb9-b974-9af95c0775ba false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1116_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1116_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1116_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 134306c5-e9d4-4e80-a108-dadd26d8de61 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 70fe08bd-a0b4-4a88-b82e-813b176f8e40 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-23-1116 83 false '-- '-- '-- '-- -30464 592 4b9f2013-cf47-571e-8a15-8f1207cd8a5a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1116_demographic Dead '-- '-- '-- '-- 30750 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 286 '-- '-- '-- 02ff8b29-727c-4cb9-b974-9af95c0775ba false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1116_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1116_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1116_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 968d130a-b182-417b-ae15-e2a791eace9d '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 70fe08bd-a0b4-4a88-b82e-813b176f8e40 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-23-1116 83 false '-- '-- '-- '-- -30464 592 4b9f2013-cf47-571e-8a15-8f1207cd8a5a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1116_demographic Dead '-- '-- '-- '-- 30750 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 286 '-- '-- '-- 76041e85-e64e-46d3-a72d-5e36c781c829 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1116_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1116_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1116_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2fca8207-b846-494c-96fe-a4d3e48db341 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 70fe08bd-a0b4-4a88-b82e-813b176f8e40 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-23-1116 83 false '-- '-- '-- '-- -30464 592 4b9f2013-cf47-571e-8a15-8f1207cd8a5a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1116_demographic Dead '-- '-- '-- '-- 30750 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 286 '-- '-- '-- 76041e85-e64e-46d3-a72d-5e36c781c829 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1116_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1116_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1116_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 854cb202-f2fd-41c9-915f-a6a00d6cd61a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 70fe08bd-a0b4-4a88-b82e-813b176f8e40 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-23-1116 83 false '-- '-- '-- '-- -30464 592 4b9f2013-cf47-571e-8a15-8f1207cd8a5a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1116_demographic Dead '-- '-- '-- '-- 30464 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 592.0 '-- '-- d0a829b8-ce2d-5f29-8ac9-e83d900af073 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1116_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 187 19 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-23-1116_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2100 '-- mg '-- '-- '-- '-- 05a932e0-1f72-458e-aaaf-a1b8c7d52b8d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 70fe08bd-a0b4-4a88-b82e-813b176f8e40 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-23-1116 83 false '-- '-- '-- '-- -30464 592 4b9f2013-cf47-571e-8a15-8f1207cd8a5a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1116_demographic Dead '-- '-- '-- '-- 30464 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 592.0 '-- '-- d0a829b8-ce2d-5f29-8ac9-e83d900af073 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1116_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1116_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0f3d758b-3d45-467c-8cb3-d5d6f3431330 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 70fe08bd-a0b4-4a88-b82e-813b176f8e40 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-23-1116 83 false '-- '-- '-- '-- -30464 592 4b9f2013-cf47-571e-8a15-8f1207cd8a5a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1116_demographic Dead '-- '-- '-- '-- 30464 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 592.0 '-- '-- d0a829b8-ce2d-5f29-8ac9-e83d900af073 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1116_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 418 306 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1116_treatment4 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 11028 '-- mg '-- '-- '-- '-- 1690dd07-d671-4251-bf8c-ea3b122a4b42 '-- yes '-- '-- Chemotherapy +TCGA-OV 70fe08bd-a0b4-4a88-b82e-813b176f8e40 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-23-1116 83 false '-- '-- '-- '-- -30464 592 4b9f2013-cf47-571e-8a15-8f1207cd8a5a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1116_demographic Dead '-- '-- '-- '-- 30464 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 592.0 '-- '-- d0a829b8-ce2d-5f29-8ac9-e83d900af073 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1116_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 187 19 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-23-1116_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1746 '-- mg '-- '-- '-- '-- 2841e495-9897-5d46-ae74-44b8a692f808 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 70fe08bd-a0b4-4a88-b82e-813b176f8e40 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-23-1116 83 false '-- '-- '-- '-- -30464 592 4b9f2013-cf47-571e-8a15-8f1207cd8a5a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1116_demographic Dead '-- '-- '-- '-- 30464 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 592.0 '-- '-- d0a829b8-ce2d-5f29-8ac9-e83d900af073 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1116_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 418 306 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1116_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1530 '-- mg '-- '-- '-- '-- 6b2070ab-8677-498e-8f54-daff342aa54b '-- yes '-- '-- Chemotherapy +TCGA-OV 71faa2c1-0d5b-4dcc-bdf9-f2405f29907c Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2113 53 false '-- '-- '-- '-- -19722 676 74216962-1bf9-5e6b-8285-3865c6655eac '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2113_demographic Dead '-- '-- '-- '-- 20013 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 291 '-- '-- '-- 5207d1ec-7edf-4f0c-88d3-128b8f193353 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2113_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2113_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2113_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 37b0adbb-686e-44da-8c83-38910836aee6 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 71faa2c1-0d5b-4dcc-bdf9-f2405f29907c Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2113 53 false '-- '-- '-- '-- -19722 676 74216962-1bf9-5e6b-8285-3865c6655eac '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2113_demographic Dead '-- '-- '-- '-- 20013 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 291 '-- '-- '-- 5207d1ec-7edf-4f0c-88d3-128b8f193353 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2113_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2113_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2113_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3999740a-8498-424a-9bee-deeb4ebd66ef '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 71faa2c1-0d5b-4dcc-bdf9-f2405f29907c Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2113 53 false '-- '-- '-- '-- -19722 676 74216962-1bf9-5e6b-8285-3865c6655eac '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2113_demographic Dead '-- '-- '-- '-- 19722 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 676.0 '-- '-- 6b483d36-30fc-5513-8cba-f768ad1d62e3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2113_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 143 49 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2113_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4026 '-- mg '-- '-- '-- '-- 7d12c689-2f92-4b42-aae7-9395aa2cde89 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 71faa2c1-0d5b-4dcc-bdf9-f2405f29907c Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2113 53 false '-- '-- '-- '-- -19722 676 74216962-1bf9-5e6b-8285-3865c6655eac '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2113_demographic Dead '-- '-- '-- '-- 19722 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 676.0 '-- '-- 6b483d36-30fc-5513-8cba-f768ad1d62e3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2113_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2113_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d284c80a-fc0f-44ce-8ee9-4c63abcf1ec7 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 71faa2c1-0d5b-4dcc-bdf9-f2405f29907c Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2113 53 false '-- '-- '-- '-- -19722 676 74216962-1bf9-5e6b-8285-3865c6655eac '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2113_demographic Dead '-- '-- '-- '-- 19722 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 676.0 '-- '-- 6b483d36-30fc-5513-8cba-f768ad1d62e3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2113_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 392 336 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-2113_treatment2 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 418 '-- mg/m2 '-- '-- '-- '-- e421154f-3386-458f-bcf5-e01398f6d950 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 71faa2c1-0d5b-4dcc-bdf9-f2405f29907c Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2113 53 false '-- '-- '-- '-- -19722 676 74216962-1bf9-5e6b-8285-3865c6655eac '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2113_demographic Dead '-- '-- '-- '-- 19722 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 676.0 '-- '-- 6b483d36-30fc-5513-8cba-f768ad1d62e3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2113_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 143 49 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2113_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1480 '-- mg/m2 '-- '-- '-- '-- f215980e-01ac-56cb-906b-bf98d6d20a30 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7248cd60-be22-44bc-bc58-f644db0940a2 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1489 70 false '-- '-- '-- '-- -25768 2553 39bca6ab-f7fe-59fd-b376-b16f300c341d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1489_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 18019ed5-8e39-416a-9f1a-d82eab745478 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1489_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1489_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 833 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1489_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 194bb7f1-f5a5-444a-8fc6-e2ef1b3e2397 '-- yes '-- '-- Surgery, NOS +TCGA-OV 7248cd60-be22-44bc-bc58-f644db0940a2 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1489 70 false '-- '-- '-- '-- -25768 2553 39bca6ab-f7fe-59fd-b376-b16f300c341d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1489_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 18019ed5-8e39-416a-9f1a-d82eab745478 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1489_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1489_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1489_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 24623334-22f3-429b-ad25-6e485766f467 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 7248cd60-be22-44bc-bc58-f644db0940a2 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1489 70 false '-- '-- '-- '-- -25768 2553 39bca6ab-f7fe-59fd-b376-b16f300c341d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1489_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 18019ed5-8e39-416a-9f1a-d82eab745478 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1489_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1489_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1489_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 63a1427d-732c-45b9-885c-24fe7162f353 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7248cd60-be22-44bc-bc58-f644db0940a2 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1489 70 false '-- '-- '-- '-- -25768 2553 39bca6ab-f7fe-59fd-b376-b16f300c341d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1489_demographic Dead '-- '-- '-- '-- 26574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 806 '-- '-- '-- 82d0599d-6479-4f88-9483-90f96e21a1d8 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1489_diagnosis4 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1489_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 7248cd60-be22-44bc-bc58-f644db0940a2 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1489 70 false '-- '-- '-- '-- -25768 2553 39bca6ab-f7fe-59fd-b376-b16f300c341d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1489_demographic Dead '-- '-- '-- '-- 26574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 806 '-- '-- '-- e6cf6304-c127-4ea2-b90e-df911bb3f4a9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1489_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1489_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1489_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6e48f2ec-5e8b-41a2-bcbe-5128053b645d '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 7248cd60-be22-44bc-bc58-f644db0940a2 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1489 70 false '-- '-- '-- '-- -25768 2553 39bca6ab-f7fe-59fd-b376-b16f300c341d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1489_demographic Dead '-- '-- '-- '-- 26574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 806 '-- '-- '-- e6cf6304-c127-4ea2-b90e-df911bb3f4a9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1489_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1489_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1489_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bc55a2ee-f280-4248-b585-57b834b81f45 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7248cd60-be22-44bc-bc58-f644db0940a2 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1489 70 false '-- '-- '-- '-- -25768 2553 39bca6ab-f7fe-59fd-b376-b16f300c341d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1489_demographic Dead '-- '-- '-- '-- 25768 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2553.0 '-- '-- f903544f-b690-54a3-b3e5-faa412f474d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1489_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 868 867 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1489_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 61c1513c-00c9-47b3-95a0-2488fbed53e1 '-- yes '-- '-- Chemotherapy +TCGA-OV 7248cd60-be22-44bc-bc58-f644db0940a2 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1489 70 false '-- '-- '-- '-- -25768 2553 39bca6ab-f7fe-59fd-b376-b16f300c341d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1489_demographic Dead '-- '-- '-- '-- 25768 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2553.0 '-- '-- f903544f-b690-54a3-b3e5-faa412f474d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1489_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1489_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 98027d90-2aa8-4085-bb5b-306c3878fe7e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 7248cd60-be22-44bc-bc58-f644db0940a2 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1489 70 false '-- '-- '-- '-- -25768 2553 39bca6ab-f7fe-59fd-b376-b16f300c341d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1489_demographic Dead '-- '-- '-- '-- 25768 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2553.0 '-- '-- f903544f-b690-54a3-b3e5-faa412f474d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1489_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1012 '-- '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1489_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- a718bb81-ae6e-40b8-9cc9-77aa94436d7f '-- yes '-- '-- Chemotherapy +TCGA-OV 7248cd60-be22-44bc-bc58-f644db0940a2 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1489 70 false '-- '-- '-- '-- -25768 2553 39bca6ab-f7fe-59fd-b376-b16f300c341d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1489_demographic Dead '-- '-- '-- '-- 25768 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2553.0 '-- '-- f903544f-b690-54a3-b3e5-faa412f474d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1489_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1012 '-- '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- 60.0 mg/m2 '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1489_treatment6 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a853ca71-365b-4b60-bb4a-1d99ed911365 '-- yes '-- '-- Chemotherapy +TCGA-OV 7248cd60-be22-44bc-bc58-f644db0940a2 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1489 70 false '-- '-- '-- '-- -25768 2553 39bca6ab-f7fe-59fd-b376-b16f300c341d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1489_demographic Dead '-- '-- '-- '-- 25768 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2553.0 '-- '-- f903544f-b690-54a3-b3e5-faa412f474d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1489_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 868 867 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1489_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aa34f453-e474-49bc-ad3e-38d493b0b34b '-- yes '-- '-- Chemotherapy +TCGA-OV 7248cd60-be22-44bc-bc58-f644db0940a2 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1489 70 false '-- '-- '-- '-- -25768 2553 39bca6ab-f7fe-59fd-b376-b16f300c341d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1489_demographic Dead '-- '-- '-- '-- 25768 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2553.0 '-- '-- f903544f-b690-54a3-b3e5-faa412f474d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1489_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 181 41 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1489_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- ad9e7582-766f-591a-8ef5-78df3f6d07be Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7248cd60-be22-44bc-bc58-f644db0940a2 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1489 70 false '-- '-- '-- '-- -25768 2553 39bca6ab-f7fe-59fd-b376-b16f300c341d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1489_demographic Dead '-- '-- '-- '-- 25768 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2553.0 '-- '-- f903544f-b690-54a3-b3e5-faa412f474d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1489_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 272 272 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-1489_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- b9f3aed0-8d2a-49bd-afa6-a5159688edf2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7248cd60-be22-44bc-bc58-f644db0940a2 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1489 70 false '-- '-- '-- '-- -25768 2553 39bca6ab-f7fe-59fd-b376-b16f300c341d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1489_demographic Dead '-- '-- '-- '-- 25768 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2553.0 '-- '-- f903544f-b690-54a3-b3e5-faa412f474d7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1489_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 181 41 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1489_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bb8b9bad-e27f-48a0-b43e-db3b867a790f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 72c40fba-f502-489b-ad87-843f52655894 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1738 60 false '-- '-- '-- '-- -21965 1089 b3cb6309-cf5e-5396-ad1d-840561b1e2ed '-- not reported female '-- '-- '-- '-- black or african american TCGA-61-1738_demographic Dead '-- '-- '-- '-- 21965 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1089.0 '-- '-- 5ab9e1b0-8ef3-58e0-9d0d-da2727fd5dc1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1738_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 338 287 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1738_treatment Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 210 '-- mg '-- '-- '-- '-- 1eaf6e5c-6627-55fb-8f09-f6de63ab34d8 '-- yes '-- '-- Chemotherapy +TCGA-OV 72c40fba-f502-489b-ad87-843f52655894 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1738 60 false '-- '-- '-- '-- -21965 1089 b3cb6309-cf5e-5396-ad1d-840561b1e2ed '-- not reported female '-- '-- '-- '-- black or african american TCGA-61-1738_demographic Dead '-- '-- '-- '-- 21965 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1089.0 '-- '-- 5ab9e1b0-8ef3-58e0-9d0d-da2727fd5dc1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1738_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 658 422 '-- '-- Recurrent Disease '-- '-- '-- '-- 29 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1738_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- 191 '-- mg '-- '-- '-- '-- 2f154cd8-20bb-47b8-9ab2-8da6e916fc49 '-- yes '-- '-- Chemotherapy +TCGA-OV 72c40fba-f502-489b-ad87-843f52655894 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1738 60 false '-- '-- '-- '-- -21965 1089 b3cb6309-cf5e-5396-ad1d-840561b1e2ed '-- not reported female '-- '-- '-- '-- black or african american TCGA-61-1738_demographic Dead '-- '-- '-- '-- 21965 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1089.0 '-- '-- 5ab9e1b0-8ef3-58e0-9d0d-da2727fd5dc1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1738_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 135 21 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1738_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2376 '-- mg '-- '-- '-- '-- 39c98bee-dbb0-4507-ba04-30016aa477d2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 72c40fba-f502-489b-ad87-843f52655894 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1738 60 false '-- '-- '-- '-- -21965 1089 b3cb6309-cf5e-5396-ad1d-840561b1e2ed '-- not reported female '-- '-- '-- '-- black or african american TCGA-61-1738_demographic Dead '-- '-- '-- '-- 21965 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1089.0 '-- '-- 5ab9e1b0-8ef3-58e0-9d0d-da2727fd5dc1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1738_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 843 709 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1738_treatment2 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 6200 '-- mg/m2 '-- '-- '-- '-- 50d70d6a-8dfa-48a2-afff-0fe8ed742999 '-- yes '-- '-- Chemotherapy +TCGA-OV 72c40fba-f502-489b-ad87-843f52655894 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1738 60 false '-- '-- '-- '-- -21965 1089 b3cb6309-cf5e-5396-ad1d-840561b1e2ed '-- not reported female '-- '-- '-- '-- black or african american TCGA-61-1738_demographic Dead '-- '-- '-- '-- 21965 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1089.0 '-- '-- 5ab9e1b0-8ef3-58e0-9d0d-da2727fd5dc1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1738_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 135 21 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1738_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 517230c2-9700-472a-bd87-7b1513a42428 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 72c40fba-f502-489b-ad87-843f52655894 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1738 60 false '-- '-- '-- '-- -21965 1089 b3cb6309-cf5e-5396-ad1d-840561b1e2ed '-- not reported female '-- '-- '-- '-- black or african american TCGA-61-1738_demographic Dead '-- '-- '-- '-- 21965 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1089.0 '-- '-- 5ab9e1b0-8ef3-58e0-9d0d-da2727fd5dc1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1738_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 276 198 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-61-1738_treatment4 Cisplatin '-- '-- '-- '-- '-- '-- '-- 364 '-- mg '-- '-- '-- '-- 67076a1e-6405-43b8-a413-023cf1f7a7cb Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 72c40fba-f502-489b-ad87-843f52655894 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1738 60 false '-- '-- '-- '-- -21965 1089 b3cb6309-cf5e-5396-ad1d-840561b1e2ed '-- not reported female '-- '-- '-- '-- black or african american TCGA-61-1738_demographic Dead '-- '-- '-- '-- 21965 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1089.0 '-- '-- 5ab9e1b0-8ef3-58e0-9d0d-da2727fd5dc1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1738_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1738_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d73ef7e9-7729-4ba3-a534-4bc645fb97fd Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 72c40fba-f502-489b-ad87-843f52655894 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1738 60 false '-- '-- '-- '-- -21965 1089 b3cb6309-cf5e-5396-ad1d-840561b1e2ed '-- not reported female '-- '-- '-- '-- black or african american TCGA-61-1738_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8c70bf54-ecb2-4f01-ae93-c49e63b8d2f2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1738_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1738_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1738_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 055bdff6-77d1-405b-a47f-9f544fdd4c9c '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 72c40fba-f502-489b-ad87-843f52655894 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1738 60 false '-- '-- '-- '-- -21965 1089 b3cb6309-cf5e-5396-ad1d-840561b1e2ed '-- not reported female '-- '-- '-- '-- black or african american TCGA-61-1738_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8c70bf54-ecb2-4f01-ae93-c49e63b8d2f2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1738_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1738_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1738_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 32f8d6a2-90ba-44bf-9bed-d235d0c50732 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 72c40fba-f502-489b-ad87-843f52655894 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1738 60 false '-- '-- '-- '-- -21965 1089 b3cb6309-cf5e-5396-ad1d-840561b1e2ed '-- not reported female '-- '-- '-- '-- black or african american TCGA-61-1738_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8c70bf54-ecb2-4f01-ae93-c49e63b8d2f2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1738_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1738_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 907 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1738_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 76f55602-c354-4f6c-a346-0b53b3151486 '-- yes '-- '-- Surgery, NOS +TCGA-OV 72c40fba-f502-489b-ad87-843f52655894 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1738 60 false '-- '-- '-- '-- -21965 1089 b3cb6309-cf5e-5396-ad1d-840561b1e2ed '-- not reported female '-- '-- '-- '-- black or african american TCGA-61-1738_demographic Dead '-- '-- '-- '-- 22241 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 276 '-- '-- '-- e4501c72-9953-4ae3-8760-c941dec715fb false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1738_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1738_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1738_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 177eef00-a12b-4704-ae61-a7894bd44acb '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 72c40fba-f502-489b-ad87-843f52655894 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1738 60 false '-- '-- '-- '-- -21965 1089 b3cb6309-cf5e-5396-ad1d-840561b1e2ed '-- not reported female '-- '-- '-- '-- black or african american TCGA-61-1738_demographic Dead '-- '-- '-- '-- 22241 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 276 '-- '-- '-- e4501c72-9953-4ae3-8760-c941dec715fb false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1738_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1738_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1738_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3ee7a912-61d1-4e74-a623-e16ccbcc850f '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 7413c891-f74e-456f-bc70-69c83fb53c70 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2392 75 false '-- '-- '-- '-- -27667 31 0239e132-69ad-584f-a099-4a1b626fdc4d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2392_demographic Dead '-- '-- '-- '-- 27667 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 31.0 '-- '-- 99ca4e5c-3912-5835-8d01-9492e0b5074f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2392_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2392_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 484210e4-fc40-40be-960b-93734ea5f051 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 7413c891-f74e-456f-bc70-69c83fb53c70 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2392 75 false '-- '-- '-- '-- -27667 31 0239e132-69ad-584f-a099-4a1b626fdc4d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2392_demographic Dead '-- '-- '-- '-- 27667 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 31.0 '-- '-- 99ca4e5c-3912-5835-8d01-9492e0b5074f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2392_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2392_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f156e02a-a3e2-5333-8eb7-3ad870a73902 Adjuvant no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7472b3ba-9b15-4d97-8708-a2dd82ca0f45 Informed Consent 175 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1776 63 false '-- '-- '-- '-- -23016 '-- ab7de0f2-baa5-58ec-bd27-60f24523a32a '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1776_demographic Alive '-- '-- '-- '-- 23016 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 360.0 '-- '-- 0716ed12-2ffb-546f-a3c1-8a2cefdfaab5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1776_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 592 522 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1776_treatment2 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 2184 '-- mg '-- '-- '-- '-- 1528564f-24c2-4211-a96b-1334159f4534 '-- yes Treatment Ongoing '-- Targeted Molecular Therapy +TCGA-OV 7472b3ba-9b15-4d97-8708-a2dd82ca0f45 Informed Consent 175 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1776 63 false '-- '-- '-- '-- -23016 '-- ab7de0f2-baa5-58ec-bd27-60f24523a32a '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1776_demographic Alive '-- '-- '-- '-- 23016 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 360.0 '-- '-- 0716ed12-2ffb-546f-a3c1-8a2cefdfaab5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1776_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 592 522 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1776_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- 88 '-- mg '-- '-- '-- '-- 731d2b98-8572-43c4-baf1-4e226761729f '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 7472b3ba-9b15-4d97-8708-a2dd82ca0f45 Informed Consent 175 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1776 63 false '-- '-- '-- '-- -23016 '-- ab7de0f2-baa5-58ec-bd27-60f24523a32a '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1776_demographic Alive '-- '-- '-- '-- 23016 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 360.0 '-- '-- 0716ed12-2ffb-546f-a3c1-8a2cefdfaab5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1776_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 154 32 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1776_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- cccdf89e-7a68-5630-b208-ecb71e11900a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7472b3ba-9b15-4d97-8708-a2dd82ca0f45 Informed Consent 175 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1776 63 false '-- '-- '-- '-- -23016 '-- ab7de0f2-baa5-58ec-bd27-60f24523a32a '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1776_demographic Alive '-- '-- '-- '-- 23016 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 360.0 '-- '-- 0716ed12-2ffb-546f-a3c1-8a2cefdfaab5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1776_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1776_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cd7c02c6-f2d7-46f7-af40-b1dc5ec47f1e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 7472b3ba-9b15-4d97-8708-a2dd82ca0f45 Informed Consent 175 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1776 63 false '-- '-- '-- '-- -23016 '-- ab7de0f2-baa5-58ec-bd27-60f24523a32a '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1776_demographic Alive '-- '-- '-- '-- 23016 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 360.0 '-- '-- 0716ed12-2ffb-546f-a3c1-8a2cefdfaab5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1776_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 154 32 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1776_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- e26498e9-5f55-4e26-a040-f8c50b9d0930 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 74dcdfb4-a637-4111-9a22-4b4bc7bbc8f7 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1495 60 false '-- '-- '-- '-- -22046 2749 1cb753ba-3ecc-572a-8d29-c4ed3c9a35f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1495_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1524c79d-3af4-406e-867a-c4ea3d573f3b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1495_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1495_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 984 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1495_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5e52ddcb-b9e7-4da5-8587-e3855399de01 '-- yes '-- '-- Surgery, NOS +TCGA-OV 74dcdfb4-a637-4111-9a22-4b4bc7bbc8f7 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1495 60 false '-- '-- '-- '-- -22046 2749 1cb753ba-3ecc-572a-8d29-c4ed3c9a35f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1495_demographic Dead '-- '-- '-- '-- 22046 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2749.0 '-- '-- 4f419b0f-ece4-5df0-9ea1-9d12e5078189 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1495_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 119 21 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1495_treatment2 Cetuximab '-- '-- '-- '-- '-- '-- '-- 250 '-- mg/m2 '-- '-- '-- '-- 51bc07f5-9722-432e-ad15-d5c3d3e1dec0 Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV 74dcdfb4-a637-4111-9a22-4b4bc7bbc8f7 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1495 60 false '-- '-- '-- '-- -22046 2749 1cb753ba-3ecc-572a-8d29-c4ed3c9a35f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1495_demographic Dead '-- '-- '-- '-- 22046 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2749.0 '-- '-- 4f419b0f-ece4-5df0-9ea1-9d12e5078189 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1495_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 224 147 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1495_treatment5 Cetuximab '-- '-- '-- '-- '-- '-- '-- 250 '-- mg/m2 '-- '-- '-- '-- 6e3f308d-7afd-4c82-81aa-3b65c2884217 Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV 74dcdfb4-a637-4111-9a22-4b4bc7bbc8f7 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1495 60 false '-- '-- '-- '-- -22046 2749 1cb753ba-3ecc-572a-8d29-c4ed3c9a35f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1495_demographic Dead '-- '-- '-- '-- 22046 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2749.0 '-- '-- 4f419b0f-ece4-5df0-9ea1-9d12e5078189 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1495_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 140 21 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1495_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- cf47d22a-a147-5264-9647-4afc0f4be049 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 74dcdfb4-a637-4111-9a22-4b4bc7bbc8f7 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1495 60 false '-- '-- '-- '-- -22046 2749 1cb753ba-3ecc-572a-8d29-c4ed3c9a35f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1495_demographic Dead '-- '-- '-- '-- 22046 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2749.0 '-- '-- 4f419b0f-ece4-5df0-9ea1-9d12e5078189 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1495_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 548 231 '-- '-- '-- '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1495_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- e1f3482f-4bcc-497d-bdff-943cfcf57e67 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 74dcdfb4-a637-4111-9a22-4b4bc7bbc8f7 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1495 60 false '-- '-- '-- '-- -22046 2749 1cb753ba-3ecc-572a-8d29-c4ed3c9a35f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1495_demographic Dead '-- '-- '-- '-- 22046 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2749.0 '-- '-- 4f419b0f-ece4-5df0-9ea1-9d12e5078189 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1495_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 140 21 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1495_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e9966f79-e7ce-4cdc-921a-e913422d937e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 74dcdfb4-a637-4111-9a22-4b4bc7bbc8f7 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1495 60 false '-- '-- '-- '-- -22046 2749 1cb753ba-3ecc-572a-8d29-c4ed3c9a35f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1495_demographic Dead '-- '-- '-- '-- 22046 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2749.0 '-- '-- 4f419b0f-ece4-5df0-9ea1-9d12e5078189 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1495_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1495_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f6002da4-057b-42d9-befe-aee71a7141de Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 74dcdfb4-a637-4111-9a22-4b4bc7bbc8f7 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1495 60 false '-- '-- '-- '-- -22046 2749 1cb753ba-3ecc-572a-8d29-c4ed3c9a35f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1495_demographic Dead '-- '-- '-- '-- 23023 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 977 '-- '-- '-- 981c4085-bec5-4290-8ea2-d5fcd4839e8b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1495_diagnosis4 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1495_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 74dcdfb4-a637-4111-9a22-4b4bc7bbc8f7 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1495 60 false '-- '-- '-- '-- -22046 2749 1cb753ba-3ecc-572a-8d29-c4ed3c9a35f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1495_demographic Dead '-- '-- '-- '-- 23023 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 977 '-- '-- '-- abee9555-cde5-4dd8-ade1-a31fed8027da false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1495_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1495_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 756f6768-e69a-4fe9-aa41-7c58aabe4577 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1511 52 false '-- '-- '-- '-- -19258 1650 e28453c8-ec26-52b0-ab4d-a347b02c3a2f '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-1511_demographic Dead '-- '-- '-- '-- 19258 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1650.0 '-- '-- 46631da2-f6dd-5b78-8999-4f18d5131f9c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1511_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1511_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 005224eb-a7ef-4611-b6c2-c198667993c9 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 756f6768-e69a-4fe9-aa41-7c58aabe4577 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1511 52 false '-- '-- '-- '-- -19258 1650 e28453c8-ec26-52b0-ab4d-a347b02c3a2f '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-1511_demographic Dead '-- '-- '-- '-- 19258 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1650.0 '-- '-- 46631da2-f6dd-5b78-8999-4f18d5131f9c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1511_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 186 67 '-- '-- '-- '-- '-- '-- '-- 6 '-- 800.0 mg/m2 '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1511_treatment2 Gemcitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a02dd2a3-bd70-456c-8b2f-b2eaa2c736dc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 756f6768-e69a-4fe9-aa41-7c58aabe4577 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1511 52 false '-- '-- '-- '-- -19258 1650 e28453c8-ec26-52b0-ab4d-a347b02c3a2f '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-1511_demographic Dead '-- '-- '-- '-- 19258 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1650.0 '-- '-- 46631da2-f6dd-5b78-8999-4f18d5131f9c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1511_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 46 21 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1511_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d7c83c4a-d7b2-5205-8dc3-85c3c56af640 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 756f6768-e69a-4fe9-aa41-7c58aabe4577 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1511 52 false '-- '-- '-- '-- -19258 1650 e28453c8-ec26-52b0-ab4d-a347b02c3a2f '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-1511_demographic Dead '-- '-- '-- '-- 19258 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1650.0 '-- '-- 46631da2-f6dd-5b78-8999-4f18d5131f9c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1511_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 186 67 '-- '-- '-- '-- '-- '-- '-- 6 '-- 600.0 mg '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1511_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f6fce6d9-a59c-4de2-a7fa-6ca5fefa7130 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 756f6768-e69a-4fe9-aa41-7c58aabe4577 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1511 52 false '-- '-- '-- '-- -19258 1650 e28453c8-ec26-52b0-ab4d-a347b02c3a2f '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-1511_demographic Dead '-- '-- '-- '-- 19717 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 459 '-- '-- '-- 7907d583-c8e2-492d-acfc-a62e82901366 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1511_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1511_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 758e6b52-062e-4ca0-84d1-ea38477414ac Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2352 78 false '-- '-- '-- '-- '-- 286 ea4eb7f5-e69a-5300-8b57-2b53ea2b245f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-59-2352_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 286.0 '-- '-- ea0ad7ed-ad39-564d-80bc-d7365bdeeff0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-59-2352_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 7592a659-7175-486f-a16e-24a4b4365a36 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1556 50 false '-- '-- '-- '-- -18517 2148 2dcec934-ec62-5a81-9bbc-8582f8129183 '-- not reported female '-- '-- '-- '-- white TCGA-24-1556_demographic Dead '-- '-- '-- '-- 18517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2148.0 '-- '-- 21fca019-acce-5868-9629-eaf16a9567a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1556_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1832 1724 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1556_treatment7 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2e361170-37ac-4712-8d75-c89d4bf5aeca '-- yes '-- '-- Chemotherapy +TCGA-OV 7592a659-7175-486f-a16e-24a4b4365a36 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1556 50 false '-- '-- '-- '-- -18517 2148 2dcec934-ec62-5a81-9bbc-8582f8129183 '-- not reported female '-- '-- '-- '-- white TCGA-24-1556_demographic Dead '-- '-- '-- '-- 18517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2148.0 '-- '-- 21fca019-acce-5868-9629-eaf16a9567a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1556_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1556_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 35c981f6-005c-4d50-937c-c5b3bdb959d8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7592a659-7175-486f-a16e-24a4b4365a36 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1556 50 false '-- '-- '-- '-- -18517 2148 2dcec934-ec62-5a81-9bbc-8582f8129183 '-- not reported female '-- '-- '-- '-- white TCGA-24-1556_demographic Dead '-- '-- '-- '-- 18517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2148.0 '-- '-- 21fca019-acce-5868-9629-eaf16a9567a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1556_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1556_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3856ad30-2cf9-4121-aa6c-bca6402a01eb Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7592a659-7175-486f-a16e-24a4b4365a36 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1556 50 false '-- '-- '-- '-- -18517 2148 2dcec934-ec62-5a81-9bbc-8582f8129183 '-- not reported female '-- '-- '-- '-- white TCGA-24-1556_demographic Dead '-- '-- '-- '-- 18517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2148.0 '-- '-- 21fca019-acce-5868-9629-eaf16a9567a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1556_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 628 539 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1556_treatment8 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5b53dc68-f599-4ca8-8156-f512e0e68ce5 '-- yes '-- '-- Chemotherapy +TCGA-OV 7592a659-7175-486f-a16e-24a4b4365a36 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1556 50 false '-- '-- '-- '-- -18517 2148 2dcec934-ec62-5a81-9bbc-8582f8129183 '-- not reported female '-- '-- '-- '-- white TCGA-24-1556_demographic Dead '-- '-- '-- '-- 18517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2148.0 '-- '-- 21fca019-acce-5868-9629-eaf16a9567a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1556_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1832 1724 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1556_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ae790b5a-fccc-4645-986f-296cc0711535 '-- yes '-- '-- Chemotherapy +TCGA-OV 7592a659-7175-486f-a16e-24a4b4365a36 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1556 50 false '-- '-- '-- '-- -18517 2148 2dcec934-ec62-5a81-9bbc-8582f8129183 '-- not reported female '-- '-- '-- '-- white TCGA-24-1556_demographic Dead '-- '-- '-- '-- 18517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2148.0 '-- '-- 21fca019-acce-5868-9629-eaf16a9567a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1556_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1556_treatment2 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ddd91f37-694f-45eb-a840-0f0fb2dff9a9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7592a659-7175-486f-a16e-24a4b4365a36 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1556 50 false '-- '-- '-- '-- -18517 2148 2dcec934-ec62-5a81-9bbc-8582f8129183 '-- not reported female '-- '-- '-- '-- white TCGA-24-1556_demographic Dead '-- '-- '-- '-- 18517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2148.0 '-- '-- 21fca019-acce-5868-9629-eaf16a9567a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1556_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1556_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ec057975-9541-47de-b43f-71a556baf349 '-- yes '-- '-- Chemotherapy +TCGA-OV 7592a659-7175-486f-a16e-24a4b4365a36 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1556 50 false '-- '-- '-- '-- -18517 2148 2dcec934-ec62-5a81-9bbc-8582f8129183 '-- not reported female '-- '-- '-- '-- white TCGA-24-1556_demographic Dead '-- '-- '-- '-- 18517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2148.0 '-- '-- 21fca019-acce-5868-9629-eaf16a9567a7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1556_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- 1298 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1556_treatment '-- '-- '-- '-- '-- '-- Locoregional Site '-- '-- '-- '-- '-- '-- '-- '-- fc7d1943-885f-55f8-8dc6-fbc6b5f3f66d '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 7592a659-7175-486f-a16e-24a4b4365a36 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1556 50 false '-- '-- '-- '-- -18517 2148 2dcec934-ec62-5a81-9bbc-8582f8129183 '-- not reported female '-- '-- '-- '-- white TCGA-24-1556_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9569a3a0-97a6-4bef-abce-05bc944652ef false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1556_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1556_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 762 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1556_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 037b72fb-b1ed-4e1b-8af5-9234cb383b71 '-- yes '-- '-- Surgery, NOS +TCGA-OV 7592a659-7175-486f-a16e-24a4b4365a36 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1556 50 false '-- '-- '-- '-- -18517 2148 2dcec934-ec62-5a81-9bbc-8582f8129183 '-- not reported female '-- '-- '-- '-- white TCGA-24-1556_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9569a3a0-97a6-4bef-abce-05bc944652ef false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1556_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1556_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1556_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a05be915-e565-4ece-b1b7-9da05abf627c '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 7592a659-7175-486f-a16e-24a4b4365a36 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1556 50 false '-- '-- '-- '-- -18517 2148 2dcec934-ec62-5a81-9bbc-8582f8129183 '-- not reported female '-- '-- '-- '-- white TCGA-24-1556_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9569a3a0-97a6-4bef-abce-05bc944652ef false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1556_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1556_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1556_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c45d4954-753b-43a1-80e5-26812f049dd8 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7592a659-7175-486f-a16e-24a4b4365a36 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1556 50 false '-- '-- '-- '-- -18517 2148 2dcec934-ec62-5a81-9bbc-8582f8129183 '-- not reported female '-- '-- '-- '-- white TCGA-24-1556_demographic Dead '-- '-- '-- '-- 19056 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 539 '-- '-- '-- f4a3f0e1-c763-45b6-a3af-6cdf3c18df3d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1556_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1556_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1556_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 220b683b-fa86-4576-9d3c-159d6ac66e55 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7592a659-7175-486f-a16e-24a4b4365a36 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1556 50 false '-- '-- '-- '-- -18517 2148 2dcec934-ec62-5a81-9bbc-8582f8129183 '-- not reported female '-- '-- '-- '-- white TCGA-24-1556_demographic Dead '-- '-- '-- '-- 19056 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 539 '-- '-- '-- f4a3f0e1-c763-45b6-a3af-6cdf3c18df3d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1556_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1556_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1556_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dbc21983-4b2c-4355-a959-96980123b14d '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 75f2d97a-b96c-403f-8055-5c5c8083e856 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1910 56 false '-- '-- '-- '-- -20779 '-- e31f8f34-ab84-5c8c-b48d-12a9d06a7117 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1910_demographic Alive '-- '-- '-- '-- 20779 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1127.0 '-- '-- f94bab54-9a7b-555b-899c-90c46cb49a3f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1910_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 161 56 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1910_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 756 '-- mg '-- '-- '-- '-- 1e99555d-daab-4a30-8a35-fd0305dbfc65 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 75f2d97a-b96c-403f-8055-5c5c8083e856 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1910 56 false '-- '-- '-- '-- -20779 '-- e31f8f34-ab84-5c8c-b48d-12a9d06a7117 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1910_demographic Alive '-- '-- '-- '-- 20779 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1127.0 '-- '-- f94bab54-9a7b-555b-899c-90c46cb49a3f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1910_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1910_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 507ab98b-e39c-47e5-853e-f0c257db08bf Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 75f2d97a-b96c-403f-8055-5c5c8083e856 Informed Consent -14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1910 56 false '-- '-- '-- '-- -20779 '-- e31f8f34-ab84-5c8c-b48d-12a9d06a7117 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1910_demographic Alive '-- '-- '-- '-- 20779 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1127.0 '-- '-- f94bab54-9a7b-555b-899c-90c46cb49a3f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1910_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 161 56 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1910_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 4550 '-- mg '-- '-- '-- '-- 80d6ae6b-b047-592e-9704-2f282ea6c50c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7621ed77-98bc-4b4e-8011-e18fcd014071 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0365 70 false '-- '-- '-- '-- -25703 288 c85ba4d9-ed01-51b1-9dad-97b5e8b34630 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0365_demographic Dead '-- '-- '-- '-- 25703 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 288.0 '-- '-- 404fcb7e-7738-5570-b7c5-7b0e19862df4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-0365_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 70 46 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-0365_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 273 '-- mg '-- '-- '-- '-- 4922e78e-69b0-51fe-b44f-ae6f0787add5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7621ed77-98bc-4b4e-8011-e18fcd014071 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0365 70 false '-- '-- '-- '-- -25703 288 c85ba4d9-ed01-51b1-9dad-97b5e8b34630 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0365_demographic Dead '-- '-- '-- '-- 25703 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 288.0 '-- '-- 404fcb7e-7738-5570-b7c5-7b0e19862df4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-0365_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-0365_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6d15dae1-539f-4aa4-9fd7-2508ee231123 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 7621ed77-98bc-4b4e-8011-e18fcd014071 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0365 70 false '-- '-- '-- '-- -25703 288 c85ba4d9-ed01-51b1-9dad-97b5e8b34630 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0365_demographic Dead '-- '-- '-- '-- 25703 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 288.0 '-- '-- 404fcb7e-7738-5570-b7c5-7b0e19862df4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-0365_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 70 15 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-0365_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- fb309714-32a1-4c19-878b-801fa04e7ed2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7621ed77-98bc-4b4e-8011-e18fcd014071 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0365 70 false '-- '-- '-- '-- -25703 288 c85ba4d9-ed01-51b1-9dad-97b5e8b34630 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0365_demographic Dead '-- '-- '-- '-- 25954 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 251 '-- '-- '-- 4a0a8edf-bc2f-43a3-a6ff-7b9f534d54f3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-0365_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-0365_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-0365_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 47326d49-c1bf-410b-a73c-bedd7ad8fdf4 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 7621ed77-98bc-4b4e-8011-e18fcd014071 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0365 70 false '-- '-- '-- '-- -25703 288 c85ba4d9-ed01-51b1-9dad-97b5e8b34630 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-0365_demographic Dead '-- '-- '-- '-- 25954 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 251 '-- '-- '-- 4a0a8edf-bc2f-43a3-a6ff-7b9f534d54f3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-0365_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-0365_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-0365_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7eb2da88-daa5-4b08-b15a-75ae1c40b9c6 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 76cc2d21-eebc-4f09-9bc7-dbf7af0aafa8 Informed Consent -363 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1583 57 false '-- '-- '-- '-- -21167 346 65d45d68-52f7-5bf9-83b6-a053ab03eef7 '-- not reported female '-- '-- '-- '-- black or african american TCGA-57-1583_demographic Dead '-- '-- '-- '-- 21167 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 346.0 '-- '-- 03a569c0-4d70-554f-9b61-b414ecfffa8e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1583_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- 37 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-57-1583_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 34e4a5f6-22af-59c9-9dd1-e4c91dff74c6 Adjuvant yes Treatment Ongoing '-- Chemotherapy +TCGA-OV 76cc2d21-eebc-4f09-9bc7-dbf7af0aafa8 Informed Consent -363 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1583 57 false '-- '-- '-- '-- -21167 346 65d45d68-52f7-5bf9-83b6-a053ab03eef7 '-- not reported female '-- '-- '-- '-- black or african american TCGA-57-1583_demographic Dead '-- '-- '-- '-- 21167 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 346.0 '-- '-- 03a569c0-4d70-554f-9b61-b414ecfffa8e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1583_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- 37 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-57-1583_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6886f7d0-619c-469b-9871-96b61b228619 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 76cc2d21-eebc-4f09-9bc7-dbf7af0aafa8 Informed Consent -363 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1583 57 false '-- '-- '-- '-- -21167 346 65d45d68-52f7-5bf9-83b6-a053ab03eef7 '-- not reported female '-- '-- '-- '-- black or african american TCGA-57-1583_demographic Dead '-- '-- '-- '-- 21167 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 346.0 '-- '-- 03a569c0-4d70-554f-9b61-b414ecfffa8e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1583_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1583_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e11a92f7-cc6f-4e0b-90cd-d33b89ed985c Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 774ce281-96b2-467a-9170-079797ee10f7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0765 50 false '-- '-- '-- '-- -18574 1389 7d9699a9-4ea0-5b30-bcda-46dac07eac0a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0765_demographic Dead '-- '-- '-- '-- 18574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1389.0 '-- '-- 15b1a19f-09af-5637-a630-135ff926fb81 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0765_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0765_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 55840c75-65af-4aea-85e8-2d04fba942ff Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 774ce281-96b2-467a-9170-079797ee10f7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0765 50 false '-- '-- '-- '-- -18574 1389 7d9699a9-4ea0-5b30-bcda-46dac07eac0a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0765_demographic Dead '-- '-- '-- '-- 18574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1389.0 '-- '-- 15b1a19f-09af-5637-a630-135ff926fb81 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0765_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 654 589 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0765_treatment2 Tamoxifen '-- '-- '-- '-- '-- '-- '-- 20 '-- mg '-- '-- '-- '-- 7afd731f-e97c-4c12-a543-19ceb2a13f6a Adjuvant yes '-- '-- Hormone Therapy +TCGA-OV 774ce281-96b2-467a-9170-079797ee10f7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0765 50 false '-- '-- '-- '-- -18574 1389 7d9699a9-4ea0-5b30-bcda-46dac07eac0a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0765_demographic Dead '-- '-- '-- '-- 18574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1389.0 '-- '-- 15b1a19f-09af-5637-a630-135ff926fb81 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0765_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 519 176 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0765_treatment3 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 15 '-- mg/kg '-- '-- '-- '-- 7b096bb7-3d19-410b-a137-7650bd54baf8 Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV 774ce281-96b2-467a-9170-079797ee10f7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0765 50 false '-- '-- '-- '-- -18574 1389 7d9699a9-4ea0-5b30-bcda-46dac07eac0a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0765_demographic Dead '-- '-- '-- '-- 18574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1389.0 '-- '-- 15b1a19f-09af-5637-a630-135ff926fb81 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0765_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 163 50 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0765_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- 893778bb-7b11-4052-b7d3-b9a8ded3a78d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 774ce281-96b2-467a-9170-079797ee10f7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0765 50 false '-- '-- '-- '-- -18574 1389 7d9699a9-4ea0-5b30-bcda-46dac07eac0a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0765_demographic Dead '-- '-- '-- '-- 18574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1389.0 '-- '-- 15b1a19f-09af-5637-a630-135ff926fb81 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0765_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 155 71 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0765_treatment4 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 15 '-- mg/m2 '-- '-- '-- '-- bdcd4c6c-3ede-41a7-8f6a-0fcb99881cb2 Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV 774ce281-96b2-467a-9170-079797ee10f7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0765 50 false '-- '-- '-- '-- -18574 1389 7d9699a9-4ea0-5b30-bcda-46dac07eac0a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0765_demographic Dead '-- '-- '-- '-- 18574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1389.0 '-- '-- 15b1a19f-09af-5637-a630-135ff926fb81 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0765_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 163 50 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0765_treatment6 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- e488c716-cfcb-4459-b9e4-b73156b73dfe Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 774ce281-96b2-467a-9170-079797ee10f7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0765 50 false '-- '-- '-- '-- -18574 1389 7d9699a9-4ea0-5b30-bcda-46dac07eac0a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0765_demographic Dead '-- '-- '-- '-- 18574 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1389.0 '-- '-- 15b1a19f-09af-5637-a630-135ff926fb81 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0765_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 163 50 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0765_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- e85c2b74-e4ec-55fd-b9e6-2edf90f5a946 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 774ce281-96b2-467a-9170-079797ee10f7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0765 50 false '-- '-- '-- '-- -18574 1389 7d9699a9-4ea0-5b30-bcda-46dac07eac0a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0765_demographic Dead '-- '-- '-- '-- 19242 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 668 '-- '-- '-- 2958afd2-53ba-4dfc-953e-5556e7bc1c8d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0765_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0765_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 774ce281-96b2-467a-9170-079797ee10f7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0765 50 false '-- '-- '-- '-- -18574 1389 7d9699a9-4ea0-5b30-bcda-46dac07eac0a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0765_demographic Dead '-- '-- '-- '-- 19242 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 668 '-- '-- '-- a358b69e-bd20-4a16-81ce-70104840abb1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0765_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0765_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0765_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 76c6087f-fb44-41a8-9d55-e8616237feb0 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 774ce281-96b2-467a-9170-079797ee10f7 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0765 50 false '-- '-- '-- '-- -18574 1389 7d9699a9-4ea0-5b30-bcda-46dac07eac0a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0765_demographic Dead '-- '-- '-- '-- 19242 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 668 '-- '-- '-- a358b69e-bd20-4a16-81ce-70104840abb1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0765_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0765_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0765_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cb304c28-79bd-4c0c-bb6f-e55ecfcfddd1 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 778ce436-a825-4689-81c1-b7c965404163 Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2095 54 false '-- '-- '-- '-- -19797 1875 f4e599b6-8cb0-5ad4-9f8a-a704e2149024 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2095_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5d2a39ed-a690-481a-884c-e1ce263f28a6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2095_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2095_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2095_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1429dad6-9d92-4c8a-911b-17db81c46cb4 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 778ce436-a825-4689-81c1-b7c965404163 Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2095 54 false '-- '-- '-- '-- -19797 1875 f4e599b6-8cb0-5ad4-9f8a-a704e2149024 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2095_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5d2a39ed-a690-481a-884c-e1ce263f28a6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2095_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2095_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2095_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 61e1eae0-8540-4ee1-831e-52da42e864a7 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 778ce436-a825-4689-81c1-b7c965404163 Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2095 54 false '-- '-- '-- '-- -19797 1875 f4e599b6-8cb0-5ad4-9f8a-a704e2149024 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2095_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5d2a39ed-a690-481a-884c-e1ce263f28a6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2095_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2095_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 452 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2095_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6c05915f-5976-41e7-9c02-3cfdd4ec3312 '-- yes '-- '-- Surgery, NOS +TCGA-OV 778ce436-a825-4689-81c1-b7c965404163 Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2095 54 false '-- '-- '-- '-- -19797 1875 f4e599b6-8cb0-5ad4-9f8a-a704e2149024 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2095_demographic Dead '-- '-- '-- '-- 19797 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1875.0 '-- '-- 8ce0f291-c03c-56b4-aeba-38388907fd38 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2095_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 602 59 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2095_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 24d03782-161d-4b41-9907-71c4a07d05b0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 778ce436-a825-4689-81c1-b7c965404163 Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2095 54 false '-- '-- '-- '-- -19797 1875 f4e599b6-8cb0-5ad4-9f8a-a704e2149024 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2095_demographic Dead '-- '-- '-- '-- 19797 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1875.0 '-- '-- 8ce0f291-c03c-56b4-aeba-38388907fd38 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2095_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 1389 1360 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2095_treatment2 Oxaliplatin '-- '-- '-- '-- '-- '-- '-- 468 '-- mg '-- '-- '-- '-- 2eeedcf4-2f95-4cd7-82af-1b1ea92693b4 '-- yes '-- '-- Chemotherapy +TCGA-OV 778ce436-a825-4689-81c1-b7c965404163 Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2095 54 false '-- '-- '-- '-- -19797 1875 f4e599b6-8cb0-5ad4-9f8a-a704e2149024 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2095_demographic Dead '-- '-- '-- '-- 19797 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1875.0 '-- '-- 8ce0f291-c03c-56b4-aeba-38388907fd38 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2095_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 602 59 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2095_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5f723dba-7e84-46a1-a71a-0ac7fbefd73a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 778ce436-a825-4689-81c1-b7c965404163 Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2095 54 false '-- '-- '-- '-- -19797 1875 f4e599b6-8cb0-5ad4-9f8a-a704e2149024 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2095_demographic Dead '-- '-- '-- '-- 19797 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1875.0 '-- '-- 8ce0f291-c03c-56b4-aeba-38388907fd38 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2095_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 447 210 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2095_treatment4 Oregovomab '-- '-- '-- '-- '-- '-- '-- 12 '-- mg '-- '-- '-- '-- 7f9d114f-8da7-47ce-96c0-10c6f94af462 Adjuvant yes '-- '-- Immunotherapy (Including Vaccines) +TCGA-OV 778ce436-a825-4689-81c1-b7c965404163 Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2095 54 false '-- '-- '-- '-- -19797 1875 f4e599b6-8cb0-5ad4-9f8a-a704e2149024 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2095_demographic Dead '-- '-- '-- '-- 19797 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1875.0 '-- '-- 8ce0f291-c03c-56b4-aeba-38388907fd38 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2095_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 1188 783 '-- '-- Recurrent Disease '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2095_treatment Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8c453945-df19-57fd-94d0-49bd2bf6ade1 '-- yes '-- '-- Chemotherapy +TCGA-OV 778ce436-a825-4689-81c1-b7c965404163 Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2095 54 false '-- '-- '-- '-- -19797 1875 f4e599b6-8cb0-5ad4-9f8a-a704e2149024 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2095_demographic Dead '-- '-- '-- '-- 19797 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1875.0 '-- '-- 8ce0f291-c03c-56b4-aeba-38388907fd38 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2095_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 1264 1193 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2095_treatment7 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aadc3c67-09f4-4843-95ab-d6e161c921af '-- yes '-- '-- Chemotherapy +TCGA-OV 778ce436-a825-4689-81c1-b7c965404163 Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2095 54 false '-- '-- '-- '-- -19797 1875 f4e599b6-8cb0-5ad4-9f8a-a704e2149024 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2095_demographic Dead '-- '-- '-- '-- 19797 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1875.0 '-- '-- 8ce0f291-c03c-56b4-aeba-38388907fd38 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2095_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2095_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b29309e8-998e-4a75-aed3-afee9e2864c6 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 778ce436-a825-4689-81c1-b7c965404163 Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2095 54 false '-- '-- '-- '-- -19797 1875 f4e599b6-8cb0-5ad4-9f8a-a704e2149024 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2095_demographic Dead '-- '-- '-- '-- 19797 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1875.0 '-- '-- 8ce0f291-c03c-56b4-aeba-38388907fd38 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2095_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 1474 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2095_treatment3 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b7b3c18c-57d0-45a6-9017-d321278ce55d '-- yes '-- '-- Chemotherapy +TCGA-OV 778ce436-a825-4689-81c1-b7c965404163 Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2095 54 false '-- '-- '-- '-- -19797 1875 f4e599b6-8cb0-5ad4-9f8a-a704e2149024 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2095_demographic Dead '-- '-- '-- '-- 20242 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 445 '-- '-- '-- 9431a342-d661-40cf-b520-cc715e983040 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2095_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2095_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2095_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 125f6581-efee-4e73-a869-59dedac737ca '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 778ce436-a825-4689-81c1-b7c965404163 Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2095 54 false '-- '-- '-- '-- -19797 1875 f4e599b6-8cb0-5ad4-9f8a-a704e2149024 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2095_demographic Dead '-- '-- '-- '-- 20242 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 445 '-- '-- '-- 9431a342-d661-40cf-b520-cc715e983040 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2095_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2095_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2095_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ee11db11-b27d-48a7-9c52-c2dda005e27e '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 78777a80-cc6c-46c9-a14a-837ac7943719 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1317 66 false '-- '-- '-- '-- -24199 61 f8742fb7-df55-59c6-9428-0487f950eb36 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1317_demographic Dead '-- '-- '-- '-- 24199 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 61.0 '-- '-- 34c73698-1092-5f12-b670-e84b1ca08e3a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1317_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1317_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3adc1bbe-f24a-4644-9877-5b188529f5dc Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 78777a80-cc6c-46c9-a14a-837ac7943719 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1317 66 false '-- '-- '-- '-- -24199 61 f8742fb7-df55-59c6-9428-0487f950eb36 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1317_demographic Dead '-- '-- '-- '-- 24199 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 61.0 '-- '-- 34c73698-1092-5f12-b670-e84b1ca08e3a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1317_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 31 0 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1317_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e67c125b-2201-4a1b-a20d-5ab2921a4dfc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 78777a80-cc6c-46c9-a14a-837ac7943719 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1317 66 false '-- '-- '-- '-- -24199 61 f8742fb7-df55-59c6-9428-0487f950eb36 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1317_demographic Dead '-- '-- '-- '-- 24199 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 61.0 '-- '-- 34c73698-1092-5f12-b670-e84b1ca08e3a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1317_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 31 0 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1317_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f4c86966-2794-5f8d-9798-9e283cacfe2c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 79e6e31c-22a1-481c-903b-ab5499cbd450 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0897 54 false '-- '-- '-- '-- -19894 2182 98f76dc4-21fd-5024-915b-f6c36aa533ae '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0897_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 10a61e90-a19e-466e-baf1-8b3af1a7ff7a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0897_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0897_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0897_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 419e6fe4-8965-4f48-9654-c6f88f55aa77 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 79e6e31c-22a1-481c-903b-ab5499cbd450 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0897 54 false '-- '-- '-- '-- -19894 2182 98f76dc4-21fd-5024-915b-f6c36aa533ae '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0897_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 10a61e90-a19e-466e-baf1-8b3af1a7ff7a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0897_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0897_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0897_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b6ff30d8-eeec-465f-9f91-e2c600036bfd '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 79e6e31c-22a1-481c-903b-ab5499cbd450 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0897 54 false '-- '-- '-- '-- -19894 2182 98f76dc4-21fd-5024-915b-f6c36aa533ae '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0897_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 10a61e90-a19e-466e-baf1-8b3af1a7ff7a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0897_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0897_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 568 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0897_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e68d17d1-0609-48e5-9c38-d84686b7f671 '-- yes '-- '-- Surgery, NOS +TCGA-OV 79e6e31c-22a1-481c-903b-ab5499cbd450 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0897 54 false '-- '-- '-- '-- -19894 2182 98f76dc4-21fd-5024-915b-f6c36aa533ae '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0897_demographic Dead '-- '-- '-- '-- 19894 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2182.0 '-- '-- 2867623c-36a9-589a-b65a-25518a378ba0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0897_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 140 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0897_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 475ca925-44a3-4755-ba73-d8f4ea79bfa5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 79e6e31c-22a1-481c-903b-ab5499cbd450 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0897 54 false '-- '-- '-- '-- -19894 2182 98f76dc4-21fd-5024-915b-f6c36aa533ae '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0897_demographic Dead '-- '-- '-- '-- 19894 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2182.0 '-- '-- 2867623c-36a9-589a-b65a-25518a378ba0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0897_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0897_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5f77f82e-d467-4119-b081-d503a12e3131 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 79e6e31c-22a1-481c-903b-ab5499cbd450 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0897 54 false '-- '-- '-- '-- -19894 2182 98f76dc4-21fd-5024-915b-f6c36aa533ae '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0897_demographic Dead '-- '-- '-- '-- 19894 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2182.0 '-- '-- 2867623c-36a9-589a-b65a-25518a378ba0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0897_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 140 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0897_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1050 '-- mg/m2 '-- '-- '-- '-- ffb36efb-aef4-5ef0-9837-15590806facc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 79e6e31c-22a1-481c-903b-ab5499cbd450 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0897 54 false '-- '-- '-- '-- -19894 2182 98f76dc4-21fd-5024-915b-f6c36aa533ae '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0897_demographic Dead '-- '-- '-- '-- 20448 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 554 '-- '-- '-- 61dd81ed-1c0d-4455-9521-70ae4fd6ce33 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0897_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0897_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0897_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e4628ac6-34bd-4003-82fa-63cde0b902e1 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 79e6e31c-22a1-481c-903b-ab5499cbd450 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0897 54 false '-- '-- '-- '-- -19894 2182 98f76dc4-21fd-5024-915b-f6c36aa533ae '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0897_demographic Dead '-- '-- '-- '-- 20448 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 554 '-- '-- '-- 61dd81ed-1c0d-4455-9521-70ae4fd6ce33 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0897_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0897_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0897_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f4cf2625-6e02-4c62-a42a-3b069bc23c48 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 79e6e31c-22a1-481c-903b-ab5499cbd450 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0897 54 false '-- '-- '-- '-- -19894 2182 98f76dc4-21fd-5024-915b-f6c36aa533ae '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0897_demographic Dead '-- '-- '-- '-- 20448 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 554 '-- '-- '-- 632ea3fd-a6e5-419d-be29-02315b8a6dc4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0897_diagnosis4 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0897_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 79fd602b-3e8e-4353-aa78-4f5f170b607d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1328 38 false '-- '-- '-- '-- -13911 2009 04824ef8-fadb-546a-bfc0-957cf62e574e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1328_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6a07eef1-02f2-4c27-8eb3-78849e7b2e79 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1328_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1328_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 244 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1328_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3a14544b-66f9-41b6-94a0-d8d12bb4555c '-- yes '-- '-- Surgery, NOS +TCGA-OV 79fd602b-3e8e-4353-aa78-4f5f170b607d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1328 38 false '-- '-- '-- '-- -13911 2009 04824ef8-fadb-546a-bfc0-957cf62e574e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1328_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6a07eef1-02f2-4c27-8eb3-78849e7b2e79 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1328_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1328_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1328_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e7841ccd-1532-40aa-9f22-2eabbf4e7de2 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 79fd602b-3e8e-4353-aa78-4f5f170b607d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1328 38 false '-- '-- '-- '-- -13911 2009 04824ef8-fadb-546a-bfc0-957cf62e574e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1328_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6a07eef1-02f2-4c27-8eb3-78849e7b2e79 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1328_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1328_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1328_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f9a5a575-cd5e-4978-a73e-587910b05fb2 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 79fd602b-3e8e-4353-aa78-4f5f170b607d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1328 38 false '-- '-- '-- '-- -13911 2009 04824ef8-fadb-546a-bfc0-957cf62e574e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1328_demographic Dead '-- '-- '-- '-- 13911 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2009.0 '-- '-- b7fddc9e-b9ea-58bc-8db5-3e808b1953a1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1328_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1328_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1e16f938-326b-4d26-9f87-0c7e6a6f9506 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 79fd602b-3e8e-4353-aa78-4f5f170b607d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1328 38 false '-- '-- '-- '-- -13911 2009 04824ef8-fadb-546a-bfc0-957cf62e574e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1328_demographic Dead '-- '-- '-- '-- 13911 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2009.0 '-- '-- b7fddc9e-b9ea-58bc-8db5-3e808b1953a1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1328_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 214 30 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1328_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2f91255a-7455-4391-83ea-a432d871e9d3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 79fd602b-3e8e-4353-aa78-4f5f170b607d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1328 38 false '-- '-- '-- '-- -13911 2009 04824ef8-fadb-546a-bfc0-957cf62e574e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1328_demographic Dead '-- '-- '-- '-- 13911 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2009.0 '-- '-- b7fddc9e-b9ea-58bc-8db5-3e808b1953a1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1328_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 395 275 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1328_treatment Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 53a24073-31e5-5429-81ae-5e46520bfad4 '-- yes '-- '-- Chemotherapy +TCGA-OV 79fd602b-3e8e-4353-aa78-4f5f170b607d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1328 38 false '-- '-- '-- '-- -13911 2009 04824ef8-fadb-546a-bfc0-957cf62e574e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1328_demographic Dead '-- '-- '-- '-- 13911 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2009.0 '-- '-- b7fddc9e-b9ea-58bc-8db5-3e808b1953a1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1328_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 214 30 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1328_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 66b75103-c17a-45c0-8d1a-2a67fd5ec0a7 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 79fd602b-3e8e-4353-aa78-4f5f170b607d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1328 38 false '-- '-- '-- '-- -13911 2009 04824ef8-fadb-546a-bfc0-957cf62e574e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1328_demographic Dead '-- '-- '-- '-- 13911 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2009.0 '-- '-- b7fddc9e-b9ea-58bc-8db5-3e808b1953a1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1328_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 395 275 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1328_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7f22b61f-4a6c-4053-9c49-908e5a51fed5 '-- yes '-- '-- Chemotherapy +TCGA-OV 79fd602b-3e8e-4353-aa78-4f5f170b607d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1328 38 false '-- '-- '-- '-- -13911 2009 04824ef8-fadb-546a-bfc0-957cf62e574e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1328_demographic Dead '-- '-- '-- '-- 13911 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2009.0 '-- '-- b7fddc9e-b9ea-58bc-8db5-3e808b1953a1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1328_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 395 275 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1328_treatment3 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cf9732b0-7c11-4ff9-8322-d854674ab2db '-- yes '-- '-- Chemotherapy +TCGA-OV 79fd602b-3e8e-4353-aa78-4f5f170b607d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1328 38 false '-- '-- '-- '-- -13911 2009 04824ef8-fadb-546a-bfc0-957cf62e574e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1328_demographic Dead '-- '-- '-- '-- 14155 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 244 '-- '-- '-- f0872431-44ce-49fa-bf2f-bb8fc3309d66 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1328_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1328_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1328_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0ad0c26c-a7c3-4974-a31a-5487f4180277 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 79fd602b-3e8e-4353-aa78-4f5f170b607d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1328 38 false '-- '-- '-- '-- -13911 2009 04824ef8-fadb-546a-bfc0-957cf62e574e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1328_demographic Dead '-- '-- '-- '-- 14155 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 244 '-- '-- '-- f0872431-44ce-49fa-bf2f-bb8fc3309d66 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1328_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1328_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1328_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e0376fa9-a502-44f2-9088-2bf959c506c2 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7a08efd0-f984-430e-a8eb-1881047214b6 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2102 74 false '-- '-- '-- '-- -27256 197 59f2314e-8e36-5351-b82e-da8dc14da71e '-- not reported female '-- '-- '-- '-- white TCGA-61-2102_demographic Dead '-- '-- '-- '-- 27256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 197.0 '-- '-- 84670ab1-8300-5eb8-b801-8c98bdb6bb25 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2102_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2102_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 549486da-c014-49a4-a9c9-2f3432dbf42c Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 7a08efd0-f984-430e-a8eb-1881047214b6 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2102 74 false '-- '-- '-- '-- -27256 197 59f2314e-8e36-5351-b82e-da8dc14da71e '-- not reported female '-- '-- '-- '-- white TCGA-61-2102_demographic Dead '-- '-- '-- '-- 27256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 197.0 '-- '-- 84670ab1-8300-5eb8-b801-8c98bdb6bb25 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2102_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2102_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cd51846a-5d75-4bb0-8e07-f8d7ae61e9af Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7a08efd0-f984-430e-a8eb-1881047214b6 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2102 74 false '-- '-- '-- '-- -27256 197 59f2314e-8e36-5351-b82e-da8dc14da71e '-- not reported female '-- '-- '-- '-- white TCGA-61-2102_demographic Dead '-- '-- '-- '-- 27256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 197.0 '-- '-- 84670ab1-8300-5eb8-b801-8c98bdb6bb25 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2102_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2102_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fb9a5e5e-2e41-553f-884d-4c76f7b94700 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7a75d318-b301-4f77-a97f-4d6784d27216 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1901 65 false '-- '-- '-- '-- -24042 347 56ffcb08-2fc5-5dd9-b2ee-702d296512cf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1901_demographic Dead '-- '-- '-- '-- 24371 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 329 '-- '-- '-- 12ac4198-a45d-4ff4-b614-1b6c25f43287 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1901_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1901_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1901_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6c9d4ba4-2e11-4625-af30-4420e44f985b '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 7a75d318-b301-4f77-a97f-4d6784d27216 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1901 65 false '-- '-- '-- '-- -24042 347 56ffcb08-2fc5-5dd9-b2ee-702d296512cf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1901_demographic Dead '-- '-- '-- '-- 24371 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 329 '-- '-- '-- 12ac4198-a45d-4ff4-b614-1b6c25f43287 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1901_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1901_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1901_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f176c6fa-0b6f-42c0-8019-c2d52a1d36ef '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7a75d318-b301-4f77-a97f-4d6784d27216 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1901 65 false '-- '-- '-- '-- -24042 347 56ffcb08-2fc5-5dd9-b2ee-702d296512cf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1901_demographic Dead '-- '-- '-- '-- 24042 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 347.0 '-- '-- 3f12a34d-65a1-550a-889b-06a3b709c445 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1901_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 294 28 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1901_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3941 '-- mg '-- '-- '-- '-- 3b24a4ed-e8d7-4587-82e0-cf25cd46d162 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7a75d318-b301-4f77-a97f-4d6784d27216 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1901 65 false '-- '-- '-- '-- -24042 347 56ffcb08-2fc5-5dd9-b2ee-702d296512cf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1901_demographic Dead '-- '-- '-- '-- 24042 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 347.0 '-- '-- 3f12a34d-65a1-550a-889b-06a3b709c445 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1901_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 294 28 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1901_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- 2098 '-- mg '-- '-- '-- '-- b271476e-d9e5-4696-b241-36f45ef37a17 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7a75d318-b301-4f77-a97f-4d6784d27216 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1901 65 false '-- '-- '-- '-- -24042 347 56ffcb08-2fc5-5dd9-b2ee-702d296512cf '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1901_demographic Dead '-- '-- '-- '-- 24042 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 347.0 '-- '-- 3f12a34d-65a1-550a-889b-06a3b709c445 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1901_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 337 330 '-- '-- '-- '-- '-- '-- '-- '-- 7.0 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1901_treatment '-- '-- '-- '-- '-- '-- Distant Site '-- 2100 '-- cGy '-- '-- '-- '-- e974c78b-ab53-53fc-94a0-d1b0b5676967 Palliative yes '-- '-- Radiation, External Beam +TCGA-OV 7ab3765f-910a-41c9-86cc-08534d2a4e4b Informed Consent 35 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1907 63 false '-- '-- '-- '-- -23204 '-- 6bdcf0d2-e322-541f-990b-836a67d89453 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1907_demographic Alive '-- '-- '-- '-- 23947 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 743 '-- '-- '-- f16b6307-d859-488f-8eed-f42a9f6115b1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1907_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1907_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1907_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ac13bacd-d807-4fd0-aed0-cb88443daae6 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 7ab3765f-910a-41c9-86cc-08534d2a4e4b Informed Consent 35 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1907 63 false '-- '-- '-- '-- -23204 '-- 6bdcf0d2-e322-541f-990b-836a67d89453 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1907_demographic Alive '-- '-- '-- '-- 23947 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 743 '-- '-- '-- f16b6307-d859-488f-8eed-f42a9f6115b1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1907_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1907_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1907_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e429d8e4-acbc-4173-9c1a-a3049bc3cbaf '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7ab3765f-910a-41c9-86cc-08534d2a4e4b Informed Consent 35 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1907 63 false '-- '-- '-- '-- -23204 '-- 6bdcf0d2-e322-541f-990b-836a67d89453 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1907_demographic Alive '-- '-- '-- '-- 23204 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 952.0 '-- '-- f1a0d46b-6431-59c0-a037-7730f9269b42 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1907_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1907_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 02272d8f-5e39-4794-a45e-2e50b7fc1394 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 7ab3765f-910a-41c9-86cc-08534d2a4e4b Informed Consent 35 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1907 63 false '-- '-- '-- '-- -23204 '-- 6bdcf0d2-e322-541f-990b-836a67d89453 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1907_demographic Alive '-- '-- '-- '-- 23204 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 952.0 '-- '-- f1a0d46b-6431-59c0-a037-7730f9269b42 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1907_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 927 774 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1907_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 36c20df2-3f64-4152-8f68-96d9d94db43e '-- yes '-- '-- Chemotherapy +TCGA-OV 7ab3765f-910a-41c9-86cc-08534d2a4e4b Informed Consent 35 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1907 63 false '-- '-- '-- '-- -23204 '-- 6bdcf0d2-e322-541f-990b-836a67d89453 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1907_demographic Alive '-- '-- '-- '-- 23204 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 952.0 '-- '-- f1a0d46b-6431-59c0-a037-7730f9269b42 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1907_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 163 37 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1907_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- 678 '-- mg '-- '-- '-- '-- 62db8a82-b200-451a-a6d4-bb86aa603223 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7ab3765f-910a-41c9-86cc-08534d2a4e4b Informed Consent 35 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1907 63 false '-- '-- '-- '-- -23204 '-- 6bdcf0d2-e322-541f-990b-836a67d89453 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1907_demographic Alive '-- '-- '-- '-- 23204 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 952.0 '-- '-- f1a0d46b-6431-59c0-a037-7730f9269b42 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1907_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 357 37 '-- '-- '-- '-- '-- '-- '-- 17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1907_treatment4 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 14280 '-- mg '-- '-- '-- '-- 64b8ba73-b831-4b22-89a2-bc43eb2ee0fa Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7ab3765f-910a-41c9-86cc-08534d2a4e4b Informed Consent 35 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1907 63 false '-- '-- '-- '-- -23204 '-- 6bdcf0d2-e322-541f-990b-836a67d89453 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1907_demographic Alive '-- '-- '-- '-- 23204 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 952.0 '-- '-- f1a0d46b-6431-59c0-a037-7730f9269b42 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1907_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 163 37 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1907_treatment Oxaliplatin '-- '-- '-- '-- '-- '-- '-- 768 '-- mg '-- '-- '-- '-- e2cf157b-2a68-59de-a307-1262ad857b1b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7b042fb2-8f53-4fb1-8a44-40cd2128b279 Informed Consent 427 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1771 76 false '-- '-- '-- '-- -28093 '-- 6ad9c565-676b-5adf-9230-817aaa6579fa '-- not reported female '-- '-- '-- '-- white TCGA-29-1771_demographic Alive '-- '-- '-- '-- 28688 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 595 '-- '-- '-- 4f17be83-ac3e-4368-a351-d56cc1ff6aa5 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1771_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1771_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1771_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0e8b2244-2f1a-4fed-8c9c-c45fd3a24d14 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 7b042fb2-8f53-4fb1-8a44-40cd2128b279 Informed Consent 427 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1771 76 false '-- '-- '-- '-- -28093 '-- 6ad9c565-676b-5adf-9230-817aaa6579fa '-- not reported female '-- '-- '-- '-- white TCGA-29-1771_demographic Alive '-- '-- '-- '-- 28688 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 595 '-- '-- '-- 4f17be83-ac3e-4368-a351-d56cc1ff6aa5 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1771_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1771_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1771_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2faf4e6d-61b5-48bb-b056-e0bae27ffeee '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7b042fb2-8f53-4fb1-8a44-40cd2128b279 Informed Consent 427 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1771 76 false '-- '-- '-- '-- -28093 '-- 6ad9c565-676b-5adf-9230-817aaa6579fa '-- not reported female '-- '-- '-- '-- white TCGA-29-1771_demographic Alive '-- '-- '-- '-- 28093 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 686.0 '-- '-- c8b01b22-c629-58cd-a4ff-42e52fa73a01 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1771_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 728 602 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1771_treatment2 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 695 '-- mg '-- '-- '-- '-- 13d5a290-5faf-485c-b115-bd9d81b0fa09 '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 7b042fb2-8f53-4fb1-8a44-40cd2128b279 Informed Consent 427 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1771 76 false '-- '-- '-- '-- -28093 '-- 6ad9c565-676b-5adf-9230-817aaa6579fa '-- not reported female '-- '-- '-- '-- white TCGA-29-1771_demographic Alive '-- '-- '-- '-- 28093 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 686.0 '-- '-- c8b01b22-c629-58cd-a4ff-42e52fa73a01 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1771_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1771_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 248272bb-2e91-41af-a68b-b99aa411b26f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 7b042fb2-8f53-4fb1-8a44-40cd2128b279 Informed Consent 427 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1771 76 false '-- '-- '-- '-- -28093 '-- 6ad9c565-676b-5adf-9230-817aaa6579fa '-- not reported female '-- '-- '-- '-- white TCGA-29-1771_demographic Alive '-- '-- '-- '-- 28093 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 686.0 '-- '-- c8b01b22-c629-58cd-a4ff-42e52fa73a01 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1771_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 595 189 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1771_treatment5 Clinical Trial '-- '-- '-- '-- '-- '-- '-- 2 '-- mg '-- '-- '-- '-- 25293ed3-9409-4abc-8e36-b5df5ecc52d1 Adjuvant yes '-- '-- Immunotherapy (Including Vaccines) +TCGA-OV 7b042fb2-8f53-4fb1-8a44-40cd2128b279 Informed Consent 427 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1771 76 false '-- '-- '-- '-- -28093 '-- 6ad9c565-676b-5adf-9230-817aaa6579fa '-- not reported female '-- '-- '-- '-- white TCGA-29-1771_demographic Alive '-- '-- '-- '-- 28093 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 686.0 '-- '-- c8b01b22-c629-58cd-a4ff-42e52fa73a01 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1771_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 728 602 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1771_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 245 '-- mg '-- '-- '-- '-- 67fe8a73-4722-405a-8d19-90c243164552 '-- yes '-- '-- Chemotherapy +TCGA-OV 7b042fb2-8f53-4fb1-8a44-40cd2128b279 Informed Consent 427 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1771 76 false '-- '-- '-- '-- -28093 '-- 6ad9c565-676b-5adf-9230-817aaa6579fa '-- not reported female '-- '-- '-- '-- white TCGA-29-1771_demographic Alive '-- '-- '-- '-- 28093 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 686.0 '-- '-- c8b01b22-c629-58cd-a4ff-42e52fa73a01 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1771_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 728 602 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1771_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 319 '-- mg '-- '-- '-- '-- afdef360-0c52-4558-b05c-8082ad045073 '-- yes '-- '-- Chemotherapy +TCGA-OV 7b042fb2-8f53-4fb1-8a44-40cd2128b279 Informed Consent 427 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1771 76 false '-- '-- '-- '-- -28093 '-- 6ad9c565-676b-5adf-9230-817aaa6579fa '-- not reported female '-- '-- '-- '-- white TCGA-29-1771_demographic Alive '-- '-- '-- '-- 28093 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 686.0 '-- '-- c8b01b22-c629-58cd-a4ff-42e52fa73a01 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1771_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 140 27 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1771_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 345 '-- mg '-- '-- '-- '-- dc0daa9b-bebe-55e0-b55c-60d9f8b6bf32 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7b042fb2-8f53-4fb1-8a44-40cd2128b279 Informed Consent 427 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1771 76 false '-- '-- '-- '-- -28093 '-- 6ad9c565-676b-5adf-9230-817aaa6579fa '-- not reported female '-- '-- '-- '-- white TCGA-29-1771_demographic Alive '-- '-- '-- '-- 28093 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 686.0 '-- '-- c8b01b22-c629-58cd-a4ff-42e52fa73a01 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1771_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 140 27 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1771_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 200 '-- mg '-- '-- '-- '-- f6c10fee-edd7-4628-acc6-82f64fb39768 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7c466a5f-a6b4-4d1a-a0f5-ddcd7ef90ff1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1109 62 false '-- '-- '-- '-- -23002 1562 51854744-93b7-5026-a52b-398fdc2b8ec0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1109_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 17b3c06c-0835-45e9-9a03-f2cccb955abe false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1109_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1109_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1109_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0561e859-c9f3-47fd-92f3-60c66a782ea4 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7c466a5f-a6b4-4d1a-a0f5-ddcd7ef90ff1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1109 62 false '-- '-- '-- '-- -23002 1562 51854744-93b7-5026-a52b-398fdc2b8ec0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1109_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 17b3c06c-0835-45e9-9a03-f2cccb955abe false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1109_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1109_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 987 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1109_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6656f489-4e40-4f2d-a371-06d759f165c5 '-- yes '-- '-- Surgery, NOS +TCGA-OV 7c466a5f-a6b4-4d1a-a0f5-ddcd7ef90ff1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1109 62 false '-- '-- '-- '-- -23002 1562 51854744-93b7-5026-a52b-398fdc2b8ec0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1109_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 17b3c06c-0835-45e9-9a03-f2cccb955abe false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1109_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1109_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1109_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cf32e575-aed9-4c88-b1b5-7892c18eb053 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 7c466a5f-a6b4-4d1a-a0f5-ddcd7ef90ff1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1109 62 false '-- '-- '-- '-- -23002 1562 51854744-93b7-5026-a52b-398fdc2b8ec0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1109_demographic Dead '-- '-- '-- '-- 23002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1562.0 '-- '-- 412e8ae0-f962-5ef4-8fa1-0cb072d378af true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1109_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1433 1392 '-- '-- Progressive Disease '-- '-- '-- '-- '-- 30.0 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1109_treatment '-- '-- '-- '-- '-- '-- Locoregional Site '-- 5500 '-- cGy '-- '-- '-- '-- 5ad1d6e4-f119-548e-994c-585e7119e113 '-- yes '-- '-- Radiation, External Beam +TCGA-OV 7c466a5f-a6b4-4d1a-a0f5-ddcd7ef90ff1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1109 62 false '-- '-- '-- '-- -23002 1562 51854744-93b7-5026-a52b-398fdc2b8ec0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1109_demographic Dead '-- '-- '-- '-- 23002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1562.0 '-- '-- 412e8ae0-f962-5ef4-8fa1-0cb072d378af true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1109_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1109_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a992f8ff-7033-41e0-9969-de374e03d539 Adjuvant yes Partial Response '-- Pharmaceutical Therapy, NOS +TCGA-OV 7c466a5f-a6b4-4d1a-a0f5-ddcd7ef90ff1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1109 62 false '-- '-- '-- '-- -23002 1562 51854744-93b7-5026-a52b-398fdc2b8ec0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1109_demographic Dead '-- '-- '-- '-- 23989 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 987 '-- '-- '-- c11f3845-abcd-4e88-bf5a-3fe2a65eda2c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1109_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1109_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1109_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 59117b0e-5b82-495d-833d-27b4f7e9e2db '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7c466a5f-a6b4-4d1a-a0f5-ddcd7ef90ff1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1109 62 false '-- '-- '-- '-- -23002 1562 51854744-93b7-5026-a52b-398fdc2b8ec0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1109_demographic Dead '-- '-- '-- '-- 23989 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 987 '-- '-- '-- c11f3845-abcd-4e88-bf5a-3fe2a65eda2c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1109_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1109_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1109_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7c4c601b-21a3-48ef-bbd4-5f9748450d1c '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 7ca97692-0bf5-4bbd-81ce-10a051d04bd5 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0938 80 false '-- '-- '-- '-- -29558 636 6b9e14b1-a534-5fd8-9147-5a6e1b068be7 '-- not reported female '-- '-- '-- '-- white TCGA-10-0938_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0484e57b-65bb-41b1-ae50-fae60efec2b2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0938_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0938_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 362 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0938_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b33c1221-87f7-48d9-9f28-e0acf23f1dab '-- yes '-- '-- Surgery, NOS +TCGA-OV 7ca97692-0bf5-4bbd-81ce-10a051d04bd5 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0938 80 false '-- '-- '-- '-- -29558 636 6b9e14b1-a534-5fd8-9147-5a6e1b068be7 '-- not reported female '-- '-- '-- '-- white TCGA-10-0938_demographic Dead '-- '-- '-- '-- 29920 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 362 '-- '-- '-- 77c0cadc-f0f7-42fd-a2f8-8c84a0e3560c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0938_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0938_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 7ca97692-0bf5-4bbd-81ce-10a051d04bd5 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0938 80 false '-- '-- '-- '-- -29558 636 6b9e14b1-a534-5fd8-9147-5a6e1b068be7 '-- not reported female '-- '-- '-- '-- white TCGA-10-0938_demographic Dead '-- '-- '-- '-- 29558 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 636.0 '-- '-- 95b0caf3-50a8-5bc7-ac12-e0b9f543e36e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0938_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 188 41 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0938_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- 960 '-- mg/m2 '-- '-- '-- '-- 2dd294e0-b71b-49b8-a9e9-a22c672871dc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7ca97692-0bf5-4bbd-81ce-10a051d04bd5 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0938 80 false '-- '-- '-- '-- -29558 636 6b9e14b1-a534-5fd8-9147-5a6e1b068be7 '-- not reported female '-- '-- '-- '-- white TCGA-10-0938_demographic Dead '-- '-- '-- '-- 29558 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 636.0 '-- '-- 95b0caf3-50a8-5bc7-ac12-e0b9f543e36e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0938_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 148 30 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0938_treatment2 Letrozole '-- '-- '-- '-- '-- '-- '-- 225 '-- mg/m2 '-- '-- '-- '-- 536edb6f-e968-4c8b-bffc-dd02d3f17647 Adjuvant yes '-- '-- Hormone Therapy +TCGA-OV 7ca97692-0bf5-4bbd-81ce-10a051d04bd5 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0938 80 false '-- '-- '-- '-- -29558 636 6b9e14b1-a534-5fd8-9147-5a6e1b068be7 '-- not reported female '-- '-- '-- '-- white TCGA-10-0938_demographic Dead '-- '-- '-- '-- 29558 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 636.0 '-- '-- 95b0caf3-50a8-5bc7-ac12-e0b9f543e36e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0938_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 153 30 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0938_treatment Leuprolide Acetate '-- '-- '-- '-- '-- '-- '-- 4 '-- mg/m2 '-- '-- '-- '-- 897d1bc2-1b39-5451-96fa-c762361d9bce Adjuvant yes '-- '-- Hormone Therapy +TCGA-OV 7ca97692-0bf5-4bbd-81ce-10a051d04bd5 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0938 80 false '-- '-- '-- '-- -29558 636 6b9e14b1-a534-5fd8-9147-5a6e1b068be7 '-- not reported female '-- '-- '-- '-- white TCGA-10-0938_demographic Dead '-- '-- '-- '-- 29558 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 636.0 '-- '-- 95b0caf3-50a8-5bc7-ac12-e0b9f543e36e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0938_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 188 41 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0938_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3150 '-- mg/m2 '-- '-- '-- '-- dda9c3a7-47cb-4b3a-bf81-a37bf87d8864 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7ca97692-0bf5-4bbd-81ce-10a051d04bd5 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0938 80 false '-- '-- '-- '-- -29558 636 6b9e14b1-a534-5fd8-9147-5a6e1b068be7 '-- not reported female '-- '-- '-- '-- white TCGA-10-0938_demographic Dead '-- '-- '-- '-- 29558 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 636.0 '-- '-- 95b0caf3-50a8-5bc7-ac12-e0b9f543e36e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0938_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0938_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e29b7231-f8f2-482a-b7d8-16dcac75aca0 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 7d03ddb6-f3fe-4b50-8bba-514aa65e7d0e Informed Consent 11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2044 77 false '-- '-- '-- '-- -28231 '-- 1d738d5b-91e3-54ea-8834-4818e8cc11ed '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2044_demographic Alive '-- '-- '-- '-- 28231 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 186.0 '-- '-- 44bb6d41-522c-5051-b9a5-d0fb8e4f3d93 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2044_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 151 32 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2044_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 154fbe2f-d112-5bb8-8427-fb209bdab068 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7d03ddb6-f3fe-4b50-8bba-514aa65e7d0e Informed Consent 11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2044 77 false '-- '-- '-- '-- -28231 '-- 1d738d5b-91e3-54ea-8834-4818e8cc11ed '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2044_demographic Alive '-- '-- '-- '-- 28231 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 186.0 '-- '-- 44bb6d41-522c-5051-b9a5-d0fb8e4f3d93 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2044_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 151 32 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2044_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1849a009-4c73-4e95-b81a-908e567d0c29 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7d03ddb6-f3fe-4b50-8bba-514aa65e7d0e Informed Consent 11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2044 77 false '-- '-- '-- '-- -28231 '-- 1d738d5b-91e3-54ea-8834-4818e8cc11ed '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-09-2044_demographic Alive '-- '-- '-- '-- 28231 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 186.0 '-- '-- 44bb6d41-522c-5051-b9a5-d0fb8e4f3d93 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2044_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2044_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c2262968-6643-46a6-8c31-dcf3291add40 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 7d1e9451-7a6a-4086-af7f-3ed57505daf0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1855 61 false '-- '-- '-- '-- -22394 75 d4ad8143-9fc3-5b79-9367-651779374b19 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1855_demographic Dead '-- '-- '-- '-- 22394 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 75.0 '-- '-- 2db40c1c-301c-58b3-8fd4-4144f4d41779 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1855_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1855_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f20478d8-cb2b-420d-bb2a-eb1840a030d3 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 7d1e9451-7a6a-4086-af7f-3ed57505daf0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1855 61 false '-- '-- '-- '-- -22394 75 d4ad8143-9fc3-5b79-9367-651779374b19 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1855_demographic Dead '-- '-- '-- '-- 22394 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 75.0 '-- '-- 2db40c1c-301c-58b3-8fd4-4144f4d41779 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1855_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1855_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fcb0a9f1-f52d-52c1-a814-5d5107a211c2 Adjuvant no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7d82ce56-32eb-4107-aa5c-c568764805c9 Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1569 52 false '-- '-- '-- '-- -19151 '-- ccfa0a00-6da8-544e-b65d-fcaddc7d839a '-- not reported female '-- '-- '-- '-- white TCGA-36-1569_demographic Alive '-- '-- '-- '-- 19151 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 885.0 '-- '-- e53d6502-63a5-5b12-b41d-ff5effc62a8e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1569_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1569_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 499ee2db-64c0-5acc-8b37-9c55a09eea9c Adjuvant yes Partial Response '-- Pharmaceutical Therapy, NOS +TCGA-OV 7d82ce56-32eb-4107-aa5c-c568764805c9 Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1569 52 false '-- '-- '-- '-- -19151 '-- ccfa0a00-6da8-544e-b65d-fcaddc7d839a '-- not reported female '-- '-- '-- '-- white TCGA-36-1569_demographic Alive '-- '-- '-- '-- 19151 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 885.0 '-- '-- e53d6502-63a5-5b12-b41d-ff5effc62a8e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1569_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1569_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6e1a89ac-2108-4153-a2be-80fed2099326 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1213.0 '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 281 27 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1557_treatment7 Topotecan '-- '-- '-- '-- '-- '-- '-- 15 '-- mg '-- '-- '-- '-- 041ea42f-e22d-4236-9e28-cecfd3ae57a8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1213.0 '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 281 27 '-- '-- '-- '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1557_treatment12 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6250 '-- mg '-- '-- '-- '-- 1d43c33f-4595-4ed4-b882-725ddea0ff9e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1213.0 '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1008 875 '-- '-- Progressive Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1557_treatment6 Cisplatin '-- '-- '-- '-- '-- '-- '-- 670 '-- mg '-- '-- '-- '-- 34b06176-290b-4955-8799-48b75e4e4edb '-- yes '-- '-- Chemotherapy +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1213.0 '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 281 27 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1557_treatment13 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 3392 '-- mg '-- '-- '-- '-- 41b30e73-70ea-4b9e-9558-1769b3e51e9d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1213.0 '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 445 368 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1557_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 175 '-- mg '-- '-- '-- '-- 4bf3f0b1-e365-44a2-a163-98b16144a0a2 '-- yes '-- '-- Chemotherapy +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1213.0 '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 623 462 '-- '-- Progressive Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1557_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5350 '-- mg '-- '-- '-- '-- 59434b69-199c-460a-8d30-d34805079144 '-- yes '-- '-- Chemotherapy +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1213.0 '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 873 765 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1557_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5a21b3a0-01ca-450b-9479-56d11fee6d52 Palliative yes '-- '-- Hormone Therapy +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1213.0 '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 727 644 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1557_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1300 '-- mg '-- '-- '-- '-- 5fadaf9b-fb11-4b08-8bf8-cb50347917ab '-- yes '-- '-- Chemotherapy +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1213.0 '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 445 368 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1557_treatment8 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 10980 '-- mg '-- '-- '-- '-- 6d2e6777-c225-48d0-b979-29b5620d707b '-- yes '-- '-- Chemotherapy +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1213.0 '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1557_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7d362024-51a3-4dc6-9a7e-041b81d5b4fd Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1213.0 '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 798 754 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1557_treatment15 Topotecan '-- '-- '-- '-- '-- '-- '-- 46 '-- mg '-- '-- '-- '-- 9d74b695-0355-48ff-809d-d8021d4976d4 '-- yes '-- '-- Chemotherapy +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1213.0 '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1154 1090 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1557_treatment10 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1300 '-- mg '-- '-- '-- '-- bb69ede5-707f-45b8-a4c5-ea3919ba95b2 '-- yes '-- '-- Chemotherapy +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1213.0 '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1069 1027 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1557_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 424 '-- mg '-- '-- '-- '-- ce397c25-8282-47da-bf5f-869afc59a4de '-- yes '-- '-- Chemotherapy +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1213.0 '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1154 1090 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1557_treatment16 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2315 '-- mg '-- '-- '-- '-- dec89cb2-34d7-4cbd-baac-ac8a2391c899 '-- yes '-- '-- Chemotherapy +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1213.0 '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 347 300 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1557_treatment Topotecan '-- '-- '-- '-- '-- '-- '-- 32 '-- mg '-- '-- '-- '-- e67a217f-812e-5248-be04-40dd2c35c244 '-- yes '-- '-- Chemotherapy +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1213.0 '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1008 875 '-- '-- Progressive Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1557_treatment9 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 12240 '-- mg '-- '-- '-- '-- e7cfd7e4-2969-41d5-ba75-cb00a30c8f68 '-- yes '-- '-- Chemotherapy +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 17943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1213.0 '-- '-- 017a1126-1b80-5060-b971-d27b20147a99 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1557_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 623 462 '-- '-- Progressive Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1557_treatment14 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2600 '-- mg '-- '-- '-- '-- eb4075c3-aa15-436b-81cd-03eda69bee80 '-- yes '-- '-- Chemotherapy +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 18390 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 447 '-- '-- '-- 4ced9b9f-e189-4939-a142-3799ac2bc49a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1557_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1557_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1557_treatment18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 87efef48-c7f2-46d4-acf3-4d94a3d70956 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7dcc809b-e33a-4453-b92a-c00786f48cb0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1557 49 false '-- '-- '-- '-- -17943 1213 c20d3b88-776c-5d07-aa24-9bff0c574c2b '-- not reported female '-- '-- '-- '-- white TCGA-24-1557_demographic Dead '-- '-- '-- '-- 18390 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 447 '-- '-- '-- 4ced9b9f-e189-4939-a142-3799ac2bc49a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1557_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1557_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1557_treatment19 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d97a80df-a4df-4b15-a1f7-503d23e461c7 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13657 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 470 '-- '-- '-- 8e692e6f-0c8f-438b-8d44-2e189906cd0a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1105_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1105_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1105_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7dd7dfa9-30e1-46b1-ae5d-e22f09e3dbdd '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13657 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 470 '-- '-- '-- 8e692e6f-0c8f-438b-8d44-2e189906cd0a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1105_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1105_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1105_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d794b4ee-4b25-4058-9313-383c2003e1c6 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13187 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1442.0 '-- '-- fe611014-c242-5d62-9a13-f3b96ce70bc3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1105_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 584 486 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1105_treatment15 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3360 '-- mg '-- '-- '-- '-- 12fab687-dea2-417d-8704-61904e6f54c2 '-- yes '-- '-- Chemotherapy +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13187 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1442.0 '-- '-- fe611014-c242-5d62-9a13-f3b96ce70bc3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1105_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 178 25 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1105_treatment9 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1400 '-- mg '-- '-- '-- '-- 40a07d99-366d-4500-8fdd-413075ef718a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13187 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1442.0 '-- '-- fe611014-c242-5d62-9a13-f3b96ce70bc3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1105_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1116 1004 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1105_treatment10 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 19320 '-- mg '-- '-- '-- '-- 4e728f78-e5e7-404c-ba24-053a18574bd4 '-- yes '-- '-- Chemotherapy +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13187 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1442.0 '-- '-- fe611014-c242-5d62-9a13-f3b96ce70bc3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1105_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1298 1228 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1105_treatment6 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 2001 '-- mg '-- '-- '-- '-- 5d5bd019-5550-4041-a055-6be8f49be1f3 '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13187 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1442.0 '-- '-- fe611014-c242-5d62-9a13-f3b96ce70bc3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1105_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1340 1313 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1105_treatment11 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 975 '-- mg '-- '-- '-- '-- 5e688ab9-6e16-483a-b389-fcda38e32743 '-- yes '-- '-- Chemotherapy +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13187 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1442.0 '-- '-- fe611014-c242-5d62-9a13-f3b96ce70bc3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1105_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1285 1263 '-- '-- Progressive Disease '-- '-- '-- '-- '-- 28.0 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1105_treatment '-- '-- '-- '-- '-- '-- Distant Site '-- 7000 '-- cGy '-- '-- '-- '-- 6193e8fc-9c24-5bb3-8826-fda7e5d90222 '-- yes '-- '-- Radiation, External Beam +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13187 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1442.0 '-- '-- fe611014-c242-5d62-9a13-f3b96ce70bc3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1105_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 860 724 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1105_treatment2 Topotecan '-- '-- '-- '-- '-- '-- '-- 48 '-- mg '-- '-- '-- '-- 7583156f-3be6-45bd-9a6c-cbacb90787f1 '-- yes '-- '-- Chemotherapy +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13187 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1442.0 '-- '-- fe611014-c242-5d62-9a13-f3b96ce70bc3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1105_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 860 724 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1105_treatment8 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- 486 '-- mg '-- '-- '-- '-- 861bfa94-5c65-4ddf-a304-d53a9be78776 '-- yes '-- '-- Chemotherapy +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13187 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1442.0 '-- '-- fe611014-c242-5d62-9a13-f3b96ce70bc3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1105_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 584 486 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1105_treatment14 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1725 '-- mg '-- '-- '-- '-- 9642a5d9-28f5-48f3-be2c-889d2fe8cd71 '-- yes '-- '-- Chemotherapy +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13187 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1442.0 '-- '-- fe611014-c242-5d62-9a13-f3b96ce70bc3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1105_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 178 25 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1105_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3410 '-- mg '-- '-- '-- '-- ac7e3d5d-5f40-45b3-820b-72f868eb0c1b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13187 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1442.0 '-- '-- fe611014-c242-5d62-9a13-f3b96ce70bc3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1105_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1116 1004 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1105_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 258 '-- mg '-- '-- '-- '-- b5e21829-d1bf-4c1b-9f99-46a46133079f '-- yes '-- '-- Chemotherapy +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13187 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1442.0 '-- '-- fe611014-c242-5d62-9a13-f3b96ce70bc3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1105_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1375 1368 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1105_treatment4 Cisplatin '-- '-- '-- '-- '-- '-- '-- 92 '-- mg '-- '-- '-- '-- b966aae6-97fd-41e5-9022-aedec4cbe112 '-- yes '-- '-- Chemotherapy +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13187 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1442.0 '-- '-- fe611014-c242-5d62-9a13-f3b96ce70bc3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1105_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1375 1368 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1105_treatment12 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 1826 '-- mg '-- '-- '-- '-- d3a923c8-cd7e-45e3-b4a5-bcddf5b6fb27 '-- yes '-- '-- Chemotherapy +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13187 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1442.0 '-- '-- fe611014-c242-5d62-9a13-f3b96ce70bc3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1105_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1298 1228 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-1105_treatment5 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 4500 '-- mg '-- '-- '-- '-- d7e523bd-da3b-4d5d-85aa-ed16380eb9ec '-- yes '-- '-- Chemotherapy +TCGA-OV 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1105 36 false '-- '-- '-- '-- -13187 1442 8580420d-47dd-59ce-8343-b6d4b53415e6 '-- not reported female '-- '-- '-- '-- white TCGA-24-1105_demographic Dead '-- '-- '-- '-- 13187 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1442.0 '-- '-- fe611014-c242-5d62-9a13-f3b96ce70bc3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1105_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1200 1130 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-24-1105_treatment13 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2275 '-- mg '-- '-- '-- '-- ef3d481d-6a86-4417-8163-efbea79599ee '-- yes '-- '-- Chemotherapy +TCGA-OV 7e34d3c1-1fab-4326-9a69-4260d2bac558 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0804 73 false '-- '-- '-- '-- -27021 1073 8b22ed63-d399-5745-b49d-e471cc2b44b8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0804_demographic Dead '-- '-- '-- '-- 27350 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 329 '-- '-- '-- e8754a9c-733b-40f4-a5e7-26e59825d876 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0804_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0804_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0804_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- deec39ca-0e24-47b9-8101-142d5f7955e0 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 7e34d3c1-1fab-4326-9a69-4260d2bac558 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0804 73 false '-- '-- '-- '-- -27021 1073 8b22ed63-d399-5745-b49d-e471cc2b44b8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0804_demographic Dead '-- '-- '-- '-- 27350 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 329 '-- '-- '-- e8754a9c-733b-40f4-a5e7-26e59825d876 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0804_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0804_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0804_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ebcc39e8-f757-42ca-b49c-0a9354db5558 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7e34d3c1-1fab-4326-9a69-4260d2bac558 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0804 73 false '-- '-- '-- '-- -27021 1073 8b22ed63-d399-5745-b49d-e471cc2b44b8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0804_demographic Dead '-- '-- '-- '-- 27021 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1073.0 '-- '-- f43741dc-837f-5308-a339-6bfc823b87e7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0804_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0804_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 03f3affc-326c-4f00-aa9b-74a19bd3a077 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 7e34d3c1-1fab-4326-9a69-4260d2bac558 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0804 73 false '-- '-- '-- '-- -27021 1073 8b22ed63-d399-5745-b49d-e471cc2b44b8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0804_demographic Dead '-- '-- '-- '-- 27021 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1073.0 '-- '-- f43741dc-837f-5308-a339-6bfc823b87e7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0804_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 161 26 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0804_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 275af04f-ee9a-5d95-94a0-05805c337d99 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7e34d3c1-1fab-4326-9a69-4260d2bac558 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0804 73 false '-- '-- '-- '-- -27021 1073 8b22ed63-d399-5745-b49d-e471cc2b44b8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0804_demographic Dead '-- '-- '-- '-- 27021 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1073.0 '-- '-- f43741dc-837f-5308-a339-6bfc823b87e7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0804_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 161 26 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0804_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e2378559-3201-40a6-93b9-0e6fb7e35d13 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7e34d3c1-1fab-4326-9a69-4260d2bac558 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0804 73 false '-- '-- '-- '-- -27021 1073 8b22ed63-d399-5745-b49d-e471cc2b44b8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0804_demographic Dead '-- '-- '-- '-- 27021 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1073.0 '-- '-- f43741dc-837f-5308-a339-6bfc823b87e7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0804_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 270 270 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0804_treatment2 Monoclonal Antibody Hu3S193 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ee41898d-fbcc-49d7-b011-d9f74152023b Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV 7e4e7914-ec23-4c55-98d6-3c5eecffa8e4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2298 55 false '-- '-- '-- '-- -20453 1620 38d463fa-52e1-5bde-ba99-892ae69ef237 '-- not reported female '-- '-- '-- '-- white TCGA-24-2298_demographic Dead '-- '-- '-- '-- 20453 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1620.0 '-- '-- 13e8bf35-e57d-57bc-a649-ba968b92dd9d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2298_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 726 474 '-- '-- Recurrent Disease '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2298_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2477 '-- mg '-- '-- '-- '-- 42a31c9b-aa8c-4740-ad09-7d54a8693204 '-- yes '-- '-- Chemotherapy +TCGA-OV 7e4e7914-ec23-4c55-98d6-3c5eecffa8e4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2298 55 false '-- '-- '-- '-- -20453 1620 38d463fa-52e1-5bde-ba99-892ae69ef237 '-- not reported female '-- '-- '-- '-- white TCGA-24-2298_demographic Dead '-- '-- '-- '-- 20453 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1620.0 '-- '-- 13e8bf35-e57d-57bc-a649-ba968b92dd9d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2298_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- 474 '-- '-- Recurrent Disease '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2298_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1984 '-- mg '-- '-- '-- '-- 436a72ca-b298-41fc-ae25-73dd201a114c '-- yes '-- '-- Chemotherapy +TCGA-OV 7e4e7914-ec23-4c55-98d6-3c5eecffa8e4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2298 55 false '-- '-- '-- '-- -20453 1620 38d463fa-52e1-5bde-ba99-892ae69ef237 '-- not reported female '-- '-- '-- '-- white TCGA-24-2298_demographic Dead '-- '-- '-- '-- 20453 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1620.0 '-- '-- 13e8bf35-e57d-57bc-a649-ba968b92dd9d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2298_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 1568 1454 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2298_treatment Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 308 '-- mg '-- '-- '-- '-- 5d8058bd-49e3-5610-b7f5-2c424cb4966d '-- yes '-- '-- Chemotherapy +TCGA-OV 7e4e7914-ec23-4c55-98d6-3c5eecffa8e4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2298 55 false '-- '-- '-- '-- -20453 1620 38d463fa-52e1-5bde-ba99-892ae69ef237 '-- not reported female '-- '-- '-- '-- white TCGA-24-2298_demographic Dead '-- '-- '-- '-- 20453 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1620.0 '-- '-- 13e8bf35-e57d-57bc-a649-ba968b92dd9d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2298_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 218 12 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2298_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3605 '-- mg '-- '-- '-- '-- 6497f7ec-d39d-4ce6-813b-a8c635d7914a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7e4e7914-ec23-4c55-98d6-3c5eecffa8e4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2298 55 false '-- '-- '-- '-- -20453 1620 38d463fa-52e1-5bde-ba99-892ae69ef237 '-- not reported female '-- '-- '-- '-- white TCGA-24-2298_demographic Dead '-- '-- '-- '-- 20453 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1620.0 '-- '-- 13e8bf35-e57d-57bc-a649-ba968b92dd9d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2298_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 1328 986 '-- '-- Progressive Disease '-- '-- '-- '-- 13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2298_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 424 '-- mg '-- '-- '-- '-- 80b9d9a8-1c97-4178-b6e6-71d5278440b5 '-- yes '-- '-- Chemotherapy +TCGA-OV 7e4e7914-ec23-4c55-98d6-3c5eecffa8e4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2298 55 false '-- '-- '-- '-- -20453 1620 38d463fa-52e1-5bde-ba99-892ae69ef237 '-- not reported female '-- '-- '-- '-- white TCGA-24-2298_demographic Dead '-- '-- '-- '-- 20453 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1620.0 '-- '-- 13e8bf35-e57d-57bc-a649-ba968b92dd9d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2298_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2298_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cf236c87-eb93-4a3e-910e-81baf3c29039 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 7e4e7914-ec23-4c55-98d6-3c5eecffa8e4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2298 55 false '-- '-- '-- '-- -20453 1620 38d463fa-52e1-5bde-ba99-892ae69ef237 '-- not reported female '-- '-- '-- '-- white TCGA-24-2298_demographic Dead '-- '-- '-- '-- 20453 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1620.0 '-- '-- 13e8bf35-e57d-57bc-a649-ba968b92dd9d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2298_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 1328 986 '-- '-- Progressive Disease '-- '-- '-- '-- 13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2298_treatment8 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- 731 '-- mg '-- '-- '-- '-- d72f638e-da70-4e7f-ba5e-bb2dba723b46 '-- yes '-- '-- Chemotherapy +TCGA-OV 7e4e7914-ec23-4c55-98d6-3c5eecffa8e4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2298 55 false '-- '-- '-- '-- -20453 1620 38d463fa-52e1-5bde-ba99-892ae69ef237 '-- not reported female '-- '-- '-- '-- white TCGA-24-2298_demographic Dead '-- '-- '-- '-- 20453 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1620.0 '-- '-- 13e8bf35-e57d-57bc-a649-ba968b92dd9d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2298_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 218 12 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2298_treatment4 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 5830 '-- mg '-- '-- '-- '-- eda1397a-c156-4585-8dea-db41fa3df541 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7e4e7914-ec23-4c55-98d6-3c5eecffa8e4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2298 55 false '-- '-- '-- '-- -20453 1620 38d463fa-52e1-5bde-ba99-892ae69ef237 '-- not reported female '-- '-- '-- '-- white TCGA-24-2298_demographic Dead '-- '-- '-- '-- 20453 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1620.0 '-- '-- 13e8bf35-e57d-57bc-a649-ba968b92dd9d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2298_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 817 762 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2298_treatment7 Topotecan '-- '-- '-- '-- '-- '-- '-- 28 '-- mg '-- '-- '-- '-- fc5e42ac-3a4a-4347-91eb-e9733890bb88 '-- yes '-- '-- Chemotherapy +TCGA-OV 7e4e7914-ec23-4c55-98d6-3c5eecffa8e4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2298 55 false '-- '-- '-- '-- -20453 1620 38d463fa-52e1-5bde-ba99-892ae69ef237 '-- not reported female '-- '-- '-- '-- white TCGA-24-2298_demographic Dead '-- '-- '-- '-- 20922 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 469 '-- '-- '-- b0d5a5b8-05c7-4037-ac75-8096d0ab87e3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2298_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2298_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2298_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 47be254c-b5bc-4724-b497-dad00a2641fb '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 7e4e7914-ec23-4c55-98d6-3c5eecffa8e4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2298 55 false '-- '-- '-- '-- -20453 1620 38d463fa-52e1-5bde-ba99-892ae69ef237 '-- not reported female '-- '-- '-- '-- white TCGA-24-2298_demographic Dead '-- '-- '-- '-- 20922 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 469 '-- '-- '-- b0d5a5b8-05c7-4037-ac75-8096d0ab87e3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2298_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2298_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2298_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bf2527c9-1be1-4929-a245-a72488f5b640 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7e6cdbc7-26a7-44f2-96fa-094738cbccae '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1370 52 false '-- '-- '-- '-- -19329 '-- a5063621-e5de-56ae-874e-889f5ce9d6b0 '-- not reported female '-- '-- '-- '-- white TCGA-04-1370_demographic Alive '-- '-- '-- '-- 19329 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1824.0 '-- '-- e9a054c6-97c1-5397-8692-23d912d35af9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-04-1370_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1370_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 13926481-be69-461e-9aeb-a758d88f374f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 7e6cdbc7-26a7-44f2-96fa-094738cbccae '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1370 52 false '-- '-- '-- '-- -19329 '-- a5063621-e5de-56ae-874e-889f5ce9d6b0 '-- not reported female '-- '-- '-- '-- white TCGA-04-1370_demographic Alive '-- '-- '-- '-- 19329 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1824.0 '-- '-- e9a054c6-97c1-5397-8692-23d912d35af9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-04-1370_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 200 8 '-- '-- '-- '-- '-- '-- '-- 8 '-- 528.0 mg '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1370_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5320 '-- mg '-- '-- '-- '-- 5007a30a-4fae-4e71-8e17-d45d87f682ce Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7e6cdbc7-26a7-44f2-96fa-094738cbccae '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1370 52 false '-- '-- '-- '-- -19329 '-- a5063621-e5de-56ae-874e-889f5ce9d6b0 '-- not reported female '-- '-- '-- '-- white TCGA-04-1370_demographic Alive '-- '-- '-- '-- 19329 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1824.0 '-- '-- e9a054c6-97c1-5397-8692-23d912d35af9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-04-1370_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 200 8 '-- '-- '-- '-- '-- '-- '-- 8 '-- 315.0 mg '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1370_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2520 '-- mg '-- '-- '-- '-- fc41530a-3228-515d-8d4f-6fb7d63ee97d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7ebc776e-bde1-4563-adb1-8bd441872733 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-A5PD 55 false '-- '-- '-- United States -20263 624 84b549ae-9aa7-5dd3-aaef-b55ad5f6eb0d '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-59-A5PD_demographic Dead '-- '-- '-- '-- 20263 '-- '-- '-- '-- MX N0 '-- T1c '-- 7th '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Synchronous primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0ec071ce-05ed-4755-815b-68662ad23d8c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- '-- '-- '-- '-- '-- Not Reported '-- '-- TCGA-59-A5PD_diagnosis4 '-- '-- Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-A5PD_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0f531cca-34af-4b59-b04a-54de813753df '-- no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7ebc776e-bde1-4563-adb1-8bd441872733 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-A5PD 55 false '-- '-- '-- United States -20263 624 84b549ae-9aa7-5dd3-aaef-b55ad5f6eb0d '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-59-A5PD_demographic Dead '-- '-- '-- '-- 20263 '-- '-- '-- '-- MX N0 '-- T1c '-- 7th '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Synchronous primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0ec071ce-05ed-4755-815b-68662ad23d8c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- '-- '-- '-- '-- '-- Not Reported '-- '-- TCGA-59-A5PD_diagnosis4 '-- '-- Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-A5PD_treatment5 '-- '-- '-- '-- '-- '-- Not Reported '-- '-- '-- '-- '-- '-- '-- '-- 6b80f06f-f159-44a9-89d6-c7ab78bc28db '-- yes '-- '-- Surgery, NOS +TCGA-OV 7ebc776e-bde1-4563-adb1-8bd441872733 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-A5PD 55 false '-- '-- '-- United States -20263 624 84b549ae-9aa7-5dd3-aaef-b55ad5f6eb0d '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-59-A5PD_demographic Dead '-- '-- '-- '-- 20263 '-- '-- '-- '-- MX N0 '-- T1c '-- 7th '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Synchronous primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 0ec071ce-05ed-4755-815b-68662ad23d8c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- '-- '-- '-- '-- '-- Not Reported '-- '-- TCGA-59-A5PD_diagnosis4 '-- '-- Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-A5PD_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7b50f3f5-4146-4992-8431-67bf02afe8e8 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 7ebc776e-bde1-4563-adb1-8bd441872733 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-A5PD 55 false '-- '-- '-- United States -20263 624 84b549ae-9aa7-5dd3-aaef-b55ad5f6eb0d '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-59-A5PD_demographic Dead '-- '-- '-- '-- 20408 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 145 '-- '-- '-- 4adadd83-2a72-4b30-b3b9-547ad32bbcd4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-59-A5PD_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-59-A5PD_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-A5PD_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 38e939dd-aa1f-4189-8680-b7c9cd06903f '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7ebc776e-bde1-4563-adb1-8bd441872733 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-A5PD 55 false '-- '-- '-- United States -20263 624 84b549ae-9aa7-5dd3-aaef-b55ad5f6eb0d '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-59-A5PD_demographic Dead '-- '-- '-- '-- 20408 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 145 '-- '-- '-- 4adadd83-2a72-4b30-b3b9-547ad32bbcd4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-59-A5PD_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-59-A5PD_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-A5PD_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9cc393e7-bacc-4389-8b6d-46a35a5ec42d '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 7ebc776e-bde1-4563-adb1-8bd441872733 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-A5PD 55 false '-- '-- '-- United States -20263 624 84b549ae-9aa7-5dd3-aaef-b55ad5f6eb0d '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-59-A5PD_demographic Dead '-- '-- '-- '-- 20263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 624.0 '-- '-- 5ed98837-320c-5c31-8af9-e461980aa32f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- no No '-- '-- '-- '-- Ovary '-- '-- TCGA-59-A5PD_diagnosis '-- Yes Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2011 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-A5PD_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bc577759-b3e4-5129-808e-a75df0eeb960 Adjuvant no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7ebc776e-bde1-4563-adb1-8bd441872733 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-A5PD 55 false '-- '-- '-- United States -20263 624 84b549ae-9aa7-5dd3-aaef-b55ad5f6eb0d '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-59-A5PD_demographic Dead '-- '-- '-- '-- 20263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 624.0 '-- '-- 5ed98837-320c-5c31-8af9-e461980aa32f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- no No '-- '-- '-- '-- Ovary '-- '-- TCGA-59-A5PD_diagnosis '-- Yes Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2011 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-A5PD_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ce6193f6-5f82-4dac-985a-be4e048405f5 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 7ebc776e-bde1-4563-adb1-8bd441872733 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-A5PD 55 false '-- '-- '-- United States -20263 624 84b549ae-9aa7-5dd3-aaef-b55ad5f6eb0d '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-59-A5PD_demographic Dead '-- '-- '-- '-- 20408 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 145 '-- '-- '-- c4f691c5-684d-4763-bedd-907eac428052 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-59-A5PD_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-59-A5PD_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-A5PD_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8d066186-8228-4897-b2b3-b8cd529ee527 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7ebc776e-bde1-4563-adb1-8bd441872733 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-A5PD 55 false '-- '-- '-- United States -20263 624 84b549ae-9aa7-5dd3-aaef-b55ad5f6eb0d '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-59-A5PD_demographic Dead '-- '-- '-- '-- 20408 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 145 '-- '-- '-- c4f691c5-684d-4763-bedd-907eac428052 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-59-A5PD_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-59-A5PD_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-A5PD_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d51eb893-c5af-4806-825b-def2967f3c35 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 7fd6ab8a-201e-431d-a886-6ab553b6ca36 Informed Consent 1067 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1707 41 false '-- '-- '-- '-- -15017 '-- fe01d20e-05e0-5be5-89e4-ddd1074b6831 '-- not reported female '-- '-- '-- '-- white TCGA-29-1707_demographic Alive '-- '-- '-- '-- 16218 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1201 '-- '-- '-- 22aa2e60-6af6-41ef-9b2d-7590ce932c9a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1707_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1707_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1707_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bb8fb14b-9ce5-4850-902d-fa8725b41fb6 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 7fd6ab8a-201e-431d-a886-6ab553b6ca36 Informed Consent 1067 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1707 41 false '-- '-- '-- '-- -15017 '-- fe01d20e-05e0-5be5-89e4-ddd1074b6831 '-- not reported female '-- '-- '-- '-- white TCGA-29-1707_demographic Alive '-- '-- '-- '-- 16218 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1201 '-- '-- '-- 22aa2e60-6af6-41ef-9b2d-7590ce932c9a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1707_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1707_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1707_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- eb151d49-880d-4578-adf4-431c00ddad19 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7fd6ab8a-201e-431d-a886-6ab553b6ca36 Informed Consent 1067 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1707 41 false '-- '-- '-- '-- -15017 '-- fe01d20e-05e0-5be5-89e4-ddd1074b6831 '-- not reported female '-- '-- '-- '-- white TCGA-29-1707_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2a7708e0-81bb-4983-b1d1-079f042a0c1c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1707_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1707_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1707_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4c8cb7f7-5323-46cc-8ce2-9ceca7ab30d8 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 7fd6ab8a-201e-431d-a886-6ab553b6ca36 Informed Consent 1067 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1707 41 false '-- '-- '-- '-- -15017 '-- fe01d20e-05e0-5be5-89e4-ddd1074b6831 '-- not reported female '-- '-- '-- '-- white TCGA-29-1707_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2a7708e0-81bb-4983-b1d1-079f042a0c1c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1707_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1707_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1707_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 64d16a1b-8f88-4be8-8434-c6892a730093 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 7fd6ab8a-201e-431d-a886-6ab553b6ca36 Informed Consent 1067 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1707 41 false '-- '-- '-- '-- -15017 '-- fe01d20e-05e0-5be5-89e4-ddd1074b6831 '-- not reported female '-- '-- '-- '-- white TCGA-29-1707_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2a7708e0-81bb-4983-b1d1-079f042a0c1c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1707_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1707_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1248 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1707_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9146baf0-396f-41e4-8bf9-06377552cb32 '-- yes '-- '-- Surgery, NOS +TCGA-OV 7fd6ab8a-201e-431d-a886-6ab553b6ca36 Informed Consent 1067 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1707 41 false '-- '-- '-- '-- -15017 '-- fe01d20e-05e0-5be5-89e4-ddd1074b6831 '-- not reported female '-- '-- '-- '-- white TCGA-29-1707_demographic Alive '-- '-- '-- '-- 15017 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1277.0 '-- '-- 4c54de9f-0492-581d-9ba1-398bd16c52c8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1707_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 1375 1277 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1707_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 570 '-- mg '-- '-- '-- '-- 20f7dad4-950a-4f77-9f93-0c5e3a46fe31 '-- yes '-- '-- Chemotherapy +TCGA-OV 7fd6ab8a-201e-431d-a886-6ab553b6ca36 Informed Consent 1067 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1707 41 false '-- '-- '-- '-- -15017 '-- fe01d20e-05e0-5be5-89e4-ddd1074b6831 '-- not reported female '-- '-- '-- '-- white TCGA-29-1707_demographic Alive '-- '-- '-- '-- 15017 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1277.0 '-- '-- 4c54de9f-0492-581d-9ba1-398bd16c52c8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1707_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 143 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1707_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1789 '-- mg '-- '-- '-- '-- 3ee7869e-aa30-46ed-9bd3-f3f7c307a0b1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7fd6ab8a-201e-431d-a886-6ab553b6ca36 Informed Consent 1067 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1707 41 false '-- '-- '-- '-- -15017 '-- fe01d20e-05e0-5be5-89e4-ddd1074b6831 '-- not reported female '-- '-- '-- '-- white TCGA-29-1707_demographic Alive '-- '-- '-- '-- 15017 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1277.0 '-- '-- 4c54de9f-0492-581d-9ba1-398bd16c52c8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1707_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 143 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1707_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 3840 '-- mg '-- '-- '-- '-- 49206d4a-5ccc-5b1d-99ac-32b9bfa5c296 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 7fd6ab8a-201e-431d-a886-6ab553b6ca36 Informed Consent 1067 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1707 41 false '-- '-- '-- '-- -15017 '-- fe01d20e-05e0-5be5-89e4-ddd1074b6831 '-- not reported female '-- '-- '-- '-- white TCGA-29-1707_demographic Alive '-- '-- '-- '-- 15017 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1277.0 '-- '-- 4c54de9f-0492-581d-9ba1-398bd16c52c8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1707_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 1326 1277 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1707_treatment4 Doxorubicin '-- '-- '-- '-- '-- '-- '-- 50 '-- mg '-- '-- '-- '-- c3d80384-9b66-45da-b468-f9ac6c9b72d3 '-- yes '-- '-- Chemotherapy +TCGA-OV 7fd6ab8a-201e-431d-a886-6ab553b6ca36 Informed Consent 1067 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1707 41 false '-- '-- '-- '-- -15017 '-- fe01d20e-05e0-5be5-89e4-ddd1074b6831 '-- not reported female '-- '-- '-- '-- white TCGA-29-1707_demographic Alive '-- '-- '-- '-- 15017 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1277.0 '-- '-- 4c54de9f-0492-581d-9ba1-398bd16c52c8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1707_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1707_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d3785bae-b415-48ac-9f07-d09820740117 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 808eb134-9c7d-43bb-b86c-2f3259193954 Informed Consent 3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1623 71 false '-- '-- '-- '-- -26060 565 23ac0f67-276c-5d57-b52e-1764a643b863 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1623_demographic Dead '-- '-- '-- '-- 26402 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 342 '-- '-- '-- 8ecf1562-42dc-4403-bd2e-0f2ec8be6394 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1623_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1623_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1623_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0f1d6b7a-e5bc-47b0-b54a-e0e026d95dc3 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 808eb134-9c7d-43bb-b86c-2f3259193954 Informed Consent 3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1623 71 false '-- '-- '-- '-- -26060 565 23ac0f67-276c-5d57-b52e-1764a643b863 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1623_demographic Dead '-- '-- '-- '-- 26402 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 342 '-- '-- '-- 8ecf1562-42dc-4403-bd2e-0f2ec8be6394 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1623_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1623_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1623_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 43d72dca-7006-4ce9-a406-468853b1b977 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 808eb134-9c7d-43bb-b86c-2f3259193954 Informed Consent 3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1623 71 false '-- '-- '-- '-- -26060 565 23ac0f67-276c-5d57-b52e-1764a643b863 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1623_demographic Dead '-- '-- '-- '-- 26060 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 565.0 '-- '-- c76423fa-47c5-5e83-9344-ce0ca6c75063 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1623_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 138 16 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1623_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0e34a67f-e60a-5054-bc19-16e8b492c914 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 808eb134-9c7d-43bb-b86c-2f3259193954 Informed Consent 3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1623 71 false '-- '-- '-- '-- -26060 565 23ac0f67-276c-5d57-b52e-1764a643b863 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1623_demographic Dead '-- '-- '-- '-- 26060 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 565.0 '-- '-- c76423fa-47c5-5e83-9344-ce0ca6c75063 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1623_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1623_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 590a643f-ec8c-49bf-91c5-7d843371e0bc Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 808eb134-9c7d-43bb-b86c-2f3259193954 Informed Consent 3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1623 71 false '-- '-- '-- '-- -26060 565 23ac0f67-276c-5d57-b52e-1764a643b863 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1623_demographic Dead '-- '-- '-- '-- 26060 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 565.0 '-- '-- c76423fa-47c5-5e83-9344-ce0ca6c75063 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1623_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1623_treatment3 Not Reported '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6a4eb944-9a9a-4a4e-8187-32f8a3cff4d0 '-- yes '-- '-- Chemotherapy +TCGA-OV 808eb134-9c7d-43bb-b86c-2f3259193954 Informed Consent 3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1623 71 false '-- '-- '-- '-- -26060 565 23ac0f67-276c-5d57-b52e-1764a643b863 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1623_demographic Dead '-- '-- '-- '-- 26060 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 565.0 '-- '-- c76423fa-47c5-5e83-9344-ce0ca6c75063 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1623_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 138 16 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1623_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ba3b62a4-e828-443e-92c0-d061ee66543b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 288 '-- '-- '-- 32b347a2-bbe0-4853-9425-2b47d066f293 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1364_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1364_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1364_treatment18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bb170bda-9299-4fc4-b4d1-79ecaf73fdb8 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 288 '-- '-- '-- 32b347a2-bbe0-4853-9425-2b47d066f293 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1364_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1364_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1364_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dc44c5a3-f410-406c-94fb-a61feda36160 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22294 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1024.0 '-- '-- 6b68d896-594c-5763-b893-8203984ca9c1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 949 919 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1364_treatment13 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 0cea8522-c2c5-4a73-aa16-7ddf56a6dd87 '-- yes '-- '-- Chemotherapy +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22294 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1024.0 '-- '-- 6b68d896-594c-5763-b893-8203984ca9c1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 827 615 '-- '-- Recurrent Disease '-- '-- '-- '-- 14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1364_treatment5 Leucovorin '-- '-- '-- '-- '-- '-- '-- 7000 '-- mg '-- '-- '-- '-- 2a090b7e-f843-4758-879a-d6f2ff68dce8 '-- yes '-- '-- Chemotherapy +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22294 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1024.0 '-- '-- 6b68d896-594c-5763-b893-8203984ca9c1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 462 401 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1364_treatment10 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 6400 '-- mg '-- '-- '-- '-- 57b9b892-fba7-4049-be28-292c69ddada2 '-- yes '-- '-- Chemotherapy +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22294 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1024.0 '-- '-- 6b68d896-594c-5763-b893-8203984ca9c1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 827 615 '-- '-- Recurrent Disease '-- '-- '-- '-- 14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1364_treatment6 Fluorouracil '-- '-- '-- '-- '-- '-- '-- 7000 '-- mg '-- '-- '-- '-- 65a42605-c459-4969-aa82-ce0a5d363f55 '-- yes '-- '-- Chemotherapy +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22294 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1024.0 '-- '-- 6b68d896-594c-5763-b893-8203984ca9c1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 188 35 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1364_treatment Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 235 '-- mg '-- '-- '-- '-- 6cec0a76-dfae-5167-8402-ce169f777321 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22294 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1024.0 '-- '-- 6b68d896-594c-5763-b893-8203984ca9c1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 949 919 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1364_treatment4 Docetaxel '-- '-- '-- '-- '-- '-- '-- 260 '-- mg '-- '-- '-- '-- 74123b24-107d-4e44-8d8e-67d821187a81 '-- yes '-- '-- Chemotherapy +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22294 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1024.0 '-- '-- 6b68d896-594c-5763-b893-8203984ca9c1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 584 462 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1364_treatment8 Etoposide '-- '-- '-- '-- '-- '-- '-- 10500 '-- mg '-- '-- '-- '-- 9df4a553-1b02-499f-9cfe-2f2bca9010a7 '-- yes '-- '-- Chemotherapy +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22294 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1024.0 '-- '-- 6b68d896-594c-5763-b893-8203984ca9c1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 188 35 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1364_treatment12 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2408 '-- mg '-- '-- '-- '-- a96bb548-9275-4cf2-8b6d-9c533446eef6 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22294 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1024.0 '-- '-- 6b68d896-594c-5763-b893-8203984ca9c1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 188 35 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1364_treatment14 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- b4a6b98a-2b44-446c-a5d4-8889c7017e20 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22294 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1024.0 '-- '-- 6b68d896-594c-5763-b893-8203984ca9c1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 310 279 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1364_treatment11 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- 198 '-- mg '-- '-- '-- '-- bb133a0f-a3a4-4277-b020-d33fd454aece '-- yes '-- '-- Chemotherapy +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22294 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1024.0 '-- '-- 6b68d896-594c-5763-b893-8203984ca9c1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 310 279 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1364_treatment15 Topotecan '-- '-- '-- '-- '-- '-- '-- 20 '-- mg '-- '-- '-- '-- c6c79803-da98-4d61-8421-110c96280a9b '-- yes '-- '-- Chemotherapy +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22294 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1024.0 '-- '-- 6b68d896-594c-5763-b893-8203984ca9c1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 370 341 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1364_treatment9 Altretamine '-- '-- '-- '-- '-- '-- '-- 1400 '-- mg '-- '-- '-- '-- c6deb2cb-89b6-4ba3-90f3-a5e6cb685c82 '-- yes '-- '-- Chemotherapy +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22294 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1024.0 '-- '-- 6b68d896-594c-5763-b893-8203984ca9c1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 462 401 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1364_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 240 '-- mg '-- '-- '-- '-- d46752fa-7dc5-42c7-8b46-5ed04ac54e00 '-- yes '-- '-- Chemotherapy +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22294 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1024.0 '-- '-- 6b68d896-594c-5763-b893-8203984ca9c1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 827 615 '-- '-- Recurrent Disease '-- '-- '-- '-- 14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1364_treatment2 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 1860 '-- mg '-- '-- '-- '-- e9ba936c-99ed-4d46-b213-df384ab01e7a '-- yes '-- '-- Chemotherapy +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22294 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1024.0 '-- '-- 6b68d896-594c-5763-b893-8203984ca9c1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 857 857 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1364_treatment7 Innate Immunostimulator rBBX-01 '-- '-- '-- '-- '-- '-- '-- 9 '-- mg '-- '-- '-- '-- eb9625e9-1509-4893-b2cd-36574e6df55e '-- yes '-- '-- Chemotherapy +TCGA-OV 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 Informed Consent 153 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1364 61 false '-- '-- '-- '-- -22294 1024 fca74eca-e5f7-5dfb-8b16-08f9b4d83590 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1364_demographic Dead '-- '-- '-- '-- 22294 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1024.0 '-- '-- 6b68d896-594c-5763-b893-8203984ca9c1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1364_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1364_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ff501014-6d1e-457d-9b83-9e11aaedee32 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 81005bae-686a-4598-8994-49d90ebac56f Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1121 51 false '-- '-- '-- '-- -18983 '-- b8031273-7661-557b-9a31-b8a2ba55a07f '-- not hispanic or latino female '-- '-- '-- '-- not reported TCGA-23-1121_demographic Alive '-- '-- '-- '-- 18983 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 194.0 '-- '-- 73dc8fa4-dac0-579e-a164-89b19a2e2328 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1121_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 194 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1121_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3135 '-- mg '-- '-- '-- '-- 499badd7-97cf-4415-bd08-00cabdb7b34b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 81005bae-686a-4598-8994-49d90ebac56f Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1121 51 false '-- '-- '-- '-- -18983 '-- b8031273-7661-557b-9a31-b8a2ba55a07f '-- not hispanic or latino female '-- '-- '-- '-- not reported TCGA-23-1121_demographic Alive '-- '-- '-- '-- 18983 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 194.0 '-- '-- 73dc8fa4-dac0-579e-a164-89b19a2e2328 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1121_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 194 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1121_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1362 '-- mg '-- '-- '-- '-- 7f52b0fa-35dd-59e7-951d-a108a9aeb4ba Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 81005bae-686a-4598-8994-49d90ebac56f Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1121 51 false '-- '-- '-- '-- -18983 '-- b8031273-7661-557b-9a31-b8a2ba55a07f '-- not hispanic or latino female '-- '-- '-- '-- not reported TCGA-23-1121_demographic Alive '-- '-- '-- '-- 18983 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 194.0 '-- '-- 73dc8fa4-dac0-579e-a164-89b19a2e2328 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1121_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1121_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 85df85e4-afb5-4843-bd77-a2145ebbb747 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 81005bae-686a-4598-8994-49d90ebac56f Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1121 51 false '-- '-- '-- '-- -18983 '-- b8031273-7661-557b-9a31-b8a2ba55a07f '-- not hispanic or latino female '-- '-- '-- '-- not reported TCGA-23-1121_demographic Alive '-- '-- '-- '-- 18983 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 194.0 '-- '-- 73dc8fa4-dac0-579e-a164-89b19a2e2328 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1121_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 152 53 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1121_treatment2 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 2400 '-- mg '-- '-- '-- '-- ca8c18b6-68f2-4cbb-a319-d37049a37858 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 818dc159-aba4-46bc-a4ed-68ee0f8c4461 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2042 60 false '-- '-- '-- '-- -22127 396 6b47a6c1-f0cd-5fa9-9205-69c8f3ec37e7 '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2042_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0359e54b-74dc-4817-a4ff-28f28482678b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-2042_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-2042_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2042_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 51c04297-1166-4597-9394-952ebf000670 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 818dc159-aba4-46bc-a4ed-68ee0f8c4461 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2042 60 false '-- '-- '-- '-- -22127 396 6b47a6c1-f0cd-5fa9-9205-69c8f3ec37e7 '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2042_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0359e54b-74dc-4817-a4ff-28f28482678b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-2042_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-2042_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 123 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2042_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a70e8014-1485-4c4c-8f56-9311082ed4a7 '-- yes '-- '-- Surgery, NOS +TCGA-OV 818dc159-aba4-46bc-a4ed-68ee0f8c4461 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2042 60 false '-- '-- '-- '-- -22127 396 6b47a6c1-f0cd-5fa9-9205-69c8f3ec37e7 '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2042_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0359e54b-74dc-4817-a4ff-28f28482678b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-2042_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-2042_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2042_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bc1a8fea-ed6a-49f8-b6d7-230b3b86ab56 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 818dc159-aba4-46bc-a4ed-68ee0f8c4461 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2042 60 false '-- '-- '-- '-- -22127 396 6b47a6c1-f0cd-5fa9-9205-69c8f3ec37e7 '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2042_demographic Dead '-- '-- '-- '-- 22127 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 396.0 '-- '-- 2a402414-8c80-5260-9406-443e0dadda66 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2042_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 123 0 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2042_treatment7 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 151eba10-2f06-4411-80bb-35b565790d89 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 818dc159-aba4-46bc-a4ed-68ee0f8c4461 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2042 60 false '-- '-- '-- '-- -22127 396 6b47a6c1-f0cd-5fa9-9205-69c8f3ec37e7 '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2042_demographic Dead '-- '-- '-- '-- 22127 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 396.0 '-- '-- 2a402414-8c80-5260-9406-443e0dadda66 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2042_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2042_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 18cd2f39-f271-4e6b-91f8-4eec1d3e6421 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 818dc159-aba4-46bc-a4ed-68ee0f8c4461 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2042 60 false '-- '-- '-- '-- -22127 396 6b47a6c1-f0cd-5fa9-9205-69c8f3ec37e7 '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2042_demographic Dead '-- '-- '-- '-- 22127 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 396.0 '-- '-- 2a402414-8c80-5260-9406-443e0dadda66 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2042_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- 184 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2042_treatment5 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1df75136-eb92-4fb4-9e56-ff48fcbe3f04 '-- yes '-- '-- Chemotherapy +TCGA-OV 818dc159-aba4-46bc-a4ed-68ee0f8c4461 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2042 60 false '-- '-- '-- '-- -22127 396 6b47a6c1-f0cd-5fa9-9205-69c8f3ec37e7 '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2042_demographic Dead '-- '-- '-- '-- 22127 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 396.0 '-- '-- 2a402414-8c80-5260-9406-443e0dadda66 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2042_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- 184 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2042_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 28816e81-b046-4e54-86e3-c33803ce79ef '-- yes '-- '-- Chemotherapy +TCGA-OV 818dc159-aba4-46bc-a4ed-68ee0f8c4461 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2042 60 false '-- '-- '-- '-- -22127 396 6b47a6c1-f0cd-5fa9-9205-69c8f3ec37e7 '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2042_demographic Dead '-- '-- '-- '-- 22127 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 396.0 '-- '-- 2a402414-8c80-5260-9406-443e0dadda66 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2042_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 123 0 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2042_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4ec56ce0-0b9b-4867-b68e-96c0208d3fae Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 818dc159-aba4-46bc-a4ed-68ee0f8c4461 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2042 60 false '-- '-- '-- '-- -22127 396 6b47a6c1-f0cd-5fa9-9205-69c8f3ec37e7 '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2042_demographic Dead '-- '-- '-- '-- 22127 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 396.0 '-- '-- 2a402414-8c80-5260-9406-443e0dadda66 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2042_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- 184 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2042_treatment2 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9e3a1e0c-f0d3-4257-862a-1f7093585082 '-- yes '-- '-- Chemotherapy +TCGA-OV 818dc159-aba4-46bc-a4ed-68ee0f8c4461 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2042 60 false '-- '-- '-- '-- -22127 396 6b47a6c1-f0cd-5fa9-9205-69c8f3ec37e7 '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2042_demographic Dead '-- '-- '-- '-- 22127 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 396.0 '-- '-- 2a402414-8c80-5260-9406-443e0dadda66 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2042_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- 184 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2042_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b7bd5ac5-edf3-48d9-9720-c4675289a2a2 '-- yes '-- '-- Chemotherapy +TCGA-OV 818dc159-aba4-46bc-a4ed-68ee0f8c4461 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2042 60 false '-- '-- '-- '-- -22127 396 6b47a6c1-f0cd-5fa9-9205-69c8f3ec37e7 '-- not hispanic or latino female '-- '-- '-- '-- american indian or alaska native TCGA-25-2042_demographic Dead '-- '-- '-- '-- 22127 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 396.0 '-- '-- 2a402414-8c80-5260-9406-443e0dadda66 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2042_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- 184 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2042_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cd4c75d9-43a1-5f3a-bf7d-81632cf8e2a7 '-- yes '-- '-- Chemotherapy +TCGA-OV 82093ed9-a3c8-4e34-931f-4ec7ae745711 Informed Consent 10 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1512 49 false '-- '-- '-- '-- -18134 '-- 605e97f3-8618-5b7b-8c23-0e82f639a1f0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1512_demographic Alive '-- '-- '-- '-- 18561 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 427 '-- '-- '-- dd38c8ad-ee58-4619-8fd7-ac90964e1475 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1512_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1512_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 82093ed9-a3c8-4e34-931f-4ec7ae745711 Informed Consent 10 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1512 49 false '-- '-- '-- '-- -18134 '-- 605e97f3-8618-5b7b-8c23-0e82f639a1f0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1512_demographic Alive '-- '-- '-- '-- 18134 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 442.0 '-- '-- f8565836-3634-5b5c-8823-e193d83d3527 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1512_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 94 73 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1512_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 4097ce7e-d213-575d-8b16-c7b485005a51 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 82093ed9-a3c8-4e34-931f-4ec7ae745711 Informed Consent 10 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1512 49 false '-- '-- '-- '-- -18134 '-- 605e97f3-8618-5b7b-8c23-0e82f639a1f0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1512_demographic Alive '-- '-- '-- '-- 18134 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 442.0 '-- '-- f8565836-3634-5b5c-8823-e193d83d3527 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1512_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1512_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ace19b63-094a-4162-a778-0043e2880beb Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 82093ed9-a3c8-4e34-931f-4ec7ae745711 Informed Consent 10 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1512 49 false '-- '-- '-- '-- -18134 '-- 605e97f3-8618-5b7b-8c23-0e82f639a1f0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1512_demographic Alive '-- '-- '-- '-- 18134 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 442.0 '-- '-- f8565836-3634-5b5c-8823-e193d83d3527 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1512_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 94 73 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1512_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 700 '-- mg '-- '-- '-- '-- d6df784b-5356-4eec-9633-e0ccf1240402 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 838693d5-1ae0-4d75-834b-e1b89b96b0ed Informed Consent 915 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1768 50 false '-- '-- '-- '-- -18396 952 b5de4fa5-1048-53ef-a848-07a9f6060389 '-- not reported female '-- '-- '-- '-- white TCGA-29-1768_demographic Dead '-- '-- '-- '-- 18396 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 952.0 '-- '-- 302790a0-c173-5320-8b25-111b75f0f6eb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1768_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1768_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 191af10d-d92a-461f-8637-ea4ba242aeb9 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 838693d5-1ae0-4d75-834b-e1b89b96b0ed Informed Consent 915 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1768 50 false '-- '-- '-- '-- -18396 952 b5de4fa5-1048-53ef-a848-07a9f6060389 '-- not reported female '-- '-- '-- '-- white TCGA-29-1768_demographic Dead '-- '-- '-- '-- 18396 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 952.0 '-- '-- 302790a0-c173-5320-8b25-111b75f0f6eb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1768_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 124 19 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1768_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 348 '-- mg '-- '-- '-- '-- 4f251ebd-6d1c-552c-b671-fdc13d5ad0b6 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 838693d5-1ae0-4d75-834b-e1b89b96b0ed Informed Consent 915 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1768 50 false '-- '-- '-- '-- -18396 952 b5de4fa5-1048-53ef-a848-07a9f6060389 '-- not reported female '-- '-- '-- '-- white TCGA-29-1768_demographic Dead '-- '-- '-- '-- 18396 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 952.0 '-- '-- 302790a0-c173-5320-8b25-111b75f0f6eb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1768_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 719 551 '-- '-- Recurrent Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1768_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 675 '-- mg '-- '-- '-- '-- 5b43ad1c-8fc3-4398-ba52-60ef3179bb07 '-- yes '-- '-- Chemotherapy +TCGA-OV 838693d5-1ae0-4d75-834b-e1b89b96b0ed Informed Consent 915 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1768 50 false '-- '-- '-- '-- -18396 952 b5de4fa5-1048-53ef-a848-07a9f6060389 '-- not reported female '-- '-- '-- '-- white TCGA-29-1768_demographic Dead '-- '-- '-- '-- 18396 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 952.0 '-- '-- 302790a0-c173-5320-8b25-111b75f0f6eb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1768_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 252 40 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1768_treatment3 Clinical Trial '-- '-- '-- '-- '-- '-- '-- 1493 '-- mg '-- '-- '-- '-- 8ecac2ea-3398-413d-a9b3-6d8a725867c3 Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV 838693d5-1ae0-4d75-834b-e1b89b96b0ed Informed Consent 915 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1768 50 false '-- '-- '-- '-- -18396 952 b5de4fa5-1048-53ef-a848-07a9f6060389 '-- not reported female '-- '-- '-- '-- white TCGA-29-1768_demographic Dead '-- '-- '-- '-- 18396 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 952.0 '-- '-- 302790a0-c173-5320-8b25-111b75f0f6eb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1768_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 103 19 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1768_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 816 '-- mg '-- '-- '-- '-- c64f2f49-5e30-4df5-afee-71c5685dc965 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 838693d5-1ae0-4d75-834b-e1b89b96b0ed Informed Consent 915 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1768 50 false '-- '-- '-- '-- -18396 952 b5de4fa5-1048-53ef-a848-07a9f6060389 '-- not reported female '-- '-- '-- '-- white TCGA-29-1768_demographic Dead '-- '-- '-- '-- 18396 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 952.0 '-- '-- 302790a0-c173-5320-8b25-111b75f0f6eb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1768_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 719 551 '-- '-- Recurrent Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1768_treatment5 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1200 '-- mg '-- '-- '-- '-- ee03c54b-ba34-4691-9a1c-b8d86f7c9af0 '-- yes '-- '-- Chemotherapy +TCGA-OV 838693d5-1ae0-4d75-834b-e1b89b96b0ed Informed Consent 915 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1768 50 false '-- '-- '-- '-- -18396 952 b5de4fa5-1048-53ef-a848-07a9f6060389 '-- not reported female '-- '-- '-- '-- white TCGA-29-1768_demographic Dead '-- '-- '-- '-- 18396 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 952.0 '-- '-- 302790a0-c173-5320-8b25-111b75f0f6eb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1768_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 915 827 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1768_treatment2 Doxorubicin '-- '-- '-- '-- '-- '-- '-- 80 '-- mg '-- '-- '-- '-- f751b4ec-3560-477b-b8af-dd22f9c13755 '-- yes '-- '-- Chemotherapy +TCGA-OV 838693d5-1ae0-4d75-834b-e1b89b96b0ed Informed Consent 915 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1768 50 false '-- '-- '-- '-- -18396 952 b5de4fa5-1048-53ef-a848-07a9f6060389 '-- not reported female '-- '-- '-- '-- white TCGA-29-1768_demographic Dead '-- '-- '-- '-- 18943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 547 '-- '-- '-- 91ce4400-ce32-4b84-ba32-c9a3d449ee2f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1768_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1768_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1768_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 18492ff8-33f4-4938-a931-0192d85c1268 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 838693d5-1ae0-4d75-834b-e1b89b96b0ed Informed Consent 915 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1768 50 false '-- '-- '-- '-- -18396 952 b5de4fa5-1048-53ef-a848-07a9f6060389 '-- not reported female '-- '-- '-- '-- white TCGA-29-1768_demographic Dead '-- '-- '-- '-- 18943 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 547 '-- '-- '-- 91ce4400-ce32-4b84-ba32-c9a3d449ee2f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1768_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1768_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1768_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a82cae9f-6b6b-4ad0-aa49-76b3a26fb902 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 838778c3-0b33-4fc5-97fc-5da163475485 Informed Consent 726 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2055 48 false '-- '-- '-- '-- -17545 '-- 72360d91-88d6-5869-9b52-4a7372bc8946 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2055_demographic Alive '-- '-- '-- '-- 17545 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 819.0 '-- '-- e2c129cf-e590-586c-bee4-74a853446768 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2055_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 189 5 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2055_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 460a779f-a565-5e91-9f34-79963dd07f1e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 838778c3-0b33-4fc5-97fc-5da163475485 Informed Consent 726 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2055 48 false '-- '-- '-- '-- -17545 '-- 72360d91-88d6-5869-9b52-4a7372bc8946 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2055_demographic Alive '-- '-- '-- '-- 17545 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 819.0 '-- '-- e2c129cf-e590-586c-bee4-74a853446768 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2055_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 189 5 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2055_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 74bbf557-77d3-4da1-b53b-69f21ea72f38 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 838778c3-0b33-4fc5-97fc-5da163475485 Informed Consent 726 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2055 48 false '-- '-- '-- '-- -17545 '-- 72360d91-88d6-5869-9b52-4a7372bc8946 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2055_demographic Alive '-- '-- '-- '-- 17545 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 819.0 '-- '-- e2c129cf-e590-586c-bee4-74a853446768 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2055_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2055_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fbe191e9-0fc0-41ef-98ce-f1bbfb86aee9 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 8449955f-42d9-46f6-919a-5cc5d59e6284 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1923 51 false '-- '-- '-- '-- -18628 690 96d5e3f2-4a30-5a3a-ba6f-eecd943d1046 '-- not reported female '-- '-- '-- '-- white TCGA-24-1923_demographic Dead '-- '-- '-- '-- 18971 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 343 '-- '-- '-- 347a4fdb-c1fa-4a5c-8bff-612ce2d7ddb3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1923_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1923_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1923_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0a032f64-d73c-48fe-bb64-f0cd7ea8eb6c '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 8449955f-42d9-46f6-919a-5cc5d59e6284 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1923 51 false '-- '-- '-- '-- -18628 690 96d5e3f2-4a30-5a3a-ba6f-eecd943d1046 '-- not reported female '-- '-- '-- '-- white TCGA-24-1923_demographic Dead '-- '-- '-- '-- 18971 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 343 '-- '-- '-- 347a4fdb-c1fa-4a5c-8bff-612ce2d7ddb3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1923_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1923_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1923_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 97c68816-da6a-4352-8ba6-a3f0e0619f04 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 8449955f-42d9-46f6-919a-5cc5d59e6284 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1923 51 false '-- '-- '-- '-- -18628 690 96d5e3f2-4a30-5a3a-ba6f-eecd943d1046 '-- not reported female '-- '-- '-- '-- white TCGA-24-1923_demographic Dead '-- '-- '-- '-- 18628 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 690.0 '-- '-- ee2e4650-934a-5367-946a-baa0ebb000e2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1923_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 233 35 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1923_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 205a9660-48d1-4001-95f5-e3cf19e966a0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8449955f-42d9-46f6-919a-5cc5d59e6284 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1923 51 false '-- '-- '-- '-- -18628 690 96d5e3f2-4a30-5a3a-ba6f-eecd943d1046 '-- not reported female '-- '-- '-- '-- white TCGA-24-1923_demographic Dead '-- '-- '-- '-- 18628 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 690.0 '-- '-- ee2e4650-934a-5367-946a-baa0ebb000e2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1923_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1923_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4c435cd2-70af-4a02-b4b5-ec01de7eb70b Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 8449955f-42d9-46f6-919a-5cc5d59e6284 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1923 51 false '-- '-- '-- '-- -18628 690 96d5e3f2-4a30-5a3a-ba6f-eecd943d1046 '-- not reported female '-- '-- '-- '-- white TCGA-24-1923_demographic Dead '-- '-- '-- '-- 18628 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 690.0 '-- '-- ee2e4650-934a-5367-946a-baa0ebb000e2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1923_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- 383 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1923_treatment2 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4d46dd52-6c5a-4a3b-a103-c10ebe52d1cd '-- yes '-- '-- Chemotherapy +TCGA-OV 8449955f-42d9-46f6-919a-5cc5d59e6284 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1923 51 false '-- '-- '-- '-- -18628 690 96d5e3f2-4a30-5a3a-ba6f-eecd943d1046 '-- not reported female '-- '-- '-- '-- white TCGA-24-1923_demographic Dead '-- '-- '-- '-- 18628 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 690.0 '-- '-- ee2e4650-934a-5367-946a-baa0ebb000e2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1923_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 233 35 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1923_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5bdc7123-ec5f-421f-874b-e4b47b5e1b5b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8449955f-42d9-46f6-919a-5cc5d59e6284 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1923 51 false '-- '-- '-- '-- -18628 690 96d5e3f2-4a30-5a3a-ba6f-eecd943d1046 '-- not reported female '-- '-- '-- '-- white TCGA-24-1923_demographic Dead '-- '-- '-- '-- 18628 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 690.0 '-- '-- ee2e4650-934a-5367-946a-baa0ebb000e2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1923_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 233 35 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1923_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aa018f9d-8c45-57dd-9697-3f2fe2e0e89d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8449955f-42d9-46f6-919a-5cc5d59e6284 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1923 51 false '-- '-- '-- '-- -18628 690 96d5e3f2-4a30-5a3a-ba6f-eecd943d1046 '-- not reported female '-- '-- '-- '-- white TCGA-24-1923_demographic Dead '-- '-- '-- '-- 18628 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 690.0 '-- '-- ee2e4650-934a-5367-946a-baa0ebb000e2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1923_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1923_treatment5 Clinical Trial '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fd073219-3277-42f5-8b0e-2de40dbf7884 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8516d4f2-0b98-4847-99c6-4d7269fa4af2 Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1913 48 false '-- '-- '-- '-- -17575 '-- 3e7d968d-fc40-5eb2-a6f2-b7d5fcbdfe8e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1913_demographic Alive '-- '-- '-- '-- 17575 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1488.0 '-- '-- 42fb810b-1f72-546a-879b-8649155e85fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1913_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1913_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2c75e984-0366-469a-90bf-6aaa6ebd293e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 8516d4f2-0b98-4847-99c6-4d7269fa4af2 Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1913 48 false '-- '-- '-- '-- -17575 '-- 3e7d968d-fc40-5eb2-a6f2-b7d5fcbdfe8e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1913_demographic Alive '-- '-- '-- '-- 17575 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1488.0 '-- '-- 42fb810b-1f72-546a-879b-8649155e85fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1913_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 127 21 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1913_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- 720 '-- mg '-- '-- '-- '-- ce0a921d-080f-5444-a7f6-e051ab119d42 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8516d4f2-0b98-4847-99c6-4d7269fa4af2 Informed Consent 12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1913 48 false '-- '-- '-- '-- -17575 '-- 3e7d968d-fc40-5eb2-a6f2-b7d5fcbdfe8e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1913_demographic Alive '-- '-- '-- '-- 17575 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1488.0 '-- '-- 42fb810b-1f72-546a-879b-8649155e85fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1913_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 127 21 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1913_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3930 '-- mg '-- '-- '-- '-- f48e71aa-0256-4257-aae5-50ca5855db7a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 85a85a11-7200-4e96-97af-6ba26d680d59 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0920 65 false '-- '-- '-- '-- -24064 1484 4d9e60db-29bf-55a5-b771-45b205a0536b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0920_demographic Dead '-- '-- '-- '-- 24361 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 297 '-- '-- '-- 9065505c-8b4d-4bd1-8c24-61efcec769f0 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0920_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0920_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0920_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b7553d4f-8588-4842-8f9d-2f420a7ec1e9 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 85a85a11-7200-4e96-97af-6ba26d680d59 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0920 65 false '-- '-- '-- '-- -24064 1484 4d9e60db-29bf-55a5-b771-45b205a0536b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0920_demographic Dead '-- '-- '-- '-- 24361 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 297 '-- '-- '-- 9065505c-8b4d-4bd1-8c24-61efcec769f0 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0920_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0920_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0920_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c627b724-7601-4b26-8d2e-5d619c089f1b '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 85a85a11-7200-4e96-97af-6ba26d680d59 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0920 65 false '-- '-- '-- '-- -24064 1484 4d9e60db-29bf-55a5-b771-45b205a0536b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0920_demographic Dead '-- '-- '-- '-- 24361 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 297 '-- '-- '-- 964c7cda-91bc-4b32-951a-f732e56ed85b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0920_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0920_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 85a85a11-7200-4e96-97af-6ba26d680d59 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0920 65 false '-- '-- '-- '-- -24064 1484 4d9e60db-29bf-55a5-b771-45b205a0536b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0920_demographic Dead '-- '-- '-- '-- 24064 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1484.0 '-- '-- aa92074b-b296-596b-a4d9-ceb3ab1e0160 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0920_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 151 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0920_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2ef54a76-92fa-5238-a468-e54efb2cf108 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 85a85a11-7200-4e96-97af-6ba26d680d59 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0920 65 false '-- '-- '-- '-- -24064 1484 4d9e60db-29bf-55a5-b771-45b205a0536b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0920_demographic Dead '-- '-- '-- '-- 24064 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1484.0 '-- '-- aa92074b-b296-596b-a4d9-ceb3ab1e0160 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0920_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0920_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 822a7b15-2b22-4029-84f7-18786d74e05f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 85bb4987-51e7-40fe-ad59-2aa56754eca9 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2002 46 false '-- '-- '-- '-- -17115 '-- eaf6457d-9150-5a07-a240-9aabc2e07928 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2002_demographic Alive '-- '-- '-- '-- 17115 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 547.0 '-- '-- 578ddcf5-2778-5527-9652-d17bc06c620c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2002_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 558 400 '-- '-- Progressive Disease '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2002_treatment3 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 6600 '-- mg '-- '-- '-- '-- 27bc5369-25f4-42a4-959b-11735c1da79a '-- yes '-- '-- Chemotherapy +TCGA-OV 85bb4987-51e7-40fe-ad59-2aa56754eca9 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2002 46 false '-- '-- '-- '-- -17115 '-- eaf6457d-9150-5a07-a240-9aabc2e07928 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2002_demographic Alive '-- '-- '-- '-- 17115 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 547.0 '-- '-- 578ddcf5-2778-5527-9652-d17bc06c620c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2002_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2002_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3a1b776c-3054-43dc-a13b-1e73e4a69d1d Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 85bb4987-51e7-40fe-ad59-2aa56754eca9 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2002 46 false '-- '-- '-- '-- -17115 '-- eaf6457d-9150-5a07-a240-9aabc2e07928 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2002_demographic Alive '-- '-- '-- '-- 17115 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 547.0 '-- '-- 578ddcf5-2778-5527-9652-d17bc06c620c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2002_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 129 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2002_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4800 '-- mg '-- '-- '-- '-- 534ebbb8-601a-4fa0-87cc-d920e1db5600 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 85bb4987-51e7-40fe-ad59-2aa56754eca9 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2002 46 false '-- '-- '-- '-- -17115 '-- eaf6457d-9150-5a07-a240-9aabc2e07928 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2002_demographic Alive '-- '-- '-- '-- 17115 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 547.0 '-- '-- 578ddcf5-2778-5527-9652-d17bc06c620c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2002_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 129 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2002_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1668 '-- mg '-- '-- '-- '-- 77095dda-43e6-5a0a-bcb5-fb3ab57e2fec Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 85bb4987-51e7-40fe-ad59-2aa56754eca9 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2002 46 false '-- '-- '-- '-- -17115 '-- eaf6457d-9150-5a07-a240-9aabc2e07928 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2002_demographic Alive '-- '-- '-- '-- 17115 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 547.0 '-- '-- 578ddcf5-2778-5527-9652-d17bc06c620c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2002_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 563 157 '-- '-- Progressive Disease '-- '-- '-- '-- 14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2002_treatment2 Doxorubicin '-- '-- '-- '-- '-- '-- '-- 924 '-- mg '-- '-- '-- '-- abb02569-9219-4bf4-a4a8-fb18f7bc01d2 '-- yes '-- '-- Chemotherapy +TCGA-OV 8628f1b2-3763-4ba9-a375-083874bb18f2 Informed Consent -13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-VG-A8LO 55 false '-- '-- '-- Nigeria -20274 24 bd84ae7e-b25d-59f9-9161-7cc10e02bf9f '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-VG-A8LO_demographic Dead '-- '-- '-- '-- 20274 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 24.0 '-- '-- aaaed386-e2f5-53c2-bdc4-6508fdec1123 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8460/3 '-- '-- '-- '-- '-- '-- Papillary serous cystadenocarcinoma '-- '-- no No '-- R2 '-- '-- Ovary '-- '-- TCGA-VG-A8LO_diagnosis '-- No Ovary '-- '-- '-- '-- GB '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2013 '-- No '-- 8 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-VG-A8LO_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 24e3a3e4-fea0-54a7-81de-f636e54333f7 '-- yes Unknown '-- Chemotherapy +TCGA-OV 8628f1b2-3763-4ba9-a375-083874bb18f2 Informed Consent -13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-VG-A8LO 55 false '-- '-- '-- Nigeria -20274 24 bd84ae7e-b25d-59f9-9161-7cc10e02bf9f '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-VG-A8LO_demographic Dead '-- '-- '-- '-- 20274 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 24.0 '-- '-- aaaed386-e2f5-53c2-bdc4-6508fdec1123 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8460/3 '-- '-- '-- '-- '-- '-- Papillary serous cystadenocarcinoma '-- '-- no No '-- R2 '-- '-- Ovary '-- '-- TCGA-VG-A8LO_diagnosis '-- No Ovary '-- '-- '-- '-- GB '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2013 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-VG-A8LO_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2a9eba0e-c481-4c95-bfa5-6a171a52e28e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 8628f1b2-3763-4ba9-a375-083874bb18f2 Informed Consent -13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-VG-A8LO 55 false '-- '-- '-- Nigeria -20274 24 bd84ae7e-b25d-59f9-9161-7cc10e02bf9f '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-VG-A8LO_demographic Dead '-- '-- '-- '-- 20274 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 24.0 '-- '-- aaaed386-e2f5-53c2-bdc4-6508fdec1123 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8460/3 '-- '-- '-- '-- '-- '-- Papillary serous cystadenocarcinoma '-- '-- no No '-- R2 '-- '-- Ovary '-- '-- TCGA-VG-A8LO_diagnosis '-- No Ovary '-- '-- '-- '-- GB '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2013 '-- No '-- 8 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-VG-A8LO_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f3226fa4-69d4-4744-8144-1414d436abbd '-- yes Unknown '-- Chemotherapy +TCGA-OV 8652ddee-98f4-4584-b450-e6f2f5c9d7ec Informed Consent 14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1356 62 false '-- '-- '-- '-- -22855 1499 6f4e3146-4cfe-55b8-8427-ff6397b2269e '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1356_demographic Dead '-- '-- '-- '-- 23011 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 156 '-- '-- '-- 0376f311-efe5-41f3-b975-4104015c228e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1356_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1356_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1356_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 51ecdd4d-ccb3-4819-bba4-9999d3cf23a0 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 8652ddee-98f4-4584-b450-e6f2f5c9d7ec Informed Consent 14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1356 62 false '-- '-- '-- '-- -22855 1499 6f4e3146-4cfe-55b8-8427-ff6397b2269e '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1356_demographic Dead '-- '-- '-- '-- 23011 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 156 '-- '-- '-- 0376f311-efe5-41f3-b975-4104015c228e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1356_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1356_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1356_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b16ea8e8-a1ef-4373-8d40-7097babe520d '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 8652ddee-98f4-4584-b450-e6f2f5c9d7ec Informed Consent 14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1356 62 false '-- '-- '-- '-- -22855 1499 6f4e3146-4cfe-55b8-8427-ff6397b2269e '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1356_demographic Dead '-- '-- '-- '-- 22855 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1499.0 '-- '-- 9c12fc68-20a6-5db7-aa57-9cc51005f642 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1356_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 312 161 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1356_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4531 '-- mg '-- '-- '-- '-- 691466b6-0e9b-4e60-9f1b-1c52adcb3fb5 '-- yes '-- '-- Chemotherapy +TCGA-OV 8652ddee-98f4-4584-b450-e6f2f5c9d7ec Informed Consent 14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1356 62 false '-- '-- '-- '-- -22855 1499 6f4e3146-4cfe-55b8-8427-ff6397b2269e '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1356_demographic Dead '-- '-- '-- '-- 22855 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1499.0 '-- '-- 9c12fc68-20a6-5db7-aa57-9cc51005f642 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1356_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1356_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 729c2131-5539-4664-b7a0-21d5cc80d9c5 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 8652ddee-98f4-4584-b450-e6f2f5c9d7ec Informed Consent 14 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1356 62 false '-- '-- '-- '-- -22855 1499 6f4e3146-4cfe-55b8-8427-ff6397b2269e '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1356_demographic Dead '-- '-- '-- '-- 22855 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1499.0 '-- '-- 9c12fc68-20a6-5db7-aa57-9cc51005f642 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1356_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 312 161 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1356_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1825 '-- mg '-- '-- '-- '-- dee40d08-8480-526a-a9d8-342a0fd44479 '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 25388e78-4b52-4fe3-8399-ffc15b9a9ceb false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1662_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1662_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1081 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1662_treatment29 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 59871f55-feb1-445e-83d2-ad238863078e '-- yes '-- '-- Surgery, NOS +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 25388e78-4b52-4fe3-8399-ffc15b9a9ceb false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1662_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1662_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1662_treatment27 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- af1c79bb-9e9b-497d-bda9-785e82476a4a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 25388e78-4b52-4fe3-8399-ffc15b9a9ceb false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1662_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1662_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1662_treatment28 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c5b86b57-46c2-41ec-8cb3-bb9c7d2217f8 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2717.0 '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2517 2503 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1662_treatment18 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 10 '-- mg/kg '-- '-- '-- '-- 016d4b95-9952-42dc-90ce-62c273664fe7 '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2717.0 '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2461 2457 '-- '-- Progressive Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment Topotecan '-- '-- '-- '-- '-- '-- '-- 3 '-- mg/m2 '-- '-- '-- '-- 081f9cc1-d2cf-528e-8029-566cc8be67e1 '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2717.0 '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1233 1128 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 10d0be7b-ee29-4314-abc7-443815a06ea5 '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2717.0 '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2052 1989 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment22 Docetaxel '-- '-- '-- '-- '-- '-- '-- 100 '-- mg '-- '-- '-- '-- 1489ada4-2070-438d-b17d-26a698ef2af7 '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2717.0 '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2697 2684 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment15 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 954 '-- mg '-- '-- '-- '-- 1f3e66b9-6cfe-4e6c-9773-abcb90c476c3 '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2717.0 '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1233 1128 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment6 Docetaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- 27bacc95-17a3-45f2-a70f-2408f4149143 '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2717.0 '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1968 1947 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment4 Docetaxel '-- '-- '-- '-- '-- '-- '-- 98 '-- mg/m2 '-- '-- '-- '-- 287a3951-30b3-4e60-90b1-669c006456df '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2717.0 '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2650 2623 '-- '-- Progressive Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment9 Topotecan '-- '-- '-- '-- '-- '-- '-- 4 '-- mg/m2 '-- '-- '-- '-- 34a59619-e5f8-4cbc-8757-51ee8dddeae3 '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2717.0 '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 15 15 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment20 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 40b9b890-927b-4880-b102-0e6fb121d65d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2717.0 '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2697 2684 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment21 Cisplatin '-- '-- '-- '-- '-- '-- '-- 47 '-- mg '-- '-- '-- '-- 4522dba3-d4f6-4aab-b29a-e87a026d6403 '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2717.0 '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2650 2566 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1662_treatment16 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 10 '-- mg/kg '-- '-- '-- '-- 46aa5be1-fdd3-4f21-b198-99cc3a5f396e '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2717.0 '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1968 1947 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 390 '-- mg '-- '-- '-- '-- 4cba3d30-1809-4d1c-9550-961191511801 '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2717.0 '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2537 2530 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment10 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 84ddfff0-837c-4966-a2bb-56e866271fce '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2717.0 '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 141 32 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment13 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 600 '-- mg/m2 '-- '-- '-- '-- 84fd3ff5-f194-4ad7-bb89-2758fb6a4872 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2717.0 '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2623 2608 '-- '-- Progressive Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment14 Topotecan '-- '-- '-- '-- '-- '-- '-- 2 '-- mg/m2 '-- '-- '-- '-- 85803e5e-c77d-442e-9db8-19759614ccb8 '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2717.0 '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2399 2073 '-- '-- Recurrent Disease '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment2 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 40 '-- mg/m2 '-- '-- '-- '-- 9d157599-867d-43f2-a163-67df4a3a445a '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2717.0 '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 141 32 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment23 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- aaa3601b-c43f-410c-a2d0-1fee76e6e019 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2717.0 '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1732 1590 '-- '-- Recurrent Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment12 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b40cf83d-72f0-4ca3-bf60-f8a99a9aeab8 '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2717.0 '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1732 1590 '-- '-- Recurrent Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment8 Docetaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- bbc32442-4b0c-4a52-95c8-8138910881bc '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2717.0 '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2602 2482 '-- '-- Progressive Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment5 Topotecan '-- '-- '-- '-- '-- '-- '-- 4 '-- mg/m2 '-- '-- '-- '-- bef4a973-936f-4d16-b43f-30b631023cd6 '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2717.0 '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2650 2426 '-- '-- Progressive Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment19 Topotecan '-- '-- '-- '-- '-- '-- '-- 2 '-- mg/m2 '-- '-- '-- '-- c362782a-039f-4c8b-b91b-1c4034b35014 '-- yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2717.0 '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1662_treatment24 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d43e105f-0694-4266-9d21-b056a3298165 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2717.0 '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- 1926 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1662_treatment17 Anastrozole '-- '-- '-- '-- '-- '-- '-- 1 '-- mg '-- '-- '-- '-- dd7d466a-7924-4d8e-91af-50218b34c1cf '-- yes '-- '-- Hormone Therapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 21246 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2717.0 '-- '-- 5b81cf5b-651e-5c5e-a09f-53be4eca5931 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1662_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 15 15 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1662_treatment11 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e81be105-73e4-4836-8a76-2f142c705fa8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 22292 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1046 '-- '-- '-- 9d390796-521b-4e09-b734-54ebe3ad21a2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1662_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1662_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1662_treatment25 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1a5c87a3-b920-4813-a2ce-411ddf61e57f '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 867f9563-16c9-45a8-b519-6df61ba1b6b7 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1662 58 false '-- '-- '-- '-- -21246 2717 b1157df0-4b67-57c6-a41d-2425cbc0a707 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1662_demographic Dead '-- '-- '-- '-- 22292 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1046 '-- '-- '-- 9d390796-521b-4e09-b734-54ebe3ad21a2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1662_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1662_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1662_treatment26 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 58e609d4-5074-485c-8992-97a7f51cd526 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 86b513ba-df09-485d-92d4-fb9e888f7350 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1701 56 false '-- '-- '-- '-- -20737 515 5a7b3dcd-6dc2-5969-88a3-e6623cb00004 '-- not reported female '-- '-- '-- '-- white TCGA-29-1701_demographic Dead '-- '-- '-- '-- 20737 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 515.0 '-- '-- 7970b8af-897d-58cd-9c10-f467a239f1d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1701_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1701_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 086b997f-2f87-4649-9e8f-94cb05dd8519 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 86b513ba-df09-485d-92d4-fb9e888f7350 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1701 56 false '-- '-- '-- '-- -20737 515 5a7b3dcd-6dc2-5969-88a3-e6623cb00004 '-- not reported female '-- '-- '-- '-- white TCGA-29-1701_demographic Dead '-- '-- '-- '-- 20737 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 515.0 '-- '-- 7970b8af-897d-58cd-9c10-f467a239f1d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1701_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 160 31 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1701_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1280 '-- mg '-- '-- '-- '-- 0c5d1c6d-280f-418d-8a9e-1ef6f3528158 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 86b513ba-df09-485d-92d4-fb9e888f7350 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1701 56 false '-- '-- '-- '-- -20737 515 5a7b3dcd-6dc2-5969-88a3-e6623cb00004 '-- not reported female '-- '-- '-- '-- white TCGA-29-1701_demographic Dead '-- '-- '-- '-- 20737 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 515.0 '-- '-- 7970b8af-897d-58cd-9c10-f467a239f1d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1701_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 381 318 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1701_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 75 '-- mg '-- '-- '-- '-- 1f0103b1-1924-432e-a491-d534988bf032 '-- yes '-- '-- Chemotherapy +TCGA-OV 86b513ba-df09-485d-92d4-fb9e888f7350 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1701 56 false '-- '-- '-- '-- -20737 515 5a7b3dcd-6dc2-5969-88a3-e6623cb00004 '-- not reported female '-- '-- '-- '-- white TCGA-29-1701_demographic Dead '-- '-- '-- '-- 20737 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 515.0 '-- '-- 7970b8af-897d-58cd-9c10-f467a239f1d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1701_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 160 31 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1701_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 4505 '-- mg '-- '-- '-- '-- 2411538c-6d01-5b61-969d-ff4d50ed1969 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 86b513ba-df09-485d-92d4-fb9e888f7350 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1701 56 false '-- '-- '-- '-- -20737 515 5a7b3dcd-6dc2-5969-88a3-e6623cb00004 '-- not reported female '-- '-- '-- '-- white TCGA-29-1701_demographic Dead '-- '-- '-- '-- 20737 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 515.0 '-- '-- 7970b8af-897d-58cd-9c10-f467a239f1d1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1701_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 472 409 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1701_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 49783079-0370-4b51-9338-cf7433c8a909 '-- yes '-- '-- Chemotherapy +TCGA-OV 86b513ba-df09-485d-92d4-fb9e888f7350 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1701 56 false '-- '-- '-- '-- -20737 515 5a7b3dcd-6dc2-5969-88a3-e6623cb00004 '-- not reported female '-- '-- '-- '-- white TCGA-29-1701_demographic Dead '-- '-- '-- '-- 21035 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 298 '-- '-- '-- eddb4773-2b36-4839-bcb4-70a5f601c11d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1701_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1701_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1701_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 06d18bdc-a9ce-4e32-887d-5a98f104ef06 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 86b513ba-df09-485d-92d4-fb9e888f7350 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1701 56 false '-- '-- '-- '-- -20737 515 5a7b3dcd-6dc2-5969-88a3-e6623cb00004 '-- not reported female '-- '-- '-- '-- white TCGA-29-1701_demographic Dead '-- '-- '-- '-- 21035 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 298 '-- '-- '-- eddb4773-2b36-4839-bcb4-70a5f601c11d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1701_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1701_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1701_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 76c02a48-fb17-4d4a-875d-16d9299b27c8 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 8727855e-120a-4216-a803-8cc6cd1159be Informed Consent 21 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1342 80 false '-- '-- '-- '-- -29501 563 6a95eab4-efb0-5637-8480-f4a864f3c478 '-- not reported female '-- '-- '-- '-- white TCGA-04-1342_demographic Dead '-- '-- '-- '-- 29501 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 563.0 '-- '-- 0827afc1-ecf5-5dc7-afa4-c7a51305ba23 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1342_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 478 170 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1342_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 31c6c759-d7c9-4d22-96de-fbb04d3d5d38 '-- yes '-- '-- Chemotherapy +TCGA-OV 8727855e-120a-4216-a803-8cc6cd1159be Informed Consent 21 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1342 80 false '-- '-- '-- '-- -29501 563 6a95eab4-efb0-5637-8480-f4a864f3c478 '-- not reported female '-- '-- '-- '-- white TCGA-04-1342_demographic Dead '-- '-- '-- '-- 29501 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 563.0 '-- '-- 0827afc1-ecf5-5dc7-afa4-c7a51305ba23 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1342_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 478 170 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1342_treatment4 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 37e09254-9dde-4063-9589-b299e5891391 '-- yes '-- '-- Chemotherapy +TCGA-OV 8727855e-120a-4216-a803-8cc6cd1159be Informed Consent 21 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1342 80 false '-- '-- '-- '-- -29501 563 6a95eab4-efb0-5637-8480-f4a864f3c478 '-- not reported female '-- '-- '-- '-- white TCGA-04-1342_demographic Dead '-- '-- '-- '-- 29501 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 563.0 '-- '-- 0827afc1-ecf5-5dc7-afa4-c7a51305ba23 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1342_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 478 170 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1342_treatment2 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 543c900c-0e81-4a3f-a6d7-ad7e8ccb5fcb '-- yes '-- '-- Chemotherapy +TCGA-OV 8727855e-120a-4216-a803-8cc6cd1159be Informed Consent 21 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1342 80 false '-- '-- '-- '-- -29501 563 6a95eab4-efb0-5637-8480-f4a864f3c478 '-- not reported female '-- '-- '-- '-- white TCGA-04-1342_demographic Dead '-- '-- '-- '-- 29501 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 563.0 '-- '-- 0827afc1-ecf5-5dc7-afa4-c7a51305ba23 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1342_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1342_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6e786b81-6d3e-4249-9d9e-a91df910afa5 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 8727855e-120a-4216-a803-8cc6cd1159be Informed Consent 21 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1342 80 false '-- '-- '-- '-- -29501 563 6a95eab4-efb0-5637-8480-f4a864f3c478 '-- not reported female '-- '-- '-- '-- white TCGA-04-1342_demographic Dead '-- '-- '-- '-- 29501 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 563.0 '-- '-- 0827afc1-ecf5-5dc7-afa4-c7a51305ba23 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1342_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 478 170 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1342_treatment Doxorubicin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cc98e820-506f-52d3-b5d2-3286a99ee7d8 '-- yes '-- '-- Chemotherapy +TCGA-OV 8727855e-120a-4216-a803-8cc6cd1159be Informed Consent 21 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1342 80 false '-- '-- '-- '-- -29501 563 6a95eab4-efb0-5637-8480-f4a864f3c478 '-- not reported female '-- '-- '-- '-- white TCGA-04-1342_demographic Dead '-- '-- '-- '-- 29501 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 563.0 '-- '-- 0827afc1-ecf5-5dc7-afa4-c7a51305ba23 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1342_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 142 32 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1342_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d4b3a3a6-6228-4e8b-9d43-82a0afbe5d34 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 872d2922-7292-4681-adb7-d3b267eccbe7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2033 87 false '-- '-- '-- '-- -31977 562 7726c9f9-3852-5bc5-99d6-00a44e1d0173 '-- not reported female '-- '-- '-- '-- white TCGA-24-2033_demographic Dead '-- '-- '-- '-- 31977 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 562.0 '-- '-- 54f526da-dd2d-5ca2-ba04-32fa91ce3f46 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-24-2033_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2033_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1d33693e-72e5-4321-8b79-f22fc5f9af5e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 872d2922-7292-4681-adb7-d3b267eccbe7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2033 87 false '-- '-- '-- '-- -31977 562 7726c9f9-3852-5bc5-99d6-00a44e1d0173 '-- not reported female '-- '-- '-- '-- white TCGA-24-2033_demographic Dead '-- '-- '-- '-- 31977 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 562.0 '-- '-- 54f526da-dd2d-5ca2-ba04-32fa91ce3f46 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-24-2033_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 232 38 '-- '-- '-- '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2033_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2940 '-- mg '-- '-- '-- '-- 2b692939-01eb-5f0f-9fb5-c6bb2f44a78f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 872d2922-7292-4681-adb7-d3b267eccbe7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2033 87 false '-- '-- '-- '-- -31977 562 7726c9f9-3852-5bc5-99d6-00a44e1d0173 '-- not reported female '-- '-- '-- '-- white TCGA-24-2033_demographic Dead '-- '-- '-- '-- 31977 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 562.0 '-- '-- 54f526da-dd2d-5ca2-ba04-32fa91ce3f46 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-24-2033_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 232 38 '-- '-- '-- '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2033_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3020 '-- mg '-- '-- '-- '-- 4442f6de-d2a2-476c-b516-dbfaef3dbb42 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 872d2922-7292-4681-adb7-d3b267eccbe7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2033 87 false '-- '-- '-- '-- -31977 562 7726c9f9-3852-5bc5-99d6-00a44e1d0173 '-- not reported female '-- '-- '-- '-- white TCGA-24-2033_demographic Dead '-- '-- '-- '-- 31977 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 562.0 '-- '-- 54f526da-dd2d-5ca2-ba04-32fa91ce3f46 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-24-2033_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- '-- 471 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-2033_treatment2 Altretamine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9a9ca7ba-fafe-465a-bcb5-0929ed6eb699 '-- yes '-- '-- Chemotherapy +TCGA-OV 872d2922-7292-4681-adb7-d3b267eccbe7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2033 87 false '-- '-- '-- '-- -31977 562 7726c9f9-3852-5bc5-99d6-00a44e1d0173 '-- not reported female '-- '-- '-- '-- white TCGA-24-2033_demographic Dead '-- '-- '-- '-- 31977 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 562.0 '-- '-- 54f526da-dd2d-5ca2-ba04-32fa91ce3f46 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-24-2033_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 400 358 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2033_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c7ca1018-1ad9-4219-8945-cb9fbc8e74f7 '-- yes '-- '-- Chemotherapy +TCGA-OV 872d2922-7292-4681-adb7-d3b267eccbe7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2033 87 false '-- '-- '-- '-- -31977 562 7726c9f9-3852-5bc5-99d6-00a44e1d0173 '-- not reported female '-- '-- '-- '-- white TCGA-24-2033_demographic Dead '-- '-- '-- '-- 32328 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 351 '-- '-- '-- f0346140-5dea-409e-878f-6cb42b717bde false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2033_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2033_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2033_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2b2ad06e-3fc3-4f46-ad7b-a33de5e0ac42 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 872d2922-7292-4681-adb7-d3b267eccbe7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2033 87 false '-- '-- '-- '-- -31977 562 7726c9f9-3852-5bc5-99d6-00a44e1d0173 '-- not reported female '-- '-- '-- '-- white TCGA-24-2033_demographic Dead '-- '-- '-- '-- 32328 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 351 '-- '-- '-- f0346140-5dea-409e-878f-6cb42b717bde false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2033_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2033_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2033_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8ed172c2-211c-48e9-895b-f126acfdff38 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 8783e4b0-2b62-45d5-8cd9-f5a71cc0138e '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0903 42 false '-- '-- '-- '-- -15705 '-- 8e23cd48-3afa-5036-be23-d70de72834f3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0903_demographic Alive '-- '-- '-- '-- 15705 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3887.0 '-- '-- be91dd4f-d0ed-5af5-b320-aa8186f7ea1d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0903_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0903_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 27cc80b0-b352-4130-a305-64eda55820ce Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 8783e4b0-2b62-45d5-8cd9-f5a71cc0138e '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0903 42 false '-- '-- '-- '-- -15705 '-- 8e23cd48-3afa-5036-be23-d70de72834f3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0903_demographic Alive '-- '-- '-- '-- 15705 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3887.0 '-- '-- be91dd4f-d0ed-5af5-b320-aa8186f7ea1d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0903_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 141 22 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0903_treatment4 Cetuximab '-- '-- '-- '-- '-- '-- '-- 250 '-- mg/m2 '-- '-- '-- '-- 438bd33b-2036-46f7-9e91-4ec7dc1d7078 Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV 8783e4b0-2b62-45d5-8cd9-f5a71cc0138e '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0903 42 false '-- '-- '-- '-- -15705 '-- 8e23cd48-3afa-5036-be23-d70de72834f3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0903_demographic Alive '-- '-- '-- '-- 15705 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3887.0 '-- '-- be91dd4f-d0ed-5af5-b320-aa8186f7ea1d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0903_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 127 22 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0903_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4de52059-aba2-43cc-b985-dba104a8c38c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8783e4b0-2b62-45d5-8cd9-f5a71cc0138e '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0903 42 false '-- '-- '-- '-- -15705 '-- 8e23cd48-3afa-5036-be23-d70de72834f3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0903_demographic Alive '-- '-- '-- '-- 15705 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3887.0 '-- '-- be91dd4f-d0ed-5af5-b320-aa8186f7ea1d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0903_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 335 169 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0903_treatment3 Cetuximab '-- '-- '-- '-- '-- '-- '-- 250 '-- mg/m2 '-- '-- '-- '-- ad6ee811-b5f1-4b54-80e8-ad7674f37088 Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV 8783e4b0-2b62-45d5-8cd9-f5a71cc0138e '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0903 42 false '-- '-- '-- '-- -15705 '-- 8e23cd48-3afa-5036-be23-d70de72834f3 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0903_demographic Alive '-- '-- '-- '-- 15705 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3887.0 '-- '-- be91dd4f-d0ed-5af5-b320-aa8186f7ea1d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0903_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 127 22 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0903_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1050 '-- mg/m2 '-- '-- '-- '-- f8c67efd-f557-5f79-a180-96dbdb0fbfb5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 87cdf9a8-0579-4d3e-b4df-0f8eef63d7f4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1917 60 false '-- '-- '-- '-- -21972 1321 74f5f727-b63b-5e72-8e77-a97f9b879973 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1917_demographic Dead '-- '-- '-- '-- 21972 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1321.0 '-- '-- cb076281-fc07-59e0-98e5-006fcdb7e319 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1917_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1917_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3f562a25-adcf-42f7-b4e6-921db4372e70 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 87cdf9a8-0579-4d3e-b4df-0f8eef63d7f4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1917 60 false '-- '-- '-- '-- -21972 1321 74f5f727-b63b-5e72-8e77-a97f9b879973 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1917_demographic Dead '-- '-- '-- '-- 21972 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1321.0 '-- '-- cb076281-fc07-59e0-98e5-006fcdb7e319 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1917_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- 19 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1917_treatment2 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 732360f4-3300-41ea-8122-7278abaf3994 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 87cdf9a8-0579-4d3e-b4df-0f8eef63d7f4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1917 60 false '-- '-- '-- '-- -21972 1321 74f5f727-b63b-5e72-8e77-a97f9b879973 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1917_demographic Dead '-- '-- '-- '-- 21972 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1321.0 '-- '-- cb076281-fc07-59e0-98e5-006fcdb7e319 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1917_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- 19 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1917_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 925949a3-cbd9-5646-b879-60045d81afeb Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 87cdf9a8-0579-4d3e-b4df-0f8eef63d7f4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1917 60 false '-- '-- '-- '-- -21972 1321 74f5f727-b63b-5e72-8e77-a97f9b879973 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1917_demographic Dead '-- '-- '-- '-- 21972 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1321.0 '-- '-- cb076281-fc07-59e0-98e5-006fcdb7e319 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1917_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- 19 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1917_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ae8f0fc7-f9ed-4caa-8991-38a57b2f0a04 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 88180134-710f-46ea-9b06-5e5d860d6d9f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2110 56 false '-- '-- '-- '-- -20718 1354 f60176dd-6543-512c-8308-244afc979cf1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2110_demographic Dead '-- '-- '-- '-- 20718 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1354.0 '-- '-- 1e51ebe2-c57d-5a2a-8421-1f6cbdf4003b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2110_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1354 459 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-61-2110_treatment6 Tamoxifen '-- '-- '-- '-- '-- '-- '-- 10 '-- mg '-- '-- '-- '-- 0460dc35-1b84-43db-a153-535a25b1c396 '-- yes '-- '-- Hormone Therapy +TCGA-OV 88180134-710f-46ea-9b06-5e5d860d6d9f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2110 56 false '-- '-- '-- '-- -20718 1354 f60176dd-6543-512c-8308-244afc979cf1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2110_demographic Dead '-- '-- '-- '-- 20718 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1354.0 '-- '-- 1e51ebe2-c57d-5a2a-8421-1f6cbdf4003b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2110_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1239 1089 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2110_treatment5 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 12640 '-- mg '-- '-- '-- '-- 061c1c33-8156-4b61-b3f5-a53bba4bcddc '-- yes '-- '-- Chemotherapy +TCGA-OV 88180134-710f-46ea-9b06-5e5d860d6d9f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2110 56 false '-- '-- '-- '-- -20718 1354 f60176dd-6543-512c-8308-244afc979cf1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2110_demographic Dead '-- '-- '-- '-- 20718 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1354.0 '-- '-- 1e51ebe2-c57d-5a2a-8421-1f6cbdf4003b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2110_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 930 774 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2110_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3900 '-- mg '-- '-- '-- '-- 3d8f4d7d-d041-404a-90d8-584913dc75c3 '-- yes '-- '-- Chemotherapy +TCGA-OV 88180134-710f-46ea-9b06-5e5d860d6d9f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2110 56 false '-- '-- '-- '-- -20718 1354 f60176dd-6543-512c-8308-244afc979cf1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2110_demographic Dead '-- '-- '-- '-- 20718 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1354.0 '-- '-- 1e51ebe2-c57d-5a2a-8421-1f6cbdf4003b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2110_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- '-- 1263 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- 2.0 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2110_treatment '-- '-- '-- '-- '-- '-- Locoregional Site '-- 600 '-- cGy '-- '-- '-- '-- 40938b97-fc11-528c-8a13-07959e393c9c '-- yes '-- '-- Radiation, External Beam +TCGA-OV 88180134-710f-46ea-9b06-5e5d860d6d9f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2110 56 false '-- '-- '-- '-- -20718 1354 f60176dd-6543-512c-8308-244afc979cf1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2110_demographic Dead '-- '-- '-- '-- 20718 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1354.0 '-- '-- 1e51ebe2-c57d-5a2a-8421-1f6cbdf4003b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2110_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1089 979 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2110_treatment8 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 315 '-- mg '-- '-- '-- '-- 7f9aa3a3-16d8-4c88-9fc0-ce039d934fc9 '-- yes '-- '-- Chemotherapy +TCGA-OV 88180134-710f-46ea-9b06-5e5d860d6d9f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2110 56 false '-- '-- '-- '-- -20718 1354 f60176dd-6543-512c-8308-244afc979cf1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2110_demographic Dead '-- '-- '-- '-- 20718 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1354.0 '-- '-- 1e51ebe2-c57d-5a2a-8421-1f6cbdf4003b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2110_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 161 20 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2110_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2970 '-- mg '-- '-- '-- '-- 97dce764-9904-4d7b-97fb-c879f8e0b90e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 88180134-710f-46ea-9b06-5e5d860d6d9f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2110 56 false '-- '-- '-- '-- -20718 1354 f60176dd-6543-512c-8308-244afc979cf1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2110_demographic Dead '-- '-- '-- '-- 20718 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1354.0 '-- '-- 1e51ebe2-c57d-5a2a-8421-1f6cbdf4003b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2110_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 161 20 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2110_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1620 '-- mg '-- '-- '-- '-- a4816b18-2c87-4f70-9ab1-237148862c98 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 88180134-710f-46ea-9b06-5e5d860d6d9f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2110 56 false '-- '-- '-- '-- -20718 1354 f60176dd-6543-512c-8308-244afc979cf1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2110_demographic Dead '-- '-- '-- '-- 20718 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1354.0 '-- '-- 1e51ebe2-c57d-5a2a-8421-1f6cbdf4003b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2110_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 356 244 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-61-2110_treatment9 Recombinant Interleukin-2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c5760c5e-850e-41f9-9a95-df45bab256e2 '-- yes '-- '-- Immunotherapy (Including Vaccines) +TCGA-OV 88180134-710f-46ea-9b06-5e5d860d6d9f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2110 56 false '-- '-- '-- '-- -20718 1354 f60176dd-6543-512c-8308-244afc979cf1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2110_demographic Dead '-- '-- '-- '-- 20718 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1354.0 '-- '-- 1e51ebe2-c57d-5a2a-8421-1f6cbdf4003b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2110_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 770 661 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2110_treatment2 Topotecan '-- '-- '-- '-- '-- '-- '-- 28 '-- mg '-- '-- '-- '-- c74541b4-3e28-4a22-a505-46a3b339a937 '-- yes '-- '-- Chemotherapy +TCGA-OV 88180134-710f-46ea-9b06-5e5d860d6d9f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2110 56 false '-- '-- '-- '-- -20718 1354 f60176dd-6543-512c-8308-244afc979cf1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2110_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5823a3f1-8fb9-4607-9175-b719a03924c2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2110_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2110_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2110_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6296630e-1fb2-4cdf-890e-32a8b43bbc7e '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 88180134-710f-46ea-9b06-5e5d860d6d9f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2110 56 false '-- '-- '-- '-- -20718 1354 f60176dd-6543-512c-8308-244afc979cf1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2110_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5823a3f1-8fb9-4607-9175-b719a03924c2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2110_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2110_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2110_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c360096c-c3a7-47a4-86ea-5e84000a20a2 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 88180134-710f-46ea-9b06-5e5d860d6d9f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2110 56 false '-- '-- '-- '-- -20718 1354 f60176dd-6543-512c-8308-244afc979cf1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2110_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5823a3f1-8fb9-4607-9175-b719a03924c2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2110_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2110_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 213 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2110_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fe4dd639-7826-42a7-8948-903eb7c1a0a8 '-- yes '-- '-- Surgery, NOS +TCGA-OV 88180134-710f-46ea-9b06-5e5d860d6d9f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2110 56 false '-- '-- '-- '-- -20718 1354 f60176dd-6543-512c-8308-244afc979cf1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2110_demographic Dead '-- '-- '-- '-- 20931 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 213 '-- '-- '-- b833e360-58fb-4c11-bef6-8bbb69f57164 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2110_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2110_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2110_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 782e468c-fdf4-44ec-8e93-f8aa72cbf632 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 88180134-710f-46ea-9b06-5e5d860d6d9f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2110 56 false '-- '-- '-- '-- -20718 1354 f60176dd-6543-512c-8308-244afc979cf1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2110_demographic Dead '-- '-- '-- '-- 20931 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 213 '-- '-- '-- b833e360-58fb-4c11-bef6-8bbb69f57164 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2110_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2110_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2110_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 80508310-81eb-409a-be5a-b91471f911f3 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 88d61634-913c-435a-8d25-e019c8dab7da Informed Consent -9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1625 66 false '-- '-- '-- '-- -24298 840 06877d4c-0fbc-5556-8685-4c48593f955d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1625_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 18025cad-1326-4d81-bbe8-8b9f65a20653 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1625_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1625_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1625_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 073dbeb7-32c5-43bb-98ad-14fdce4c7620 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 88d61634-913c-435a-8d25-e019c8dab7da Informed Consent -9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1625 66 false '-- '-- '-- '-- -24298 840 06877d4c-0fbc-5556-8685-4c48593f955d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1625_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 18025cad-1326-4d81-bbe8-8b9f65a20653 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1625_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1625_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 545 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1625_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2cd9b2e9-cc94-4971-baab-54312fc9c91a '-- yes '-- '-- Surgery, NOS +TCGA-OV 88d61634-913c-435a-8d25-e019c8dab7da Informed Consent -9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1625 66 false '-- '-- '-- '-- -24298 840 06877d4c-0fbc-5556-8685-4c48593f955d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1625_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 18025cad-1326-4d81-bbe8-8b9f65a20653 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1625_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1625_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1625_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 60eea3af-76d1-4183-9bbe-c7e71ef5dbc9 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 88d61634-913c-435a-8d25-e019c8dab7da Informed Consent -9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1625 66 false '-- '-- '-- '-- -24298 840 06877d4c-0fbc-5556-8685-4c48593f955d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1625_demographic Dead '-- '-- '-- '-- 24298 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 840.0 '-- '-- 1f62e295-6408-55a9-935c-279bb362319e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1625_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1625_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4e9b9130-c642-4ba1-8a99-aa27c810d68d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 88d61634-913c-435a-8d25-e019c8dab7da Informed Consent -9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1625 66 false '-- '-- '-- '-- -24298 840 06877d4c-0fbc-5556-8685-4c48593f955d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1625_demographic Dead '-- '-- '-- '-- 24298 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 840.0 '-- '-- 1f62e295-6408-55a9-935c-279bb362319e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1625_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1625_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9eda4617-0d41-58fa-8c1d-7c3a837481f7 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 88d61634-913c-435a-8d25-e019c8dab7da Informed Consent -9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1625 66 false '-- '-- '-- '-- -24298 840 06877d4c-0fbc-5556-8685-4c48593f955d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1625_demographic Dead '-- '-- '-- '-- 24298 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 840.0 '-- '-- 1f62e295-6408-55a9-935c-279bb362319e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1625_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1625_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ca3bc6d2-c477-42ad-b79b-de0a4106f024 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 88d61634-913c-435a-8d25-e019c8dab7da Informed Consent -9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1625 66 false '-- '-- '-- '-- -24298 840 06877d4c-0fbc-5556-8685-4c48593f955d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1625_demographic Dead '-- '-- '-- '-- 24824 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 526 '-- '-- '-- 4420a8e4-a7dc-4c81-bdbd-c8258c9ff81b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1625_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1625_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1625_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1d19146f-b690-4e2c-8a89-13dfef4746b1 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 88d61634-913c-435a-8d25-e019c8dab7da Informed Consent -9 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1625 66 false '-- '-- '-- '-- -24298 840 06877d4c-0fbc-5556-8685-4c48593f955d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1625_demographic Dead '-- '-- '-- '-- 24824 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 526 '-- '-- '-- 4420a8e4-a7dc-4c81-bdbd-c8258c9ff81b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1625_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1625_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1625_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- eaebf4a3-8d51-4dd2-8216-2984ab6546a3 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 8a6d2ce3-cc57-451b-9b07-8263782aa23f Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1124 62 false '-- '-- '-- '-- -23005 1768 a40f5a66-901f-5f5a-a655-12f02f540c06 '-- not reported female '-- '-- '-- '-- white TCGA-23-1124_demographic Dead '-- '-- '-- '-- 23646 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 641 '-- '-- '-- 92676cf0-d935-43d4-92bd-577f5e209636 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1124_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1124_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1124_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6c673d24-1d5a-4122-8fee-ec6097463596 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 8a6d2ce3-cc57-451b-9b07-8263782aa23f Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1124 62 false '-- '-- '-- '-- -23005 1768 a40f5a66-901f-5f5a-a655-12f02f540c06 '-- not reported female '-- '-- '-- '-- white TCGA-23-1124_demographic Dead '-- '-- '-- '-- 23646 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 641 '-- '-- '-- 92676cf0-d935-43d4-92bd-577f5e209636 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1124_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1124_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1124_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b1f0e378-44a7-4ebd-a2ed-cfe63ff24cb9 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 8a6d2ce3-cc57-451b-9b07-8263782aa23f Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1124 62 false '-- '-- '-- '-- -23005 1768 a40f5a66-901f-5f5a-a655-12f02f540c06 '-- not reported female '-- '-- '-- '-- white TCGA-23-1124_demographic Dead '-- '-- '-- '-- 23005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1768.0 '-- '-- ac65727a-f9c7-5ede-8383-e3e1d80f8a2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1124_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1342 1307 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1124_treatment6 Vinorelbine '-- '-- '-- '-- '-- '-- '-- 180 '-- mg '-- '-- '-- '-- 46d16acc-8006-41a6-8cf9-9cb89f407529 '-- yes '-- '-- Chemotherapy +TCGA-OV 8a6d2ce3-cc57-451b-9b07-8263782aa23f Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1124 62 false '-- '-- '-- '-- -23005 1768 a40f5a66-901f-5f5a-a655-12f02f540c06 '-- not reported female '-- '-- '-- '-- white TCGA-23-1124_demographic Dead '-- '-- '-- '-- 23005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1768.0 '-- '-- ac65727a-f9c7-5ede-8383-e3e1d80f8a2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1124_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1510 1363 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1124_treatment2 Doxorubicin '-- '-- '-- '-- '-- '-- '-- 390 '-- mg '-- '-- '-- '-- 632e0644-629e-49ce-8f95-90cddc2da844 '-- yes '-- '-- Chemotherapy +TCGA-OV 8a6d2ce3-cc57-451b-9b07-8263782aa23f Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1124 62 false '-- '-- '-- '-- -23005 1768 a40f5a66-901f-5f5a-a655-12f02f540c06 '-- not reported female '-- '-- '-- '-- white TCGA-23-1124_demographic Dead '-- '-- '-- '-- 23005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1768.0 '-- '-- ac65727a-f9c7-5ede-8383-e3e1d80f8a2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1124_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1286 1070 '-- '-- Recurrent Disease '-- '-- '-- '-- 11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1124_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 3080 '-- mg '-- '-- '-- '-- a202e090-29be-4ccc-b226-d2d744557190 '-- yes '-- '-- Chemotherapy +TCGA-OV 8a6d2ce3-cc57-451b-9b07-8263782aa23f Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1124 62 false '-- '-- '-- '-- -23005 1768 a40f5a66-901f-5f5a-a655-12f02f540c06 '-- not reported female '-- '-- '-- '-- white TCGA-23-1124_demographic Dead '-- '-- '-- '-- 23005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1768.0 '-- '-- ac65727a-f9c7-5ede-8383-e3e1d80f8a2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1124_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1566 1538 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1124_treatment4 Topotecan '-- '-- '-- '-- '-- '-- '-- 12 '-- mg '-- '-- '-- '-- a98232d9-95a3-437c-a87c-db28e7b30b55 '-- yes '-- '-- Chemotherapy +TCGA-OV 8a6d2ce3-cc57-451b-9b07-8263782aa23f Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1124 62 false '-- '-- '-- '-- -23005 1768 a40f5a66-901f-5f5a-a655-12f02f540c06 '-- not reported female '-- '-- '-- '-- white TCGA-23-1124_demographic Dead '-- '-- '-- '-- 23005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1768.0 '-- '-- ac65727a-f9c7-5ede-8383-e3e1d80f8a2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1124_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1124_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c8ca64d5-5ac9-4d2b-a070-e661a53a1591 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 8a6d2ce3-cc57-451b-9b07-8263782aa23f Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1124 62 false '-- '-- '-- '-- -23005 1768 a40f5a66-901f-5f5a-a655-12f02f540c06 '-- not reported female '-- '-- '-- '-- white TCGA-23-1124_demographic Dead '-- '-- '-- '-- 23005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1768.0 '-- '-- ac65727a-f9c7-5ede-8383-e3e1d80f8a2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1124_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 197 19 '-- '-- '-- '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1124_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4950 '-- mg '-- '-- '-- '-- dd5ca185-9b36-4926-a24e-6143443bd897 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8a6d2ce3-cc57-451b-9b07-8263782aa23f Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1124 62 false '-- '-- '-- '-- -23005 1768 a40f5a66-901f-5f5a-a655-12f02f540c06 '-- not reported female '-- '-- '-- '-- white TCGA-23-1124_demographic Dead '-- '-- '-- '-- 23005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1768.0 '-- '-- ac65727a-f9c7-5ede-8383-e3e1d80f8a2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1124_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 872 676 '-- '-- Recurrent Disease '-- '-- '-- '-- 18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1124_treatment Gemcitabine '-- '-- '-- '-- '-- '-- '-- 18000 '-- mg '-- '-- '-- '-- e3398f25-9357-55b1-bb84-3fcfb2840765 '-- yes '-- '-- Chemotherapy +TCGA-OV 8a6d2ce3-cc57-451b-9b07-8263782aa23f Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1124 62 false '-- '-- '-- '-- -23005 1768 a40f5a66-901f-5f5a-a655-12f02f540c06 '-- not reported female '-- '-- '-- '-- white TCGA-23-1124_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- de525ca6-7b38-435e-bab0-9da4206ed121 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1124_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1124_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1124_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ada53059-febe-4498-996b-c79c7af53d7f '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 8a6d2ce3-cc57-451b-9b07-8263782aa23f Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1124 62 false '-- '-- '-- '-- -23005 1768 a40f5a66-901f-5f5a-a655-12f02f540c06 '-- not reported female '-- '-- '-- '-- white TCGA-23-1124_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- de525ca6-7b38-435e-bab0-9da4206ed121 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1124_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1124_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1124_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c69e2e48-ab0b-4475-98bf-ac9e22cc02c0 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 8a6d2ce3-cc57-451b-9b07-8263782aa23f Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1124 62 false '-- '-- '-- '-- -23005 1768 a40f5a66-901f-5f5a-a655-12f02f540c06 '-- not reported female '-- '-- '-- '-- white TCGA-23-1124_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- de525ca6-7b38-435e-bab0-9da4206ed121 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1124_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1124_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 644 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1124_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ebca8ff4-f55e-44ed-b231-98666740e033 '-- yes '-- '-- Surgery, NOS +TCGA-OV 8a98a6e6-b763-4824-858b-fd2738e6c9a3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1696 43 false '-- '-- '-- '-- -15818 1032 c51e54e0-2edf-5cdc-8ca8-6d6d57b1a6fc '-- not reported female '-- '-- '-- '-- white TCGA-29-1696_demographic Dead '-- '-- '-- '-- 16160 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 342 '-- '-- '-- 10c051ad-bab9-4c85-9865-8a7b74b60f7d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1696_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1696_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1696_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b9570236-582d-4d42-8cd5-47d5c9117e2c '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 8a98a6e6-b763-4824-858b-fd2738e6c9a3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1696 43 false '-- '-- '-- '-- -15818 1032 c51e54e0-2edf-5cdc-8ca8-6d6d57b1a6fc '-- not reported female '-- '-- '-- '-- white TCGA-29-1696_demographic Dead '-- '-- '-- '-- 16160 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 342 '-- '-- '-- 10c051ad-bab9-4c85-9865-8a7b74b60f7d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1696_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1696_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1696_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bafcfc13-228b-4e5a-bf7f-b824665c1d3e '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 8a98a6e6-b763-4824-858b-fd2738e6c9a3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1696 43 false '-- '-- '-- '-- -15818 1032 c51e54e0-2edf-5cdc-8ca8-6d6d57b1a6fc '-- not reported female '-- '-- '-- '-- white TCGA-29-1696_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 24e31861-d8e3-4e15-b53d-fa00516b8bd6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1696_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1696_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 454 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1696_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6bdff5f6-4121-431c-bfc5-b0aa3333dc9e '-- yes '-- '-- Surgery, NOS +TCGA-OV 8a98a6e6-b763-4824-858b-fd2738e6c9a3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1696 43 false '-- '-- '-- '-- -15818 1032 c51e54e0-2edf-5cdc-8ca8-6d6d57b1a6fc '-- not reported female '-- '-- '-- '-- white TCGA-29-1696_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 24e31861-d8e3-4e15-b53d-fa00516b8bd6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1696_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1696_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1696_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 96546ade-4c5a-43ea-bb43-7b01a52f4fb9 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 8a98a6e6-b763-4824-858b-fd2738e6c9a3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1696 43 false '-- '-- '-- '-- -15818 1032 c51e54e0-2edf-5cdc-8ca8-6d6d57b1a6fc '-- not reported female '-- '-- '-- '-- white TCGA-29-1696_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 24e31861-d8e3-4e15-b53d-fa00516b8bd6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1696_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1696_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1696_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b7b3edce-59e6-4a13-bf20-a3db5cd4a4b1 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 8a98a6e6-b763-4824-858b-fd2738e6c9a3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1696 43 false '-- '-- '-- '-- -15818 1032 c51e54e0-2edf-5cdc-8ca8-6d6d57b1a6fc '-- not reported female '-- '-- '-- '-- white TCGA-29-1696_demographic Dead '-- '-- '-- '-- 15818 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1032.0 '-- '-- f5ff0990-b997-5fdd-801b-60df58027c40 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1696_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 997 948 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1696_treatment4 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 1305 '-- mg '-- '-- '-- '-- 06ff553d-472e-47c6-9ec4-4f4a95db0263 '-- yes '-- '-- Chemotherapy +TCGA-OV 8a98a6e6-b763-4824-858b-fd2738e6c9a3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1696 43 false '-- '-- '-- '-- -15818 1032 c51e54e0-2edf-5cdc-8ca8-6d6d57b1a6fc '-- not reported female '-- '-- '-- '-- white TCGA-29-1696_demographic Dead '-- '-- '-- '-- 15818 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1032.0 '-- '-- f5ff0990-b997-5fdd-801b-60df58027c40 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1696_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 997 633 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1696_treatment6 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 660 '-- mg '-- '-- '-- '-- 3e6a37d9-c8d3-46c9-9446-f4df30c4f689 '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 8a98a6e6-b763-4824-858b-fd2738e6c9a3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1696 43 false '-- '-- '-- '-- -15818 1032 c51e54e0-2edf-5cdc-8ca8-6d6d57b1a6fc '-- not reported female '-- '-- '-- '-- white TCGA-29-1696_demographic Dead '-- '-- '-- '-- 15818 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1032.0 '-- '-- f5ff0990-b997-5fdd-801b-60df58027c40 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1696_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 934 864 '-- '-- Progressive Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1696_treatment7 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 140 '-- mg '-- '-- '-- '-- 58f7c29e-fcc4-4763-85d6-8e1d5e1bc316 '-- yes '-- '-- Chemotherapy +TCGA-OV 8a98a6e6-b763-4824-858b-fd2738e6c9a3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1696 43 false '-- '-- '-- '-- -15818 1032 c51e54e0-2edf-5cdc-8ca8-6d6d57b1a6fc '-- not reported female '-- '-- '-- '-- white TCGA-29-1696_demographic Dead '-- '-- '-- '-- 15818 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1032.0 '-- '-- f5ff0990-b997-5fdd-801b-60df58027c40 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1696_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 171 17 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1696_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2550 '-- mg '-- '-- '-- '-- 69800ea4-51dd-5371-ae98-68bd783855f1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8a98a6e6-b763-4824-858b-fd2738e6c9a3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1696 43 false '-- '-- '-- '-- -15818 1032 c51e54e0-2edf-5cdc-8ca8-6d6d57b1a6fc '-- not reported female '-- '-- '-- '-- white TCGA-29-1696_demographic Dead '-- '-- '-- '-- 15818 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1032.0 '-- '-- f5ff0990-b997-5fdd-801b-60df58027c40 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1696_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 573 507 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1696_treatment5 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 8321 '-- mg '-- '-- '-- '-- 6eb8a526-6f7d-42b7-b134-19c5efada572 '-- yes '-- '-- Chemotherapy +TCGA-OV 8a98a6e6-b763-4824-858b-fd2738e6c9a3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1696 43 false '-- '-- '-- '-- -15818 1032 c51e54e0-2edf-5cdc-8ca8-6d6d57b1a6fc '-- not reported female '-- '-- '-- '-- white TCGA-29-1696_demographic Dead '-- '-- '-- '-- 15818 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1032.0 '-- '-- f5ff0990-b997-5fdd-801b-60df58027c40 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1696_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 479 357 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1696_treatment8 Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 70 '-- mg '-- '-- '-- '-- 9ff477b1-7db5-4d01-a706-91367966203d '-- yes '-- '-- Chemotherapy +TCGA-OV 8a98a6e6-b763-4824-858b-fd2738e6c9a3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1696 43 false '-- '-- '-- '-- -15818 1032 c51e54e0-2edf-5cdc-8ca8-6d6d57b1a6fc '-- not reported female '-- '-- '-- '-- white TCGA-29-1696_demographic Dead '-- '-- '-- '-- 15818 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1032.0 '-- '-- f5ff0990-b997-5fdd-801b-60df58027c40 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1696_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 171 17 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1696_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5472 '-- mg '-- '-- '-- '-- a28c5b2b-1b95-4ffc-9df8-a3fe0a425fb1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8a98a6e6-b763-4824-858b-fd2738e6c9a3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1696 43 false '-- '-- '-- '-- -15818 1032 c51e54e0-2edf-5cdc-8ca8-6d6d57b1a6fc '-- not reported female '-- '-- '-- '-- white TCGA-29-1696_demographic Dead '-- '-- '-- '-- 15818 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1032.0 '-- '-- f5ff0990-b997-5fdd-801b-60df58027c40 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1696_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1696_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e364d5ca-a40d-47fc-80e9-04b901c99da3 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 8a98a6e6-b763-4824-858b-fd2738e6c9a3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1696 43 false '-- '-- '-- '-- -15818 1032 c51e54e0-2edf-5cdc-8ca8-6d6d57b1a6fc '-- not reported female '-- '-- '-- '-- white TCGA-29-1696_demographic Dead '-- '-- '-- '-- 15818 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1032.0 '-- '-- f5ff0990-b997-5fdd-801b-60df58027c40 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1696_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 791 598 '-- '-- Progressive Disease '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1696_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- e7253a62-f845-4a16-b521-11235d6ac668 '-- yes '-- '-- Chemotherapy +TCGA-OV 8ac6ce06-ab50-4ab4-a469-9f8bf01be963 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1024 52 false '-- '-- '-- '-- -19052 '-- 83b2a085-d35c-5c1c-a5a5-d0125b3fc24d '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1024_demographic Alive '-- '-- '-- '-- 19052 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 468.0 '-- '-- 4daaa455-5886-55af-9373-8912838020b3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1024_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 304 13 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-23-1024_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 776 '-- mg '-- '-- '-- '-- 1ede6ca5-3de4-56d3-913b-e27419c8b222 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8ac6ce06-ab50-4ab4-a469-9f8bf01be963 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1024 52 false '-- '-- '-- '-- -19052 '-- 83b2a085-d35c-5c1c-a5a5-d0125b3fc24d '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1024_demographic Alive '-- '-- '-- '-- 19052 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 468.0 '-- '-- 4daaa455-5886-55af-9373-8912838020b3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1024_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 304 13 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-23-1024_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1608 '-- mg '-- '-- '-- '-- 367a6467-9d57-474c-9d25-c3121c3f17fe Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8ac6ce06-ab50-4ab4-a469-9f8bf01be963 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1024 52 false '-- '-- '-- '-- -19052 '-- 83b2a085-d35c-5c1c-a5a5-d0125b3fc24d '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1024_demographic Alive '-- '-- '-- '-- 19052 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 468.0 '-- '-- 4daaa455-5886-55af-9373-8912838020b3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1024_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1024_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a26bdbab-74a3-4ca0-bd54-116d24146c09 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 8ac6ce06-ab50-4ab4-a469-9f8bf01be963 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1024 52 false '-- '-- '-- '-- -19052 '-- 83b2a085-d35c-5c1c-a5a5-d0125b3fc24d '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1024_demographic Alive '-- '-- '-- '-- 19052 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 468.0 '-- '-- 4daaa455-5886-55af-9373-8912838020b3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1024_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 304 13 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-23-1024_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 541 '-- mg '-- '-- '-- '-- cb2efeb9-58c7-4790-99dd-66d2e496f353 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8ac6ce06-ab50-4ab4-a469-9f8bf01be963 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1024 52 false '-- '-- '-- '-- -19052 '-- 83b2a085-d35c-5c1c-a5a5-d0125b3fc24d '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1024_demographic Alive '-- '-- '-- '-- 19052 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 468.0 '-- '-- 4daaa455-5886-55af-9373-8912838020b3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1024_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 529 224 '-- '-- Not Reported '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1024_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2556 '-- mg '-- '-- '-- '-- cda2540c-6c06-40a4-a66c-754971058269 Consolidation Therapy yes '-- '-- Chemotherapy +TCGA-OV 8cad4217-5699-4735-9be3-fc0015a8d262 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0911 55 false '-- '-- '-- '-- -20276 1355 d9f04340-86d7-54c3-9770-ba6f4a98c85b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0911_demographic Dead '-- '-- '-- '-- 20555 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 279 '-- '-- '-- 145184d3-08d1-45ba-bf30-7912694cfb8d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0911_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0911_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 8cad4217-5699-4735-9be3-fc0015a8d262 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0911 55 false '-- '-- '-- '-- -20276 1355 d9f04340-86d7-54c3-9770-ba6f4a98c85b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0911_demographic Dead '-- '-- '-- '-- 20276 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1355.0 '-- '-- 37459c7e-8694-5ed7-8555-422cb0f653b7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-13-0911_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 189 49 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0911_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 12b7e268-b1c5-484f-b7e9-96436700446b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8cad4217-5699-4735-9be3-fc0015a8d262 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0911 55 false '-- '-- '-- '-- -20276 1355 d9f04340-86d7-54c3-9770-ba6f4a98c85b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0911_demographic Dead '-- '-- '-- '-- 20276 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1355.0 '-- '-- 37459c7e-8694-5ed7-8555-422cb0f653b7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-13-0911_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 189 49 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0911_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3842c585-4b74-5358-baef-56414520a21b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8cad4217-5699-4735-9be3-fc0015a8d262 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0911 55 false '-- '-- '-- '-- -20276 1355 d9f04340-86d7-54c3-9770-ba6f4a98c85b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0911_demographic Dead '-- '-- '-- '-- 20276 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1355.0 '-- '-- 37459c7e-8694-5ed7-8555-422cb0f653b7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-13-0911_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0911_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 39da7a6a-b642-4304-a3d7-c03fe9b78dc9 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 8cad4217-5699-4735-9be3-fc0015a8d262 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0911 55 false '-- '-- '-- '-- -20276 1355 d9f04340-86d7-54c3-9770-ba6f4a98c85b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0911_demographic Dead '-- '-- '-- '-- 20555 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 279 '-- '-- '-- 425405f4-e6c7-47f7-9034-852058e9aedd false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0911_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0911_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0911_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2d091fc7-a5bb-4f77-b8b8-56fa4bfc7ce1 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 8cad4217-5699-4735-9be3-fc0015a8d262 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0911 55 false '-- '-- '-- '-- -20276 1355 d9f04340-86d7-54c3-9770-ba6f4a98c85b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0911_demographic Dead '-- '-- '-- '-- 20555 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 279 '-- '-- '-- 425405f4-e6c7-47f7-9034-852058e9aedd false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0911_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0911_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0911_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fa68aa33-17c7-45c8-9f34-ebf9556b6c7b '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 8d1dcf21-efd3-4fbe-ad44-f43a19239383 Informed Consent -13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2065 71 false '-- '-- '-- '-- -25973 '-- f24b0016-00c8-534d-8c71-2ea487071fcb '-- not reported female '-- '-- '-- '-- black or african american TCGA-13-2065_demographic Alive '-- '-- '-- '-- 26919 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 946 '-- '-- '-- 07edaff7-2df3-4ed6-a464-41871eea4047 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-2065_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-2065_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 8d1dcf21-efd3-4fbe-ad44-f43a19239383 Informed Consent -13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2065 71 false '-- '-- '-- '-- -25973 '-- f24b0016-00c8-534d-8c71-2ea487071fcb '-- not reported female '-- '-- '-- '-- black or african american TCGA-13-2065_demographic Alive '-- '-- '-- '-- 25973 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1993.0 '-- '-- 51edb7fb-0fc3-5b1d-af25-b3b19cc04384 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2065_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-2065_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 01c92db8-f0a9-4488-87a2-48e558822703 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 8d1dcf21-efd3-4fbe-ad44-f43a19239383 Informed Consent -13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2065 71 false '-- '-- '-- '-- -25973 '-- f24b0016-00c8-534d-8c71-2ea487071fcb '-- not reported female '-- '-- '-- '-- black or african american TCGA-13-2065_demographic Alive '-- '-- '-- '-- 25973 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1993.0 '-- '-- 51edb7fb-0fc3-5b1d-af25-b3b19cc04384 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2065_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 68 16 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-2065_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 10b0c41c-9edc-5178-a6f4-67fdcbb172dd Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8d1dcf21-efd3-4fbe-ad44-f43a19239383 Informed Consent -13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2065 71 false '-- '-- '-- '-- -25973 '-- f24b0016-00c8-534d-8c71-2ea487071fcb '-- not reported female '-- '-- '-- '-- black or african american TCGA-13-2065_demographic Alive '-- '-- '-- '-- 25973 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1993.0 '-- '-- 51edb7fb-0fc3-5b1d-af25-b3b19cc04384 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2065_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 141 89 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-2065_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 4b75e5cd-fab4-4346-a397-39242720d506 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8d1dcf21-efd3-4fbe-ad44-f43a19239383 Informed Consent -13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2065 71 false '-- '-- '-- '-- -25973 '-- f24b0016-00c8-534d-8c71-2ea487071fcb '-- not reported female '-- '-- '-- '-- black or african american TCGA-13-2065_demographic Alive '-- '-- '-- '-- 25973 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1993.0 '-- '-- 51edb7fb-0fc3-5b1d-af25-b3b19cc04384 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2065_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 141 89 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-2065_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 671a1296-ce09-4d10-853c-02cef9541470 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8e107f4b-1912-4d3e-814a-b863e2d65ed7 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1404 48 false '-- '-- '-- '-- -17784 '-- edf28ac0-2fef-5d14-9ecd-ff8a593fa717 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1404_demographic Alive '-- '-- '-- '-- 17784 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2469.0 '-- '-- 7b7eb1ba-bb1d-57b4-89e6-1c838f2f540e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1404_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 274 232 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-1404_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- 4997ac35-df51-529f-91be-802f4bedd7d2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8e107f4b-1912-4d3e-814a-b863e2d65ed7 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1404 48 false '-- '-- '-- '-- -17784 '-- edf28ac0-2fef-5d14-9ecd-ff8a593fa717 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1404_demographic Alive '-- '-- '-- '-- 17784 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2469.0 '-- '-- 7b7eb1ba-bb1d-57b4-89e6-1c838f2f540e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1404_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 156 50 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1404_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 91fb2cdc-b02e-4d4f-9e60-f2a9a0bf1761 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8e107f4b-1912-4d3e-814a-b863e2d65ed7 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1404 48 false '-- '-- '-- '-- -17784 '-- edf28ac0-2fef-5d14-9ecd-ff8a593fa717 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1404_demographic Alive '-- '-- '-- '-- 17784 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2469.0 '-- '-- 7b7eb1ba-bb1d-57b4-89e6-1c838f2f540e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1404_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1404_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c408657e-3d52-48be-9acb-6b93d1410642 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 8e107f4b-1912-4d3e-814a-b863e2d65ed7 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1404 48 false '-- '-- '-- '-- -17784 '-- edf28ac0-2fef-5d14-9ecd-ff8a593fa717 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1404_demographic Alive '-- '-- '-- '-- 17784 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2469.0 '-- '-- 7b7eb1ba-bb1d-57b4-89e6-1c838f2f540e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1404_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 156 50 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1404_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- d3a0df2f-68ec-4550-a144-c6c7c4e05896 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8e107f4b-1912-4d3e-814a-b863e2d65ed7 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1404 48 false '-- '-- '-- '-- -17784 '-- edf28ac0-2fef-5d14-9ecd-ff8a593fa717 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1404_demographic Alive '-- '-- '-- '-- 19365 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 1581 '-- '-- '-- e2eefe0e-8ef0-460b-ab65-4d6677bb7226 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1404_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1404_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 8e1b8811-1eb2-4337-852c-c19eaa0ee418 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1914 65 false '-- '-- '-- '-- -23850 '-- 2133f718-5c09-5c22-a386-00330e432c86 '-- not reported female '-- '-- '-- '-- not reported TCGA-61-1914_demographic Alive '-- '-- '-- '-- 25524 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1674 '-- '-- '-- 89709f38-3db6-4fd7-ba99-cf6a5b0cd01d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1914_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1914_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1914_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 65badab2-c2de-4ce2-bd79-24176e7bf331 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 8e1b8811-1eb2-4337-852c-c19eaa0ee418 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1914 65 false '-- '-- '-- '-- -23850 '-- 2133f718-5c09-5c22-a386-00330e432c86 '-- not reported female '-- '-- '-- '-- not reported TCGA-61-1914_demographic Alive '-- '-- '-- '-- 25524 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1674 '-- '-- '-- 89709f38-3db6-4fd7-ba99-cf6a5b0cd01d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1914_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1914_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1914_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e3498d5d-a409-4bc8-9b1a-3ec500b86323 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 8e1b8811-1eb2-4337-852c-c19eaa0ee418 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1914 65 false '-- '-- '-- '-- -23850 '-- 2133f718-5c09-5c22-a386-00330e432c86 '-- not reported female '-- '-- '-- '-- not reported TCGA-61-1914_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cc1fbf3d-08a2-4428-a9ba-6c59260e6f07 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1914_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1914_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1702 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1914_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 09b5b242-4d15-42ca-a026-45fbe1688dd8 '-- yes '-- '-- Surgery, NOS +TCGA-OV 8e1b8811-1eb2-4337-852c-c19eaa0ee418 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1914 65 false '-- '-- '-- '-- -23850 '-- 2133f718-5c09-5c22-a386-00330e432c86 '-- not reported female '-- '-- '-- '-- not reported TCGA-61-1914_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cc1fbf3d-08a2-4428-a9ba-6c59260e6f07 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1914_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1914_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1914_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 22fef897-fba4-43a2-8c2e-7d64fbc62a03 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 8e1b8811-1eb2-4337-852c-c19eaa0ee418 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1914 65 false '-- '-- '-- '-- -23850 '-- 2133f718-5c09-5c22-a386-00330e432c86 '-- not reported female '-- '-- '-- '-- not reported TCGA-61-1914_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cc1fbf3d-08a2-4428-a9ba-6c59260e6f07 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1914_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1914_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1914_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d2c4c2eb-a9ed-437b-abf9-b550d73b0352 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 8e1b8811-1eb2-4337-852c-c19eaa0ee418 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1914 65 false '-- '-- '-- '-- -23850 '-- 2133f718-5c09-5c22-a386-00330e432c86 '-- not reported female '-- '-- '-- '-- not reported TCGA-61-1914_demographic Alive '-- '-- '-- '-- 23850 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1722.0 '-- '-- d601544b-eacc-5b79-b206-68fa1be8c0ac true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1914_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 193 22 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1914_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2400 '-- mg '-- '-- '-- '-- 31b7ef49-9e87-41f1-8561-df4290f3b475 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8e1b8811-1eb2-4337-852c-c19eaa0ee418 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1914 65 false '-- '-- '-- '-- -23850 '-- 2133f718-5c09-5c22-a386-00330e432c86 '-- not reported female '-- '-- '-- '-- not reported TCGA-61-1914_demographic Alive '-- '-- '-- '-- 23850 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1722.0 '-- '-- d601544b-eacc-5b79-b206-68fa1be8c0ac true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1914_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 1673 1155 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1914_treatment2 Tamoxifen '-- '-- '-- '-- '-- '-- '-- 1030 '-- mg '-- '-- '-- '-- 776745fe-6083-402d-90ef-92a80e26b549 Adjuvant yes '-- '-- Hormone Therapy +TCGA-OV 8e1b8811-1eb2-4337-852c-c19eaa0ee418 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1914 65 false '-- '-- '-- '-- -23850 '-- 2133f718-5c09-5c22-a386-00330e432c86 '-- not reported female '-- '-- '-- '-- not reported TCGA-61-1914_demographic Alive '-- '-- '-- '-- 23850 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1722.0 '-- '-- d601544b-eacc-5b79-b206-68fa1be8c0ac true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1914_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 1871 1753 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1914_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2580 '-- mg '-- '-- '-- '-- 86a7f280-58d0-4e2f-b7cf-2ce57da91cbb '-- yes '-- '-- Chemotherapy +TCGA-OV 8e1b8811-1eb2-4337-852c-c19eaa0ee418 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1914 65 false '-- '-- '-- '-- -23850 '-- 2133f718-5c09-5c22-a386-00330e432c86 '-- not reported female '-- '-- '-- '-- not reported TCGA-61-1914_demographic Alive '-- '-- '-- '-- 23850 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1722.0 '-- '-- d601544b-eacc-5b79-b206-68fa1be8c0ac true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1914_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1914_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 901268b5-7f81-4bd6-8dc4-b59d974a03b2 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 8e1b8811-1eb2-4337-852c-c19eaa0ee418 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1914 65 false '-- '-- '-- '-- -23850 '-- 2133f718-5c09-5c22-a386-00330e432c86 '-- not reported female '-- '-- '-- '-- not reported TCGA-61-1914_demographic Alive '-- '-- '-- '-- 23850 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1722.0 '-- '-- d601544b-eacc-5b79-b206-68fa1be8c0ac true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1914_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 1871 1753 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1914_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1890 '-- mg '-- '-- '-- '-- a40f6fba-f561-40d9-9922-5fc39ad8bcb4 '-- yes '-- '-- Chemotherapy +TCGA-OV 8e1b8811-1eb2-4337-852c-c19eaa0ee418 Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1914 65 false '-- '-- '-- '-- -23850 '-- 2133f718-5c09-5c22-a386-00330e432c86 '-- not reported female '-- '-- '-- '-- not reported TCGA-61-1914_demographic Alive '-- '-- '-- '-- 23850 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1722.0 '-- '-- d601544b-eacc-5b79-b206-68fa1be8c0ac true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1914_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 193 22 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1914_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 3360 '-- mg '-- '-- '-- '-- cdfd6ed8-89d3-5764-93ec-e05ccd6b4d7d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8fac8e40-beac-4059-9d54-7ee530598cfd Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1408 59 false '-- '-- '-- '-- -21635 1680 45f8a427-8d1d-5aae-b1f3-7f698c460b17 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1408_demographic Dead '-- '-- '-- '-- 21635 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1680.0 '-- '-- 8ea974b6-785e-5566-a7c3-61fc6c0fd914 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1408_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 201 152 '-- '-- '-- '-- '-- '-- '-- 3 '-- 75.0 mg/m2 '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-1408_treatment5 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 313de0f0-e7f6-42cf-b44b-b4e11c8a76ff Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8fac8e40-beac-4059-9d54-7ee530598cfd Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1408 59 false '-- '-- '-- '-- -21635 1680 45f8a427-8d1d-5aae-b1f3-7f698c460b17 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1408_demographic Dead '-- '-- '-- '-- 21635 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1680.0 '-- '-- 8ea974b6-785e-5566-a7c3-61fc6c0fd914 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1408_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 201 152 '-- '-- '-- '-- '-- '-- '-- 3 '-- 135.0 mg/m2 '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1408_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3bef52d7-95c1-4eaa-9e49-7aa31a18d798 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8fac8e40-beac-4059-9d54-7ee530598cfd Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1408 59 false '-- '-- '-- '-- -21635 1680 45f8a427-8d1d-5aae-b1f3-7f698c460b17 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1408_demographic Dead '-- '-- '-- '-- 21635 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1680.0 '-- '-- 8ea974b6-785e-5566-a7c3-61fc6c0fd914 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1408_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 91 8 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1408_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 8be8284b-3a48-4df2-ba42-f1a47f34e638 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8fac8e40-beac-4059-9d54-7ee530598cfd Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1408 59 false '-- '-- '-- '-- -21635 1680 45f8a427-8d1d-5aae-b1f3-7f698c460b17 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1408_demographic Dead '-- '-- '-- '-- 21635 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1680.0 '-- '-- 8ea974b6-785e-5566-a7c3-61fc6c0fd914 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1408_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1408_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 91890577-a9c7-4c47-bfc4-bbea6a3f22d2 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 8fac8e40-beac-4059-9d54-7ee530598cfd Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1408 59 false '-- '-- '-- '-- -21635 1680 45f8a427-8d1d-5aae-b1f3-7f698c460b17 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1408_demographic Dead '-- '-- '-- '-- 21635 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1680.0 '-- '-- 8ea974b6-785e-5566-a7c3-61fc6c0fd914 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1408_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 201 152 '-- '-- '-- '-- '-- '-- '-- 3 '-- 60.0 mg/m2 '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-1408_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a2186591-a57e-43f8-afdf-cd00a181db9c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8fac8e40-beac-4059-9d54-7ee530598cfd Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1408 59 false '-- '-- '-- '-- -21635 1680 45f8a427-8d1d-5aae-b1f3-7f698c460b17 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1408_demographic Dead '-- '-- '-- '-- 21635 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1680.0 '-- '-- 8ea974b6-785e-5566-a7c3-61fc6c0fd914 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1408_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 91 8 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1408_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- d62233c1-db6f-5c67-8080-81da1707a968 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8fac8e40-beac-4059-9d54-7ee530598cfd Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1408 59 false '-- '-- '-- '-- -21635 1680 45f8a427-8d1d-5aae-b1f3-7f698c460b17 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1408_demographic Dead '-- '-- '-- '-- 22400 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 765 '-- '-- '-- e7ea045b-9bee-4ac5-b137-af2500ab48c5 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1408_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1408_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 8fe44099-b313-4bfd-a94a-27e72f2a818c '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0766 42 false '-- '-- '-- '-- -15571 1725 e30ceb01-2a0d-5f44-bc94-3364ba25f4fc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0766_demographic Dead '-- '-- '-- '-- 16199 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 628 '-- '-- '-- 2fd3290b-6b2a-4fad-93e6-5a5e302a5d10 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0766_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0766_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 8fe44099-b313-4bfd-a94a-27e72f2a818c '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0766 42 false '-- '-- '-- '-- -15571 1725 e30ceb01-2a0d-5f44-bc94-3364ba25f4fc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0766_demographic Dead '-- '-- '-- '-- 16199 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 628 '-- '-- '-- 7db33138-2794-4640-bc89-1f80b6b18a55 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0766_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0766_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 8fe44099-b313-4bfd-a94a-27e72f2a818c '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0766 42 false '-- '-- '-- '-- -15571 1725 e30ceb01-2a0d-5f44-bc94-3364ba25f4fc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0766_demographic Dead '-- '-- '-- '-- 15571 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1725.0 '-- '-- f8151830-32c5-5123-9995-74276a780df0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0766_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 182 '-- '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0766_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 01b57c69-17d6-41b4-a37c-2313fc72ef09 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8fe44099-b313-4bfd-a94a-27e72f2a818c '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0766 42 false '-- '-- '-- '-- -15571 1725 e30ceb01-2a0d-5f44-bc94-3364ba25f4fc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0766_demographic Dead '-- '-- '-- '-- 15571 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1725.0 '-- '-- f8151830-32c5-5123-9995-74276a780df0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0766_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0766_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a2a52632-1831-541a-9c2c-efc2cc36edfa Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8fe44099-b313-4bfd-a94a-27e72f2a818c '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0766 42 false '-- '-- '-- '-- -15571 1725 e30ceb01-2a0d-5f44-bc94-3364ba25f4fc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0766_demographic Dead '-- '-- '-- '-- 15571 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1725.0 '-- '-- f8151830-32c5-5123-9995-74276a780df0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0766_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 182 '-- '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0766_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 100 '-- mg/m2 '-- '-- '-- '-- ccead1c4-a6fe-41a8-a114-675d339b2231 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 8fe44099-b313-4bfd-a94a-27e72f2a818c '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0766 42 false '-- '-- '-- '-- -15571 1725 e30ceb01-2a0d-5f44-bc94-3364ba25f4fc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0766_demographic Dead '-- '-- '-- '-- 15571 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1725.0 '-- '-- f8151830-32c5-5123-9995-74276a780df0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0766_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0766_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d1828cb0-0306-4fdf-b5c4-1ac617159354 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 90118207-8f11-4784-ac1b-0deec2e7af3a '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0791 58 false '-- '-- '-- '-- -21380 1224 0de1018a-465a-56a2-8937-12c8f1addc14 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0791_demographic Dead '-- '-- '-- '-- 21380 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1224.0 '-- '-- 024e2727-bba3-549b-8c73-f5ac656459ca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0791_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0791_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3c759568-be2c-4228-b391-ec9a013f58ce Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 90118207-8f11-4784-ac1b-0deec2e7af3a '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0791 58 false '-- '-- '-- '-- -21380 1224 0de1018a-465a-56a2-8937-12c8f1addc14 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0791_demographic Dead '-- '-- '-- '-- 21380 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1224.0 '-- '-- 024e2727-bba3-549b-8c73-f5ac656459ca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0791_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 449 302 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- 40.0 mg/m2 '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0791_treatment6 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5b3574b2-2593-401f-89fa-ba3c67667a6b '-- yes '-- '-- Chemotherapy +TCGA-OV 90118207-8f11-4784-ac1b-0deec2e7af3a '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0791 58 false '-- '-- '-- '-- -21380 1224 0de1018a-465a-56a2-8937-12c8f1addc14 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0791_demographic Dead '-- '-- '-- '-- 21380 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1224.0 '-- '-- 024e2727-bba3-549b-8c73-f5ac656459ca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0791_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 141 36 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0791_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 6f8ce7f7-f5cf-50eb-b671-d1ffb09cc294 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 90118207-8f11-4784-ac1b-0deec2e7af3a '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0791 58 false '-- '-- '-- '-- -21380 1224 0de1018a-465a-56a2-8937-12c8f1addc14 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0791_demographic Dead '-- '-- '-- '-- 21380 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1224.0 '-- '-- 024e2727-bba3-549b-8c73-f5ac656459ca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0791_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 141 36 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0791_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6fb63c2a-8952-4ac4-8722-8781ef932948 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 90118207-8f11-4784-ac1b-0deec2e7af3a '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0791 58 false '-- '-- '-- '-- -21380 1224 0de1018a-465a-56a2-8937-12c8f1addc14 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0791_demographic Dead '-- '-- '-- '-- 21380 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1224.0 '-- '-- 024e2727-bba3-549b-8c73-f5ac656459ca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0791_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 281 213 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0791_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- 7b04b92d-5324-45cc-8b15-bacfe36a8137 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 90118207-8f11-4784-ac1b-0deec2e7af3a '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0791 58 false '-- '-- '-- '-- -21380 1224 0de1018a-465a-56a2-8937-12c8f1addc14 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0791_demographic Dead '-- '-- '-- '-- 21380 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1224.0 '-- '-- 024e2727-bba3-549b-8c73-f5ac656459ca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0791_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 780 654 '-- '-- Recurrent Disease '-- '-- '-- '-- 12 '-- 800.0 mg/m2 '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0791_treatment4 Gemcitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8799d765-e573-462e-8945-a1ed9ad1d32b '-- yes '-- '-- Chemotherapy +TCGA-OV 90118207-8f11-4784-ac1b-0deec2e7af3a '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0791 58 false '-- '-- '-- '-- -21380 1224 0de1018a-465a-56a2-8937-12c8f1addc14 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0791_demographic Dead '-- '-- '-- '-- 21380 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1224.0 '-- '-- 024e2727-bba3-549b-8c73-f5ac656459ca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0791_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 640 479 '-- '-- Recurrent Disease '-- '-- '-- '-- 19 '-- 3.0 mg/m2 '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0791_treatment7 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ca8ca0a0-c608-4602-aea7-91c0c9abb9b2 '-- yes '-- '-- Chemotherapy +TCGA-OV 90118207-8f11-4784-ac1b-0deec2e7af3a '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0791 58 false '-- '-- '-- '-- -21380 1224 0de1018a-465a-56a2-8937-12c8f1addc14 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0791_demographic Dead '-- '-- '-- '-- 21380 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1224.0 '-- '-- 024e2727-bba3-549b-8c73-f5ac656459ca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0791_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 829 794 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0791_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4 '-- AUC '-- '-- '-- '-- cf072452-e0d0-47a8-a550-7851317fde48 '-- yes '-- '-- Chemotherapy +TCGA-OV 90118207-8f11-4784-ac1b-0deec2e7af3a '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0791 58 false '-- '-- '-- '-- -21380 1224 0de1018a-465a-56a2-8937-12c8f1addc14 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0791_demographic Dead '-- '-- '-- '-- 21661 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 281 '-- '-- '-- 77342dd6-35d9-404b-be58-f992e3dbbc96 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0791_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0791_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 90118207-8f11-4784-ac1b-0deec2e7af3a '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0791 58 false '-- '-- '-- '-- -21380 1224 0de1018a-465a-56a2-8937-12c8f1addc14 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0791_demographic Dead '-- '-- '-- '-- 21661 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 281 '-- '-- '-- eb113501-85e2-4655-924a-4be40445dbf1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0791_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0791_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0791_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cfc48aac-b034-4dd9-b1d9-87cdc0a5c998 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 90118207-8f11-4784-ac1b-0deec2e7af3a '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0791 58 false '-- '-- '-- '-- -21380 1224 0de1018a-465a-56a2-8937-12c8f1addc14 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0791_demographic Dead '-- '-- '-- '-- 21661 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 281 '-- '-- '-- eb113501-85e2-4655-924a-4be40445dbf1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0791_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0791_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0791_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ef82f728-5ff0-41ed-bd8c-ec16652d1d29 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 90f4b65c-cfd4-4066-a5b9-842885c172e2 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0727 71 false '-- '-- '-- '-- -26185 462 c607c1f9-1240-5281-9ad1-0481bf7a2684 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0727_demographic Dead '-- '-- '-- '-- 26438 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 253 '-- '-- '-- a279743b-f104-4e69-8432-8750d8765d6f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0727_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0727_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0727_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7d89e70b-1efb-470a-b2e4-35d1da51ef32 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 90f4b65c-cfd4-4066-a5b9-842885c172e2 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0727 71 false '-- '-- '-- '-- -26185 462 c607c1f9-1240-5281-9ad1-0481bf7a2684 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0727_demographic Dead '-- '-- '-- '-- 26438 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 253 '-- '-- '-- a279743b-f104-4e69-8432-8750d8765d6f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0727_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0727_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0727_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d963b702-856f-46ef-884d-cbb0ba348ffa '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 90f4b65c-cfd4-4066-a5b9-842885c172e2 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0727 71 false '-- '-- '-- '-- -26185 462 c607c1f9-1240-5281-9ad1-0481bf7a2684 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0727_demographic Dead '-- '-- '-- '-- 26185 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 462.0 '-- '-- b8106532-5977-55ab-8efb-28955ed4a91a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0727_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 267 230 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0727_treatment3 Letrozole '-- '-- '-- '-- '-- '-- '-- 3 '-- mg '-- '-- '-- '-- 08d3a6e8-227b-49e6-913b-2d909d43fda9 Adjuvant yes '-- '-- Hormone Therapy +TCGA-OV 90f4b65c-cfd4-4066-a5b9-842885c172e2 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0727 71 false '-- '-- '-- '-- -26185 462 c607c1f9-1240-5281-9ad1-0481bf7a2684 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0727_demographic Dead '-- '-- '-- '-- 26185 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 462.0 '-- '-- b8106532-5977-55ab-8efb-28955ed4a91a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0727_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0727_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2daf2787-14b6-4a69-a131-e6dacff36135 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 90f4b65c-cfd4-4066-a5b9-842885c172e2 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0727 71 false '-- '-- '-- '-- -26185 462 c607c1f9-1240-5281-9ad1-0481bf7a2684 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0727_demographic Dead '-- '-- '-- '-- 26185 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 462.0 '-- '-- b8106532-5977-55ab-8efb-28955ed4a91a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0727_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 120 9 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0727_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 589ab6e4-4f58-560b-9045-b1c606466cfd Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 90f4b65c-cfd4-4066-a5b9-842885c172e2 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0727 71 false '-- '-- '-- '-- -26185 462 c607c1f9-1240-5281-9ad1-0481bf7a2684 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0727_demographic Dead '-- '-- '-- '-- 26185 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 462.0 '-- '-- b8106532-5977-55ab-8efb-28955ed4a91a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0727_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 120 9 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0727_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 8a8b1532-60a3-4652-ab79-1db1f391d6a7 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 914d8613-3c25-4a10-be50-28b42f4d3a5d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1319 73 false '-- '-- '-- '-- -26786 1977 87285b0c-753a-5853-a163-2d40aeeb0262 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1319_demographic Dead '-- '-- '-- '-- 27516 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 730 '-- '-- '-- 9001f454-36ca-4f3b-a6ae-08560aa67cd9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1319_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1319_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1319_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7b186a2a-391e-4607-870a-6f7ad041b5d6 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 914d8613-3c25-4a10-be50-28b42f4d3a5d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1319 73 false '-- '-- '-- '-- -26786 1977 87285b0c-753a-5853-a163-2d40aeeb0262 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1319_demographic Dead '-- '-- '-- '-- 27516 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 730 '-- '-- '-- 9001f454-36ca-4f3b-a6ae-08560aa67cd9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1319_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1319_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1319_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f5cc86d7-c0ac-4599-a62c-91081ee10c5d '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 914d8613-3c25-4a10-be50-28b42f4d3a5d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1319 73 false '-- '-- '-- '-- -26786 1977 87285b0c-753a-5853-a163-2d40aeeb0262 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1319_demographic Dead '-- '-- '-- '-- 26786 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1977.0 '-- '-- db3baf3d-297f-5c6c-a175-b0c27145f449 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1319_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- 61 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1319_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5219254a-13ff-429d-8f81-8e59439cf46f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 914d8613-3c25-4a10-be50-28b42f4d3a5d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1319 73 false '-- '-- '-- '-- -26786 1977 87285b0c-753a-5853-a163-2d40aeeb0262 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1319_demographic Dead '-- '-- '-- '-- 26786 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1977.0 '-- '-- db3baf3d-297f-5c6c-a175-b0c27145f449 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1319_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1319_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 78620031-ed64-4c31-89c3-efac36048bd6 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 914d8613-3c25-4a10-be50-28b42f4d3a5d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1319 73 false '-- '-- '-- '-- -26786 1977 87285b0c-753a-5853-a163-2d40aeeb0262 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1319_demographic Dead '-- '-- '-- '-- 26786 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1977.0 '-- '-- db3baf3d-297f-5c6c-a175-b0c27145f449 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1319_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- 61 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1319_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 92fb3354-b375-5e12-8c52-9863d5367d02 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 914f84bf-578b-4f4d-93cb-378228ea58f6 Informed Consent -22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1505 63 false '-- '-- '-- '-- -23238 '-- b7362858-0e48-5035-9da1-763716901ea0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1505_demographic Alive '-- '-- '-- '-- 24799 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 1561 '-- '-- '-- 64dc1b15-7bae-4545-a667-bd90e4b2eeb2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1505_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1505_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV 914f84bf-578b-4f4d-93cb-378228ea58f6 Informed Consent -22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1505 63 false '-- '-- '-- '-- -23238 '-- b7362858-0e48-5035-9da1-763716901ea0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1505_demographic Alive '-- '-- '-- '-- 23238 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1998.0 '-- '-- efcf95ec-a94c-5a40-9a69-0f895651d4f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1505_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 167 27 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1505_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 35293d0e-685a-4b30-b0e2-a7bbae794929 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 914f84bf-578b-4f4d-93cb-378228ea58f6 Informed Consent -22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1505 63 false '-- '-- '-- '-- -23238 '-- b7362858-0e48-5035-9da1-763716901ea0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1505_demographic Alive '-- '-- '-- '-- 23238 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1998.0 '-- '-- efcf95ec-a94c-5a40-9a69-0f895651d4f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1505_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 167 27 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-1505_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4bdc11e9-5d64-5fb2-bfc2-28406c6a80de Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 914f84bf-578b-4f4d-93cb-378228ea58f6 Informed Consent -22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1505 63 false '-- '-- '-- '-- -23238 '-- b7362858-0e48-5035-9da1-763716901ea0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1505_demographic Alive '-- '-- '-- '-- 23238 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1998.0 '-- '-- efcf95ec-a94c-5a40-9a69-0f895651d4f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1505_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 167 27 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-1505_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 58a72c6d-d0c6-4765-ae1e-35bb01a9673c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 914f84bf-578b-4f4d-93cb-378228ea58f6 Informed Consent -22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1505 63 false '-- '-- '-- '-- -23238 '-- b7362858-0e48-5035-9da1-763716901ea0 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1505_demographic Alive '-- '-- '-- '-- 23238 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1998.0 '-- '-- efcf95ec-a94c-5a40-9a69-0f895651d4f8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1505_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1505_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a8419e2c-908f-42cc-9af3-dfbdd0710023 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 91a17d40-c8cb-4cce-b306-966382a8fe4a Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2111 61 false '-- '-- '-- '-- -22517 '-- 207b7d58-3bbf-5097-98dd-b566c44fa826 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2111_demographic Alive '-- '-- '-- '-- 24722 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 2205 '-- '-- '-- 8fcbc3a2-069e-40fc-b3fb-4777a490176b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2111_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2111_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2111_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 023f5263-440a-4943-bd8a-8d2445e9aded '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 91a17d40-c8cb-4cce-b306-966382a8fe4a Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2111 61 false '-- '-- '-- '-- -22517 '-- 207b7d58-3bbf-5097-98dd-b566c44fa826 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2111_demographic Alive '-- '-- '-- '-- 24722 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 2205 '-- '-- '-- 8fcbc3a2-069e-40fc-b3fb-4777a490176b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2111_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2111_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2111_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5e1aff20-7959-49e0-a6ce-982965f33c82 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 91a17d40-c8cb-4cce-b306-966382a8fe4a Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2111 61 false '-- '-- '-- '-- -22517 '-- 207b7d58-3bbf-5097-98dd-b566c44fa826 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2111_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ac9314c1-f6c5-41c0-9a49-388b2ba4e904 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2111_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2111_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2232 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2111_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2f7fbfa4-dbd9-4d45-a219-13e790cba57d '-- yes '-- '-- Surgery, NOS +TCGA-OV 91a17d40-c8cb-4cce-b306-966382a8fe4a Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2111 61 false '-- '-- '-- '-- -22517 '-- 207b7d58-3bbf-5097-98dd-b566c44fa826 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2111_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ac9314c1-f6c5-41c0-9a49-388b2ba4e904 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2111_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2111_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2111_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8d26162f-d9fd-40c2-8b66-227343a8ec84 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 91a17d40-c8cb-4cce-b306-966382a8fe4a Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2111 61 false '-- '-- '-- '-- -22517 '-- 207b7d58-3bbf-5097-98dd-b566c44fa826 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2111_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ac9314c1-f6c5-41c0-9a49-388b2ba4e904 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2111_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2111_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2111_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cb284f16-cae0-4d65-9fab-75232df7df3a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 91a17d40-c8cb-4cce-b306-966382a8fe4a Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2111 61 false '-- '-- '-- '-- -22517 '-- 207b7d58-3bbf-5097-98dd-b566c44fa826 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2111_demographic Alive '-- '-- '-- '-- 22517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3825.0 '-- '-- cfac89b4-e306-5fa3-8441-559631390575 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2111_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 3165 3079 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2111_treatment8 Cisplatin '-- '-- '-- '-- '-- '-- '-- 512 '-- mg '-- '-- '-- '-- 253ab76a-2b8d-41c4-b608-a607885aa2b4 '-- yes '-- '-- Chemotherapy +TCGA-OV 91a17d40-c8cb-4cce-b306-966382a8fe4a Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2111 61 false '-- '-- '-- '-- -22517 '-- 207b7d58-3bbf-5097-98dd-b566c44fa826 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2111_demographic Alive '-- '-- '-- '-- 22517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3825.0 '-- '-- cfac89b4-e306-5fa3-8441-559631390575 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2111_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2111_treatment10 Medroxyprogesterone Acetate '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3facee2d-a84d-41fe-8271-99fcab8751a9 '-- yes '-- '-- Hormone Therapy +TCGA-OV 91a17d40-c8cb-4cce-b306-966382a8fe4a Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2111 61 false '-- '-- '-- '-- -22517 '-- 207b7d58-3bbf-5097-98dd-b566c44fa826 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2111_demographic Alive '-- '-- '-- '-- 22517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3825.0 '-- '-- cfac89b4-e306-5fa3-8441-559631390575 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2111_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2111_treatment3 Megestrol Acetate '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 493eec16-c469-460d-ae33-5b2e1b651b65 Adjuvant yes '-- '-- Hormone Therapy +TCGA-OV 91a17d40-c8cb-4cce-b306-966382a8fe4a Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2111 61 false '-- '-- '-- '-- -22517 '-- 207b7d58-3bbf-5097-98dd-b566c44fa826 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2111_demographic Alive '-- '-- '-- '-- 22517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3825.0 '-- '-- cfac89b4-e306-5fa3-8441-559631390575 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2111_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- '-- 3808 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2111_treatment9 Bevacizumab '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5130713d-b0a7-4ca7-930f-b72b23a19a58 '-- yes '-- '-- Chemotherapy +TCGA-OV 91a17d40-c8cb-4cce-b306-966382a8fe4a Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2111 61 false '-- '-- '-- '-- -22517 '-- 207b7d58-3bbf-5097-98dd-b566c44fa826 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2111_demographic Alive '-- '-- '-- '-- 22517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3825.0 '-- '-- cfac89b4-e306-5fa3-8441-559631390575 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2111_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2373 2268 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2111_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c45ea76e-86d9-4f44-ba62-0c348f18a351 '-- yes '-- '-- Chemotherapy +TCGA-OV 91a17d40-c8cb-4cce-b306-966382a8fe4a Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2111 61 false '-- '-- '-- '-- -22517 '-- 207b7d58-3bbf-5097-98dd-b566c44fa826 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2111_demographic Alive '-- '-- '-- '-- 22517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3825.0 '-- '-- cfac89b4-e306-5fa3-8441-559631390575 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2111_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 3165 3079 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2111_treatment4 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 4000 '-- mg '-- '-- '-- '-- c96507a2-7079-48a3-a6e4-a94563fab955 '-- yes '-- '-- Chemotherapy +TCGA-OV 91a17d40-c8cb-4cce-b306-966382a8fe4a Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2111 61 false '-- '-- '-- '-- -22517 '-- 207b7d58-3bbf-5097-98dd-b566c44fa826 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2111_demographic Alive '-- '-- '-- '-- 22517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3825.0 '-- '-- cfac89b4-e306-5fa3-8441-559631390575 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2111_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2111_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d2e7729b-b01c-46b4-b510-afafab8967f7 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 91a17d40-c8cb-4cce-b306-966382a8fe4a Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2111 61 false '-- '-- '-- '-- -22517 '-- 207b7d58-3bbf-5097-98dd-b566c44fa826 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2111_demographic Alive '-- '-- '-- '-- 22517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3825.0 '-- '-- cfac89b4-e306-5fa3-8441-559631390575 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2111_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2373 2268 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2111_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d5b17729-b280-4805-93fd-aa8c7e651fb9 '-- yes '-- '-- Chemotherapy +TCGA-OV 91a17d40-c8cb-4cce-b306-966382a8fe4a Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2111 61 false '-- '-- '-- '-- -22517 '-- 207b7d58-3bbf-5097-98dd-b566c44fa826 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2111_demographic Alive '-- '-- '-- '-- 22517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3825.0 '-- '-- cfac89b4-e306-5fa3-8441-559631390575 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2111_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 133 29 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2111_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3400 '-- mg '-- '-- '-- '-- d6a31b72-3b86-49ae-b6c2-08bf9bab28c4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 91a17d40-c8cb-4cce-b306-966382a8fe4a Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2111 61 false '-- '-- '-- '-- -22517 '-- 207b7d58-3bbf-5097-98dd-b566c44fa826 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2111_demographic Alive '-- '-- '-- '-- 22517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3825.0 '-- '-- cfac89b4-e306-5fa3-8441-559631390575 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2111_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- '-- 3808 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2111_treatment Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dffd8615-b8f5-5ae6-a72a-d6641b0a4c28 '-- yes '-- '-- Chemotherapy +TCGA-OV 91a17d40-c8cb-4cce-b306-966382a8fe4a Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2111 61 false '-- '-- '-- '-- -22517 '-- 207b7d58-3bbf-5097-98dd-b566c44fa826 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2111_demographic Alive '-- '-- '-- '-- 22517 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3825.0 '-- '-- cfac89b4-e306-5fa3-8441-559631390575 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2111_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 133 29 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2111_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1500 '-- mg '-- '-- '-- '-- ec6bfd30-a082-4df6-941c-ceb69fccb9a3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 91a6f311-c758-4e40-9abb-cc0f6584b9c9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1856 56 false '-- '-- '-- '-- -20626 477 b6e203a5-67db-5e56-90fb-c97049637c13 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1856_demographic Dead '-- '-- '-- '-- 20846 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 220 '-- '-- '-- 728fdd01-6640-4d99-a86e-f2834c0c9f52 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1856_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1856_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1856_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6fecde6b-b704-4be4-b80f-8c2330ec0a07 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 91a6f311-c758-4e40-9abb-cc0f6584b9c9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1856 56 false '-- '-- '-- '-- -20626 477 b6e203a5-67db-5e56-90fb-c97049637c13 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1856_demographic Dead '-- '-- '-- '-- 20846 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 220 '-- '-- '-- 728fdd01-6640-4d99-a86e-f2834c0c9f52 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1856_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1856_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1856_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c61d9162-bad4-4b32-b8aa-435dbad397bc '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 91a6f311-c758-4e40-9abb-cc0f6584b9c9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1856 56 false '-- '-- '-- '-- -20626 477 b6e203a5-67db-5e56-90fb-c97049637c13 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1856_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9d603cfd-d726-4fdd-8bd5-a985e8e0b220 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1856_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1856_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 224 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1856_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4a83f337-76da-4a2b-9f8b-56956f9dc367 '-- yes '-- '-- Surgery, NOS +TCGA-OV 91a6f311-c758-4e40-9abb-cc0f6584b9c9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1856 56 false '-- '-- '-- '-- -20626 477 b6e203a5-67db-5e56-90fb-c97049637c13 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1856_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9d603cfd-d726-4fdd-8bd5-a985e8e0b220 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1856_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1856_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1856_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- caf7f023-598c-467e-ab58-05843c3031f9 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 91a6f311-c758-4e40-9abb-cc0f6584b9c9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1856 56 false '-- '-- '-- '-- -20626 477 b6e203a5-67db-5e56-90fb-c97049637c13 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1856_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9d603cfd-d726-4fdd-8bd5-a985e8e0b220 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1856_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1856_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1856_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f40bbc74-19f6-4468-8b25-323b053b47a9 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 91a6f311-c758-4e40-9abb-cc0f6584b9c9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1856 56 false '-- '-- '-- '-- -20626 477 b6e203a5-67db-5e56-90fb-c97049637c13 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1856_demographic Dead '-- '-- '-- '-- 20626 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 477.0 '-- '-- ab37a919-18e6-5595-8040-1f467fcbcccb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1856_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 462 339 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1856_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 30 '-- mg/m2 '-- '-- '-- '-- 0d0e9f09-cdc2-4192-a21b-d4bf41d62147 '-- yes '-- '-- Chemotherapy +TCGA-OV 91a6f311-c758-4e40-9abb-cc0f6584b9c9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1856 56 false '-- '-- '-- '-- -20626 477 b6e203a5-67db-5e56-90fb-c97049637c13 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1856_demographic Dead '-- '-- '-- '-- 20626 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 477.0 '-- '-- ab37a919-18e6-5595-8040-1f467fcbcccb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1856_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 195 17 '-- '-- '-- '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1856_treatment6 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1000 '-- mg/m2 '-- '-- '-- '-- 29a1a247-8ddc-4459-8089-9ba283c2380b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 91a6f311-c758-4e40-9abb-cc0f6584b9c9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1856 56 false '-- '-- '-- '-- -20626 477 b6e203a5-67db-5e56-90fb-c97049637c13 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1856_demographic Dead '-- '-- '-- '-- 20626 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 477.0 '-- '-- ab37a919-18e6-5595-8040-1f467fcbcccb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1856_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 462 339 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1856_treatment9 Irinotecan Hydrochloride '-- '-- '-- '-- '-- '-- '-- 50 '-- mg/m2 '-- '-- '-- '-- 5dfe23ab-5439-4e51-b93f-f1cba7e7da7a '-- yes '-- '-- Chemotherapy +TCGA-OV 91a6f311-c758-4e40-9abb-cc0f6584b9c9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1856 56 false '-- '-- '-- '-- -20626 477 b6e203a5-67db-5e56-90fb-c97049637c13 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1856_demographic Dead '-- '-- '-- '-- 20626 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 477.0 '-- '-- ab37a919-18e6-5595-8040-1f467fcbcccb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1856_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 195 17 '-- '-- '-- '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1856_treatment2 Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6775d57a-9e65-40b0-93be-ea25ba2400ac Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 91a6f311-c758-4e40-9abb-cc0f6584b9c9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1856 56 false '-- '-- '-- '-- -20626 477 b6e203a5-67db-5e56-90fb-c97049637c13 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1856_demographic Dead '-- '-- '-- '-- 20626 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 477.0 '-- '-- ab37a919-18e6-5595-8040-1f467fcbcccb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1856_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 195 17 '-- '-- '-- '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1856_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 72d9eb09-4ee6-51a8-b7b0-a0b74ba3af30 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 91a6f311-c758-4e40-9abb-cc0f6584b9c9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1856 56 false '-- '-- '-- '-- -20626 477 b6e203a5-67db-5e56-90fb-c97049637c13 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1856_demographic Dead '-- '-- '-- '-- 20626 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 477.0 '-- '-- ab37a919-18e6-5595-8040-1f467fcbcccb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1856_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1856_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 91957e4e-ff2e-45c6-b9f7-8b7987a2d34f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 91a6f311-c758-4e40-9abb-cc0f6584b9c9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1856 56 false '-- '-- '-- '-- -20626 477 b6e203a5-67db-5e56-90fb-c97049637c13 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1856_demographic Dead '-- '-- '-- '-- 20626 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 477.0 '-- '-- ab37a919-18e6-5595-8040-1f467fcbcccb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1856_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 462 339 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1856_treatment5 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- 20 '-- mg/m2 '-- '-- '-- '-- a034e8b1-8fbd-4bd4-a054-acf04545605e '-- yes '-- '-- Chemotherapy +TCGA-OV 91a6f311-c758-4e40-9abb-cc0f6584b9c9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1856 56 false '-- '-- '-- '-- -20626 477 b6e203a5-67db-5e56-90fb-c97049637c13 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1856_demographic Dead '-- '-- '-- '-- 20626 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 477.0 '-- '-- ab37a919-18e6-5595-8040-1f467fcbcccb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1856_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 195 17 '-- '-- '-- '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1856_treatment8 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cb94b38a-425a-4958-9e5b-378339375d46 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 91a6f311-c758-4e40-9abb-cc0f6584b9c9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1856 56 false '-- '-- '-- '-- -20626 477 b6e203a5-67db-5e56-90fb-c97049637c13 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1856_demographic Dead '-- '-- '-- '-- 20626 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 477.0 '-- '-- ab37a919-18e6-5595-8040-1f467fcbcccb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1856_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- 230 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-30-1856_treatment10 Tamoxifen '-- '-- '-- '-- '-- '-- '-- 40 '-- mg '-- '-- '-- '-- d30e1d48-8e28-4342-aa9c-bcc0074e8b07 Adjuvant yes '-- '-- Hormone Therapy +TCGA-OV 91a6f311-c758-4e40-9abb-cc0f6584b9c9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1856 56 false '-- '-- '-- '-- -20626 477 b6e203a5-67db-5e56-90fb-c97049637c13 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1856_demographic Dead '-- '-- '-- '-- 20626 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 477.0 '-- '-- ab37a919-18e6-5595-8040-1f467fcbcccb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1856_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 300 272 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1856_treatment7 Docetaxel '-- '-- '-- '-- '-- '-- '-- 30 '-- mg/m2 '-- '-- '-- '-- db204b1b-0213-42d4-87e6-d8c70f8681a8 '-- yes '-- '-- Chemotherapy +TCGA-OV 91a6f311-c758-4e40-9abb-cc0f6584b9c9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1856 56 false '-- '-- '-- '-- -20626 477 b6e203a5-67db-5e56-90fb-c97049637c13 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1856_demographic Dead '-- '-- '-- '-- 20626 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 477.0 '-- '-- ab37a919-18e6-5595-8040-1f467fcbcccb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1856_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 195 17 '-- '-- '-- '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1856_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- e709fc0c-36e1-4dac-88cb-b3e571815568 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 91de8a74-a1e6-46b6-a06e-70aedf2c3eaf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0886 67 false '-- '-- '-- '-- -24724 '-- 144fbbef-2227-5cdd-8e21-22114001fe47 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0886_demographic Alive '-- '-- '-- '-- 24724 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 4665.0 '-- '-- e3734193-eac9-5df2-9f6d-dfa735dee27b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0886_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 132 12 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0886_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0692cbb4-fb9a-5464-9bb4-3ca610e4a304 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 91de8a74-a1e6-46b6-a06e-70aedf2c3eaf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0886 67 false '-- '-- '-- '-- -24724 '-- 144fbbef-2227-5cdd-8e21-22114001fe47 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0886_demographic Alive '-- '-- '-- '-- 24724 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 4665.0 '-- '-- e3734193-eac9-5df2-9f6d-dfa735dee27b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0886_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0886_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c46dd1de-870b-49be-a77a-701e898b56a6 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 91de8a74-a1e6-46b6-a06e-70aedf2c3eaf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0886 67 false '-- '-- '-- '-- -24724 '-- 144fbbef-2227-5cdd-8e21-22114001fe47 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0886_demographic Alive '-- '-- '-- '-- 24724 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 4665.0 '-- '-- e3734193-eac9-5df2-9f6d-dfa735dee27b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0886_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 132 12 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0886_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dfc15fde-6a4c-4438-8751-110973b2b55b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 91de8a74-a1e6-46b6-a06e-70aedf2c3eaf '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0886 67 false '-- '-- '-- '-- -24724 '-- 144fbbef-2227-5cdd-8e21-22114001fe47 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0886_demographic Alive '-- '-- '-- '-- 24724 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 4665.0 '-- '-- e3734193-eac9-5df2-9f6d-dfa735dee27b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0886_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 263 221 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0886_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- eedc03b0-9a57-4ab6-9bc0-05e12aba4261 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 92badeb5-a50e-4a62-a67e-6a8a59c948ab Informed Consent 33 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1341 85 false '-- '-- '-- '-- -31215 '-- a6a82dbe-deda-5ed3-81b8-4300e0617345 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1341_demographic Alive '-- '-- '-- '-- 31215 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 33.0 '-- '-- 20316fd4-aca7-57fa-9966-4076874a372f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1341_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1341_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0d68a73c-3842-5432-bb95-10b03c23f67f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 93095c36-2263-438f-a619-a4a4d6ae13c7 Informed Consent -31 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1911 55 false '-- '-- '-- '-- -20144 '-- da682e41-52c5-5a4f-b12c-62a7252a9929 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1911_demographic Alive '-- '-- '-- '-- 20988 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 844 '-- '-- '-- 0bdff29a-883c-4ffc-9bf5-fa92962c59b7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1911_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1911_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1911_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0afdf7f3-e918-453e-a1ce-f15b84d870c9 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 93095c36-2263-438f-a619-a4a4d6ae13c7 Informed Consent -31 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1911 55 false '-- '-- '-- '-- -20144 '-- da682e41-52c5-5a4f-b12c-62a7252a9929 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1911_demographic Alive '-- '-- '-- '-- 20988 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 844 '-- '-- '-- 0bdff29a-883c-4ffc-9bf5-fa92962c59b7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1911_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1911_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1911_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 52d3122a-c4c7-44ba-8745-8391360e018e '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 93095c36-2263-438f-a619-a4a4d6ae13c7 Informed Consent -31 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1911 55 false '-- '-- '-- '-- -20144 '-- da682e41-52c5-5a4f-b12c-62a7252a9929 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1911_demographic Alive '-- '-- '-- '-- 20144 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1293.0 '-- '-- 2fe15ad8-1c35-5513-a742-928b7ffa9166 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1911_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 144 34 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1911_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 4650 '-- mg '-- '-- '-- '-- 1bdabded-cf7f-5dda-a880-89807b805126 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 93095c36-2263-438f-a619-a4a4d6ae13c7 Informed Consent -31 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1911 55 false '-- '-- '-- '-- -20144 '-- da682e41-52c5-5a4f-b12c-62a7252a9929 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1911_demographic Alive '-- '-- '-- '-- 20144 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1293.0 '-- '-- 2fe15ad8-1c35-5513-a742-928b7ffa9166 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1911_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 1432 1306 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1911_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5700 '-- mg '-- '-- '-- '-- 28433e90-82aa-41d9-9040-362b8b03b96d '-- yes '-- '-- Chemotherapy +TCGA-OV 93095c36-2263-438f-a619-a4a4d6ae13c7 Informed Consent -31 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1911 55 false '-- '-- '-- '-- -20144 '-- da682e41-52c5-5a4f-b12c-62a7252a9929 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1911_demographic Alive '-- '-- '-- '-- 20144 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1293.0 '-- '-- 2fe15ad8-1c35-5513-a742-928b7ffa9166 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1911_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 1432 1306 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1911_treatment4 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 9800 '-- mg '-- '-- '-- '-- 31bbc1e5-a38e-4852-b15d-432c155ed96d '-- yes '-- '-- Chemotherapy +TCGA-OV 93095c36-2263-438f-a619-a4a4d6ae13c7 Informed Consent -31 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1911 55 false '-- '-- '-- '-- -20144 '-- da682e41-52c5-5a4f-b12c-62a7252a9929 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1911_demographic Alive '-- '-- '-- '-- 20144 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1293.0 '-- '-- 2fe15ad8-1c35-5513-a742-928b7ffa9166 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1911_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 998 893 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1911_treatment5 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 8400 '-- mg '-- '-- '-- '-- 31c945fe-d804-4bbc-8065-b0fc00548b11 '-- yes '-- '-- Chemotherapy +TCGA-OV 93095c36-2263-438f-a619-a4a4d6ae13c7 Informed Consent -31 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1911 55 false '-- '-- '-- '-- -20144 '-- da682e41-52c5-5a4f-b12c-62a7252a9929 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1911_demographic Alive '-- '-- '-- '-- 20144 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1293.0 '-- '-- 2fe15ad8-1c35-5513-a742-928b7ffa9166 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1911_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 144 34 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1911_treatment7 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1710 '-- mg '-- '-- '-- '-- 6259fb7c-76ba-4ec2-90d7-5481c03fc296 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 93095c36-2263-438f-a619-a4a4d6ae13c7 Informed Consent -31 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1911 55 false '-- '-- '-- '-- -20144 '-- da682e41-52c5-5a4f-b12c-62a7252a9929 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1911_demographic Alive '-- '-- '-- '-- 20144 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1293.0 '-- '-- 2fe15ad8-1c35-5513-a742-928b7ffa9166 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1911_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 1432 1306 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1911_treatment6 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 500 '-- mg '-- '-- '-- '-- 69079724-fcf1-4ec2-8e45-9c20ad0c3b18 '-- yes '-- '-- Chemotherapy +TCGA-OV 93095c36-2263-438f-a619-a4a4d6ae13c7 Informed Consent -31 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1911 55 false '-- '-- '-- '-- -20144 '-- da682e41-52c5-5a4f-b12c-62a7252a9929 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1911_demographic Alive '-- '-- '-- '-- 20144 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1293.0 '-- '-- 2fe15ad8-1c35-5513-a742-928b7ffa9166 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1911_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 998 893 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1911_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3000 '-- mg '-- '-- '-- '-- 6fd560b6-66c5-4044-aa1a-1e2c4e50c377 '-- yes '-- '-- Chemotherapy +TCGA-OV 93095c36-2263-438f-a619-a4a4d6ae13c7 Informed Consent -31 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1911 55 false '-- '-- '-- '-- -20144 '-- da682e41-52c5-5a4f-b12c-62a7252a9929 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1911_demographic Alive '-- '-- '-- '-- 20144 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1293.0 '-- '-- 2fe15ad8-1c35-5513-a742-928b7ffa9166 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1911_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1911_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b8841e37-416c-4ae2-ac41-e3c286643a1f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 93095c36-2263-438f-a619-a4a4d6ae13c7 Informed Consent -31 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1911 55 false '-- '-- '-- '-- -20144 '-- da682e41-52c5-5a4f-b12c-62a7252a9929 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1911_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a381a1f4-48fc-4e25-9e3d-62315781a0c2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1911_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1911_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1911_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5da1aa23-846b-4f1d-ba2b-ecc355be3cda '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 93095c36-2263-438f-a619-a4a4d6ae13c7 Informed Consent -31 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1911 55 false '-- '-- '-- '-- -20144 '-- da682e41-52c5-5a4f-b12c-62a7252a9929 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1911_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a381a1f4-48fc-4e25-9e3d-62315781a0c2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1911_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1911_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1911_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ecccb33a-2f34-4198-9c6a-5ffe3b9377b3 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 93095c36-2263-438f-a619-a4a4d6ae13c7 Informed Consent -31 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1911 55 false '-- '-- '-- '-- -20144 '-- da682e41-52c5-5a4f-b12c-62a7252a9929 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1911_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a381a1f4-48fc-4e25-9e3d-62315781a0c2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1911_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1911_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 855 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1911_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- eeda84ad-9aaa-48a8-9d7a-b8a7fefe1265 '-- yes '-- '-- Surgery, NOS +TCGA-OV 931738a7-4b5b-46dc-b69f-72600862d8af Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1995 43 false '-- '-- '-- '-- -16016 '-- 53fc8603-b3cd-55a5-9034-1c63bbb7089d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1995_demographic Alive '-- '-- '-- '-- 16016 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 61.0 '-- '-- 5a7c82bd-5460-53e5-8b52-19d8586a011c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1995_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 132 67 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-1995_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1311 '-- mg '-- '-- '-- '-- 44ecbbb3-e9b5-519e-b19b-991a0d510db2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 931738a7-4b5b-46dc-b69f-72600862d8af Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1995 43 false '-- '-- '-- '-- -16016 '-- 53fc8603-b3cd-55a5-9034-1c63bbb7089d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1995_demographic Alive '-- '-- '-- '-- 16016 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 61.0 '-- '-- 5a7c82bd-5460-53e5-8b52-19d8586a011c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1995_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 132 67 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-1995_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 3202 '-- mg '-- '-- '-- '-- 9d8a776f-5b5b-4df5-9523-0dca2707872c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 931738a7-4b5b-46dc-b69f-72600862d8af Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1995 43 false '-- '-- '-- '-- -16016 '-- 53fc8603-b3cd-55a5-9034-1c63bbb7089d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1995_demographic Alive '-- '-- '-- '-- 16016 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 61.0 '-- '-- 5a7c82bd-5460-53e5-8b52-19d8586a011c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1995_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1995_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fe5d9fab-0f07-480b-828a-b38d9f3656e0 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 933dbfbd-4697-403e-bd73-c17cb300c94b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0927 65 false '-- '-- '-- '-- -23982 2490 76e6cd60-baff-5f8f-8ad0-ad492278a8ef '-- hispanic or latino female '-- '-- '-- '-- not reported TCGA-10-0927_demographic Dead '-- '-- '-- '-- 24983 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1001 '-- '-- '-- 192ddbac-4c56-418c-b705-345d5e1a5f09 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0927_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0927_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0927_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5e4bbf04-ad3e-4ce6-9227-83be3c61e5e1 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 933dbfbd-4697-403e-bd73-c17cb300c94b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0927 65 false '-- '-- '-- '-- -23982 2490 76e6cd60-baff-5f8f-8ad0-ad492278a8ef '-- hispanic or latino female '-- '-- '-- '-- not reported TCGA-10-0927_demographic Dead '-- '-- '-- '-- 24983 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1001 '-- '-- '-- 192ddbac-4c56-418c-b705-345d5e1a5f09 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0927_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0927_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0927_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 935ac982-f3e8-4831-8995-0e978c7613eb '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 933dbfbd-4697-403e-bd73-c17cb300c94b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0927 65 false '-- '-- '-- '-- -23982 2490 76e6cd60-baff-5f8f-8ad0-ad492278a8ef '-- hispanic or latino female '-- '-- '-- '-- not reported TCGA-10-0927_demographic Dead '-- '-- '-- '-- 23982 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2490.0 '-- '-- 9d23ef93-61ea-5258-8397-89ab16148670 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0927_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0927_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 54b01e4c-38bb-4c35-be4a-fd789aa1de2f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 933dbfbd-4697-403e-bd73-c17cb300c94b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0927 65 false '-- '-- '-- '-- -23982 2490 76e6cd60-baff-5f8f-8ad0-ad492278a8ef '-- hispanic or latino female '-- '-- '-- '-- not reported TCGA-10-0927_demographic Dead '-- '-- '-- '-- 23982 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2490.0 '-- '-- 9d23ef93-61ea-5258-8397-89ab16148670 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0927_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 2463 2330 '-- '-- Progressive Disease '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0927_treatment8 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 9920 '-- mg/m2 '-- '-- '-- '-- 597ba309-deed-4d06-9c15-543ba6a8329c Not Reported yes '-- '-- Chemotherapy +TCGA-OV 933dbfbd-4697-403e-bd73-c17cb300c94b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0927 65 false '-- '-- '-- '-- -23982 2490 76e6cd60-baff-5f8f-8ad0-ad492278a8ef '-- hispanic or latino female '-- '-- '-- '-- not reported TCGA-10-0927_demographic Dead '-- '-- '-- '-- 23982 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2490.0 '-- '-- 9d23ef93-61ea-5258-8397-89ab16148670 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0927_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1910 1686 '-- '-- Progressive Disease '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0927_treatment7 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2320 '-- mg/m2 '-- '-- '-- '-- 5b35b123-3778-4a06-b3fe-51050d6fd59c Not Reported yes '-- '-- Chemotherapy +TCGA-OV 933dbfbd-4697-403e-bd73-c17cb300c94b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0927 65 false '-- '-- '-- '-- -23982 2490 76e6cd60-baff-5f8f-8ad0-ad492278a8ef '-- hispanic or latino female '-- '-- '-- '-- not reported TCGA-10-0927_demographic Dead '-- '-- '-- '-- 23982 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2490.0 '-- '-- 9d23ef93-61ea-5258-8397-89ab16148670 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0927_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1686 1601 '-- '-- Progressive Disease '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0927_treatment Anastrozole '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- 791b367f-dd3b-5eb2-b122-0109685f2baf Not Reported yes '-- '-- Chemotherapy +TCGA-OV 933dbfbd-4697-403e-bd73-c17cb300c94b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0927 65 false '-- '-- '-- '-- -23982 2490 76e6cd60-baff-5f8f-8ad0-ad492278a8ef '-- hispanic or latino female '-- '-- '-- '-- not reported TCGA-10-0927_demographic Dead '-- '-- '-- '-- 23982 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2490.0 '-- '-- 9d23ef93-61ea-5258-8397-89ab16148670 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0927_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 121 9 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0927_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1800 '-- mg/m2 '-- '-- '-- '-- ad5023c8-e0c2-4406-a380-7ca75b5321d3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 933dbfbd-4697-403e-bd73-c17cb300c94b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0927 65 false '-- '-- '-- '-- -23982 2490 76e6cd60-baff-5f8f-8ad0-ad492278a8ef '-- hispanic or latino female '-- '-- '-- '-- not reported TCGA-10-0927_demographic Dead '-- '-- '-- '-- 23982 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2490.0 '-- '-- 9d23ef93-61ea-5258-8397-89ab16148670 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0927_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1301 1017 '-- '-- Progressive Disease '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0927_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5400 '-- mg/m2 '-- '-- '-- '-- c40afc39-24ca-4734-8b73-9f35b4e411fd Not Reported yes '-- '-- Chemotherapy +TCGA-OV 933dbfbd-4697-403e-bd73-c17cb300c94b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0927 65 false '-- '-- '-- '-- -23982 2490 76e6cd60-baff-5f8f-8ad0-ad492278a8ef '-- hispanic or latino female '-- '-- '-- '-- not reported TCGA-10-0927_demographic Dead '-- '-- '-- '-- 23982 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2490.0 '-- '-- 9d23ef93-61ea-5258-8397-89ab16148670 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0927_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1640 1336 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0927_treatment2 Tamoxifen '-- '-- '-- '-- '-- '-- '-- 12000 '-- mg/m2 '-- '-- '-- '-- d85df58e-2384-4049-be54-0db0326542e1 Not Reported yes '-- '-- Hormone Therapy +TCGA-OV 933dbfbd-4697-403e-bd73-c17cb300c94b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0927 65 false '-- '-- '-- '-- -23982 2490 76e6cd60-baff-5f8f-8ad0-ad492278a8ef '-- hispanic or latino female '-- '-- '-- '-- not reported TCGA-10-0927_demographic Dead '-- '-- '-- '-- 23982 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2490.0 '-- '-- 9d23ef93-61ea-5258-8397-89ab16148670 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0927_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 121 9 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0927_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2940 '-- mg/m2 '-- '-- '-- '-- dac2c6de-c22f-4fad-9d15-992f16273661 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 933dbfbd-4697-403e-bd73-c17cb300c94b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0927 65 false '-- '-- '-- '-- -23982 2490 76e6cd60-baff-5f8f-8ad0-ad492278a8ef '-- hispanic or latino female '-- '-- '-- '-- not reported TCGA-10-0927_demographic Dead '-- '-- '-- '-- 23982 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2490.0 '-- '-- 9d23ef93-61ea-5258-8397-89ab16148670 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0927_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 2302 1938 '-- '-- Progressive Disease '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0927_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 845 '-- mg/m2 '-- '-- '-- '-- f1d78508-1992-4180-9b38-0b205d048480 Not Reported yes '-- '-- Chemotherapy +TCGA-OV 94030805-8beb-441a-af73-11a80768edb5 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1684 51 false '-- '-- '-- '-- -18755 '-- 833acdb5-f0ce-5046-aec5-6eea25c5d804 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1684_demographic Alive '-- '-- '-- '-- 18755 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 581.0 '-- '-- 86651736-aa3a-555d-bf96-24285ca73665 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1684_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 120 42 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-20-1684_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- 068da2d4-5175-46df-a1c3-2d794b2162ca Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 94030805-8beb-441a-af73-11a80768edb5 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1684 51 false '-- '-- '-- '-- -18755 '-- 833acdb5-f0ce-5046-aec5-6eea25c5d804 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1684_demographic Alive '-- '-- '-- '-- 18755 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 581.0 '-- '-- 86651736-aa3a-555d-bf96-24285ca73665 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1684_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-20-1684_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 20cb2500-82ae-4381-b735-975e481ca0bd Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 94030805-8beb-441a-af73-11a80768edb5 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1684 51 false '-- '-- '-- '-- -18755 '-- 833acdb5-f0ce-5046-aec5-6eea25c5d804 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1684_demographic Alive '-- '-- '-- '-- 18755 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 581.0 '-- '-- 86651736-aa3a-555d-bf96-24285ca73665 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1684_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 120 42 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-20-1684_treatment Bevacizumab '-- '-- '-- '-- '-- '-- '-- 15 '-- mg/kg '-- '-- '-- '-- c7c50ae4-9741-5409-a0a1-8dcaade070b8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 94030805-8beb-441a-af73-11a80768edb5 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1684 51 false '-- '-- '-- '-- -18755 '-- 833acdb5-f0ce-5046-aec5-6eea25c5d804 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1684_demographic Alive '-- '-- '-- '-- 18755 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 581.0 '-- '-- 86651736-aa3a-555d-bf96-24285ca73665 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1684_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 120 42 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-20-1684_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- febef6ff-9a3f-418a-bf43-a22c802c3afb Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9446e349-71e6-455a-aa8f-53ec96597146 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0933 77 false '-- '-- '-- '-- -28433 446 5dcb5210-ad8c-5ee3-806a-4305cfba74e6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-10-0933_demographic Dead '-- '-- '-- '-- 28789 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 356 '-- '-- '-- a6373a41-1101-4772-adde-27ef75b65d91 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0933_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0933_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0933_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d9d6478a-2222-4019-baf8-2fc8b60ae52f '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 9446e349-71e6-455a-aa8f-53ec96597146 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0933 77 false '-- '-- '-- '-- -28433 446 5dcb5210-ad8c-5ee3-806a-4305cfba74e6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-10-0933_demographic Dead '-- '-- '-- '-- 28789 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 356 '-- '-- '-- a6373a41-1101-4772-adde-27ef75b65d91 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0933_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0933_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0933_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dfe4658d-2ae6-4203-a047-8edb7cfbcea6 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 9446e349-71e6-455a-aa8f-53ec96597146 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0933 77 false '-- '-- '-- '-- -28433 446 5dcb5210-ad8c-5ee3-806a-4305cfba74e6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-10-0933_demographic Dead '-- '-- '-- '-- 28433 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 446.0 '-- '-- c1a0ef23-5337-5624-91ed-fca9c7b85f47 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0933_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 132 20 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0933_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 2160 '-- mg/m2 '-- '-- '-- '-- 23a22951-5b42-5c90-ba99-ce22fc046fbc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9446e349-71e6-455a-aa8f-53ec96597146 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0933 77 false '-- '-- '-- '-- -28433 446 5dcb5210-ad8c-5ee3-806a-4305cfba74e6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-10-0933_demographic Dead '-- '-- '-- '-- 28433 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 446.0 '-- '-- c1a0ef23-5337-5624-91ed-fca9c7b85f47 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0933_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0933_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 84953146-1caf-4446-9116-34937d19dddb Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 9446e349-71e6-455a-aa8f-53ec96597146 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0933 77 false '-- '-- '-- '-- -28433 446 5dcb5210-ad8c-5ee3-806a-4305cfba74e6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-10-0933_demographic Dead '-- '-- '-- '-- 28433 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 446.0 '-- '-- c1a0ef23-5337-5624-91ed-fca9c7b85f47 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0933_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 132 20 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0933_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1740 '-- mg/m2 '-- '-- '-- '-- aa039703-5580-4eda-91e8-a520c8dd6dcc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9471bc5e-18da-4356-bb0f-c78edd35ff99 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1325 77 false '-- '-- '-- '-- -28183 976 741fb12c-d3e6-5070-b843-2b51203cf09d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1325_demographic Dead '-- '-- '-- '-- 28183 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 976.0 '-- '-- cf89a5ec-6640-5d56-88cb-b79b53064be9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1325_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1325_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d39b47c2-90df-5f8e-9ccc-9dbfbc00ec70 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 94769f2c-b6fd-48ec-af34-b41165340b7c Informed Consent 524 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1769 40 false '-- '-- '-- '-- -14754 '-- c864bf04-f19e-53ae-98dc-29cf75ba37fe '-- not reported female '-- '-- '-- '-- white TCGA-29-1769_demographic Alive '-- '-- '-- '-- 14754 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 699.0 '-- '-- 4a6c3210-bd6e-5fed-aa66-cd78f1e21390 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1769_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 150 42 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1769_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 300 '-- mg '-- '-- '-- '-- 11936ff0-0e52-5af1-a590-7c1e25af2352 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 94769f2c-b6fd-48ec-af34-b41165340b7c Informed Consent 524 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1769 40 false '-- '-- '-- '-- -14754 '-- c864bf04-f19e-53ae-98dc-29cf75ba37fe '-- not reported female '-- '-- '-- '-- white TCGA-29-1769_demographic Alive '-- '-- '-- '-- 14754 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 699.0 '-- '-- 4a6c3210-bd6e-5fed-aa66-cd78f1e21390 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1769_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 150 42 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1769_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 130 '-- mg '-- '-- '-- '-- 910ba2b0-dfcc-46af-b8dc-5603b1dc9218 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 94769f2c-b6fd-48ec-af34-b41165340b7c Informed Consent 524 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1769 40 false '-- '-- '-- '-- -14754 '-- c864bf04-f19e-53ae-98dc-29cf75ba37fe '-- not reported female '-- '-- '-- '-- white TCGA-29-1769_demographic Alive '-- '-- '-- '-- 14754 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 699.0 '-- '-- 4a6c3210-bd6e-5fed-aa66-cd78f1e21390 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1769_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 20 20 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1769_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 870 '-- mg '-- '-- '-- '-- 97f5198b-cc51-41b4-ab93-ad8d2d5de6d8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 94769f2c-b6fd-48ec-af34-b41165340b7c Informed Consent 524 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1769 40 false '-- '-- '-- '-- -14754 '-- c864bf04-f19e-53ae-98dc-29cf75ba37fe '-- not reported female '-- '-- '-- '-- white TCGA-29-1769_demographic Alive '-- '-- '-- '-- 14754 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 699.0 '-- '-- 4a6c3210-bd6e-5fed-aa66-cd78f1e21390 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1769_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 20 20 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1769_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 318 '-- mg '-- '-- '-- '-- a375b584-9e4b-4c2e-8d2d-c5fdefc33e5a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 94769f2c-b6fd-48ec-af34-b41165340b7c Informed Consent 524 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1769 40 false '-- '-- '-- '-- -14754 '-- c864bf04-f19e-53ae-98dc-29cf75ba37fe '-- not reported female '-- '-- '-- '-- white TCGA-29-1769_demographic Alive '-- '-- '-- '-- 14754 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 699.0 '-- '-- 4a6c3210-bd6e-5fed-aa66-cd78f1e21390 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1769_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1769_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e6215bfb-caa8-4697-a8e0-599a27bcbbd3 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 94769f2c-b6fd-48ec-af34-b41165340b7c Informed Consent 524 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1769 40 false '-- '-- '-- '-- -14754 '-- c864bf04-f19e-53ae-98dc-29cf75ba37fe '-- not reported female '-- '-- '-- '-- white TCGA-29-1769_demographic Alive '-- '-- '-- '-- 14754 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 699.0 '-- '-- 4a6c3210-bd6e-5fed-aa66-cd78f1e21390 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1769_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 206 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1769_treatment5 Clinical Trial '-- '-- '-- '-- '-- '-- '-- 2 '-- mg '-- '-- '-- '-- fdc977d7-73fe-4ecd-95d2-c6f56bbc6487 Adjuvant yes Treatment Ongoing '-- Immunotherapy (Including Vaccines) +TCGA-OV 94bd4c68-4bfc-4db3-9365-97c867747133 Informed Consent 564 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1682 56 false '-- '-- '-- '-- -20583 '-- 785a428f-fce0-5477-84d9-dc65a0af2908 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1682_demographic Alive '-- '-- '-- '-- 20583 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 837.0 '-- '-- 72df9e88-9c14-5df0-820e-182c1459f906 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1682_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-20-1682_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 057e42e5-4576-46fd-8318-5d78b6e5c7a6 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 94bd4c68-4bfc-4db3-9365-97c867747133 Informed Consent 564 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1682 56 false '-- '-- '-- '-- -20583 '-- 785a428f-fce0-5477-84d9-dc65a0af2908 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1682_demographic Alive '-- '-- '-- '-- 20583 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 837.0 '-- '-- 72df9e88-9c14-5df0-820e-182c1459f906 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1682_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 145 40 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-1682_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 95b68bc0-4a89-4341-9f78-e02db9e2d625 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 94bd4c68-4bfc-4db3-9365-97c867747133 Informed Consent 564 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1682 56 false '-- '-- '-- '-- -20583 '-- 785a428f-fce0-5477-84d9-dc65a0af2908 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1682_demographic Alive '-- '-- '-- '-- 20583 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 837.0 '-- '-- 72df9e88-9c14-5df0-820e-182c1459f906 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1682_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 145 40 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-1682_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- fae81cac-35fa-5817-832b-5b69dac21bfc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 94efd4f9-69b0-4efa-8a0c-61106e898fdd Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1849 80 false '-- '-- '-- '-- -29555 '-- 35b4552b-9d9c-59d1-bd1e-e5f0dc255a48 '-- not reported female '-- '-- '-- '-- white TCGA-24-1849_demographic Alive '-- '-- '-- '-- 29555 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 176.0 '-- '-- 70ebbaef-4c30-53d2-8f0e-d3492ba1c271 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1849_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 141 36 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1849_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- 696 '-- mg '-- '-- '-- '-- 208bbd86-f85c-5a19-b579-739ad05a310c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 94efd4f9-69b0-4efa-8a0c-61106e898fdd Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1849 80 false '-- '-- '-- '-- -29555 '-- 35b4552b-9d9c-59d1-bd1e-e5f0dc255a48 '-- not reported female '-- '-- '-- '-- white TCGA-24-1849_demographic Alive '-- '-- '-- '-- 29555 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 176.0 '-- '-- 70ebbaef-4c30-53d2-8f0e-d3492ba1c271 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1849_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 141 36 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1849_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3306 '-- mg '-- '-- '-- '-- a772ac55-c808-4a2d-a01b-e61a8ef45be2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 94efd4f9-69b0-4efa-8a0c-61106e898fdd Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1849 80 false '-- '-- '-- '-- -29555 '-- 35b4552b-9d9c-59d1-bd1e-e5f0dc255a48 '-- not reported female '-- '-- '-- '-- white TCGA-24-1849_demographic Alive '-- '-- '-- '-- 29555 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 176.0 '-- '-- 70ebbaef-4c30-53d2-8f0e-d3492ba1c271 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1849_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1849_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e4302081-8c41-438f-b0a3-1e7c8c33d546 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 955c80be-53df-4565-9303-a7abf96a2f81 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1329 76 false '-- '-- '-- '-- -28093 457 3300031e-8802-584a-9af4-d00c691a2330 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1329_demographic Dead '-- '-- '-- '-- 28093 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 457.0 '-- '-- 728d06d8-6ccd-5a53-90a6-cb4107824d5a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1329_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1329_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 94eb5635-bcdc-5024-98a0-919a48c5108e Adjuvant yes Not Reported '-- Pharmaceutical Therapy, NOS +TCGA-OV 95e58015-a7c0-4bdc-bf64-7617d24d0784 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0970 63 false '-- '-- '-- '-- -23276 354 9338f958-a412-5c8f-8b5e-944eec93124c '-- not reported female '-- '-- '-- '-- white TCGA-24-0970_demographic Dead '-- '-- '-- '-- 23276 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 354.0 '-- '-- 7d9442c7-a63d-5d58-9578-78601010e061 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0970_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 314 25 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0970_treatment Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 152 '-- mg/m2 '-- '-- '-- '-- 338e74f4-bc2c-58ab-aad9-ba361960dc59 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 95e58015-a7c0-4bdc-bf64-7617d24d0784 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0970 63 false '-- '-- '-- '-- -23276 354 9338f958-a412-5c8f-8b5e-944eec93124c '-- not reported female '-- '-- '-- '-- white TCGA-24-0970_demographic Dead '-- '-- '-- '-- 23276 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 354.0 '-- '-- 7d9442c7-a63d-5d58-9578-78601010e061 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0970_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 314 25 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0970_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1980 '-- mg/m2 '-- '-- '-- '-- 53397cb3-f49c-4279-afb6-c87fb23d7b01 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 95e58015-a7c0-4bdc-bf64-7617d24d0784 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0970 63 false '-- '-- '-- '-- -23276 354 9338f958-a412-5c8f-8b5e-944eec93124c '-- not reported female '-- '-- '-- '-- white TCGA-24-0970_demographic Dead '-- '-- '-- '-- 23276 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 354.0 '-- '-- 7d9442c7-a63d-5d58-9578-78601010e061 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0970_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 314 25 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0970_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3840 '-- mg/m2 '-- '-- '-- '-- a14096cd-db50-4ae4-aa95-3730c785f366 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 95e58015-a7c0-4bdc-bf64-7617d24d0784 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0970 63 false '-- '-- '-- '-- -23276 354 9338f958-a412-5c8f-8b5e-944eec93124c '-- not reported female '-- '-- '-- '-- white TCGA-24-0970_demographic Dead '-- '-- '-- '-- 23276 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 354.0 '-- '-- 7d9442c7-a63d-5d58-9578-78601010e061 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0970_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-0970_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e5d4254f-e95d-4be0-9150-113af951dd24 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 95e58015-a7c0-4bdc-bf64-7617d24d0784 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0970 63 false '-- '-- '-- '-- -23276 354 9338f958-a412-5c8f-8b5e-944eec93124c '-- not reported female '-- '-- '-- '-- white TCGA-24-0970_demographic Dead '-- '-- '-- '-- 23556 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 280 '-- '-- '-- d84ff476-d2ee-4724-b1fd-0630dc6d58f2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-0970_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-0970_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-0970_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1879fdf7-0a33-48a2-9a4e-2f18fa0392b5 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 95e58015-a7c0-4bdc-bf64-7617d24d0784 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0970 63 false '-- '-- '-- '-- -23276 354 9338f958-a412-5c8f-8b5e-944eec93124c '-- not reported female '-- '-- '-- '-- white TCGA-24-0970_demographic Dead '-- '-- '-- '-- 23556 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 280 '-- '-- '-- d84ff476-d2ee-4724-b1fd-0630dc6d58f2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-0970_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-0970_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-0970_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3c3c70a6-debd-4ffb-b696-dd31cace460e '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 97ad0360-3be4-401a-a94c-7f2800a1b519 Informed Consent 1932 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2280 74 false '-- '-- '-- '-- -27356 '-- 20c0c7cf-6af3-503b-bf45-29229f4e17cb '-- not reported female '-- '-- '-- '-- white TCGA-24-2280_demographic Alive '-- '-- '-- '-- 27356 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2143.0 '-- '-- 1d5b60d6-7bc9-56ad-8e82-0acd994fd1c7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2280_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 178 17 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2280_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4240 '-- mg '-- '-- '-- '-- 00f18966-19bf-4f66-bd94-8a889b9f3e23 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 97ad0360-3be4-401a-a94c-7f2800a1b519 Informed Consent 1932 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2280 74 false '-- '-- '-- '-- -27356 '-- 20c0c7cf-6af3-503b-bf45-29229f4e17cb '-- not reported female '-- '-- '-- '-- white TCGA-24-2280_demographic Alive '-- '-- '-- '-- 27356 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2143.0 '-- '-- 1d5b60d6-7bc9-56ad-8e82-0acd994fd1c7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2280_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2280_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 12b0dc40-8c01-4beb-9c49-a3f43511c067 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 97ad0360-3be4-401a-a94c-7f2800a1b519 Informed Consent 1932 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2280 74 false '-- '-- '-- '-- -27356 '-- 20c0c7cf-6af3-503b-bf45-29229f4e17cb '-- not reported female '-- '-- '-- '-- white TCGA-24-2280_demographic Alive '-- '-- '-- '-- 27356 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2143.0 '-- '-- 1d5b60d6-7bc9-56ad-8e82-0acd994fd1c7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2280_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 178 17 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2280_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2248 '-- mg '-- '-- '-- '-- 317d070b-4f4b-58cf-a8e0-83c2f5517b93 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 97ad0360-3be4-401a-a94c-7f2800a1b519 Informed Consent 1932 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2280 74 false '-- '-- '-- '-- -27356 '-- 20c0c7cf-6af3-503b-bf45-29229f4e17cb '-- not reported female '-- '-- '-- '-- white TCGA-24-2280_demographic Alive '-- '-- '-- '-- 27356 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2143.0 '-- '-- 1d5b60d6-7bc9-56ad-8e82-0acd994fd1c7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2280_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 178 17 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2280_treatment6 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 192 '-- mg '-- '-- '-- '-- 623239dc-8767-4b5a-bb24-4a7d2225be47 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 97ad0360-3be4-401a-a94c-7f2800a1b519 Informed Consent 1932 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2280 74 false '-- '-- '-- '-- -27356 '-- 20c0c7cf-6af3-503b-bf45-29229f4e17cb '-- not reported female '-- '-- '-- '-- white TCGA-24-2280_demographic Alive '-- '-- '-- '-- 27356 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2143.0 '-- '-- 1d5b60d6-7bc9-56ad-8e82-0acd994fd1c7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2280_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 766 538 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2280_treatment2 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 478 '-- mg '-- '-- '-- '-- 77baa340-c0f0-47dc-aa58-6479d01a71c0 '-- yes '-- '-- Chemotherapy +TCGA-OV 97ad0360-3be4-401a-a94c-7f2800a1b519 Informed Consent 1932 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2280 74 false '-- '-- '-- '-- -27356 '-- 20c0c7cf-6af3-503b-bf45-29229f4e17cb '-- not reported female '-- '-- '-- '-- white TCGA-24-2280_demographic Alive '-- '-- '-- '-- 27356 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2143.0 '-- '-- 1d5b60d6-7bc9-56ad-8e82-0acd994fd1c7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2280_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1025 906 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2280_treatment3 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 58 '-- mg '-- '-- '-- '-- 92b795a0-2b7d-4952-a96c-59e08c6c170a '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV 97ad0360-3be4-401a-a94c-7f2800a1b519 Informed Consent 1932 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2280 74 false '-- '-- '-- '-- -27356 '-- 20c0c7cf-6af3-503b-bf45-29229f4e17cb '-- not reported female '-- '-- '-- '-- white TCGA-24-2280_demographic Alive '-- '-- '-- '-- 27356 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2143.0 '-- '-- 1d5b60d6-7bc9-56ad-8e82-0acd994fd1c7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2280_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1025 906 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2280_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2882 '-- mg '-- '-- '-- '-- ccbc86b5-cfac-4cc5-b4f9-2b61302f750a '-- yes '-- '-- Chemotherapy +TCGA-OV 97ad0360-3be4-401a-a94c-7f2800a1b519 Informed Consent 1932 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2280 74 false '-- '-- '-- '-- -27356 '-- 20c0c7cf-6af3-503b-bf45-29229f4e17cb '-- not reported female '-- '-- '-- '-- white TCGA-24-2280_demographic Alive '-- '-- '-- '-- 27356 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2143.0 '-- '-- 1d5b60d6-7bc9-56ad-8e82-0acd994fd1c7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2280_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1025 906 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2280_treatment7 Docetaxel '-- '-- '-- '-- '-- '-- '-- 599 '-- mg '-- '-- '-- '-- dc6c6634-72cb-4c81-a537-2c9f6e5ec355 '-- yes '-- '-- Chemotherapy +TCGA-OV 97ad0360-3be4-401a-a94c-7f2800a1b519 Informed Consent 1932 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2280 74 false '-- '-- '-- '-- -27356 '-- 20c0c7cf-6af3-503b-bf45-29229f4e17cb '-- not reported female '-- '-- '-- '-- white TCGA-24-2280_demographic Alive '-- '-- '-- '-- 27891 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 535 '-- '-- '-- 25bb2c1f-bd7a-47b2-83e0-4e0a57563323 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2280_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2280_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2280_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 17d12632-ee79-4a91-9182-0e853f4db4df '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 97ad0360-3be4-401a-a94c-7f2800a1b519 Informed Consent 1932 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2280 74 false '-- '-- '-- '-- -27356 '-- 20c0c7cf-6af3-503b-bf45-29229f4e17cb '-- not reported female '-- '-- '-- '-- white TCGA-24-2280_demographic Alive '-- '-- '-- '-- 27891 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 535 '-- '-- '-- 25bb2c1f-bd7a-47b2-83e0-4e0a57563323 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2280_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2280_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2280_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5667a243-e399-4a26-a6fe-86b00758b083 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 97efb80d-4f46-4aef-b95e-20d260de01b2 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1920 74 false '-- '-- '-- '-- -27042 '-- 09c3a0de-dbbe-5cb9-a80a-8723464313b3 '-- not reported female '-- '-- '-- '-- white TCGA-24-1920_demographic Alive '-- '-- '-- '-- 27042 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 298.0 '-- '-- 1a711dc3-a7c9-5b95-8ba1-c2492e6e2c0b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1920_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1920_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 44eae961-aac4-4788-bc01-45f52266ceef Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 97efb80d-4f46-4aef-b95e-20d260de01b2 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1920 74 false '-- '-- '-- '-- -27042 '-- 09c3a0de-dbbe-5cb9-a80a-8723464313b3 '-- not reported female '-- '-- '-- '-- white TCGA-24-1920_demographic Alive '-- '-- '-- '-- 27042 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 298.0 '-- '-- 1a711dc3-a7c9-5b95-8ba1-c2492e6e2c0b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1920_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 144 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-24-1920_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 224 '-- mg '-- '-- '-- '-- 90697021-b3b9-4406-8fca-38e11ed5c1ce Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 97efb80d-4f46-4aef-b95e-20d260de01b2 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1920 74 false '-- '-- '-- '-- -27042 '-- 09c3a0de-dbbe-5cb9-a80a-8723464313b3 '-- not reported female '-- '-- '-- '-- white TCGA-24-1920_demographic Alive '-- '-- '-- '-- 27042 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 298.0 '-- '-- 1a711dc3-a7c9-5b95-8ba1-c2492e6e2c0b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1920_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 144 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1920_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- 540 '-- mg '-- '-- '-- '-- e37e8006-5f00-4910-a9ea-163bc9e4a049 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 97efb80d-4f46-4aef-b95e-20d260de01b2 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1920 74 false '-- '-- '-- '-- -27042 '-- 09c3a0de-dbbe-5cb9-a80a-8723464313b3 '-- not reported female '-- '-- '-- '-- white TCGA-24-1920_demographic Alive '-- '-- '-- '-- 27042 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 298.0 '-- '-- 1a711dc3-a7c9-5b95-8ba1-c2492e6e2c0b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1920_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 144 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1920_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 593 '-- mg '-- '-- '-- '-- ea82a459-dfe0-449c-98a9-fde5885d5efd Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 97efb80d-4f46-4aef-b95e-20d260de01b2 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1920 74 false '-- '-- '-- '-- -27042 '-- 09c3a0de-dbbe-5cb9-a80a-8723464313b3 '-- not reported female '-- '-- '-- '-- white TCGA-24-1920_demographic Alive '-- '-- '-- '-- 27042 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 298.0 '-- '-- 1a711dc3-a7c9-5b95-8ba1-c2492e6e2c0b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1920_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 144 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-24-1920_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 354 '-- mg '-- '-- '-- '-- eae177a1-5581-54ef-83b3-ccaac312d638 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- 21805 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 512 '-- '-- '-- 50af2a05-8c9b-465e-a3b3-8d7c2c8125e1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2267_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2267_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2267_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3fcadb7a-715f-4433-9f82-aac5ee801aa9 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- 21805 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 512 '-- '-- '-- 50af2a05-8c9b-465e-a3b3-8d7c2c8125e1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2267_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2267_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2267_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7afc0f1c-f514-4a92-a84e-076781fc7fe8 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- 21293 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1446.0 '-- '-- 9e118376-2d24-5552-a922-a86dbf96b389 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2267_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 793 580 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2267_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2524 '-- mg '-- '-- '-- '-- 237386b5-5d72-4c63-9e02-a58da8e64d2e '-- yes '-- '-- Chemotherapy +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- 21293 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1446.0 '-- '-- 9e118376-2d24-5552-a922-a86dbf96b389 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2267_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 1332 1172 '-- '-- Progressive Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2267_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 375 '-- mg '-- '-- '-- '-- 490f0fe4-4932-4472-a589-3ed7e58617ee '-- yes '-- '-- Chemotherapy +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- 21293 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1446.0 '-- '-- 9e118376-2d24-5552-a922-a86dbf96b389 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2267_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 219 6 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2267_treatment10 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5570 '-- mg '-- '-- '-- '-- 57a88dc1-81cb-4291-89bb-ece4593c13b8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- 21293 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1446.0 '-- '-- 9e118376-2d24-5552-a922-a86dbf96b389 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2267_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 219 6 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2267_treatment7 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 7740 '-- mg '-- '-- '-- '-- 58025fcb-0faa-40c1-b22c-6266f241495e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- 21293 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1446.0 '-- '-- 9e118376-2d24-5552-a922-a86dbf96b389 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2267_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 1332 1172 '-- '-- Progressive Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2267_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 375 '-- mg '-- '-- '-- '-- 7a69a86c-305c-4aae-9d72-8368f548c262 '-- yes '-- '-- Chemotherapy +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- 21293 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1446.0 '-- '-- 9e118376-2d24-5552-a922-a86dbf96b389 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2267_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 1011 1011 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2267_treatment6 Topotecan '-- '-- '-- '-- '-- '-- '-- 2 '-- mg '-- '-- '-- '-- b4cae68d-f562-4f3f-a57f-76f305e85d17 '-- yes '-- '-- Chemotherapy +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- 21293 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1446.0 '-- '-- 9e118376-2d24-5552-a922-a86dbf96b389 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2267_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 1332 1172 '-- '-- Progressive Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2267_treatment8 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2302 '-- mg '-- '-- '-- '-- bac77b9e-06c5-43ff-9110-28dda02eb16b '-- yes '-- '-- Chemotherapy +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- 21293 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1446.0 '-- '-- 9e118376-2d24-5552-a922-a86dbf96b389 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2267_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2267_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cae1f44c-c712-4679-a876-c63f3b196666 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- 21293 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1446.0 '-- '-- 9e118376-2d24-5552-a922-a86dbf96b389 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2267_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 997 983 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2267_treatment5 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- 145 '-- mg '-- '-- '-- '-- d0106220-2260-421b-892a-3e4ddd91e092 '-- yes '-- '-- Chemotherapy +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- 21293 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1446.0 '-- '-- 9e118376-2d24-5552-a922-a86dbf96b389 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2267_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 1381 1347 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2267_treatment11 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 4560 '-- mg '-- '-- '-- '-- d394acca-7509-47f7-ac93-7a04e8e3e5ad '-- yes '-- '-- Chemotherapy +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- 21293 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1446.0 '-- '-- 9e118376-2d24-5552-a922-a86dbf96b389 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2267_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 946 827 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-2267_treatment9 Altretamine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d762fcf3-8f9f-45be-b077-1d15a046a05a '-- yes '-- '-- Chemotherapy +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- 21293 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1446.0 '-- '-- 9e118376-2d24-5552-a922-a86dbf96b389 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2267_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- 793 580 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2267_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 836 '-- mg '-- '-- '-- '-- d930659d-707a-5a63-8b9a-af729088c26b '-- yes '-- '-- Chemotherapy +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cd865e0f-23bd-471f-bc81-ed7de95dea60 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2267_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2267_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 955 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2267_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8c2c4e23-4170-46ad-a0ea-794c34e18e69 '-- yes '-- '-- Surgery, NOS +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cd865e0f-23bd-471f-bc81-ed7de95dea60 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2267_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2267_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2267_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cd460502-b17c-4e58-ae55-adc432020023 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 99a61986-7b23-46b5-99a4-efba6bad3766 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2267 58 false '-- '-- '-- '-- -21293 1446 299c04b0-8890-5057-97b4-2e1177e03833 '-- not reported female '-- '-- '-- '-- white TCGA-24-2267_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cd865e0f-23bd-471f-bc81-ed7de95dea60 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2267_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2267_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2267_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f439ed76-dc7a-417a-a8bc-1e3eb60655cb '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 99f1ae02-86ec-4d93-8cd4-650bf6f02c10 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0930 70 false '-- '-- '-- '-- -25737 1040 2d057ffd-0f5f-529b-9bf8-c2a3b25c7a7a '-- not reported female '-- '-- '-- '-- white TCGA-10-0930_demographic Dead '-- '-- '-- '-- 25737 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1040.0 '-- '-- 298285f3-8c3c-518c-96d1-397c9c2e5077 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 124 8 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0930_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1800 '-- mg/m2 '-- '-- '-- '-- 150bf61f-cc08-4544-b2e9-b2a5f9133a67 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 99f1ae02-86ec-4d93-8cd4-650bf6f02c10 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0930 70 false '-- '-- '-- '-- -25737 1040 2d057ffd-0f5f-529b-9bf8-c2a3b25c7a7a '-- not reported female '-- '-- '-- '-- white TCGA-10-0930_demographic Dead '-- '-- '-- '-- 25737 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1040.0 '-- '-- 298285f3-8c3c-518c-96d1-397c9c2e5077 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 736 694 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0930_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 810 '-- mg/m2 '-- '-- '-- '-- 6f87bd70-6b2b-4409-8e44-3218bec50298 '-- yes '-- '-- Chemotherapy +TCGA-OV 99f1ae02-86ec-4d93-8cd4-650bf6f02c10 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0930 70 false '-- '-- '-- '-- -25737 1040 2d057ffd-0f5f-529b-9bf8-c2a3b25c7a7a '-- not reported female '-- '-- '-- '-- white TCGA-10-0930_demographic Dead '-- '-- '-- '-- 25737 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1040.0 '-- '-- 298285f3-8c3c-518c-96d1-397c9c2e5077 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 736 694 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0930_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 250 '-- mg/m2 '-- '-- '-- '-- b87aee3f-b038-47df-88fb-6319cf9094c2 '-- yes '-- '-- Chemotherapy +TCGA-OV 99f1ae02-86ec-4d93-8cd4-650bf6f02c10 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0930 70 false '-- '-- '-- '-- -25737 1040 2d057ffd-0f5f-529b-9bf8-c2a3b25c7a7a '-- not reported female '-- '-- '-- '-- white TCGA-10-0930_demographic Dead '-- '-- '-- '-- 25737 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1040.0 '-- '-- 298285f3-8c3c-518c-96d1-397c9c2e5077 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0930_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dded43ca-e449-48f9-b273-b27c24694a61 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 99f1ae02-86ec-4d93-8cd4-650bf6f02c10 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0930 70 false '-- '-- '-- '-- -25737 1040 2d057ffd-0f5f-529b-9bf8-c2a3b25c7a7a '-- not reported female '-- '-- '-- '-- white TCGA-10-0930_demographic Dead '-- '-- '-- '-- 25737 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1040.0 '-- '-- 298285f3-8c3c-518c-96d1-397c9c2e5077 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 838 782 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0930_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 210 '-- mg/m2 '-- '-- '-- '-- e3675344-5e97-465f-b8d9-cc85bd040c88 '-- yes '-- '-- Chemotherapy +TCGA-OV 99f1ae02-86ec-4d93-8cd4-650bf6f02c10 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0930 70 false '-- '-- '-- '-- -25737 1040 2d057ffd-0f5f-529b-9bf8-c2a3b25c7a7a '-- not reported female '-- '-- '-- '-- white TCGA-10-0930_demographic Dead '-- '-- '-- '-- 25737 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1040.0 '-- '-- 298285f3-8c3c-518c-96d1-397c9c2e5077 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 124 8 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0930_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 2520 '-- mg/m2 '-- '-- '-- '-- efb967a2-0df2-5bed-9cb4-04077a275ecc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 99f1ae02-86ec-4d93-8cd4-650bf6f02c10 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0930 70 false '-- '-- '-- '-- -25737 1040 2d057ffd-0f5f-529b-9bf8-c2a3b25c7a7a '-- not reported female '-- '-- '-- '-- white TCGA-10-0930_demographic Dead '-- '-- '-- '-- 25737 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1040.0 '-- '-- 298285f3-8c3c-518c-96d1-397c9c2e5077 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0930_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0930_treatment2 Tamoxifen '-- '-- '-- '-- '-- '-- '-- 2400 '-- mg/m2 '-- '-- '-- '-- f49e2808-e403-4da7-9172-35a0269fd30f '-- yes '-- '-- Hormone Therapy +TCGA-OV 99f1ae02-86ec-4d93-8cd4-650bf6f02c10 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0930 70 false '-- '-- '-- '-- -25737 1040 2d057ffd-0f5f-529b-9bf8-c2a3b25c7a7a '-- not reported female '-- '-- '-- '-- white TCGA-10-0930_demographic Dead '-- '-- '-- '-- 26417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 680 '-- '-- '-- 2c9c8b31-f18f-45eb-93cd-8a736977c9e4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0930_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0930_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0930_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 57d419e3-ce44-4717-b0bd-c3dd97036c51 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 99f1ae02-86ec-4d93-8cd4-650bf6f02c10 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0930 70 false '-- '-- '-- '-- -25737 1040 2d057ffd-0f5f-529b-9bf8-c2a3b25c7a7a '-- not reported female '-- '-- '-- '-- white TCGA-10-0930_demographic Dead '-- '-- '-- '-- 26417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 680 '-- '-- '-- 2c9c8b31-f18f-45eb-93cd-8a736977c9e4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0930_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0930_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0930_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e7f59f94-091b-4b53-ab9c-287d2b4ec766 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 9a30dee8-962a-49db-a85a-c39515c91b68 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0979 53 false '-- '-- '-- '-- -19595 1264 267cae75-6ddd-5309-979e-1fa1196aa5e1 '-- not reported female '-- '-- '-- '-- white TCGA-24-0979_demographic Dead '-- '-- '-- '-- 19595 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1264.0 '-- '-- 600bf167-5408-5802-8f4b-f20f53e15337 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0979_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 187 15 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0979_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6e1068a3-cbd6-4e5d-8275-7d4f3fdc7613 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9a30dee8-962a-49db-a85a-c39515c91b68 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0979 53 false '-- '-- '-- '-- -19595 1264 267cae75-6ddd-5309-979e-1fa1196aa5e1 '-- not reported female '-- '-- '-- '-- white TCGA-24-0979_demographic Dead '-- '-- '-- '-- 19595 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1264.0 '-- '-- 600bf167-5408-5802-8f4b-f20f53e15337 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0979_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 357 338 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- 14.0 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-0979_treatment '-- '-- '-- '-- '-- '-- Distant Site '-- 3500 '-- cGy '-- '-- '-- '-- a25fada3-32e0-5ee1-99b3-944dedf07040 '-- yes '-- '-- Radiation, External Beam +TCGA-OV 9a30dee8-962a-49db-a85a-c39515c91b68 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0979 53 false '-- '-- '-- '-- -19595 1264 267cae75-6ddd-5309-979e-1fa1196aa5e1 '-- not reported female '-- '-- '-- '-- white TCGA-24-0979_demographic Dead '-- '-- '-- '-- 19595 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1264.0 '-- '-- 600bf167-5408-5802-8f4b-f20f53e15337 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0979_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 187 15 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0979_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fb6fd474-6ac1-480d-8506-abbb96cfd429 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9a30dee8-962a-49db-a85a-c39515c91b68 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0979 53 false '-- '-- '-- '-- -19595 1264 267cae75-6ddd-5309-979e-1fa1196aa5e1 '-- not reported female '-- '-- '-- '-- white TCGA-24-0979_demographic Dead '-- '-- '-- '-- 20023 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 428 '-- '-- '-- eb721e6d-cc56-45f2-9e96-7a1ebdadd800 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-0979_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-0979_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-0979_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 42489f65-12c1-4b48-9405-affadad3c0d1 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 9a30dee8-962a-49db-a85a-c39515c91b68 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0979 53 false '-- '-- '-- '-- -19595 1264 267cae75-6ddd-5309-979e-1fa1196aa5e1 '-- not reported female '-- '-- '-- '-- white TCGA-24-0979_demographic Dead '-- '-- '-- '-- 20023 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 428 '-- '-- '-- eb721e6d-cc56-45f2-9e96-7a1ebdadd800 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-0979_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-0979_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-0979_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d35f7858-a75f-4d2e-b157-e23eb045af13 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 9af2248a-d86a-4277-93b4-8eba5a39bd3c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2254 66 false '-- '-- '-- '-- -24407 1736 430d063a-f24e-5702-a4b9-2a5bef151ce1 '-- not reported female '-- '-- '-- '-- white TCGA-24-2254_demographic Dead '-- '-- '-- '-- 24407 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1736.0 '-- '-- a00f2045-a1f8-5198-8f98-26c7090ec6c5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2254_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2254_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 15219a22-a150-4453-bff0-e148dca1ede1 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 9af2248a-d86a-4277-93b4-8eba5a39bd3c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2254 66 false '-- '-- '-- '-- -24407 1736 430d063a-f24e-5702-a4b9-2a5bef151ce1 '-- not reported female '-- '-- '-- '-- white TCGA-24-2254_demographic Dead '-- '-- '-- '-- 24407 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1736.0 '-- '-- a00f2045-a1f8-5198-8f98-26c7090ec6c5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2254_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 1112 984 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2254_treatment Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 16000 '-- mg '-- '-- '-- '-- 4c61d397-260b-583f-bb65-98f9b8feb433 '-- yes '-- '-- Chemotherapy +TCGA-OV 9af2248a-d86a-4277-93b4-8eba5a39bd3c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2254 66 false '-- '-- '-- '-- -24407 1736 430d063a-f24e-5702-a4b9-2a5bef151ce1 '-- not reported female '-- '-- '-- '-- white TCGA-24-2254_demographic Dead '-- '-- '-- '-- 24407 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1736.0 '-- '-- a00f2045-a1f8-5198-8f98-26c7090ec6c5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2254_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 718 615 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2254_treatment6 Docetaxel '-- '-- '-- '-- '-- '-- '-- 780 '-- mg '-- '-- '-- '-- 666ebfe1-d2ac-4a6c-9fc6-506f28fa8944 '-- yes '-- '-- Chemotherapy +TCGA-OV 9af2248a-d86a-4277-93b4-8eba5a39bd3c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2254 66 false '-- '-- '-- '-- -24407 1736 430d063a-f24e-5702-a4b9-2a5bef151ce1 '-- not reported female '-- '-- '-- '-- white TCGA-24-2254_demographic Dead '-- '-- '-- '-- 24407 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1736.0 '-- '-- a00f2045-a1f8-5198-8f98-26c7090ec6c5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2254_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 165 17 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2254_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3000 '-- mg '-- '-- '-- '-- afc21889-eb6a-44c5-9835-f91a19e2b74c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9af2248a-d86a-4277-93b4-8eba5a39bd3c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2254 66 false '-- '-- '-- '-- -24407 1736 430d063a-f24e-5702-a4b9-2a5bef151ce1 '-- not reported female '-- '-- '-- '-- white TCGA-24-2254_demographic Dead '-- '-- '-- '-- 24407 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1736.0 '-- '-- a00f2045-a1f8-5198-8f98-26c7090ec6c5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2254_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 165 17 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2254_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 233 '-- mg '-- '-- '-- '-- c34cb944-dbaa-43ba-92de-97dc684335c0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9af2248a-d86a-4277-93b4-8eba5a39bd3c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2254 66 false '-- '-- '-- '-- -24407 1736 430d063a-f24e-5702-a4b9-2a5bef151ce1 '-- not reported female '-- '-- '-- '-- white TCGA-24-2254_demographic Dead '-- '-- '-- '-- 24407 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1736.0 '-- '-- a00f2045-a1f8-5198-8f98-26c7090ec6c5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2254_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 165 17 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2254_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2717 '-- mg '-- '-- '-- '-- d018894e-b817-452c-abcd-21b4c912aca1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9af2248a-d86a-4277-93b4-8eba5a39bd3c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2254 66 false '-- '-- '-- '-- -24407 1736 430d063a-f24e-5702-a4b9-2a5bef151ce1 '-- not reported female '-- '-- '-- '-- white TCGA-24-2254_demographic Dead '-- '-- '-- '-- 24407 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1736.0 '-- '-- a00f2045-a1f8-5198-8f98-26c7090ec6c5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2254_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 1112 984 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2254_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4630 '-- mg '-- '-- '-- '-- e736f1fd-a3fd-418b-9e29-6283ec1ba5c4 '-- yes '-- '-- Chemotherapy +TCGA-OV 9af2248a-d86a-4277-93b4-8eba5a39bd3c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2254 66 false '-- '-- '-- '-- -24407 1736 430d063a-f24e-5702-a4b9-2a5bef151ce1 '-- not reported female '-- '-- '-- '-- white TCGA-24-2254_demographic Dead '-- '-- '-- '-- 24407 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1736.0 '-- '-- a00f2045-a1f8-5198-8f98-26c7090ec6c5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2254_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 718 615 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2254_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2765 '-- mg '-- '-- '-- '-- f9a7a3de-b48c-4f06-84d3-049d8ecf434e '-- yes '-- '-- Chemotherapy +TCGA-OV 9af2248a-d86a-4277-93b4-8eba5a39bd3c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2254 66 false '-- '-- '-- '-- -24407 1736 430d063a-f24e-5702-a4b9-2a5bef151ce1 '-- not reported female '-- '-- '-- '-- white TCGA-24-2254_demographic Dead '-- '-- '-- '-- 25013 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 606 '-- '-- '-- bbe276b4-3eaa-42a2-98df-f5bd62181259 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2254_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2254_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2254_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 08851920-59ed-4be7-8ec1-3f04fc29099e '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 9af2248a-d86a-4277-93b4-8eba5a39bd3c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2254 66 false '-- '-- '-- '-- -24407 1736 430d063a-f24e-5702-a4b9-2a5bef151ce1 '-- not reported female '-- '-- '-- '-- white TCGA-24-2254_demographic Dead '-- '-- '-- '-- 25013 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 606 '-- '-- '-- bbe276b4-3eaa-42a2-98df-f5bd62181259 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2254_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2254_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2254_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f6f0f386-8271-4820-88f2-fa07fdcf4a4d '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 9bbc01b4-056c-4ddc-aca4-ff20718646d0 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0367 67 false '-- '-- '-- '-- -24473 547 51e8191f-bc19-5752-94b7-b3a4ea24578f '-- not hispanic or latino female '-- '-- '-- '-- native hawaiian or other pacific islander TCGA-09-0367_demographic Dead '-- '-- '-- '-- 24473 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 547.0 '-- '-- 3b0fadff-1eaa-5a35-9045-24288b57a3dd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-0367_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 92 9 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-0367_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 17e9db1b-f599-449d-8a45-f82c0a6874f2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9bbc01b4-056c-4ddc-aca4-ff20718646d0 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0367 67 false '-- '-- '-- '-- -24473 547 51e8191f-bc19-5752-94b7-b3a4ea24578f '-- not hispanic or latino female '-- '-- '-- '-- native hawaiian or other pacific islander TCGA-09-0367_demographic Dead '-- '-- '-- '-- 24473 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 547.0 '-- '-- 3b0fadff-1eaa-5a35-9045-24288b57a3dd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-0367_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 92 9 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-0367_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 468cac62-c860-5e8f-b4b0-f22c7544080f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9bbc01b4-056c-4ddc-aca4-ff20718646d0 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0367 67 false '-- '-- '-- '-- -24473 547 51e8191f-bc19-5752-94b7-b3a4ea24578f '-- not hispanic or latino female '-- '-- '-- '-- native hawaiian or other pacific islander TCGA-09-0367_demographic Dead '-- '-- '-- '-- 24473 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 547.0 '-- '-- 3b0fadff-1eaa-5a35-9045-24288b57a3dd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-0367_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-0367_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7e1961d7-4312-4248-aa61-4efae22f6697 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 9bbc01b4-056c-4ddc-aca4-ff20718646d0 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-0367 67 false '-- '-- '-- '-- -24473 547 51e8191f-bc19-5752-94b7-b3a4ea24578f '-- not hispanic or latino female '-- '-- '-- '-- native hawaiian or other pacific islander TCGA-09-0367_demographic Dead '-- '-- '-- '-- 24473 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 547.0 '-- '-- 3b0fadff-1eaa-5a35-9045-24288b57a3dd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-0367_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- 153 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-0367_treatment3 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1145 '-- mg '-- '-- '-- '-- c23cb7e2-f2f2-46de-811a-b25fcb3eed33 '-- yes '-- '-- Chemotherapy +TCGA-OV 9bdbaccf-b43b-4ec3-8b9b-dff65215eb00 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1878 60 false '-- '-- '-- '-- -22035 2587 0a6f9f3c-f210-526b-8ace-d88dd11dfc11 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1878_demographic Dead '-- '-- '-- '-- 22035 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2587.0 '-- '-- 0686547b-b043-5709-8ab3-1c0e786e6b08 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1878_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- '-- 61 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1878_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 55f9dff0-f2bd-423a-bc1a-554579ce0fe9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9bdbaccf-b43b-4ec3-8b9b-dff65215eb00 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1878 60 false '-- '-- '-- '-- -22035 2587 0a6f9f3c-f210-526b-8ace-d88dd11dfc11 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1878_demographic Dead '-- '-- '-- '-- 22035 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2587.0 '-- '-- 0686547b-b043-5709-8ab3-1c0e786e6b08 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1878_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- '-- 976 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1878_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 834dd60c-f87d-49fd-b7b0-045000a7dda8 '-- yes '-- '-- Chemotherapy +TCGA-OV 9bdbaccf-b43b-4ec3-8b9b-dff65215eb00 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1878 60 false '-- '-- '-- '-- -22035 2587 0a6f9f3c-f210-526b-8ace-d88dd11dfc11 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1878_demographic Dead '-- '-- '-- '-- 22035 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2587.0 '-- '-- 0686547b-b043-5709-8ab3-1c0e786e6b08 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1878_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- '-- 976 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1878_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bde2ece1-cb44-4dcf-8b1e-231bd9caef2d '-- yes '-- '-- Chemotherapy +TCGA-OV 9bdbaccf-b43b-4ec3-8b9b-dff65215eb00 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1878 60 false '-- '-- '-- '-- -22035 2587 0a6f9f3c-f210-526b-8ace-d88dd11dfc11 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1878_demographic Dead '-- '-- '-- '-- 22035 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2587.0 '-- '-- 0686547b-b043-5709-8ab3-1c0e786e6b08 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1878_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- '-- 61 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1878_treatment Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ea235805-92e5-5a96-8d99-e26cce2af4f5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9bdbaccf-b43b-4ec3-8b9b-dff65215eb00 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1878 60 false '-- '-- '-- '-- -22035 2587 0a6f9f3c-f210-526b-8ace-d88dd11dfc11 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1878_demographic Dead '-- '-- '-- '-- 22035 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2587.0 '-- '-- 0686547b-b043-5709-8ab3-1c0e786e6b08 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1878_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1878_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ff522dba-6ee4-46ca-82fc-6fa08b8b6966 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 9bdbaccf-b43b-4ec3-8b9b-dff65215eb00 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1878 60 false '-- '-- '-- '-- -22035 2587 0a6f9f3c-f210-526b-8ace-d88dd11dfc11 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1878_demographic Dead '-- '-- '-- '-- 23006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 971 '-- '-- '-- 4c6401b4-ed5d-401e-9e61-4c93c9e04977 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1878_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1878_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1878_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 35d8850f-c13e-47f0-affc-d2575e6f46cf '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 9bdbaccf-b43b-4ec3-8b9b-dff65215eb00 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1878 60 false '-- '-- '-- '-- -22035 2587 0a6f9f3c-f210-526b-8ace-d88dd11dfc11 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1878_demographic Dead '-- '-- '-- '-- 23006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 971 '-- '-- '-- 4c6401b4-ed5d-401e-9e61-4c93c9e04977 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1878_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1878_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1878_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ccdfbdd5-e611-4001-b1cd-5862cb3ed980 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 9bf16a89-2fc7-4c08-93bc-3105eec5c3cc Informed Consent 24 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1687 46 false '-- '-- '-- '-- -16961 '-- c5058873-7e86-55ab-83ec-68f37f816ab9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1687_demographic Alive '-- '-- '-- '-- 16961 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 81.0 '-- '-- 9729bb87-a1cc-5e8d-9e77-b68ef5b45a33 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1687_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 172 42 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-1687_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d9afbb9d-5ca7-5a29-80ac-efbbff19f83b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9bf16a89-2fc7-4c08-93bc-3105eec5c3cc Informed Consent 24 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1687 46 false '-- '-- '-- '-- -16961 '-- c5058873-7e86-55ab-83ec-68f37f816ab9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1687_demographic Alive '-- '-- '-- '-- 16961 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 81.0 '-- '-- 9729bb87-a1cc-5e8d-9e77-b68ef5b45a33 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1687_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 172 42 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-1687_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f16fb3a7-13ce-42ce-af3c-91f112c5abcc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9bf16a89-2fc7-4c08-93bc-3105eec5c3cc Informed Consent 24 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1687 46 false '-- '-- '-- '-- -16961 '-- c5058873-7e86-55ab-83ec-68f37f816ab9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1687_demographic Alive '-- '-- '-- '-- 16961 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 81.0 '-- '-- 9729bb87-a1cc-5e8d-9e77-b68ef5b45a33 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1687_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-20-1687_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f6779b7d-a733-4537-b6e2-2337982271b4 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 9c744ff8-1cde-4176-b6d7-0ab62bf42620 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1428 50 false '-- '-- '-- '-- -18306 '-- cc02ff8d-6eff-5479-acd0-8b3230bcfafa '-- not reported female '-- '-- '-- '-- white TCGA-24-1428_demographic Alive '-- '-- '-- '-- 18754 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 448 '-- '-- '-- 8d9d0acb-49e2-4246-b893-8f0f68b65e42 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1428_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1428_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1428_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5a4e96a5-73a5-4a8c-bf4a-fd231bd34e49 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 9c744ff8-1cde-4176-b6d7-0ab62bf42620 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1428 50 false '-- '-- '-- '-- -18306 '-- cc02ff8d-6eff-5479-acd0-8b3230bcfafa '-- not reported female '-- '-- '-- '-- white TCGA-24-1428_demographic Alive '-- '-- '-- '-- 18754 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 448 '-- '-- '-- 8d9d0acb-49e2-4246-b893-8f0f68b65e42 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1428_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1428_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1428_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9604a3fb-6338-4596-a936-9e273190cfd5 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 9c744ff8-1cde-4176-b6d7-0ab62bf42620 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1428 50 false '-- '-- '-- '-- -18306 '-- cc02ff8d-6eff-5479-acd0-8b3230bcfafa '-- not reported female '-- '-- '-- '-- white TCGA-24-1428_demographic Alive '-- '-- '-- '-- 18306 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 529.0 '-- '-- f6f658e1-75aa-52b0-ae5b-eec6c0b88964 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1428_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 508 466 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1428_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1519 '-- mg '-- '-- '-- '-- 0cba8dce-0956-4595-8a54-d6566cbbe130 '-- yes '-- '-- Chemotherapy +TCGA-OV 9c744ff8-1cde-4176-b6d7-0ab62bf42620 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1428 50 false '-- '-- '-- '-- -18306 '-- cc02ff8d-6eff-5479-acd0-8b3230bcfafa '-- not reported female '-- '-- '-- '-- white TCGA-24-1428_demographic Alive '-- '-- '-- '-- 18306 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 529.0 '-- '-- f6f658e1-75aa-52b0-ae5b-eec6c0b88964 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1428_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1428_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4546bc34-30db-4ac7-91f8-cbb420a719d6 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 9c744ff8-1cde-4176-b6d7-0ab62bf42620 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1428 50 false '-- '-- '-- '-- -18306 '-- cc02ff8d-6eff-5479-acd0-8b3230bcfafa '-- not reported female '-- '-- '-- '-- white TCGA-24-1428_demographic Alive '-- '-- '-- '-- 18306 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 529.0 '-- '-- f6f658e1-75aa-52b0-ae5b-eec6c0b88964 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1428_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 130 46 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1428_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 600 '-- mg '-- '-- '-- '-- 8ca4b2ca-5a23-4ed0-8f91-a4f8cf45c2aa Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9c744ff8-1cde-4176-b6d7-0ab62bf42620 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1428 50 false '-- '-- '-- '-- -18306 '-- cc02ff8d-6eff-5479-acd0-8b3230bcfafa '-- not reported female '-- '-- '-- '-- white TCGA-24-1428_demographic Alive '-- '-- '-- '-- 18306 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 529.0 '-- '-- f6f658e1-75aa-52b0-ae5b-eec6c0b88964 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1428_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 130 46 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-24-1428_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 900 '-- mg '-- '-- '-- '-- 999d1991-c579-5d87-bcc1-95332145d16c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9c744ff8-1cde-4176-b6d7-0ab62bf42620 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1428 50 false '-- '-- '-- '-- -18306 '-- cc02ff8d-6eff-5479-acd0-8b3230bcfafa '-- not reported female '-- '-- '-- '-- white TCGA-24-1428_demographic Alive '-- '-- '-- '-- 18306 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 529.0 '-- '-- f6f658e1-75aa-52b0-ae5b-eec6c0b88964 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1428_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 130 46 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1428_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- 780 '-- mg '-- '-- '-- '-- c1a7eacb-9d1b-4010-8d1c-d2c1a31be509 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9d25cd0e-0a3e-4ee0-b1a3-58ffab348c9d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1665 73 false '-- '-- '-- '-- -27010 1266 4b2e1ed3-d88a-581c-a432-bcfc88178a7a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1665_demographic Dead '-- '-- '-- '-- 27010 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1266.0 '-- '-- 36ea240f-5e4c-59a4-858e-ff2127a15b98 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1665_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 792 778 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1665_treatment '-- '-- '-- '-- '-- '-- Distant Site '-- '-- '-- '-- '-- '-- '-- '-- 259ed336-fe51-5bcd-8647-917135d01f8f '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 9d25cd0e-0a3e-4ee0-b1a3-58ffab348c9d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1665 73 false '-- '-- '-- '-- -27010 1266 4b2e1ed3-d88a-581c-a432-bcfc88178a7a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1665_demographic Dead '-- '-- '-- '-- 27010 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1266.0 '-- '-- 36ea240f-5e4c-59a4-858e-ff2127a15b98 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1665_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1022 917 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1665_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 6a76a51e-1c97-4ce9-9d78-a03de7ab59b3 '-- yes '-- '-- Chemotherapy +TCGA-OV 9d25cd0e-0a3e-4ee0-b1a3-58ffab348c9d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1665 73 false '-- '-- '-- '-- -27010 1266 4b2e1ed3-d88a-581c-a432-bcfc88178a7a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1665_demographic Dead '-- '-- '-- '-- 27010 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1266.0 '-- '-- 36ea240f-5e4c-59a4-858e-ff2127a15b98 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1665_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 208 33 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1665_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 9309bdbf-5836-4b26-bf2a-51aae6b1998c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9d25cd0e-0a3e-4ee0-b1a3-58ffab348c9d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1665 73 false '-- '-- '-- '-- -27010 1266 4b2e1ed3-d88a-581c-a432-bcfc88178a7a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1665_demographic Dead '-- '-- '-- '-- 27010 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1266.0 '-- '-- 36ea240f-5e4c-59a4-858e-ff2127a15b98 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1665_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 208 33 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1665_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- c1847ccb-52de-46d7-84a2-c7e7bb36f060 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9d25cd0e-0a3e-4ee0-b1a3-58ffab348c9d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1665 73 false '-- '-- '-- '-- -27010 1266 4b2e1ed3-d88a-581c-a432-bcfc88178a7a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1665_demographic Dead '-- '-- '-- '-- 27010 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1266.0 '-- '-- 36ea240f-5e4c-59a4-858e-ff2127a15b98 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1665_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 483 400 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1665_treatment3 Tamoxifen '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e529732a-b0f3-4d4f-8901-86b3db6ba069 '-- yes '-- '-- Hormone Therapy +TCGA-OV 9d25cd0e-0a3e-4ee0-b1a3-58ffab348c9d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1665 73 false '-- '-- '-- '-- -27010 1266 4b2e1ed3-d88a-581c-a432-bcfc88178a7a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1665_demographic Dead '-- '-- '-- '-- 27478 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 468 '-- '-- '-- 98dea3c7-5f14-473d-ac36-5a2e4f8f5588 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1665_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1665_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1665_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2e3e9be6-af11-4971-b7c8-ad34382d08c7 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV 9d25cd0e-0a3e-4ee0-b1a3-58ffab348c9d Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1665 73 false '-- '-- '-- '-- -27010 1266 4b2e1ed3-d88a-581c-a432-bcfc88178a7a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1665_demographic Dead '-- '-- '-- '-- 27478 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 468 '-- '-- '-- 98dea3c7-5f14-473d-ac36-5a2e4f8f5588 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-09-1665_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-09-1665_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1665_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b32995f3-9d6d-49af-8257-e9ac0f70ec89 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 70c1f438-89c0-4ce7-a69e-1c03d515f76a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1023_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1023_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1023_treatment18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8f52fe8b-401b-444e-a5d9-6a48d380faa8 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 70c1f438-89c0-4ce7-a69e-1c03d515f76a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1023_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1023_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1023_treatment19 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bf246123-0716-4de3-8225-66ca6ac21a83 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 70c1f438-89c0-4ce7-a69e-1c03d515f76a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1023_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1023_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1209 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1023_treatment20 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cd577fe3-9a4f-44b9-9a7c-b5a412e69f4c '-- yes '-- '-- Surgery, NOS +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 24316 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 490 '-- '-- '-- 8bc75408-a593-40f4-a366-48544ff65166 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1023_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1023_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1023_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 590ccdbc-e8d7-46f5-81fd-23ac94cd89a7 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 24316 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 490 '-- '-- '-- 8bc75408-a593-40f4-a366-48544ff65166 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1023_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1023_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1023_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9843e0cd-6cd3-4821-bc09-2806d09f653e '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 23826 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1233.0 '-- '-- e6fb200e-161a-5533-9fea-45b491af50d2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 609 557 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1023_treatment12 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 7800 '-- mg '-- '-- '-- '-- 0b84c5e6-5fc5-42f8-8e44-bf3443e3bc55 '-- yes '-- '-- Chemotherapy +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 23826 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1233.0 '-- '-- e6fb200e-161a-5533-9fea-45b491af50d2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 120 29 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1023_treatment10 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1492 '-- mg '-- '-- '-- '-- 179890ef-8b9b-42e9-8e14-5a9229eed440 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 23826 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1233.0 '-- '-- e6fb200e-161a-5533-9fea-45b491af50d2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 1364 1272 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1023_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 300 '-- mg '-- '-- '-- '-- 299daf52-c850-4697-9f5b-02cde60b011c '-- yes '-- '-- Chemotherapy +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 23826 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1233.0 '-- '-- e6fb200e-161a-5533-9fea-45b491af50d2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 509 509 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-23-1023_treatment13 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1560 '-- mg '-- '-- '-- '-- 2f4c401b-e64a-43e2-9c8c-ad6a21a79b30 '-- yes '-- '-- Chemotherapy +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 23826 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1233.0 '-- '-- e6fb200e-161a-5533-9fea-45b491af50d2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1023_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3d66e709-7da1-4eb3-8f34-5121c47849bd Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 23826 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1233.0 '-- '-- e6fb200e-161a-5533-9fea-45b491af50d2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 560 539 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1023_treatment14 Carboplatin '-- '-- '-- '-- '-- '-- '-- 640 '-- mg '-- '-- '-- '-- 3f5b92a1-422a-48ae-ada7-f2882eaff33a '-- yes '-- '-- Chemotherapy +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 23826 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1233.0 '-- '-- e6fb200e-161a-5533-9fea-45b491af50d2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 1455 1427 '-- '-- Persistent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1023_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 120 '-- mg '-- '-- '-- '-- 3fd95445-e184-4cd4-aac3-b50d4b3dd1cf Not Reported yes '-- '-- Chemotherapy +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 23826 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1233.0 '-- '-- e6fb200e-161a-5533-9fea-45b491af50d2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 509 509 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-23-1023_treatment11 Cisplatin '-- '-- '-- '-- '-- '-- '-- 195 '-- mg '-- '-- '-- '-- 56447d06-f3c4-4842-a4b6-5f99c5f4c8ec '-- yes '-- '-- Chemotherapy +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 23826 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1233.0 '-- '-- e6fb200e-161a-5533-9fea-45b491af50d2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 1665 1616 '-- '-- Persistent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1023_treatment9 Topotecan '-- '-- '-- '-- '-- '-- '-- 24 '-- mg '-- '-- '-- '-- 5d2dd640-2809-4391-8eaa-65ca0f1159e2 Not Reported yes '-- '-- Chemotherapy +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 23826 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1233.0 '-- '-- e6fb200e-161a-5533-9fea-45b491af50d2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 1407 1386 '-- '-- Persistent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1023_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1100 '-- mg '-- '-- '-- '-- 842b739f-596b-4a1c-8790-a8c49438c5f7 Not Reported yes '-- '-- Chemotherapy +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 23826 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1233.0 '-- '-- e6fb200e-161a-5533-9fea-45b491af50d2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 609 557 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1023_treatment6 Cisplatin '-- '-- '-- '-- '-- '-- '-- 369 '-- mg '-- '-- '-- '-- 8620d44a-e309-4d28-9108-2404789c565d '-- yes '-- '-- Chemotherapy +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 23826 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1233.0 '-- '-- e6fb200e-161a-5533-9fea-45b491af50d2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 468 155 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1023_treatment8 Clinical Trial '-- '-- '-- '-- '-- '-- '-- 12 '-- mg '-- '-- '-- '-- 9e5d13b7-651a-4440-8c60-d61420a26790 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 23826 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1233.0 '-- '-- e6fb200e-161a-5533-9fea-45b491af50d2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 560 539 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1023_treatment7 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 4860 '-- mg '-- '-- '-- '-- a9b0fd4d-faa2-4987-83b8-11f7581a7a54 '-- yes '-- '-- Chemotherapy +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 23826 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1233.0 '-- '-- e6fb200e-161a-5533-9fea-45b491af50d2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 120 29 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1023_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2021 '-- mg '-- '-- '-- '-- d125396b-8bfb-4a4f-b964-3ad77ef6330a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9e18238f-ae85-4b75-ae87-d92da9731a40 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1023 65 false '-- '-- '-- '-- -23826 '-- 5401c2e3-25c5-547a-a9df-fce704e3b3f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1023_demographic Alive '-- '-- '-- '-- 23826 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1233.0 '-- '-- e6fb200e-161a-5533-9fea-45b491af50d2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1023_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 1603 1582 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1023_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 198 '-- mg '-- '-- '-- '-- df39fb19-a55b-5390-b5b6-15c45b5892f4 '-- yes '-- '-- Chemotherapy +TCGA-OV 9e48a4b1-6917-4625-9d78-e4832eb816a5 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0900 59 false '-- '-- '-- '-- -21698 '-- 5d5bb297-6177-5d8a-8562-cbfa5c0f119a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0900_demographic Alive '-- '-- '-- '-- 21698 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 4077.0 '-- '-- 0637c309-0ed0-5cbf-a47b-4d33baea8096 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0900_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0900_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 467f9681-7ced-4aa0-824c-3bcb4d63abfc Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 9e48a4b1-6917-4625-9d78-e4832eb816a5 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0900 59 false '-- '-- '-- '-- -21698 '-- 5d5bb297-6177-5d8a-8562-cbfa5c0f119a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0900_demographic Alive '-- '-- '-- '-- 21698 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 4077.0 '-- '-- 0637c309-0ed0-5cbf-a47b-4d33baea8096 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0900_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 162 38 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0900_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6fc269ae-92bb-54f9-b556-34237de627ea Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9e48a4b1-6917-4625-9d78-e4832eb816a5 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0900 59 false '-- '-- '-- '-- -21698 '-- 5d5bb297-6177-5d8a-8562-cbfa5c0f119a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0900_demographic Alive '-- '-- '-- '-- 21698 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 4077.0 '-- '-- 0637c309-0ed0-5cbf-a47b-4d33baea8096 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0900_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 162 38 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0900_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ca7b8670-6fe1-44f8-a387-ef915f4fb68c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9e7d3dea-5d81-4f10-819c-1c2a68ddd150 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1546 46 false '-- '-- '-- '-- -17130 1955 8bff82fb-9ffa-5794-8922-4b2771f31589 '-- not reported female '-- '-- '-- '-- white TCGA-24-1546_demographic Dead '-- '-- '-- '-- 17130 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1955.0 '-- '-- 4ec47e19-8ac8-5799-995f-ed82d4ebef47 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1546_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1546_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 287d5b25-e1ee-5e5b-a4a2-d403b4e54836 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9e7d3dea-5d81-4f10-819c-1c2a68ddd150 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1546 46 false '-- '-- '-- '-- -17130 1955 8bff82fb-9ffa-5794-8922-4b2771f31589 '-- not reported female '-- '-- '-- '-- white TCGA-24-1546_demographic Dead '-- '-- '-- '-- 17130 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1955.0 '-- '-- 4ec47e19-8ac8-5799-995f-ed82d4ebef47 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1546_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1546_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cdc67898-5bd9-4e0a-a298-04d74c726625 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9ec86cbd-8c74-4697-90da-529ab91ab835 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1843 66 false '-- '-- '-- '-- -24469 '-- 63120061-1f2d-5054-ae2e-359fc077acae '-- not reported female '-- '-- '-- '-- white TCGA-24-1843_demographic Alive '-- '-- '-- '-- 24469 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 106.0 '-- '-- 59f8614c-8ad2-570a-9e9e-134adc1741a0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1843_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 134 20 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1843_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 373 '-- mg '-- '-- '-- '-- 25d0621f-3c4b-56a8-92c5-7b9192816479 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9ec86cbd-8c74-4697-90da-529ab91ab835 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1843 66 false '-- '-- '-- '-- -24469 '-- 63120061-1f2d-5054-ae2e-359fc077acae '-- not reported female '-- '-- '-- '-- white TCGA-24-1843_demographic Alive '-- '-- '-- '-- 24469 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 106.0 '-- '-- 59f8614c-8ad2-570a-9e9e-134adc1741a0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1843_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1843_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3cb0841b-5c0e-4ce1-b562-e617923b575b Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 9ec86cbd-8c74-4697-90da-529ab91ab835 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1843 66 false '-- '-- '-- '-- -24469 '-- 63120061-1f2d-5054-ae2e-359fc077acae '-- not reported female '-- '-- '-- '-- white TCGA-24-1843_demographic Alive '-- '-- '-- '-- 24469 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 106.0 '-- '-- 59f8614c-8ad2-570a-9e9e-134adc1741a0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1843_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 134 20 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1843_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 582 '-- mg '-- '-- '-- '-- 610cbd42-6486-403e-8725-6ac970e1ebda Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9ec86cbd-8c74-4697-90da-529ab91ab835 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1843 66 false '-- '-- '-- '-- -24469 '-- 63120061-1f2d-5054-ae2e-359fc077acae '-- not reported female '-- '-- '-- '-- white TCGA-24-1843_demographic Alive '-- '-- '-- '-- 24469 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 106.0 '-- '-- 59f8614c-8ad2-570a-9e9e-134adc1741a0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1843_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 134 20 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1843_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2957 '-- mg '-- '-- '-- '-- 88f3fe49-26f6-49a9-a0db-f232670656d6 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9fb1ba57-2007-4477-b000-2d36f163efd2 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1110 42 false '-- '-- '-- '-- -15383 '-- bb0f6ffa-ac50-5de2-be4c-54c7494ab86f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1110_demographic Alive '-- '-- '-- '-- 15709 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 326 '-- '-- '-- 05c99f23-b56f-4234-bcb3-a4ad8dd8275f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1110_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1110_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1110_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7a5bff3a-77be-4bd8-a1d8-e56fe7beb3ad '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV 9fb1ba57-2007-4477-b000-2d36f163efd2 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1110 42 false '-- '-- '-- '-- -15383 '-- bb0f6ffa-ac50-5de2-be4c-54c7494ab86f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1110_demographic Alive '-- '-- '-- '-- 15709 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 326 '-- '-- '-- 05c99f23-b56f-4234-bcb3-a4ad8dd8275f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1110_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1110_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1110_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d038fa3c-7326-4994-913a-4496c79bba61 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV 9fb1ba57-2007-4477-b000-2d36f163efd2 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1110 42 false '-- '-- '-- '-- -15383 '-- bb0f6ffa-ac50-5de2-be4c-54c7494ab86f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1110_demographic Alive '-- '-- '-- '-- 15383 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1658.0 '-- '-- 8d884ab0-aab2-532e-8036-a5b79eb4ce6d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1110_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 110 6 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1110_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 3960 '-- mg '-- '-- '-- '-- 0a1f9f5c-6170-4433-8341-55cd1c2c063e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9fb1ba57-2007-4477-b000-2d36f163efd2 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1110 42 false '-- '-- '-- '-- -15383 '-- bb0f6ffa-ac50-5de2-be4c-54c7494ab86f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1110_demographic Alive '-- '-- '-- '-- 15383 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1658.0 '-- '-- 8d884ab0-aab2-532e-8036-a5b79eb4ce6d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1110_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 235 179 '-- '-- Not Reported '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1110_treatment3 Clinical Trial '-- '-- '-- '-- '-- '-- '-- 6 '-- mg '-- '-- '-- '-- 18ce0035-291c-4ef0-a0ed-f9e0844bca80 Consolidation Therapy yes '-- '-- Immunotherapy (Including Vaccines) +TCGA-OV 9fb1ba57-2007-4477-b000-2d36f163efd2 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1110 42 false '-- '-- '-- '-- -15383 '-- bb0f6ffa-ac50-5de2-be4c-54c7494ab86f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1110_demographic Alive '-- '-- '-- '-- 15383 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1658.0 '-- '-- 8d884ab0-aab2-532e-8036-a5b79eb4ce6d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1110_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 110 6 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1110_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1800 '-- mg '-- '-- '-- '-- 4094c88f-6368-4b3b-9f8f-1232962acf9b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV 9fb1ba57-2007-4477-b000-2d36f163efd2 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1110 42 false '-- '-- '-- '-- -15383 '-- bb0f6ffa-ac50-5de2-be4c-54c7494ab86f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1110_demographic Alive '-- '-- '-- '-- 15383 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1658.0 '-- '-- 8d884ab0-aab2-532e-8036-a5b79eb4ce6d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1110_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1110_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9ebfb37c-c0e1-43af-bbbe-802973f3c76c Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV 9fb1ba57-2007-4477-b000-2d36f163efd2 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1110 42 false '-- '-- '-- '-- -15383 '-- bb0f6ffa-ac50-5de2-be4c-54c7494ab86f '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1110_demographic Alive '-- '-- '-- '-- 15383 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1658.0 '-- '-- 8d884ab0-aab2-532e-8036-a5b79eb4ce6d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1110_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 375 333 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-23-1110_treatment Capecitabine '-- '-- '-- '-- '-- '-- '-- 16800 '-- mg '-- '-- '-- '-- e65a832f-f238-5469-b484-f9c0bb0dbe8e '-- yes '-- '-- Chemotherapy +TCGA-OV a09f0626-002a-48fd-8b2d-c66b8285cf23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1892 52 false '-- '-- '-- '-- -19256 1484 caf0b95d-2121-5698-a1cf-f4408b39c118 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1892_demographic Dead '-- '-- '-- '-- 19509 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 253 '-- '-- '-- 234fadaf-c0d9-49c3-893e-fd05f7046ba1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1892_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1892_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1892_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 14266037-2190-48b1-84a0-330b0561d8e9 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV a09f0626-002a-48fd-8b2d-c66b8285cf23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1892 52 false '-- '-- '-- '-- -19256 1484 caf0b95d-2121-5698-a1cf-f4408b39c118 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1892_demographic Dead '-- '-- '-- '-- 19509 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 253 '-- '-- '-- 234fadaf-c0d9-49c3-893e-fd05f7046ba1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1892_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1892_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1892_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e3fe813f-4c33-42fb-9a04-34f16d899b55 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV a09f0626-002a-48fd-8b2d-c66b8285cf23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1892 52 false '-- '-- '-- '-- -19256 1484 caf0b95d-2121-5698-a1cf-f4408b39c118 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1892_demographic Dead '-- '-- '-- '-- 19256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1484.0 '-- '-- 2ac4a173-7eee-5fca-8f3f-6ee590714833 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1892_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 132 10 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1892_treatment9 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2512c213-2491-437f-a0d2-cc331886f41e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a09f0626-002a-48fd-8b2d-c66b8285cf23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1892 52 false '-- '-- '-- '-- -19256 1484 caf0b95d-2121-5698-a1cf-f4408b39c118 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1892_demographic Dead '-- '-- '-- '-- 19256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1484.0 '-- '-- 2ac4a173-7eee-5fca-8f3f-6ee590714833 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1892_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1892_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4fb236e9-bbb1-43f4-8ada-81384eabbebe Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV a09f0626-002a-48fd-8b2d-c66b8285cf23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1892 52 false '-- '-- '-- '-- -19256 1484 caf0b95d-2121-5698-a1cf-f4408b39c118 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1892_demographic Dead '-- '-- '-- '-- 19256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1484.0 '-- '-- 2ac4a173-7eee-5fca-8f3f-6ee590714833 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1892_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 132 10 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1892_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 53a518b3-e090-5044-9dbf-c2c82ca3ebc3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a09f0626-002a-48fd-8b2d-c66b8285cf23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1892 52 false '-- '-- '-- '-- -19256 1484 caf0b95d-2121-5698-a1cf-f4408b39c118 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1892_demographic Dead '-- '-- '-- '-- 19256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1484.0 '-- '-- 2ac4a173-7eee-5fca-8f3f-6ee590714833 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1892_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 754 601 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1892_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 874ad476-9f05-4419-a7f3-1db88f7912b9 '-- yes '-- '-- Chemotherapy +TCGA-OV a09f0626-002a-48fd-8b2d-c66b8285cf23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1892 52 false '-- '-- '-- '-- -19256 1484 caf0b95d-2121-5698-a1cf-f4408b39c118 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1892_demographic Dead '-- '-- '-- '-- 19256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1484.0 '-- '-- 2ac4a173-7eee-5fca-8f3f-6ee590714833 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1892_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1384 1265 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1892_treatment8 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 98e9f537-611e-4dc2-9ef3-ce40dd14bddc '-- yes '-- '-- Chemotherapy +TCGA-OV a09f0626-002a-48fd-8b2d-c66b8285cf23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1892 52 false '-- '-- '-- '-- -19256 1484 caf0b95d-2121-5698-a1cf-f4408b39c118 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1892_demographic Dead '-- '-- '-- '-- 19256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1484.0 '-- '-- 2ac4a173-7eee-5fca-8f3f-6ee590714833 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1892_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1197 1113 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-30-1892_treatment2 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 50 '-- mg '-- '-- '-- '-- 9a90d19a-5d60-489d-a0fd-dcad3d4b4661 '-- yes '-- '-- Chemotherapy +TCGA-OV a09f0626-002a-48fd-8b2d-c66b8285cf23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1892 52 false '-- '-- '-- '-- -19256 1484 caf0b95d-2121-5698-a1cf-f4408b39c118 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1892_demographic Dead '-- '-- '-- '-- 19256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1484.0 '-- '-- 2ac4a173-7eee-5fca-8f3f-6ee590714833 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1892_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1892_treatment7 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aa3be3dc-5bfd-4c0b-a760-01fa7b5ebd5b '-- yes '-- '-- Chemotherapy +TCGA-OV a09f0626-002a-48fd-8b2d-c66b8285cf23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1892 52 false '-- '-- '-- '-- -19256 1484 caf0b95d-2121-5698-a1cf-f4408b39c118 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1892_demographic Dead '-- '-- '-- '-- 19256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1484.0 '-- '-- 2ac4a173-7eee-5fca-8f3f-6ee590714833 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1892_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 419 253 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1892_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bdfe0707-be60-4ffc-b9d2-e452bbaaa196 '-- yes '-- '-- Chemotherapy +TCGA-OV a09f0626-002a-48fd-8b2d-c66b8285cf23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1892 52 false '-- '-- '-- '-- -19256 1484 caf0b95d-2121-5698-a1cf-f4408b39c118 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1892_demographic Dead '-- '-- '-- '-- 19256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1484.0 '-- '-- 2ac4a173-7eee-5fca-8f3f-6ee590714833 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1892_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1449 1428 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-30-1892_treatment11 Catumaxomab '-- '-- '-- '-- '-- '-- '-- 10 '-- ug '-- '-- '-- '-- d85145c3-4435-4add-9298-aaa1aee69649 '-- yes '-- '-- Chemotherapy +TCGA-OV a09f0626-002a-48fd-8b2d-c66b8285cf23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1892 52 false '-- '-- '-- '-- -19256 1484 caf0b95d-2121-5698-a1cf-f4408b39c118 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1892_demographic Dead '-- '-- '-- '-- 19256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1484.0 '-- '-- 2ac4a173-7eee-5fca-8f3f-6ee590714833 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1892_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1258 1197 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1892_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 70 '-- mg/m2 '-- '-- '-- '-- dfe23e08-79fd-4d04-be3a-88e967546f56 '-- yes '-- '-- Chemotherapy +TCGA-OV a09f0626-002a-48fd-8b2d-c66b8285cf23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1892 52 false '-- '-- '-- '-- -19256 1484 caf0b95d-2121-5698-a1cf-f4408b39c118 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1892_demographic Dead '-- '-- '-- '-- 19256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1484.0 '-- '-- 2ac4a173-7eee-5fca-8f3f-6ee590714833 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1892_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- 862 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1892_treatment3 Pemetrexed Disodium '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e6e525c1-7f7d-4da1-b91a-7a976911d52e '-- yes '-- '-- Chemotherapy +TCGA-OV a09f0626-002a-48fd-8b2d-c66b8285cf23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1892 52 false '-- '-- '-- '-- -19256 1484 caf0b95d-2121-5698-a1cf-f4408b39c118 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1892_demographic Dead '-- '-- '-- '-- 19256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1484.0 '-- '-- 2ac4a173-7eee-5fca-8f3f-6ee590714833 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1892_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 573 428 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1892_treatment10 Gemcitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e6ec3a3d-10ff-418c-934d-c849c1035dae '-- yes '-- '-- Chemotherapy +TCGA-OV a09f0626-002a-48fd-8b2d-c66b8285cf23 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1892 52 false '-- '-- '-- '-- -19256 1484 caf0b95d-2121-5698-a1cf-f4408b39c118 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1892_demographic Dead '-- '-- '-- '-- 19256 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1484.0 '-- '-- 2ac4a173-7eee-5fca-8f3f-6ee590714833 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1892_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1197 1134 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-30-1892_treatment12 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 15 '-- mg/kg '-- '-- '-- '-- f0ba9b0a-9ca0-4bdd-900a-f4b73099022b '-- yes '-- '-- Immunotherapy (Including Vaccines) +TCGA-OV a22c1451-7841-4fa3-b2f2-5d5cd8aa67d3 Informed Consent -13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2061 58 false '-- '-- '-- '-- -21543 '-- 2ea3e450-a970-5417-beca-5efa525ae3f6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-2061_demographic Alive '-- '-- '-- '-- 21543 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2339.0 '-- '-- 3cb6ac6f-6c0c-567a-8dff-fd7a2db0b1d4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2061_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 133 126 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-2061_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3cb16eb5-64b2-4e5d-a47d-38ce0147ee84 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a22c1451-7841-4fa3-b2f2-5d5cd8aa67d3 Informed Consent -13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2061 58 false '-- '-- '-- '-- -21543 '-- 2ea3e450-a970-5417-beca-5efa525ae3f6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-2061_demographic Alive '-- '-- '-- '-- 21543 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2339.0 '-- '-- 3cb6ac6f-6c0c-567a-8dff-fd7a2db0b1d4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2061_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 112 63 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-2061_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5467cf71-5890-4ecc-92f8-9eba82656332 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a22c1451-7841-4fa3-b2f2-5d5cd8aa67d3 Informed Consent -13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2061 58 false '-- '-- '-- '-- -21543 '-- 2ea3e450-a970-5417-beca-5efa525ae3f6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-2061_demographic Alive '-- '-- '-- '-- 21543 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2339.0 '-- '-- 3cb6ac6f-6c0c-567a-8dff-fd7a2db0b1d4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2061_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 112 63 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-2061_treatment5 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5f2f5b42-7fd0-4096-80d4-f3b906959c28 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a22c1451-7841-4fa3-b2f2-5d5cd8aa67d3 Informed Consent -13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2061 58 false '-- '-- '-- '-- -21543 '-- 2ea3e450-a970-5417-beca-5efa525ae3f6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-2061_demographic Alive '-- '-- '-- '-- 21543 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2339.0 '-- '-- 3cb6ac6f-6c0c-567a-8dff-fd7a2db0b1d4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2061_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 112 63 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-2061_treatment8 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b059bdb3-85c6-4f3d-8ab8-ebd98864221a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a22c1451-7841-4fa3-b2f2-5d5cd8aa67d3 Informed Consent -13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2061 58 false '-- '-- '-- '-- -21543 '-- 2ea3e450-a970-5417-beca-5efa525ae3f6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-2061_demographic Alive '-- '-- '-- '-- 21543 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2339.0 '-- '-- 3cb6ac6f-6c0c-567a-8dff-fd7a2db0b1d4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2061_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 168 147 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-2061_treatment7 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bcdb69d6-c4ca-4249-a3be-36871abe26af Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a22c1451-7841-4fa3-b2f2-5d5cd8aa67d3 Informed Consent -13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2061 58 false '-- '-- '-- '-- -21543 '-- 2ea3e450-a970-5417-beca-5efa525ae3f6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-2061_demographic Alive '-- '-- '-- '-- 21543 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2339.0 '-- '-- 3cb6ac6f-6c0c-567a-8dff-fd7a2db0b1d4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2061_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-2061_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c333baaa-e7b6-48ca-825b-b9f78277ff31 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV a22c1451-7841-4fa3-b2f2-5d5cd8aa67d3 Informed Consent -13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2061 58 false '-- '-- '-- '-- -21543 '-- 2ea3e450-a970-5417-beca-5efa525ae3f6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-2061_demographic Alive '-- '-- '-- '-- 21543 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2339.0 '-- '-- 3cb6ac6f-6c0c-567a-8dff-fd7a2db0b1d4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2061_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 168 147 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-2061_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d38b81e6-5203-4c11-bdc7-34473f589e0e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a22c1451-7841-4fa3-b2f2-5d5cd8aa67d3 Informed Consent -13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2061 58 false '-- '-- '-- '-- -21543 '-- 2ea3e450-a970-5417-beca-5efa525ae3f6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-2061_demographic Alive '-- '-- '-- '-- 21543 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2339.0 '-- '-- 3cb6ac6f-6c0c-567a-8dff-fd7a2db0b1d4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2061_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 133 126 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-2061_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 4 '-- AUC '-- '-- '-- '-- d82156a9-13cd-55e4-b829-72cb62cf2b9a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a22c1451-7841-4fa3-b2f2-5d5cd8aa67d3 Informed Consent -13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2061 58 false '-- '-- '-- '-- -21543 '-- 2ea3e450-a970-5417-beca-5efa525ae3f6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-2061_demographic Alive '-- '-- '-- '-- 21543 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2339.0 '-- '-- 3cb6ac6f-6c0c-567a-8dff-fd7a2db0b1d4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2061_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 133 126 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-2061_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e6ad104c-c251-41df-9ed1-826a824d2640 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a2319490-b85d-4219-a1b0-fa1ec432d5c8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2414 75 false '-- '-- '-- '-- -27417 2621 7b9aeb08-3b4c-5661-bec0-b3b74dc9ec8a '-- not reported female '-- '-- '-- '-- white TCGA-29-2414_demographic Dead '-- '-- '-- '-- 27417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2621.0 '-- '-- 1911c0e4-d523-5681-9cc6-332707c4c25e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2414_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- '-- 1705 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2414_treatment '-- '-- '-- '-- '-- '-- Distant Site '-- 6600 '-- cGy '-- '-- '-- '-- 6a5666f9-cc38-5f1c-a8b6-ec1953ac9ff2 '-- yes '-- '-- Radiation, External Beam +TCGA-OV a2319490-b85d-4219-a1b0-fa1ec432d5c8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2414 75 false '-- '-- '-- '-- -27417 2621 7b9aeb08-3b4c-5661-bec0-b3b74dc9ec8a '-- not reported female '-- '-- '-- '-- white TCGA-29-2414_demographic Dead '-- '-- '-- '-- 27417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2621.0 '-- '-- 1911c0e4-d523-5681-9cc6-332707c4c25e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2414_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2287 2256 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-2414_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 40 '-- mg/m2 '-- '-- '-- '-- 75d501e6-b6c7-488b-b187-d41a5916f2e6 '-- yes '-- '-- Chemotherapy +TCGA-OV a2319490-b85d-4219-a1b0-fa1ec432d5c8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2414 75 false '-- '-- '-- '-- -27417 2621 7b9aeb08-3b4c-5661-bec0-b3b74dc9ec8a '-- not reported female '-- '-- '-- '-- white TCGA-29-2414_demographic Dead '-- '-- '-- '-- 27417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2621.0 '-- '-- 1911c0e4-d523-5681-9cc6-332707c4c25e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2414_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 131 3 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-2414_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 20 '-- mg/m2 '-- '-- '-- '-- 7db96c0f-cdf3-4194-8473-0e2e9f4263b0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a2319490-b85d-4219-a1b0-fa1ec432d5c8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2414 75 false '-- '-- '-- '-- -27417 2621 7b9aeb08-3b4c-5661-bec0-b3b74dc9ec8a '-- not reported female '-- '-- '-- '-- white TCGA-29-2414_demographic Dead '-- '-- '-- '-- 27417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2621.0 '-- '-- 1911c0e4-d523-5681-9cc6-332707c4c25e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2414_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2424 2315 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-2414_treatment6 Topotecan '-- '-- '-- '-- '-- '-- '-- 3 '-- mg/m2 '-- '-- '-- '-- 9b9cecbe-337f-4881-9df3-6ffa3727ce1f '-- yes '-- '-- Chemotherapy +TCGA-OV a2319490-b85d-4219-a1b0-fa1ec432d5c8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2414 75 false '-- '-- '-- '-- -27417 2621 7b9aeb08-3b4c-5661-bec0-b3b74dc9ec8a '-- not reported female '-- '-- '-- '-- white TCGA-29-2414_demographic Dead '-- '-- '-- '-- 27417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2621.0 '-- '-- 1911c0e4-d523-5681-9cc6-332707c4c25e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2414_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1171 996 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-2414_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e16a10a3-1f11-44e1-b272-8e0ce38afb3e '-- yes '-- '-- Chemotherapy +TCGA-OV a2319490-b85d-4219-a1b0-fa1ec432d5c8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2414 75 false '-- '-- '-- '-- -27417 2621 7b9aeb08-3b4c-5661-bec0-b3b74dc9ec8a '-- not reported female '-- '-- '-- '-- white TCGA-29-2414_demographic Dead '-- '-- '-- '-- 27417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2621.0 '-- '-- 1911c0e4-d523-5681-9cc6-332707c4c25e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2414_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1171 996 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-2414_treatment8 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- efcc1bfd-9911-4bd3-b3bf-a6e186083ee9 '-- yes '-- '-- Chemotherapy +TCGA-OV a2319490-b85d-4219-a1b0-fa1ec432d5c8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2414 75 false '-- '-- '-- '-- -27417 2621 7b9aeb08-3b4c-5661-bec0-b3b74dc9ec8a '-- not reported female '-- '-- '-- '-- white TCGA-29-2414_demographic Dead '-- '-- '-- '-- 27417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2621.0 '-- '-- 1911c0e4-d523-5681-9cc6-332707c4c25e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2414_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 131 3 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-2414_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- f0de6949-55f2-4189-9854-7df5a2396471 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a2319490-b85d-4219-a1b0-fa1ec432d5c8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2414 75 false '-- '-- '-- '-- -27417 2621 7b9aeb08-3b4c-5661-bec0-b3b74dc9ec8a '-- not reported female '-- '-- '-- '-- white TCGA-29-2414_demographic Dead '-- '-- '-- '-- 27417 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2621.0 '-- '-- 1911c0e4-d523-5681-9cc6-332707c4c25e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2414_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 2151 2042 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-2414_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- f2a0ab99-98a6-4d7a-ab28-292080b27d7d '-- yes '-- '-- Chemotherapy +TCGA-OV a2319490-b85d-4219-a1b0-fa1ec432d5c8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2414 75 false '-- '-- '-- '-- -27417 2621 7b9aeb08-3b4c-5661-bec0-b3b74dc9ec8a '-- not reported female '-- '-- '-- '-- white TCGA-29-2414_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 34087ea9-a2fa-415b-8853-1f88d80d9ba8 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-2414_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-2414_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2222 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2414_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 94af1c00-7391-4cad-9ddf-9c8f954f5800 '-- yes '-- '-- Surgery, NOS +TCGA-OV a2319490-b85d-4219-a1b0-fa1ec432d5c8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2414 75 false '-- '-- '-- '-- -27417 2621 7b9aeb08-3b4c-5661-bec0-b3b74dc9ec8a '-- not reported female '-- '-- '-- '-- white TCGA-29-2414_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 34087ea9-a2fa-415b-8853-1f88d80d9ba8 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-2414_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-2414_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2414_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cd1f0932-2269-42e9-835f-18df40084c33 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV a2319490-b85d-4219-a1b0-fa1ec432d5c8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2414 75 false '-- '-- '-- '-- -27417 2621 7b9aeb08-3b4c-5661-bec0-b3b74dc9ec8a '-- not reported female '-- '-- '-- '-- white TCGA-29-2414_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 34087ea9-a2fa-415b-8853-1f88d80d9ba8 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-2414_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-2414_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2414_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- de7d3f74-0746-426e-a198-9dfa68ba1872 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV a2319490-b85d-4219-a1b0-fa1ec432d5c8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2414 75 false '-- '-- '-- '-- -27417 2621 7b9aeb08-3b4c-5661-bec0-b3b74dc9ec8a '-- not reported female '-- '-- '-- '-- white TCGA-29-2414_demographic Dead '-- '-- '-- '-- 27969 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 552 '-- '-- '-- 55b71011-dd71-4908-942e-ff0a7c6270bb false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-2414_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-2414_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2414_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9c897b9e-a16e-4592-8882-640fc20c15bc '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV a2319490-b85d-4219-a1b0-fa1ec432d5c8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2414 75 false '-- '-- '-- '-- -27417 2621 7b9aeb08-3b4c-5661-bec0-b3b74dc9ec8a '-- not reported female '-- '-- '-- '-- white TCGA-29-2414_demographic Dead '-- '-- '-- '-- 27969 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 552 '-- '-- '-- 55b71011-dd71-4908-942e-ff0a7c6270bb false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-2414_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-2414_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2414_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c85244db-becf-46a3-b740-b2d7b09e270d '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV a285786d-120e-4c88-b48b-8111f4413988 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1500 71 false '-- '-- '-- '-- -26172 425 c86f4bdb-209e-5303-9f89-3325a7afd82e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1500_demographic Dead '-- '-- '-- '-- 26425 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 253 '-- '-- '-- 72140766-bdc9-44ee-9a01-a97f43107a03 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1500_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1500_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1500_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 411d8656-4dc7-4349-a3ca-ef7bd6a74178 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV a285786d-120e-4c88-b48b-8111f4413988 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1500 71 false '-- '-- '-- '-- -26172 425 c86f4bdb-209e-5303-9f89-3325a7afd82e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1500_demographic Dead '-- '-- '-- '-- 26425 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 253 '-- '-- '-- 72140766-bdc9-44ee-9a01-a97f43107a03 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1500_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1500_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1500_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b436e1b2-26da-4d0d-90eb-0d768950d448 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV a285786d-120e-4c88-b48b-8111f4413988 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1500 71 false '-- '-- '-- '-- -26172 425 c86f4bdb-209e-5303-9f89-3325a7afd82e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1500_demographic Dead '-- '-- '-- '-- 26172 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 425.0 '-- '-- a58dcbd5-4c7b-539d-929d-84006cef3d5d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1500_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 136 '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1500_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 161323cb-fec1-55d7-bacd-1a75f9530023 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a285786d-120e-4c88-b48b-8111f4413988 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1500 71 false '-- '-- '-- '-- -26172 425 c86f4bdb-209e-5303-9f89-3325a7afd82e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1500_demographic Dead '-- '-- '-- '-- 26172 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 425.0 '-- '-- a58dcbd5-4c7b-539d-929d-84006cef3d5d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1500_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 136 '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1500_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2abf689a-69df-4725-a529-2d552c7e0d80 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a285786d-120e-4c88-b48b-8111f4413988 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1500 71 false '-- '-- '-- '-- -26172 425 c86f4bdb-209e-5303-9f89-3325a7afd82e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1500_demographic Dead '-- '-- '-- '-- 26172 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 425.0 '-- '-- a58dcbd5-4c7b-539d-929d-84006cef3d5d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1500_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 225 197 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-1500_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 40 '-- mg/m2 '-- '-- '-- '-- 8a2d972d-c82f-4c9a-8c0a-ed2910a52443 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a285786d-120e-4c88-b48b-8111f4413988 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1500 71 false '-- '-- '-- '-- -26172 425 c86f4bdb-209e-5303-9f89-3325a7afd82e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1500_demographic Dead '-- '-- '-- '-- 26172 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 425.0 '-- '-- a58dcbd5-4c7b-539d-929d-84006cef3d5d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1500_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1500_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9eb32522-6134-4852-8f47-6cbd24182955 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV a36a4440-15ef-4837-904b-380a964d16f1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1844 64 false '-- '-- '-- '-- -23542 '-- 1364e963-dbbb-5881-a86a-ad660efa2898 '-- not reported female '-- '-- '-- '-- white TCGA-24-1844_demographic Alive '-- '-- '-- '-- 23542 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 113.0 '-- '-- 250e6c30-98ff-51b3-bc1f-cb87719b253c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1844_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 134 24 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1844_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- 405 '-- mg '-- '-- '-- '-- 2099c7d2-d8b3-42dd-b3cd-8aab764448f8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a36a4440-15ef-4837-904b-380a964d16f1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1844 64 false '-- '-- '-- '-- -23542 '-- 1364e963-dbbb-5881-a86a-ad660efa2898 '-- not reported female '-- '-- '-- '-- white TCGA-24-1844_demographic Alive '-- '-- '-- '-- 23542 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 113.0 '-- '-- 250e6c30-98ff-51b3-bc1f-cb87719b253c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1844_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1844_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5a2e3428-5268-46de-a3eb-bf67e1b89741 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV a36a4440-15ef-4837-904b-380a964d16f1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1844 64 false '-- '-- '-- '-- -23542 '-- 1364e963-dbbb-5881-a86a-ad660efa2898 '-- not reported female '-- '-- '-- '-- white TCGA-24-1844_demographic Alive '-- '-- '-- '-- 23542 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 113.0 '-- '-- 250e6c30-98ff-51b3-bc1f-cb87719b253c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1844_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 134 24 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1844_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1285 '-- mg '-- '-- '-- '-- cdc87da0-37fe-53d8-9ce0-60d6f76618d9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a36a4440-15ef-4837-904b-380a964d16f1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1844 64 false '-- '-- '-- '-- -23542 '-- 1364e963-dbbb-5881-a86a-ad660efa2898 '-- not reported female '-- '-- '-- '-- white TCGA-24-1844_demographic Alive '-- '-- '-- '-- 23542 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 113.0 '-- '-- 250e6c30-98ff-51b3-bc1f-cb87719b253c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1844_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 134 24 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1844_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2660 '-- mg '-- '-- '-- '-- d79e4c59-4d71-4155-8e42-34963719d247 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a3898640-0d85-441d-a000-b5b8ff857399 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1470 54 false '-- '-- '-- '-- -20007 '-- db352bc7-95c7-59df-a9fe-4655e1c409df '-- not reported female '-- '-- '-- '-- white TCGA-24-1470_demographic Alive '-- '-- '-- '-- 20007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 105.0 '-- '-- 7baca1af-8043-51b5-ab12-d87b025a8ded true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1470_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 83 17 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1470_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 593 '-- mg '-- '-- '-- '-- 445af3a9-3a77-4694-a572-8f67d16029e2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a3898640-0d85-441d-a000-b5b8ff857399 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1470 54 false '-- '-- '-- '-- -20007 '-- db352bc7-95c7-59df-a9fe-4655e1c409df '-- not reported female '-- '-- '-- '-- white TCGA-24-1470_demographic Alive '-- '-- '-- '-- 20007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 105.0 '-- '-- 7baca1af-8043-51b5-ab12-d87b025a8ded true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1470_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1470_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a9065bc0-02f2-4a7b-bacf-d4ce9fb1677f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV a3898640-0d85-441d-a000-b5b8ff857399 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1470 54 false '-- '-- '-- '-- -20007 '-- db352bc7-95c7-59df-a9fe-4655e1c409df '-- not reported female '-- '-- '-- '-- white TCGA-24-1470_demographic Alive '-- '-- '-- '-- 20007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 105.0 '-- '-- 7baca1af-8043-51b5-ab12-d87b025a8ded true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1470_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 83 17 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1470_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 110 '-- mg '-- '-- '-- '-- b9ed5cd1-6ede-4be6-a986-6ac0ecc1cbc2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a3898640-0d85-441d-a000-b5b8ff857399 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1470 54 false '-- '-- '-- '-- -20007 '-- db352bc7-95c7-59df-a9fe-4655e1c409df '-- not reported female '-- '-- '-- '-- white TCGA-24-1470_demographic Alive '-- '-- '-- '-- 20007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 105.0 '-- '-- 7baca1af-8043-51b5-ab12-d87b025a8ded true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1470_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 83 17 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1470_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- 475 '-- mg '-- '-- '-- '-- f4a5e8c4-7ce4-5a44-9abd-6942c0721e86 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a3e26259-732b-49fb-bc95-2f0ec7a0494e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1743 53 false '-- '-- '-- '-- -19365 1329 af7506f4-ac24-5171-bb5d-09f46567ea39 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1743_demographic Dead '-- '-- '-- '-- 20174 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 809 '-- '-- '-- 12e7d086-8b4e-4830-9ca6-ce8255dc2510 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1743_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1743_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1743_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4034e908-860e-40e6-b928-f91460cf2c74 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV a3e26259-732b-49fb-bc95-2f0ec7a0494e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1743 53 false '-- '-- '-- '-- -19365 1329 af7506f4-ac24-5171-bb5d-09f46567ea39 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1743_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1335e48b-e3cf-4ab2-b274-4a913e3a04c0 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1743_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1743_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 829 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1743_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2d84f4eb-ee8e-4a7c-931f-4b64acefbf56 '-- yes '-- '-- Surgery, NOS +TCGA-OV a3e26259-732b-49fb-bc95-2f0ec7a0494e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1743 53 false '-- '-- '-- '-- -19365 1329 af7506f4-ac24-5171-bb5d-09f46567ea39 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1743_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1335e48b-e3cf-4ab2-b274-4a913e3a04c0 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1743_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1743_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1743_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6fbfc52d-e2cf-4c69-83fa-e651a7061113 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV a3e26259-732b-49fb-bc95-2f0ec7a0494e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1743 53 false '-- '-- '-- '-- -19365 1329 af7506f4-ac24-5171-bb5d-09f46567ea39 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1743_demographic Dead '-- '-- '-- '-- 19365 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1329.0 '-- '-- 93edbb37-2471-5683-98b2-d48d3c5d10c7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1743_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 172 40 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1743_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 868a6882-778b-4016-83cb-9387bd7eae42 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a3e26259-732b-49fb-bc95-2f0ec7a0494e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1743 53 false '-- '-- '-- '-- -19365 1329 af7506f4-ac24-5171-bb5d-09f46567ea39 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1743_demographic Dead '-- '-- '-- '-- 19365 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1329.0 '-- '-- 93edbb37-2471-5683-98b2-d48d3c5d10c7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1743_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1743_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aab22c4e-9b87-41c1-94ed-94e18601c89a Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV a3e26259-732b-49fb-bc95-2f0ec7a0494e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1743 53 false '-- '-- '-- '-- -19365 1329 af7506f4-ac24-5171-bb5d-09f46567ea39 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1743_demographic Dead '-- '-- '-- '-- 19365 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1329.0 '-- '-- 93edbb37-2471-5683-98b2-d48d3c5d10c7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1743_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 172 40 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1743_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cd5d51f4-e605-5068-a5be-428d6c78155b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a5030259-cf9c-4a58-8710-b9da8ee59320 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0937 44 false '-- '-- '-- '-- -16222 608 ec4793f1-4af3-5052-bc55-d865c8d8a000 '-- not reported female '-- '-- '-- '-- white TCGA-10-0937_demographic Dead '-- '-- '-- '-- 16222 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 608.0 '-- '-- 4a6e1e14-2751-5cb3-b3b1-b559944ace34 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0937_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 146 33 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0937_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1980 '-- mg/m2 '-- '-- '-- '-- 08f4f458-fb4d-4cc7-9ef3-972d8477d64b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a5030259-cf9c-4a58-8710-b9da8ee59320 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0937 44 false '-- '-- '-- '-- -16222 608 ec4793f1-4af3-5052-bc55-d865c8d8a000 '-- not reported female '-- '-- '-- '-- white TCGA-10-0937_demographic Dead '-- '-- '-- '-- 16222 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 608.0 '-- '-- 4a6e1e14-2751-5cb3-b3b1-b559944ace34 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0937_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 146 33 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0937_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 3990 '-- mg/m2 '-- '-- '-- '-- 237d5a37-b0e1-50be-a0bc-5e78e355e012 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a5030259-cf9c-4a58-8710-b9da8ee59320 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0937 44 false '-- '-- '-- '-- -16222 608 ec4793f1-4af3-5052-bc55-d865c8d8a000 '-- not reported female '-- '-- '-- '-- white TCGA-10-0937_demographic Dead '-- '-- '-- '-- 16222 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 608.0 '-- '-- 4a6e1e14-2751-5cb3-b3b1-b559944ace34 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0937_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- 346 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0937_treatment4 Topotecan '-- '-- '-- '-- '-- '-- '-- 21 '-- mg/m2 '-- '-- '-- '-- 3a8f222f-66a0-4098-81af-bb66d5cf41df Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a5030259-cf9c-4a58-8710-b9da8ee59320 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0937 44 false '-- '-- '-- '-- -16222 608 ec4793f1-4af3-5052-bc55-d865c8d8a000 '-- not reported female '-- '-- '-- '-- white TCGA-10-0937_demographic Dead '-- '-- '-- '-- 16222 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 608.0 '-- '-- 4a6e1e14-2751-5cb3-b3b1-b559944ace34 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0937_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 296 244 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0937_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 140 '-- mg/m2 '-- '-- '-- '-- 79325dbf-42ac-4935-b9f6-3a106ecce47c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a5030259-cf9c-4a58-8710-b9da8ee59320 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0937 44 false '-- '-- '-- '-- -16222 608 ec4793f1-4af3-5052-bc55-d865c8d8a000 '-- not reported female '-- '-- '-- '-- white TCGA-10-0937_demographic Dead '-- '-- '-- '-- 16222 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 608.0 '-- '-- 4a6e1e14-2751-5cb3-b3b1-b559944ace34 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0937_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 451 '-- '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0937_treatment2 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 4176 '-- mg/m2 '-- '-- '-- '-- 800072eb-0169-47d8-b08f-3dddbb9ca38c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a5030259-cf9c-4a58-8710-b9da8ee59320 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0937 44 false '-- '-- '-- '-- -16222 608 ec4793f1-4af3-5052-bc55-d865c8d8a000 '-- not reported female '-- '-- '-- '-- white TCGA-10-0937_demographic Dead '-- '-- '-- '-- 16222 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 608.0 '-- '-- 4a6e1e14-2751-5cb3-b3b1-b559944ace34 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0937_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0937_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 88ef0764-8762-49e6-9c10-08c5cf1448ef Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV a5030259-cf9c-4a58-8710-b9da8ee59320 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0937 44 false '-- '-- '-- '-- -16222 608 ec4793f1-4af3-5052-bc55-d865c8d8a000 '-- not reported female '-- '-- '-- '-- white TCGA-10-0937_demographic Dead '-- '-- '-- '-- 16457 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 235 '-- '-- '-- b718638b-3fee-454a-a7c9-388ffb4589c1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0937_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0937_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0937_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3c757b27-e5e1-45ce-a5ec-4494531c0756 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV a5030259-cf9c-4a58-8710-b9da8ee59320 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0937 44 false '-- '-- '-- '-- -16222 608 ec4793f1-4af3-5052-bc55-d865c8d8a000 '-- not reported female '-- '-- '-- '-- white TCGA-10-0937_demographic Dead '-- '-- '-- '-- 16457 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 235 '-- '-- '-- b718638b-3fee-454a-a7c9-388ffb4589c1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0937_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0937_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0937_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9e92c71d-95a3-41f8-8979-c4068a90f4af '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV a6aad7f9-8444-4c2f-8e4b-b19fd453544f Informed Consent 38 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1361 57 false '-- '-- '-- '-- -20860 '-- 7640a9d1-04b1-5950-8139-52e731454d82 '-- not reported female '-- '-- '-- '-- white TCGA-04-1361_demographic Alive '-- '-- '-- '-- 21787 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 927 '-- '-- '-- 1dc00dd3-d1cf-495b-9578-f57d02344886 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1361_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1361_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1361_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0bc0cf39-f5ea-4cbe-b790-66d6cf291718 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV a6aad7f9-8444-4c2f-8e4b-b19fd453544f Informed Consent 38 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1361 57 false '-- '-- '-- '-- -20860 '-- 7640a9d1-04b1-5950-8139-52e731454d82 '-- not reported female '-- '-- '-- '-- white TCGA-04-1361_demographic Alive '-- '-- '-- '-- 21787 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 927 '-- '-- '-- 1dc00dd3-d1cf-495b-9578-f57d02344886 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1361_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1361_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1361_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1cb4161e-06c1-45d9-aba0-c2440d321add '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV a6aad7f9-8444-4c2f-8e4b-b19fd453544f Informed Consent 38 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1361 57 false '-- '-- '-- '-- -20860 '-- 7640a9d1-04b1-5950-8139-52e731454d82 '-- not reported female '-- '-- '-- '-- white TCGA-04-1361_demographic Alive '-- '-- '-- '-- 20860 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 989.0 '-- '-- 20329fd9-e669-5e99-8572-55ca9d382aec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1361_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1361_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5463c903-5fba-4e5a-b9f9-ccadfe1b559a Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV a6aad7f9-8444-4c2f-8e4b-b19fd453544f Informed Consent 38 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1361 57 false '-- '-- '-- '-- -20860 '-- 7640a9d1-04b1-5950-8139-52e731454d82 '-- not reported female '-- '-- '-- '-- white TCGA-04-1361_demographic Alive '-- '-- '-- '-- 20860 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 989.0 '-- '-- 20329fd9-e669-5e99-8572-55ca9d382aec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1361_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 844 53 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1361_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6570ce77-d90a-435d-8c8f-e36a9481002a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a6aad7f9-8444-4c2f-8e4b-b19fd453544f Informed Consent 38 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1361 57 false '-- '-- '-- '-- -20860 '-- 7640a9d1-04b1-5950-8139-52e731454d82 '-- not reported female '-- '-- '-- '-- white TCGA-04-1361_demographic Alive '-- '-- '-- '-- 20860 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 989.0 '-- '-- 20329fd9-e669-5e99-8572-55ca9d382aec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1361_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 844 53 '-- '-- '-- '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1361_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 919c412a-9363-54c4-bacf-d58a709a0a04 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a6aad7f9-8444-4c2f-8e4b-b19fd453544f Informed Consent 38 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1361 57 false '-- '-- '-- '-- -20860 '-- 7640a9d1-04b1-5950-8139-52e731454d82 '-- not reported female '-- '-- '-- '-- white TCGA-04-1361_demographic Alive '-- '-- '-- '-- 20860 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 989.0 '-- '-- 20329fd9-e669-5e99-8572-55ca9d382aec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1361_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 989 936 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1361_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9ad212cc-d96d-43fa-b010-753f261cc40d '-- yes '-- '-- Chemotherapy +TCGA-OV a6aad7f9-8444-4c2f-8e4b-b19fd453544f Informed Consent 38 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1361 57 false '-- '-- '-- '-- -20860 '-- 7640a9d1-04b1-5950-8139-52e731454d82 '-- not reported female '-- '-- '-- '-- white TCGA-04-1361_demographic Alive '-- '-- '-- '-- 20860 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 989.0 '-- '-- 20329fd9-e669-5e99-8572-55ca9d382aec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1361_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 989 936 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1361_treatment2 Bevacizumab '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cf4aef04-0e46-4f75-be30-1d40abdc6c22 '-- yes '-- '-- Immunotherapy (Including Vaccines) +TCGA-OV a6aad7f9-8444-4c2f-8e4b-b19fd453544f Informed Consent 38 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1361 57 false '-- '-- '-- '-- -20860 '-- 7640a9d1-04b1-5950-8139-52e731454d82 '-- not reported female '-- '-- '-- '-- white TCGA-04-1361_demographic Alive '-- '-- '-- '-- 20860 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 989.0 '-- '-- 20329fd9-e669-5e99-8572-55ca9d382aec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1361_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 844 53 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1361_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fc4deb2f-deb7-4971-b254-c70a3caa30ab Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a6eb0cd0-fe57-41b0-8593-776208684293 Informed Consent 195 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1725 40 false '-- '-- '-- '-- -14782 '-- 1567ed8d-6ce0-5fab-b6a3-901c244c2235 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1725_demographic Alive '-- '-- '-- '-- 14782 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 956.0 '-- '-- 9ff03257-e85c-5449-95be-ea2f7d51e27d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1725_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1725_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0115e5ce-b8f6-48b6-a3ee-5550206448d6 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV a6eb0cd0-fe57-41b0-8593-776208684293 Informed Consent 195 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1725 40 false '-- '-- '-- '-- -14782 '-- 1567ed8d-6ce0-5fab-b6a3-901c244c2235 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1725_demographic Alive '-- '-- '-- '-- 14782 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 956.0 '-- '-- 9ff03257-e85c-5449-95be-ea2f7d51e27d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1725_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 908 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1725_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4368 '-- mg '-- '-- '-- '-- 136687be-739e-47f7-829c-0096da4c451f '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV a6eb0cd0-fe57-41b0-8593-776208684293 Informed Consent 195 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1725 40 false '-- '-- '-- '-- -14782 '-- 1567ed8d-6ce0-5fab-b6a3-901c244c2235 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1725_demographic Alive '-- '-- '-- '-- 14782 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 956.0 '-- '-- 9ff03257-e85c-5449-95be-ea2f7d51e27d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1725_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 158 45 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-1725_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 585 '-- mg '-- '-- '-- '-- 39ca8e1b-2ec6-4294-b097-905aa24edef8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a6eb0cd0-fe57-41b0-8593-776208684293 Informed Consent 195 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1725 40 false '-- '-- '-- '-- -14782 '-- 1567ed8d-6ce0-5fab-b6a3-901c244c2235 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1725_demographic Alive '-- '-- '-- '-- 14782 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 956.0 '-- '-- 9ff03257-e85c-5449-95be-ea2f7d51e27d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1725_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 158 45 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-1725_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 456 '-- mg '-- '-- '-- '-- 856b5273-652c-4b8e-84df-7529b2d86e81 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a6eb0cd0-fe57-41b0-8593-776208684293 Informed Consent 195 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1725 40 false '-- '-- '-- '-- -14782 '-- 1567ed8d-6ce0-5fab-b6a3-901c244c2235 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1725_demographic Alive '-- '-- '-- '-- 14782 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 956.0 '-- '-- 9ff03257-e85c-5449-95be-ea2f7d51e27d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1725_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 158 45 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-1725_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1548 '-- mg '-- '-- '-- '-- d5198be0-1414-55b3-98ae-cbb0ea820f6a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a6eb0cd0-fe57-41b0-8593-776208684293 Informed Consent 195 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1725 40 false '-- '-- '-- '-- -14782 '-- 1567ed8d-6ce0-5fab-b6a3-901c244c2235 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1725_demographic Alive '-- '-- '-- '-- 14782 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 956.0 '-- '-- 9ff03257-e85c-5449-95be-ea2f7d51e27d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1725_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 908 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1725_treatment4 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 8550 '-- mg '-- '-- '-- '-- e50b8113-d861-4305-a132-86de2f88448b '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV a6eb0cd0-fe57-41b0-8593-776208684293 Informed Consent 195 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1725 40 false '-- '-- '-- '-- -14782 '-- 1567ed8d-6ce0-5fab-b6a3-901c244c2235 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1725_demographic Alive '-- '-- '-- '-- 14782 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 956.0 '-- '-- 9ff03257-e85c-5449-95be-ea2f7d51e27d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1725_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 577 235 '-- '-- '-- '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1725_treatment7 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 3204 '-- mg '-- '-- '-- '-- f9a88eeb-6162-4af1-b5ae-67fee8ff36b0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a6eb0cd0-fe57-41b0-8593-776208684293 Informed Consent 195 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1725 40 false '-- '-- '-- '-- -14782 '-- 1567ed8d-6ce0-5fab-b6a3-901c244c2235 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1725_demographic Alive '-- '-- '-- '-- 14782 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 956.0 '-- '-- 9ff03257-e85c-5449-95be-ea2f7d51e27d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1725_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 908 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1725_treatment6 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 2400 '-- mg '-- '-- '-- '-- fbe5a8cf-bc1f-4ffe-aaf3-e22b95442b42 '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV a6eb0cd0-fe57-41b0-8593-776208684293 Informed Consent 195 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1725 40 false '-- '-- '-- '-- -14782 '-- 1567ed8d-6ce0-5fab-b6a3-901c244c2235 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1725_demographic Alive '-- '-- '-- '-- 15626 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 844 '-- '-- '-- a7393f85-f02e-4611-89ec-eb9fd5cab012 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1725_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1725_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1725_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 42548121-0ebe-49b0-a701-a44758b89e91 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV a6eb0cd0-fe57-41b0-8593-776208684293 Informed Consent 195 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1725 40 false '-- '-- '-- '-- -14782 '-- 1567ed8d-6ce0-5fab-b6a3-901c244c2235 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1725_demographic Alive '-- '-- '-- '-- 15626 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 844 '-- '-- '-- a7393f85-f02e-4611-89ec-eb9fd5cab012 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1725_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1725_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1725_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cdd33115-9d17-4b86-9529-0928ca0f09cb '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV a782352e-c4bb-4c3e-ba82-456a47c3689a Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1845 42 false '-- '-- '-- '-- -15599 '-- 4992063f-c38e-540f-852c-da0c5b9e027b '-- not reported female '-- '-- '-- '-- white TCGA-24-1845_demographic Alive '-- '-- '-- '-- 15599 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 116.0 '-- '-- 77f2d86e-3e74-5e0b-a3b4-dc55a7d1702e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1845_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 123 72 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1845_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 118 '-- mg '-- '-- '-- '-- 171e719a-d0c0-45df-8e69-ff043ec62acd Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a782352e-c4bb-4c3e-ba82-456a47c3689a Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1845 42 false '-- '-- '-- '-- -15599 '-- 4992063f-c38e-540f-852c-da0c5b9e027b '-- not reported female '-- '-- '-- '-- white TCGA-24-1845_demographic Alive '-- '-- '-- '-- 15599 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 116.0 '-- '-- 77f2d86e-3e74-5e0b-a3b4-dc55a7d1702e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1845_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 123 72 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1845_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- 603 '-- mg '-- '-- '-- '-- 7d9db0d7-056f-553a-9d8a-fbfb7f7b2e67 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a782352e-c4bb-4c3e-ba82-456a47c3689a Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1845 42 false '-- '-- '-- '-- -15599 '-- 4992063f-c38e-540f-852c-da0c5b9e027b '-- not reported female '-- '-- '-- '-- white TCGA-24-1845_demographic Alive '-- '-- '-- '-- 15599 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 116.0 '-- '-- 77f2d86e-3e74-5e0b-a3b4-dc55a7d1702e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1845_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 123 72 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1845_treatment4 Cisplatin '-- '-- '-- '-- '-- '-- '-- 469 '-- mg '-- '-- '-- '-- 97c8a850-f7dd-48a0-9bbe-22a5bef0e33f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a782352e-c4bb-4c3e-ba82-456a47c3689a Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1845 42 false '-- '-- '-- '-- -15599 '-- 4992063f-c38e-540f-852c-da0c5b9e027b '-- not reported female '-- '-- '-- '-- white TCGA-24-1845_demographic Alive '-- '-- '-- '-- 15599 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 116.0 '-- '-- 77f2d86e-3e74-5e0b-a3b4-dc55a7d1702e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1845_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1845_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 99b3ad36-8baa-49d4-b50f-08309a8bf85d Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV a782352e-c4bb-4c3e-ba82-456a47c3689a Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1845 42 false '-- '-- '-- '-- -15599 '-- 4992063f-c38e-540f-852c-da0c5b9e027b '-- not reported female '-- '-- '-- '-- white TCGA-24-1845_demographic Alive '-- '-- '-- '-- 15599 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 116.0 '-- '-- 77f2d86e-3e74-5e0b-a3b4-dc55a7d1702e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1845_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 123 72 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1845_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1169 '-- mg '-- '-- '-- '-- a7a5b490-017e-4229-aa9c-d3d97344df9a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a85f6f9c-1e1d-44fc-85eb-3b2d96cfbc61 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1488 59 false '-- '-- '-- '-- -21726 2154 b6bd947a-dae0-5ef3-905e-02630b777a39 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1488_demographic Dead '-- '-- '-- '-- 21726 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2154.0 '-- '-- 04ce8f92-1262-5b87-9371-5b7f0e7d3f5f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1488_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 165 8 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1488_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 1773f89d-ed73-5734-a705-e5272bf0c60c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a85f6f9c-1e1d-44fc-85eb-3b2d96cfbc61 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1488 59 false '-- '-- '-- '-- -21726 2154 b6bd947a-dae0-5ef3-905e-02630b777a39 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1488_demographic Dead '-- '-- '-- '-- 21726 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2154.0 '-- '-- 04ce8f92-1262-5b87-9371-5b7f0e7d3f5f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1488_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1488_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bdf62272-486f-458a-b712-1aa4f83eebbf Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV a85f6f9c-1e1d-44fc-85eb-3b2d96cfbc61 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1488 59 false '-- '-- '-- '-- -21726 2154 b6bd947a-dae0-5ef3-905e-02630b777a39 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1488_demographic Dead '-- '-- '-- '-- 21726 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2154.0 '-- '-- 04ce8f92-1262-5b87-9371-5b7f0e7d3f5f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1488_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 165 8 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1488_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f30f1096-75cc-408f-9cea-f727f72634e0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a85f6f9c-1e1d-44fc-85eb-3b2d96cfbc61 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1488 59 false '-- '-- '-- '-- -21726 2154 b6bd947a-dae0-5ef3-905e-02630b777a39 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1488_demographic Dead '-- '-- '-- '-- 22077 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 351 '-- '-- '-- 5e28d4be-c413-4a06-ae0b-bd440928aaf9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1488_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1488_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1488_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1b99f2d4-c818-4023-99f2-45ba9719f1ee '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV a85f6f9c-1e1d-44fc-85eb-3b2d96cfbc61 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1488 59 false '-- '-- '-- '-- -21726 2154 b6bd947a-dae0-5ef3-905e-02630b777a39 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1488_demographic Dead '-- '-- '-- '-- 22077 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 351 '-- '-- '-- 5e28d4be-c413-4a06-ae0b-bd440928aaf9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1488_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1488_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1488_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7105a32a-700f-465d-90d0-a105676f1672 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV a88b7e66-5f12-4023-a7e2-fcfbd1f25977 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1117 42 false '-- '-- '-- '-- -15690 1013 fb803fd2-c7f1-53fb-89fe-79463843d1cc '-- not reported female '-- '-- '-- '-- white TCGA-23-1117_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6ba0ba8c-234f-40e2-9e27-d0b8edf192d8 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1117_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1117_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 438 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1117_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 023b90df-98f8-4c84-86ff-7b0cb6ce69cb '-- yes '-- '-- Surgery, NOS +TCGA-OV a88b7e66-5f12-4023-a7e2-fcfbd1f25977 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1117 42 false '-- '-- '-- '-- -15690 1013 fb803fd2-c7f1-53fb-89fe-79463843d1cc '-- not reported female '-- '-- '-- '-- white TCGA-23-1117_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6ba0ba8c-234f-40e2-9e27-d0b8edf192d8 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1117_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1117_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1117_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 501efe9a-430d-4d48-8f3a-50cc60d276d4 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV a88b7e66-5f12-4023-a7e2-fcfbd1f25977 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1117 42 false '-- '-- '-- '-- -15690 1013 fb803fd2-c7f1-53fb-89fe-79463843d1cc '-- not reported female '-- '-- '-- '-- white TCGA-23-1117_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6ba0ba8c-234f-40e2-9e27-d0b8edf192d8 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1117_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1117_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1117_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c22ffbf3-da48-4551-b035-7f0d2f55f15a '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV a88b7e66-5f12-4023-a7e2-fcfbd1f25977 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1117 42 false '-- '-- '-- '-- -15690 1013 fb803fd2-c7f1-53fb-89fe-79463843d1cc '-- not reported female '-- '-- '-- '-- white TCGA-23-1117_demographic Dead '-- '-- '-- '-- 16108 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 418 '-- '-- '-- cafe442a-c0e8-47b3-a588-0e2d1ba25689 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1117_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1117_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1117_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ad7bfc44-d8d7-4035-aabb-7c4bd5229083 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV a88b7e66-5f12-4023-a7e2-fcfbd1f25977 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1117 42 false '-- '-- '-- '-- -15690 1013 fb803fd2-c7f1-53fb-89fe-79463843d1cc '-- not reported female '-- '-- '-- '-- white TCGA-23-1117_demographic Dead '-- '-- '-- '-- 16108 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 418 '-- '-- '-- cafe442a-c0e8-47b3-a588-0e2d1ba25689 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1117_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1117_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1117_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d35c1de9-222f-40ff-b971-680ec4fdf8eb '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV a88b7e66-5f12-4023-a7e2-fcfbd1f25977 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1117 42 false '-- '-- '-- '-- -15690 1013 fb803fd2-c7f1-53fb-89fe-79463843d1cc '-- not reported female '-- '-- '-- '-- white TCGA-23-1117_demographic Dead '-- '-- '-- '-- 15690 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1013.0 '-- '-- d3f4569b-a0a4-5f2a-970d-1a38d9dc95be true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1117_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 294 22 '-- '-- '-- '-- '-- '-- '-- 11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1117_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6470 '-- mg '-- '-- '-- '-- 0ab22581-2f61-4031-807f-6de024e8f814 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a88b7e66-5f12-4023-a7e2-fcfbd1f25977 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1117 42 false '-- '-- '-- '-- -15690 1013 fb803fd2-c7f1-53fb-89fe-79463843d1cc '-- not reported female '-- '-- '-- '-- white TCGA-23-1117_demographic Dead '-- '-- '-- '-- 15690 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1013.0 '-- '-- d3f4569b-a0a4-5f2a-970d-1a38d9dc95be true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1117_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 928 890 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1117_treatment7 Trastuzumab '-- '-- '-- '-- '-- '-- '-- 600 '-- mg '-- '-- '-- '-- 1cb310f4-1183-495e-9f23-b4c722925523 '-- yes '-- '-- Immunotherapy (Including Vaccines) +TCGA-OV a88b7e66-5f12-4023-a7e2-fcfbd1f25977 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1117 42 false '-- '-- '-- '-- -15690 1013 fb803fd2-c7f1-53fb-89fe-79463843d1cc '-- not reported female '-- '-- '-- '-- white TCGA-23-1117_demographic Dead '-- '-- '-- '-- 15690 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1013.0 '-- '-- d3f4569b-a0a4-5f2a-970d-1a38d9dc95be true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1117_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 993 951 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1117_treatment3 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 3960 '-- mg '-- '-- '-- '-- 405af401-60c5-4e3d-a7e7-4831c80402f4 '-- yes '-- '-- Chemotherapy +TCGA-OV a88b7e66-5f12-4023-a7e2-fcfbd1f25977 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1117 42 false '-- '-- '-- '-- -15690 1013 fb803fd2-c7f1-53fb-89fe-79463843d1cc '-- not reported female '-- '-- '-- '-- white TCGA-23-1117_demographic Dead '-- '-- '-- '-- 15690 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1013.0 '-- '-- d3f4569b-a0a4-5f2a-970d-1a38d9dc95be true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1117_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 928 890 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1117_treatment5 Docetaxel '-- '-- '-- '-- '-- '-- '-- 280 '-- mg '-- '-- '-- '-- 59c0f139-503a-457e-8788-7100df8ee601 '-- yes '-- '-- Chemotherapy +TCGA-OV a88b7e66-5f12-4023-a7e2-fcfbd1f25977 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1117 42 false '-- '-- '-- '-- -15690 1013 fb803fd2-c7f1-53fb-89fe-79463843d1cc '-- not reported female '-- '-- '-- '-- white TCGA-23-1117_demographic Dead '-- '-- '-- '-- 15690 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1013.0 '-- '-- d3f4569b-a0a4-5f2a-970d-1a38d9dc95be true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1117_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1117_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b06ecedf-d268-4584-bf20-ff11fbc9b32d Adjuvant yes Complete Response '-- Radiation Therapy, NOS +TCGA-OV a88b7e66-5f12-4023-a7e2-fcfbd1f25977 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1117 42 false '-- '-- '-- '-- -15690 1013 fb803fd2-c7f1-53fb-89fe-79463843d1cc '-- not reported female '-- '-- '-- '-- white TCGA-23-1117_demographic Dead '-- '-- '-- '-- 15690 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1013.0 '-- '-- d3f4569b-a0a4-5f2a-970d-1a38d9dc95be true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1117_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 863 781 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1117_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 600 '-- mg '-- '-- '-- '-- b1dcd9c6-c993-56ef-baf9-ab149978bf7b '-- yes '-- '-- Chemotherapy +TCGA-OV a88b7e66-5f12-4023-a7e2-fcfbd1f25977 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1117 42 false '-- '-- '-- '-- -15690 1013 fb803fd2-c7f1-53fb-89fe-79463843d1cc '-- not reported female '-- '-- '-- '-- white TCGA-23-1117_demographic Dead '-- '-- '-- '-- 15690 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1013.0 '-- '-- d3f4569b-a0a4-5f2a-970d-1a38d9dc95be true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1117_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 757 712 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1117_treatment2 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 3450 '-- mg '-- '-- '-- '-- d4cc240d-ae2a-46be-878e-3cf7e64ba327 '-- yes '-- '-- Chemotherapy +TCGA-OV a88b7e66-5f12-4023-a7e2-fcfbd1f25977 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1117 42 false '-- '-- '-- '-- -15690 1013 fb803fd2-c7f1-53fb-89fe-79463843d1cc '-- not reported female '-- '-- '-- '-- white TCGA-23-1117_demographic Dead '-- '-- '-- '-- 15690 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1013.0 '-- '-- d3f4569b-a0a4-5f2a-970d-1a38d9dc95be true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1117_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 624 459 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1117_treatment4 Topotecan '-- '-- '-- '-- '-- '-- '-- 92 '-- mg '-- '-- '-- '-- f6893b1a-0dbf-40f1-9aaf-0fe86b3e5f8d '-- yes '-- '-- Chemotherapy +TCGA-OV a8c4a333-6b67-44c8-9000-516f8ccea788 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2271 55 false '-- '-- '-- '-- -20399 962 ade57b50-0f6f-525d-b4d9-895575ae7a36 '-- not reported female '-- '-- '-- '-- asian TCGA-24-2271_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 01d0842c-eaa0-4aaf-a557-6a482c619c8e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2271_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2271_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2271_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5ce9a5a0-145c-40d7-99ec-d96af0868739 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV a8c4a333-6b67-44c8-9000-516f8ccea788 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2271 55 false '-- '-- '-- '-- -20399 962 ade57b50-0f6f-525d-b4d9-895575ae7a36 '-- not reported female '-- '-- '-- '-- asian TCGA-24-2271_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 01d0842c-eaa0-4aaf-a557-6a482c619c8e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2271_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2271_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2271_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5e66868a-e1ff-4554-931c-3c971c223c93 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV a8c4a333-6b67-44c8-9000-516f8ccea788 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2271 55 false '-- '-- '-- '-- -20399 962 ade57b50-0f6f-525d-b4d9-895575ae7a36 '-- not reported female '-- '-- '-- '-- asian TCGA-24-2271_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 01d0842c-eaa0-4aaf-a557-6a482c619c8e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2271_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2271_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 22 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2271_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 870b4b25-54da-4479-92d8-f172adf8d81a '-- yes '-- '-- Surgery, NOS +TCGA-OV a8c4a333-6b67-44c8-9000-516f8ccea788 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2271 55 false '-- '-- '-- '-- -20399 962 ade57b50-0f6f-525d-b4d9-895575ae7a36 '-- not reported female '-- '-- '-- '-- asian TCGA-24-2271_demographic Dead '-- '-- '-- '-- 21226 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 827 '-- '-- '-- 44c70399-2580-41f2-ab4a-2ac5a975e161 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2271_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2271_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2271_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2dec379f-5e11-459a-9b69-bf8b1a6c3c65 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV a8c4a333-6b67-44c8-9000-516f8ccea788 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2271 55 false '-- '-- '-- '-- -20399 962 ade57b50-0f6f-525d-b4d9-895575ae7a36 '-- not reported female '-- '-- '-- '-- asian TCGA-24-2271_demographic Dead '-- '-- '-- '-- 21226 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 827 '-- '-- '-- 44c70399-2580-41f2-ab4a-2ac5a975e161 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2271_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2271_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2271_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d3facc58-696d-4e82-95d6-732f800bc609 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV a8c4a333-6b67-44c8-9000-516f8ccea788 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2271 55 false '-- '-- '-- '-- -20399 962 ade57b50-0f6f-525d-b4d9-895575ae7a36 '-- not reported female '-- '-- '-- '-- asian TCGA-24-2271_demographic Dead '-- '-- '-- '-- 20399 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 962.0 '-- '-- ae67d486-7f72-5338-90a8-592460e5a8d4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2271_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2271_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 82203de9-9821-59e2-80b1-afd36bf7da68 '-- yes '-- '-- Chemotherapy +TCGA-OV a8c4a333-6b67-44c8-9000-516f8ccea788 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2271 55 false '-- '-- '-- '-- -20399 962 ade57b50-0f6f-525d-b4d9-895575ae7a36 '-- not reported female '-- '-- '-- '-- asian TCGA-24-2271_demographic Dead '-- '-- '-- '-- 20399 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 962.0 '-- '-- ae67d486-7f72-5338-90a8-592460e5a8d4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2271_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2271_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9f9dec84-d9bd-4981-a697-d90c8dce44ec Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV a8c4a333-6b67-44c8-9000-516f8ccea788 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2271 55 false '-- '-- '-- '-- -20399 962 ade57b50-0f6f-525d-b4d9-895575ae7a36 '-- not reported female '-- '-- '-- '-- asian TCGA-24-2271_demographic Dead '-- '-- '-- '-- 20399 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 962.0 '-- '-- ae67d486-7f72-5338-90a8-592460e5a8d4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2271_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2271_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d8dc06c5-d079-400f-9e32-153e32dbed5f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a9abe7a7-4126-414b-87d2-a6d25abcf1fa '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0724 72 false '-- '-- '-- '-- -26342 83 f7209024-2212-57c6-a911-814f868dded7 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-13-0724_demographic Dead '-- '-- '-- '-- 26425 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 83 '-- '-- '-- b4836b5f-972c-4098-b4a5-2fa16e79dacd false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0724_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0724_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0724_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 03f77fe9-683d-4831-bd0c-e50d96627987 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV a9abe7a7-4126-414b-87d2-a6d25abcf1fa '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0724 72 false '-- '-- '-- '-- -26342 83 f7209024-2212-57c6-a911-814f868dded7 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-13-0724_demographic Dead '-- '-- '-- '-- 26425 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 83 '-- '-- '-- b4836b5f-972c-4098-b4a5-2fa16e79dacd false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0724_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0724_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0724_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- eb88500c-daaa-42b5-965f-c02c9b802855 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV a9abe7a7-4126-414b-87d2-a6d25abcf1fa '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0724 72 false '-- '-- '-- '-- -26342 83 f7209024-2212-57c6-a911-814f868dded7 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-13-0724_demographic Dead '-- '-- '-- '-- 26342 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 83.0 '-- '-- b91001a3-8a3f-5dfc-8ec8-33576a6f86c7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0724_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 75 75 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0724_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 18f395e7-41cf-5bc5-ae77-985e648fbed5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a9abe7a7-4126-414b-87d2-a6d25abcf1fa '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0724 72 false '-- '-- '-- '-- -26342 83 f7209024-2212-57c6-a911-814f868dded7 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-13-0724_demographic Dead '-- '-- '-- '-- 26342 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 83.0 '-- '-- b91001a3-8a3f-5dfc-8ec8-33576a6f86c7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Excisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0724_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0724_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b528b3d3-0766-401e-9d30-d9702ca83da3 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV a9d3a7b0-faf8-4e56-8600-d9e6882a4f23 Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1411 81 false '-- '-- '-- '-- -29874 531 27139b74-ed7d-5c9a-a505-c3f8562efbce '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1411_demographic Dead '-- '-- '-- '-- 30112 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 238 '-- '-- '-- 2f4833c6-0f31-4b29-b154-e8359b605de1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1411_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1411_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV a9d3a7b0-faf8-4e56-8600-d9e6882a4f23 Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1411 81 false '-- '-- '-- '-- -29874 531 27139b74-ed7d-5c9a-a505-c3f8562efbce '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1411_demographic Dead '-- '-- '-- '-- 29874 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 531.0 '-- '-- 33ef06dd-c3cb-5ba0-b224-c83af2b6171b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1411_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 128 8 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1411_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0023c0f9-b6fb-5ead-b992-e0e4f116abb0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV a9d3a7b0-faf8-4e56-8600-d9e6882a4f23 Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1411 81 false '-- '-- '-- '-- -29874 531 27139b74-ed7d-5c9a-a505-c3f8562efbce '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1411_demographic Dead '-- '-- '-- '-- 29874 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 531.0 '-- '-- 33ef06dd-c3cb-5ba0-b224-c83af2b6171b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1411_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1411_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 05bbd2e0-c939-4d44-8d12-d2023c5ea14d Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV a9d3a7b0-faf8-4e56-8600-d9e6882a4f23 Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1411 81 false '-- '-- '-- '-- -29874 531 27139b74-ed7d-5c9a-a505-c3f8562efbce '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1411_demographic Dead '-- '-- '-- '-- 29874 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 531.0 '-- '-- 33ef06dd-c3cb-5ba0-b224-c83af2b6171b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1411_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 128 8 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1411_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- aaf1e076-7d88-4d48-92b1-cefb3dbb2b93 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ab3dbbbe-eed6-4a35-a505-1815225e86c9 Informed Consent '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1335 60 false '-- '-- '-- '-- -21963 55 e6acce8e-ae80-5f1b-846a-24a6d203fe5a '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-04-1335_demographic Dead '-- '-- '-- '-- 21963 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 55.0 '-- '-- 6b85d6f6-ccfe-52b4-bda8-978fbc7c69a3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1335_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1335_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1fa45aff-ddb1-4e45-8407-045edcf96900 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ab3dbbbe-eed6-4a35-a505-1815225e86c9 Informed Consent '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1335 60 false '-- '-- '-- '-- -21963 55 e6acce8e-ae80-5f1b-846a-24a6d203fe5a '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-04-1335_demographic Dead '-- '-- '-- '-- 21963 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 55.0 '-- '-- 6b85d6f6-ccfe-52b4-bda8-978fbc7c69a3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1335_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1335_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b707ab28-4407-5d44-b7a4-2f67ca1222dc Adjuvant no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV ac2e88ff-8b1e-4691-9a96-5a581f98d827 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1683 65 false '-- '-- '-- '-- -24006 '-- 7ca939fc-90ab-59cf-bf58-f423d134465e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1683_demographic Alive '-- '-- '-- '-- 24624 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 618 '-- '-- '-- 06542bee-6ecf-4857-855a-135a278c5a69 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-20-1683_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-20-1683_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-20-1683_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 761fbadd-9d25-4cd6-a1ee-e6c05e5bdd4f '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ac2e88ff-8b1e-4691-9a96-5a581f98d827 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1683 65 false '-- '-- '-- '-- -24006 '-- 7ca939fc-90ab-59cf-bf58-f423d134465e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1683_demographic Alive '-- '-- '-- '-- 24624 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 618 '-- '-- '-- 06542bee-6ecf-4857-855a-135a278c5a69 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-20-1683_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-20-1683_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-20-1683_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c49b2084-b9ac-4e13-af22-64a0b7cfb1ed '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV ac2e88ff-8b1e-4691-9a96-5a581f98d827 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1683 65 false '-- '-- '-- '-- -24006 '-- 7ca939fc-90ab-59cf-bf58-f423d134465e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1683_demographic Alive '-- '-- '-- '-- 24006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 772.0 '-- '-- b3cd76a3-af1c-573b-b5fc-42c3ee779e66 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1683_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 135 17 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-1683_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 3d9625df-f84e-46b5-a83d-2f7a8d4d5167 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ac2e88ff-8b1e-4691-9a96-5a581f98d827 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1683 65 false '-- '-- '-- '-- -24006 '-- 7ca939fc-90ab-59cf-bf58-f423d134465e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1683_demographic Alive '-- '-- '-- '-- 24006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 772.0 '-- '-- b3cd76a3-af1c-573b-b5fc-42c3ee779e66 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1683_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 618 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-20-1683_treatment3 Tamoxifen '-- '-- '-- '-- '-- '-- '-- 20 '-- mg '-- '-- '-- '-- a99c568b-18f0-4bc7-95b7-5fe762753777 Adjuvant yes Treatment Ongoing '-- Hormone Therapy +TCGA-OV ac2e88ff-8b1e-4691-9a96-5a581f98d827 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1683 65 false '-- '-- '-- '-- -24006 '-- 7ca939fc-90ab-59cf-bf58-f423d134465e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1683_demographic Alive '-- '-- '-- '-- 24006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 772.0 '-- '-- b3cd76a3-af1c-573b-b5fc-42c3ee779e66 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1683_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 135 17 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-1683_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- c145f10f-6028-5b8b-9b46-43b0d9d01105 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ac2e88ff-8b1e-4691-9a96-5a581f98d827 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1683 65 false '-- '-- '-- '-- -24006 '-- 7ca939fc-90ab-59cf-bf58-f423d134465e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1683_demographic Alive '-- '-- '-- '-- 24006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 772.0 '-- '-- b3cd76a3-af1c-573b-b5fc-42c3ee779e66 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1683_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-20-1683_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f0d667fc-0ff3-4ff1-983f-1b97d84e7088 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV acb7ec56-8a47-495f-a11b-2c9fb5d8fe95 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1107 59 false '-- '-- '-- '-- -21561 9 a11794df-2f45-5422-bff0-439ff680ce2d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1107_demographic Dead '-- '-- '-- '-- 21561 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 9.0 '-- '-- c5596e3d-d994-5f01-98ef-e04beffcc90b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1107_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1107_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 73b0ab2b-8e76-4b2a-beef-4b54c6d1f81e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV acb7ec56-8a47-495f-a11b-2c9fb5d8fe95 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1107 59 false '-- '-- '-- '-- -21561 9 a11794df-2f45-5422-bff0-439ff680ce2d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1107_demographic Dead '-- '-- '-- '-- 21561 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 9.0 '-- '-- c5596e3d-d994-5f01-98ef-e04beffcc90b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1107_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1107_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ff33860a-fae6-5bfe-abe3-29eb0f909303 Adjuvant no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV ad2939e6-b8b8-475a-90e2-6a369c3d3167 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1718 44 false '-- '-- '-- '-- -16400 1579 af0f012e-4f9b-5984-9ca8-278a4b50c0ce '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1718_demographic Dead '-- '-- '-- '-- 16400 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1579.0 '-- '-- a8f15bcc-2d2b-58da-adf9-fe2277971d9e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1718_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1718_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 03b3b1bd-5e6f-47a5-8cee-448e77bc6e6f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ad2939e6-b8b8-475a-90e2-6a369c3d3167 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1718 44 false '-- '-- '-- '-- -16400 1579 af0f012e-4f9b-5984-9ca8-278a4b50c0ce '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1718_demographic Dead '-- '-- '-- '-- 16400 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1579.0 '-- '-- a8f15bcc-2d2b-58da-adf9-fe2277971d9e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1718_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 492 206 '-- '-- '-- '-- '-- '-- '-- 11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1718_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 17cbc288-edde-54bb-a604-7b7421ba7b73 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ad2939e6-b8b8-475a-90e2-6a369c3d3167 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1718 44 false '-- '-- '-- '-- -16400 1579 af0f012e-4f9b-5984-9ca8-278a4b50c0ce '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1718_demographic Dead '-- '-- '-- '-- 16400 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1579.0 '-- '-- a8f15bcc-2d2b-58da-adf9-fe2277971d9e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1718_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1718_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1e1c9bb6-da2a-4575-a198-da9f1237e74f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ad2939e6-b8b8-475a-90e2-6a369c3d3167 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1718 44 false '-- '-- '-- '-- -16400 1579 af0f012e-4f9b-5984-9ca8-278a4b50c0ce '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1718_demographic Dead '-- '-- '-- '-- 16400 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1579.0 '-- '-- a8f15bcc-2d2b-58da-adf9-fe2277971d9e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1718_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1718_treatment2 Altretamine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5e7bd0e0-d85b-49f8-9797-864460c78a36 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ad2939e6-b8b8-475a-90e2-6a369c3d3167 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1718 44 false '-- '-- '-- '-- -16400 1579 af0f012e-4f9b-5984-9ca8-278a4b50c0ce '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1718_demographic Dead '-- '-- '-- '-- 16400 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1579.0 '-- '-- a8f15bcc-2d2b-58da-adf9-fe2277971d9e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1718_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 178 31 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1718_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b1a7fd43-8292-4a76-858f-b5d680287445 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ad2939e6-b8b8-475a-90e2-6a369c3d3167 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1718 44 false '-- '-- '-- '-- -16400 1579 af0f012e-4f9b-5984-9ca8-278a4b50c0ce '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1718_demographic Dead '-- '-- '-- '-- 16400 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1579.0 '-- '-- a8f15bcc-2d2b-58da-adf9-fe2277971d9e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1718_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 896 865 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1718_treatment4 Tamoxifen '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d0ab8730-72a3-4dee-980b-c610e4797fe7 Adjuvant yes '-- '-- Hormone Therapy +TCGA-OV ad2939e6-b8b8-475a-90e2-6a369c3d3167 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1718 44 false '-- '-- '-- '-- -16400 1579 af0f012e-4f9b-5984-9ca8-278a4b50c0ce '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1718_demographic Dead '-- '-- '-- '-- 16400 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1579.0 '-- '-- a8f15bcc-2d2b-58da-adf9-fe2277971d9e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1718_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1718_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fbce0faa-8d82-4f37-8b3e-9f01be7bdfaf Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ad2939e6-b8b8-475a-90e2-6a369c3d3167 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1718 44 false '-- '-- '-- '-- -16400 1579 af0f012e-4f9b-5984-9ca8-278a4b50c0ce '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1718_demographic Dead '-- '-- '-- '-- 17296 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 896 '-- '-- '-- e5b0c522-eeae-424e-a5f5-0db04e433007 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1718_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1718_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1718_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1f20fd44-db7b-4650-862a-7cb64f42ce66 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ad2939e6-b8b8-475a-90e2-6a369c3d3167 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1718 44 false '-- '-- '-- '-- -16400 1579 af0f012e-4f9b-5984-9ca8-278a4b50c0ce '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1718_demographic Dead '-- '-- '-- '-- 17296 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 896 '-- '-- '-- e5b0c522-eeae-424e-a5f5-0db04e433007 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1718_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1718_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1718_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e61bae5f-96ec-403c-8572-b1e1a2c04668 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV ad2b1a0a-153f-483d-b228-5763eba3f6cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2399 80 false '-- '-- '-- '-- -29373 608 bf26361b-e6d4-5693-b15f-d91ed2a71b5f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2399_demographic Dead '-- '-- '-- '-- 29616 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 243 '-- '-- '-- 0f66c4fd-6a3e-4604-aef9-48f9726eb7d6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-2399_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-2399_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2399_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 52f8e534-1554-40bb-93a1-9d5a3c3b1d7f '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV ad2b1a0a-153f-483d-b228-5763eba3f6cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2399 80 false '-- '-- '-- '-- -29373 608 bf26361b-e6d4-5693-b15f-d91ed2a71b5f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2399_demographic Dead '-- '-- '-- '-- 29616 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 243 '-- '-- '-- 0f66c4fd-6a3e-4604-aef9-48f9726eb7d6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-2399_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-2399_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2399_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aecf5c12-5640-46ed-882a-a61da24eeedb '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ad2b1a0a-153f-483d-b228-5763eba3f6cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2399 80 false '-- '-- '-- '-- -29373 608 bf26361b-e6d4-5693-b15f-d91ed2a71b5f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2399_demographic Dead '-- '-- '-- '-- 29373 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 608.0 '-- '-- e1731d67-eada-531d-baa0-f203daa3117c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2399_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2399_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9264b74a-edeb-46ac-a6c7-e88c8e98cf33 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ad2b1a0a-153f-483d-b228-5763eba3f6cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2399 80 false '-- '-- '-- '-- -29373 608 bf26361b-e6d4-5693-b15f-d91ed2a71b5f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2399_demographic Dead '-- '-- '-- '-- 29373 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 608.0 '-- '-- e1731d67-eada-531d-baa0-f203daa3117c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2399_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 182 61 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2399_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b0e7aa92-8bc0-5c75-b202-cda6572df638 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ad2b1a0a-153f-483d-b228-5763eba3f6cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2399 80 false '-- '-- '-- '-- -29373 608 bf26361b-e6d4-5693-b15f-d91ed2a71b5f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2399_demographic Dead '-- '-- '-- '-- 29373 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 608.0 '-- '-- e1731d67-eada-531d-baa0-f203daa3117c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2399_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 182 61 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2399_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c79f896a-50b0-4937-9284-1c61349a110f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ad2b1a0a-153f-483d-b228-5763eba3f6cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2399 80 false '-- '-- '-- '-- -29373 608 bf26361b-e6d4-5693-b15f-d91ed2a71b5f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2399_demographic Dead '-- '-- '-- '-- 29373 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 608.0 '-- '-- e1731d67-eada-531d-baa0-f203daa3117c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2399_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2399_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e6116246-4411-4613-a24a-862f6379e1fd '-- yes '-- '-- Chemotherapy +TCGA-OV ae914f23-87b9-4169-a7f7-a3483078c902 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2009 65 false '-- '-- '-- '-- -23772 '-- c2e9ac12-63d8-5aff-8006-3a819ceb9302 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2009_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8c541cd8-ed56-4bbf-88ab-c9aa1c70b67e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2009_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2009_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2009_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cd3dccd6-ec73-4eaa-b553-8043be761df6 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV ae914f23-87b9-4169-a7f7-a3483078c902 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2009 65 false '-- '-- '-- '-- -23772 '-- c2e9ac12-63d8-5aff-8006-3a819ceb9302 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2009_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8c541cd8-ed56-4bbf-88ab-c9aa1c70b67e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2009_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2009_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 819 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2009_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- da6b78c6-acaf-40c3-8ee9-196ff387239e '-- yes '-- '-- Surgery, NOS +TCGA-OV ae914f23-87b9-4169-a7f7-a3483078c902 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2009 65 false '-- '-- '-- '-- -23772 '-- c2e9ac12-63d8-5aff-8006-3a819ceb9302 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2009_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8c541cd8-ed56-4bbf-88ab-c9aa1c70b67e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2009_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2009_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2009_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e4faacf8-3792-4050-9597-7a524817ef32 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ae914f23-87b9-4169-a7f7-a3483078c902 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2009 65 false '-- '-- '-- '-- -23772 '-- c2e9ac12-63d8-5aff-8006-3a819ceb9302 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2009_demographic Alive '-- '-- '-- '-- 23873 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 101 '-- '-- '-- c308a0cc-7fd8-4aaf-a65c-03cd259f0de1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2009_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2009_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2009_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 58dbe39a-8e8f-4456-a169-e7fc8ed7681d '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ae914f23-87b9-4169-a7f7-a3483078c902 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2009 65 false '-- '-- '-- '-- -23772 '-- c2e9ac12-63d8-5aff-8006-3a819ceb9302 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2009_demographic Alive '-- '-- '-- '-- 23873 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 101 '-- '-- '-- c308a0cc-7fd8-4aaf-a65c-03cd259f0de1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2009_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2009_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2009_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 668157df-968f-42a4-81ca-10c77e97c5d2 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV ae914f23-87b9-4169-a7f7-a3483078c902 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2009 65 false '-- '-- '-- '-- -23772 '-- c2e9ac12-63d8-5aff-8006-3a819ceb9302 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2009_demographic Alive '-- '-- '-- '-- 23772 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1212.0 '-- '-- c813f3eb-5dd8-5697-90d3-e91a0bd284b0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2009_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 295 120 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-2009_treatment4 Cisplatin '-- '-- '-- '-- '-- '-- '-- 635 '-- mg '-- '-- '-- '-- 04b1c02d-7a07-4427-8a6c-52ae10f8529c '-- yes '-- '-- Chemotherapy +TCGA-OV ae914f23-87b9-4169-a7f7-a3483078c902 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2009 65 false '-- '-- '-- '-- -23772 '-- c2e9ac12-63d8-5aff-8006-3a819ceb9302 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2009_demographic Alive '-- '-- '-- '-- 23772 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1212.0 '-- '-- c813f3eb-5dd8-5697-90d3-e91a0bd284b0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2009_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 83 41 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2009_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 778 '-- mg '-- '-- '-- '-- 6e543960-c196-4edb-a146-95ad95fc0f74 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ae914f23-87b9-4169-a7f7-a3483078c902 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2009 65 false '-- '-- '-- '-- -23772 '-- c2e9ac12-63d8-5aff-8006-3a819ceb9302 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2009_demographic Alive '-- '-- '-- '-- 23772 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1212.0 '-- '-- c813f3eb-5dd8-5697-90d3-e91a0bd284b0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2009_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 295 120 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-2009_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 490 '-- mg '-- '-- '-- '-- 7ecf782b-0b72-4e1d-822a-3103565d42a6 '-- yes '-- '-- Chemotherapy +TCGA-OV ae914f23-87b9-4169-a7f7-a3483078c902 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2009 65 false '-- '-- '-- '-- -23772 '-- c2e9ac12-63d8-5aff-8006-3a819ceb9302 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2009_demographic Alive '-- '-- '-- '-- 23772 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1212.0 '-- '-- c813f3eb-5dd8-5697-90d3-e91a0bd284b0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2009_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 83 41 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2009_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 1545 '-- mg '-- '-- '-- '-- 883871c7-ecf6-5669-8b76-a651137bf869 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ae914f23-87b9-4169-a7f7-a3483078c902 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2009 65 false '-- '-- '-- '-- -23772 '-- c2e9ac12-63d8-5aff-8006-3a819ceb9302 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2009_demographic Alive '-- '-- '-- '-- 23772 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1212.0 '-- '-- c813f3eb-5dd8-5697-90d3-e91a0bd284b0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2009_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 1003 839 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-2009_treatment6 Docetaxel '-- '-- '-- '-- '-- '-- '-- 658 '-- mg '-- '-- '-- '-- a7172467-4c5d-48dd-a09d-3efc77c1ab19 '-- yes '-- '-- Chemotherapy +TCGA-OV ae914f23-87b9-4169-a7f7-a3483078c902 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2009 65 false '-- '-- '-- '-- -23772 '-- c2e9ac12-63d8-5aff-8006-3a819ceb9302 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2009_demographic Alive '-- '-- '-- '-- 23772 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1212.0 '-- '-- c813f3eb-5dd8-5697-90d3-e91a0bd284b0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2009_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 1003 839 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-2009_treatment8 Oxaliplatin '-- '-- '-- '-- '-- '-- '-- 987 '-- mg '-- '-- '-- '-- c36ec2bb-1512-45cc-aa9b-22465c5edd34 '-- yes '-- '-- Chemotherapy +TCGA-OV ae914f23-87b9-4169-a7f7-a3483078c902 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2009 65 false '-- '-- '-- '-- -23772 '-- c2e9ac12-63d8-5aff-8006-3a819ceb9302 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2009_demographic Alive '-- '-- '-- '-- 23772 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1212.0 '-- '-- c813f3eb-5dd8-5697-90d3-e91a0bd284b0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2009_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 295 120 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-2009_treatment9 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1200 '-- mg '-- '-- '-- '-- d364b7f1-350a-497c-9840-ddb5ba94c007 '-- yes '-- '-- Chemotherapy +TCGA-OV ae914f23-87b9-4169-a7f7-a3483078c902 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2009 65 false '-- '-- '-- '-- -23772 '-- c2e9ac12-63d8-5aff-8006-3a819ceb9302 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2009_demographic Alive '-- '-- '-- '-- 23772 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1212.0 '-- '-- c813f3eb-5dd8-5697-90d3-e91a0bd284b0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2009_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2009_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d463df74-7aac-4668-adaf-eeb5beeff6e7 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ae914f23-87b9-4169-a7f7-a3483078c902 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2009 65 false '-- '-- '-- '-- -23772 '-- c2e9ac12-63d8-5aff-8006-3a819ceb9302 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2009_demographic Alive '-- '-- '-- '-- 23772 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1212.0 '-- '-- c813f3eb-5dd8-5697-90d3-e91a0bd284b0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2009_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- 658 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2009_treatment3 Tamoxifen '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f2a25806-5458-4191-b22d-8bc4a0cbdbda '-- yes '-- '-- Hormone Therapy +TCGA-OV ae914f23-87b9-4169-a7f7-a3483078c902 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2009 65 false '-- '-- '-- '-- -23772 '-- c2e9ac12-63d8-5aff-8006-3a819ceb9302 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2009_demographic Alive '-- '-- '-- '-- 23772 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1212.0 '-- '-- c813f3eb-5dd8-5697-90d3-e91a0bd284b0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2009_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 1126 1100 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2009_treatment7 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 304 '-- mg '-- '-- '-- '-- f8e10e34-e5b0-4f76-9163-b33317631d1b '-- yes '-- '-- Chemotherapy +TCGA-OV afd92922-b8dc-48bd-a9c0-bc8d95855eb7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1560 51 false '-- '-- '-- '-- -18671 1341 78a963aa-07fe-526a-93c8-3f2bc9d8d317 '-- not reported female '-- '-- '-- '-- white TCGA-24-1560_demographic Dead '-- '-- '-- '-- 18671 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1341.0 '-- '-- c81c054c-bd20-5c4f-b3bd-3d67dc613c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1560_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 117 15 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1560_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4620 '-- mg '-- '-- '-- '-- 147c1956-b0f6-443c-88d2-b9220796b32c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV afd92922-b8dc-48bd-a9c0-bc8d95855eb7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1560 51 false '-- '-- '-- '-- -18671 1341 78a963aa-07fe-526a-93c8-3f2bc9d8d317 '-- not reported female '-- '-- '-- '-- white TCGA-24-1560_demographic Dead '-- '-- '-- '-- 18671 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1341.0 '-- '-- c81c054c-bd20-5c4f-b3bd-3d67dc613c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1560_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 614 509 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1560_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1730 '-- mg '-- '-- '-- '-- 258c3977-35a2-4c3e-a46a-6836d4fb5f36 '-- yes '-- '-- Chemotherapy +TCGA-OV afd92922-b8dc-48bd-a9c0-bc8d95855eb7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1560 51 false '-- '-- '-- '-- -18671 1341 78a963aa-07fe-526a-93c8-3f2bc9d8d317 '-- not reported female '-- '-- '-- '-- white TCGA-24-1560_demographic Dead '-- '-- '-- '-- 18671 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1341.0 '-- '-- c81c054c-bd20-5c4f-b3bd-3d67dc613c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1560_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 901 757 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Not Reported TCGA-24-1560_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2875 '-- mg '-- '-- '-- '-- 28274d8a-3646-4cfb-bf36-c5f6ea09b452 '-- yes '-- '-- Chemotherapy +TCGA-OV afd92922-b8dc-48bd-a9c0-bc8d95855eb7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1560 51 false '-- '-- '-- '-- -18671 1341 78a963aa-07fe-526a-93c8-3f2bc9d8d317 '-- not reported female '-- '-- '-- '-- white TCGA-24-1560_demographic Dead '-- '-- '-- '-- 18671 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1341.0 '-- '-- c81c054c-bd20-5c4f-b3bd-3d67dc613c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1560_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1189 1043 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1560_treatment13 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2730 '-- mg '-- '-- '-- '-- 2f93067d-da93-49f0-a125-913a84d25a8a '-- yes '-- '-- Chemotherapy +TCGA-OV afd92922-b8dc-48bd-a9c0-bc8d95855eb7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1560 51 false '-- '-- '-- '-- -18671 1341 78a963aa-07fe-526a-93c8-3f2bc9d8d317 '-- not reported female '-- '-- '-- '-- white TCGA-24-1560_demographic Dead '-- '-- '-- '-- 18671 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1341.0 '-- '-- c81c054c-bd20-5c4f-b3bd-3d67dc613c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1560_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 481 398 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1560_treatment Topotecan '-- '-- '-- '-- '-- '-- '-- 48 '-- mg '-- '-- '-- '-- 433292e6-7678-56ee-8919-2c720079f7f2 '-- yes '-- '-- Chemotherapy +TCGA-OV afd92922-b8dc-48bd-a9c0-bc8d95855eb7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1560 51 false '-- '-- '-- '-- -18671 1341 78a963aa-07fe-526a-93c8-3f2bc9d8d317 '-- not reported female '-- '-- '-- '-- white TCGA-24-1560_demographic Dead '-- '-- '-- '-- 18671 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1341.0 '-- '-- c81c054c-bd20-5c4f-b3bd-3d67dc613c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1560_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 901 757 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Not Reported TCGA-24-1560_treatment9 Etoposide '-- '-- '-- '-- '-- '-- '-- 4650 '-- mg '-- '-- '-- '-- 5a7f25f0-96b3-438e-9f91-7ea021ea8c07 '-- yes '-- '-- Chemotherapy +TCGA-OV afd92922-b8dc-48bd-a9c0-bc8d95855eb7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1560 51 false '-- '-- '-- '-- -18671 1341 78a963aa-07fe-526a-93c8-3f2bc9d8d317 '-- not reported female '-- '-- '-- '-- white TCGA-24-1560_demographic Dead '-- '-- '-- '-- 18671 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1341.0 '-- '-- c81c054c-bd20-5c4f-b3bd-3d67dc613c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1560_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1560_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6cbaed26-25c3-4491-986e-98f995de09dd Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV afd92922-b8dc-48bd-a9c0-bc8d95855eb7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1560 51 false '-- '-- '-- '-- -18671 1341 78a963aa-07fe-526a-93c8-3f2bc9d8d317 '-- not reported female '-- '-- '-- '-- white TCGA-24-1560_demographic Dead '-- '-- '-- '-- 18671 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1341.0 '-- '-- c81c054c-bd20-5c4f-b3bd-3d67dc613c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1560_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 614 509 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1560_treatment8 Amifostine '-- '-- '-- '-- '-- '-- '-- 7220 '-- mg '-- '-- '-- '-- 8006b3d6-2d47-4bd1-9c85-a78d2cd56d11 '-- yes '-- '-- Chemotherapy +TCGA-OV afd92922-b8dc-48bd-a9c0-bc8d95855eb7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1560 51 false '-- '-- '-- '-- -18671 1341 78a963aa-07fe-526a-93c8-3f2bc9d8d317 '-- not reported female '-- '-- '-- '-- white TCGA-24-1560_demographic Dead '-- '-- '-- '-- 18671 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1341.0 '-- '-- c81c054c-bd20-5c4f-b3bd-3d67dc613c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1560_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1015 931 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-1560_treatment12 Capecitabine '-- '-- '-- '-- '-- '-- '-- 210000 '-- mg '-- '-- '-- '-- 8fecbaeb-6d47-4252-8162-40e7e37b5a40 '-- yes '-- '-- Chemotherapy +TCGA-OV afd92922-b8dc-48bd-a9c0-bc8d95855eb7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1560 51 false '-- '-- '-- '-- -18671 1341 78a963aa-07fe-526a-93c8-3f2bc9d8d317 '-- not reported female '-- '-- '-- '-- white TCGA-24-1560_demographic Dead '-- '-- '-- '-- 18671 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1341.0 '-- '-- c81c054c-bd20-5c4f-b3bd-3d67dc613c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1560_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 614 509 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1560_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3100 '-- mg '-- '-- '-- '-- acc910f1-b151-4c98-b826-a78c83d95558 '-- yes '-- '-- Chemotherapy +TCGA-OV afd92922-b8dc-48bd-a9c0-bc8d95855eb7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1560 51 false '-- '-- '-- '-- -18671 1341 78a963aa-07fe-526a-93c8-3f2bc9d8d317 '-- not reported female '-- '-- '-- '-- white TCGA-24-1560_demographic Dead '-- '-- '-- '-- 18671 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1341.0 '-- '-- c81c054c-bd20-5c4f-b3bd-3d67dc613c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1560_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1258 1216 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1560_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1640 '-- mg '-- '-- '-- '-- af39e8d8-2656-4e2e-ba66-fd37b6d960d1 '-- yes '-- '-- Chemotherapy +TCGA-OV afd92922-b8dc-48bd-a9c0-bc8d95855eb7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1560 51 false '-- '-- '-- '-- -18671 1341 78a963aa-07fe-526a-93c8-3f2bc9d8d317 '-- not reported female '-- '-- '-- '-- white TCGA-24-1560_demographic Dead '-- '-- '-- '-- 18671 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1341.0 '-- '-- c81c054c-bd20-5c4f-b3bd-3d67dc613c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1560_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 117 15 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1560_treatment10 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1620 '-- mg '-- '-- '-- '-- af46cb53-45cc-44da-a49f-8158f9485762 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV afd92922-b8dc-48bd-a9c0-bc8d95855eb7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1560 51 false '-- '-- '-- '-- -18671 1341 78a963aa-07fe-526a-93c8-3f2bc9d8d317 '-- not reported female '-- '-- '-- '-- white TCGA-24-1560_demographic Dead '-- '-- '-- '-- 18671 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1341.0 '-- '-- c81c054c-bd20-5c4f-b3bd-3d67dc613c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1560_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 726 635 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1560_treatment11 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 200 '-- mg '-- '-- '-- '-- c8b62bf4-f8f4-4329-b0e5-3a5de042e292 '-- yes '-- '-- Chemotherapy +TCGA-OV afd92922-b8dc-48bd-a9c0-bc8d95855eb7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1560 51 false '-- '-- '-- '-- -18671 1341 78a963aa-07fe-526a-93c8-3f2bc9d8d317 '-- not reported female '-- '-- '-- '-- white TCGA-24-1560_demographic Dead '-- '-- '-- '-- 18671 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1341.0 '-- '-- c81c054c-bd20-5c4f-b3bd-3d67dc613c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1560_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 726 635 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1560_treatment4 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 15000 '-- mg '-- '-- '-- '-- e9e41016-05e3-4893-b17b-bfae048c99f9 '-- yes '-- '-- Chemotherapy +TCGA-OV afd92922-b8dc-48bd-a9c0-bc8d95855eb7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1560 51 false '-- '-- '-- '-- -18671 1341 78a963aa-07fe-526a-93c8-3f2bc9d8d317 '-- not reported female '-- '-- '-- '-- white TCGA-24-1560_demographic Dead '-- '-- '-- '-- 18814 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 143 '-- '-- '-- fced6d41-8bc6-42f8-b0a4-83e2d93aa3e7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1560_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1560_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1560_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8861eaf7-646d-44d7-b162-543401eafb21 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV afd92922-b8dc-48bd-a9c0-bc8d95855eb7 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1560 51 false '-- '-- '-- '-- -18671 1341 78a963aa-07fe-526a-93c8-3f2bc9d8d317 '-- not reported female '-- '-- '-- '-- white TCGA-24-1560_demographic Dead '-- '-- '-- '-- 18814 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 143 '-- '-- '-- fced6d41-8bc6-42f8-b0a4-83e2d93aa3e7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1560_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1560_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1560_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d7664e82-bd5d-4b2e-b49b-8a7162267dbc '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV b0585c7a-7205-4dac-9d54-6da89674accb Informed Consent 1372 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2428 58 false '-- '-- '-- '-- -21392 '-- f49495f3-6a81-572b-b92a-f1ffdb45a55d '-- not reported female '-- '-- '-- '-- white TCGA-29-2428_demographic Alive '-- '-- '-- '-- 21392 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1372.0 '-- '-- e20d29d9-559f-572a-8639-75c5d0f20e06 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2428_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 141 18 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-2428_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 670 '-- mg '-- '-- '-- '-- 1137f07e-391a-5b5f-a537-bd03d22f3f20 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b0585c7a-7205-4dac-9d54-6da89674accb Informed Consent 1372 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2428 58 false '-- '-- '-- '-- -21392 '-- f49495f3-6a81-572b-b92a-f1ffdb45a55d '-- not reported female '-- '-- '-- '-- white TCGA-29-2428_demographic Alive '-- '-- '-- '-- 21392 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1372.0 '-- '-- e20d29d9-559f-572a-8639-75c5d0f20e06 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2428_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 141 18 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-2428_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 280 '-- mg '-- '-- '-- '-- 507449cc-22bc-4ae1-994d-d63856401014 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b0585c7a-7205-4dac-9d54-6da89674accb Informed Consent 1372 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-2428 58 false '-- '-- '-- '-- -21392 '-- f49495f3-6a81-572b-b92a-f1ffdb45a55d '-- not reported female '-- '-- '-- '-- white TCGA-29-2428_demographic Alive '-- '-- '-- '-- 21392 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1372.0 '-- '-- e20d29d9-559f-572a-8639-75c5d0f20e06 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R1 '-- '-- Ovary '-- '-- TCGA-29-2428_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-2428_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 94f21461-8b39-4754-89df-146bda38ef64 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b0839f46-8c82-4619-be3d-c857a1759463 Informed Consent -325 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1951 58 false '-- '-- '-- '-- -21352 '-- 1f9b5de4-e9f0-5e4d-8959-ccfe046d49a5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1951_demographic Alive '-- '-- '-- '-- 21352 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 684.0 '-- '-- 201d89c4-e6e6-5f26-9ffc-249c94991d25 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1951_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 146 41 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1951_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3600 '-- mg '-- '-- '-- '-- 0cc14ffb-50e9-4538-a1ba-a1bac0d63e8f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b0839f46-8c82-4619-be3d-c857a1759463 Informed Consent -325 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1951 58 false '-- '-- '-- '-- -21352 '-- 1f9b5de4-e9f0-5e4d-8959-ccfe046d49a5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1951_demographic Alive '-- '-- '-- '-- 21352 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 684.0 '-- '-- 201d89c4-e6e6-5f26-9ffc-249c94991d25 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1951_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 482 328 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1951_treatment Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 240 '-- mg '-- '-- '-- '-- 26eb5580-5888-5b83-8256-0e83babb4ed7 '-- yes '-- '-- Chemotherapy +TCGA-OV b0839f46-8c82-4619-be3d-c857a1759463 Informed Consent -325 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1951 58 false '-- '-- '-- '-- -21352 '-- 1f9b5de4-e9f0-5e4d-8959-ccfe046d49a5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1951_demographic Alive '-- '-- '-- '-- 21352 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 684.0 '-- '-- 201d89c4-e6e6-5f26-9ffc-249c94991d25 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1951_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 482 328 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1951_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3600 '-- mg '-- '-- '-- '-- 6eed5189-5fb1-40c3-91ce-93b632514031 '-- yes '-- '-- Chemotherapy +TCGA-OV b0839f46-8c82-4619-be3d-c857a1759463 Informed Consent -325 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1951 58 false '-- '-- '-- '-- -21352 '-- 1f9b5de4-e9f0-5e4d-8959-ccfe046d49a5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1951_demographic Alive '-- '-- '-- '-- 21352 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 684.0 '-- '-- 201d89c4-e6e6-5f26-9ffc-249c94991d25 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1951_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1951_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9d44da79-0ad1-46d2-b038-1f7ef881abcb Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b0839f46-8c82-4619-be3d-c857a1759463 Informed Consent -325 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1951 58 false '-- '-- '-- '-- -21352 '-- 1f9b5de4-e9f0-5e4d-8959-ccfe046d49a5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1951_demographic Alive '-- '-- '-- '-- 21352 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 684.0 '-- '-- 201d89c4-e6e6-5f26-9ffc-249c94991d25 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1951_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 146 41 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1951_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1260 '-- mg '-- '-- '-- '-- caa50005-4228-49cd-985e-5c6eb04d452b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b0839f46-8c82-4619-be3d-c857a1759463 Informed Consent -325 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1951 58 false '-- '-- '-- '-- -21352 '-- 1f9b5de4-e9f0-5e4d-8959-ccfe046d49a5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1951_demographic Alive '-- '-- '-- '-- 22011 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 659 '-- '-- '-- d44392a8-12cf-4272-bf49-936c71ae2751 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-31-1951_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-31-1951_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1951_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 13b1d094-c207-4216-b642-cfc268636514 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV b0839f46-8c82-4619-be3d-c857a1759463 Informed Consent -325 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1951 58 false '-- '-- '-- '-- -21352 '-- 1f9b5de4-e9f0-5e4d-8959-ccfe046d49a5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1951_demographic Alive '-- '-- '-- '-- 22011 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 659 '-- '-- '-- d44392a8-12cf-4272-bf49-936c71ae2751 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-31-1951_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-31-1951_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1951_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a333f1aa-5879-43eb-987e-688284e77272 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV b120b701-c194-43d7-a491-3206fac38ec1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1425 45 false '-- '-- '-- '-- -16764 '-- aedc9d93-ac86-5686-a44b-83c6a60b6bcb '-- not reported female '-- '-- '-- '-- white TCGA-24-1425_demographic Alive '-- '-- '-- '-- 16764 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 181.0 '-- '-- a4520404-b3dd-59ab-a30e-b3073be4407c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1425_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 145 27 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1425_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5065 '-- mg '-- '-- '-- '-- 1d95f428-88d0-47b0-bed1-5e668a570a82 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b120b701-c194-43d7-a491-3206fac38ec1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1425 45 false '-- '-- '-- '-- -16764 '-- aedc9d93-ac86-5686-a44b-83c6a60b6bcb '-- not reported female '-- '-- '-- '-- white TCGA-24-1425_demographic Alive '-- '-- '-- '-- 16764 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 181.0 '-- '-- a4520404-b3dd-59ab-a30e-b3073be4407c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1425_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1425_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 89a0a221-2313-4fa0-84bb-2c0b014fefb8 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b120b701-c194-43d7-a491-3206fac38ec1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1425 45 false '-- '-- '-- '-- -16764 '-- aedc9d93-ac86-5686-a44b-83c6a60b6bcb '-- not reported female '-- '-- '-- '-- white TCGA-24-1425_demographic Alive '-- '-- '-- '-- 16764 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 181.0 '-- '-- a4520404-b3dd-59ab-a30e-b3073be4407c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1425_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 145 27 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1425_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 553 '-- mg '-- '-- '-- '-- c64cf399-ed54-418b-96b1-1793f1052484 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b120b701-c194-43d7-a491-3206fac38ec1 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1425 45 false '-- '-- '-- '-- -16764 '-- aedc9d93-ac86-5686-a44b-83c6a60b6bcb '-- not reported female '-- '-- '-- '-- white TCGA-24-1425_demographic Alive '-- '-- '-- '-- 16764 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 181.0 '-- '-- a4520404-b3dd-59ab-a30e-b3073be4407c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1425_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 145 27 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1425_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- 832 '-- mg '-- '-- '-- '-- c8533376-0d48-5ff0-a8f4-86f4bd19a3bf Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b1c90c69-6149-4105-8182-ab9212f196be Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1669 54 false '-- '-- '-- '-- -20052 '-- 85394400-da7b-574f-8346-6d5fc26b3df5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1669_demographic Alive '-- '-- '-- '-- 20052 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 928.0 '-- '-- a5bcf80f-e5db-5ab5-8c04-57c2093acb89 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1669_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 132 27 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1669_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 15a724f5-1a73-51fb-83ad-81dbf48cc564 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b1c90c69-6149-4105-8182-ab9212f196be Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1669 54 false '-- '-- '-- '-- -20052 '-- 85394400-da7b-574f-8346-6d5fc26b3df5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1669_demographic Alive '-- '-- '-- '-- 20052 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 928.0 '-- '-- a5bcf80f-e5db-5ab5-8c04-57c2093acb89 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1669_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1669_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5c233f57-7dd3-4fbc-9923-41f17b5a7c00 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b1c90c69-6149-4105-8182-ab9212f196be Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1669 54 false '-- '-- '-- '-- -20052 '-- 85394400-da7b-574f-8346-6d5fc26b3df5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1669_demographic Alive '-- '-- '-- '-- 20052 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 928.0 '-- '-- a5bcf80f-e5db-5ab5-8c04-57c2093acb89 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1669_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 132 27 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1669_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cce89418-ea58-415e-8feb-7c7a3991b863 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b1e11e94-646b-4c44-9d33-1ca67d8356fb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0795 66 false '-- '-- '-- '-- -24403 619 765b568d-c940-5239-92dc-26c4c0431db1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0795_demographic Dead '-- '-- '-- '-- 24403 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 619.0 '-- '-- 049f6c9e-4b02-5c39-ad7f-5f357c226bc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0795_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 205 101 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0795_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 32f57f01-37d2-437b-beb2-962c2da15f13 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b1e11e94-646b-4c44-9d33-1ca67d8356fb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0795 66 false '-- '-- '-- '-- -24403 619 765b568d-c940-5239-92dc-26c4c0431db1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0795_demographic Dead '-- '-- '-- '-- 24403 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 619.0 '-- '-- 049f6c9e-4b02-5c39-ad7f-5f357c226bc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0795_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 205 101 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0795_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 61f9e645-1126-57fe-8301-cdfbba84acac Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b1e11e94-646b-4c44-9d33-1ca67d8356fb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0795 66 false '-- '-- '-- '-- -24403 619 765b568d-c940-5239-92dc-26c4c0431db1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0795_demographic Dead '-- '-- '-- '-- 24403 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 619.0 '-- '-- 049f6c9e-4b02-5c39-ad7f-5f357c226bc5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0795_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0795_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 899e9ac7-b154-4227-82fd-0af59272db89 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b1e11e94-646b-4c44-9d33-1ca67d8356fb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0795 66 false '-- '-- '-- '-- -24403 619 765b568d-c940-5239-92dc-26c4c0431db1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0795_demographic Dead '-- '-- '-- '-- 24728 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 325 '-- '-- '-- 920d28d6-5d91-48d9-8eff-ce074bbf51cb false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0795_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0795_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV b1e11e94-646b-4c44-9d33-1ca67d8356fb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0795 66 false '-- '-- '-- '-- -24403 619 765b568d-c940-5239-92dc-26c4c0431db1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0795_demographic Dead '-- '-- '-- '-- 24728 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 325 '-- '-- '-- b1d3c419-ce08-45c3-919f-0f489e5d927d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0795_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0795_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0795_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9239a13e-16fd-47bb-bb2c-d0c37df5e09b '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV b1e11e94-646b-4c44-9d33-1ca67d8356fb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0795 66 false '-- '-- '-- '-- -24403 619 765b568d-c940-5239-92dc-26c4c0431db1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0795_demographic Dead '-- '-- '-- '-- 24728 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 325 '-- '-- '-- b1d3c419-ce08-45c3-919f-0f489e5d927d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0795_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0795_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0795_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aebdb2c5-084b-454a-bfbc-6df91e4b7648 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV b25570ed-baca-4e3f-87c6-2ef18119ba49 Informed Consent 27 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1499 56 false '-- '-- '-- '-- -20668 '-- f5853584-62ad-5679-9cb3-8ca4b7d8a998 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1499_demographic Alive '-- '-- '-- '-- 20668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3500.0 '-- '-- 148128fe-490f-5ecb-9eb0-7bfd1594cfd3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1499_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 97 76 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1499_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 106d89b7-4dcc-4a1a-87d7-d6cc2d8d3da1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b25570ed-baca-4e3f-87c6-2ef18119ba49 Informed Consent 27 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1499 56 false '-- '-- '-- '-- -20668 '-- f5853584-62ad-5679-9cb3-8ca4b7d8a998 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1499_demographic Alive '-- '-- '-- '-- 20668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3500.0 '-- '-- 148128fe-490f-5ecb-9eb0-7bfd1594cfd3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1499_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 187 118 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-13-1499_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- 1e907bba-9509-4cf9-b978-7c07bbd402f5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b25570ed-baca-4e3f-87c6-2ef18119ba49 Informed Consent 27 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1499 56 false '-- '-- '-- '-- -20668 '-- f5853584-62ad-5679-9cb3-8ca4b7d8a998 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1499_demographic Alive '-- '-- '-- '-- 20668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3500.0 '-- '-- 148128fe-490f-5ecb-9eb0-7bfd1594cfd3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1499_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 187 118 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-1499_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- 7e05846e-a31f-4c13-8429-0d0668283828 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b25570ed-baca-4e3f-87c6-2ef18119ba49 Informed Consent 27 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1499 56 false '-- '-- '-- '-- -20668 '-- f5853584-62ad-5679-9cb3-8ca4b7d8a998 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1499_demographic Alive '-- '-- '-- '-- 20668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3500.0 '-- '-- 148128fe-490f-5ecb-9eb0-7bfd1594cfd3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1499_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 97 76 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1499_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- 89d4ac03-0516-5efe-87d2-b896c064abf1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b25570ed-baca-4e3f-87c6-2ef18119ba49 Informed Consent 27 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1499 56 false '-- '-- '-- '-- -20668 '-- f5853584-62ad-5679-9cb3-8ca4b7d8a998 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1499_demographic Alive '-- '-- '-- '-- 20668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3500.0 '-- '-- 148128fe-490f-5ecb-9eb0-7bfd1594cfd3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1499_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1499_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9ec94fe6-a90f-4b16-88e6-a4fe753087ba Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b25570ed-baca-4e3f-87c6-2ef18119ba49 Informed Consent 27 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1499 56 false '-- '-- '-- '-- -20668 '-- f5853584-62ad-5679-9cb3-8ca4b7d8a998 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1499_demographic Alive '-- '-- '-- '-- 20668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3500.0 '-- '-- 148128fe-490f-5ecb-9eb0-7bfd1594cfd3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1499_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 187 118 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-1499_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- f40ccf65-dd38-4287-8289-f8c1ab36128d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b25570ed-baca-4e3f-87c6-2ef18119ba49 Informed Consent 27 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1499 56 false '-- '-- '-- '-- -20668 '-- f5853584-62ad-5679-9cb3-8ca4b7d8a998 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1499_demographic Alive '-- '-- '-- '-- 21251 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 583 '-- '-- '-- 2f99da0d-42ac-4a1b-89fb-fce374aa4301 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1499_diagnosis4 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1499_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV b25570ed-baca-4e3f-87c6-2ef18119ba49 Informed Consent 27 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1499 56 false '-- '-- '-- '-- -20668 '-- f5853584-62ad-5679-9cb3-8ca4b7d8a998 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1499_demographic Alive '-- '-- '-- '-- 21251 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 583 '-- '-- '-- 641c7c33-3159-4ccf-aed7-6376b7bc0feb false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1499_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1499_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1499_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e0467ece-6962-4225-b67a-7883e97c1de8 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV b25570ed-baca-4e3f-87c6-2ef18119ba49 Informed Consent 27 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1499 56 false '-- '-- '-- '-- -20668 '-- f5853584-62ad-5679-9cb3-8ca4b7d8a998 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1499_demographic Alive '-- '-- '-- '-- 21251 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 583 '-- '-- '-- 641c7c33-3159-4ccf-aed7-6376b7bc0feb false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1499_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1499_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1499_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e186badd-eee3-461f-aa13-45d6d19b1440 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV b25570ed-baca-4e3f-87c6-2ef18119ba49 Informed Consent 27 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1499 56 false '-- '-- '-- '-- -20668 '-- f5853584-62ad-5679-9cb3-8ca4b7d8a998 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1499_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- de1c7df5-71b2-4382-b560-c13b3f482ed3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1499_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1499_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 595 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1499_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 090ae02e-26c9-4b5c-a4ce-2c3d7a39c6cf '-- yes '-- '-- Surgery, NOS +TCGA-OV b25570ed-baca-4e3f-87c6-2ef18119ba49 Informed Consent 27 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1499 56 false '-- '-- '-- '-- -20668 '-- f5853584-62ad-5679-9cb3-8ca4b7d8a998 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1499_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- de1c7df5-71b2-4382-b560-c13b3f482ed3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1499_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1499_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1499_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 12fecb80-e5db-4f81-ade5-fa70c5bc677a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV b25570ed-baca-4e3f-87c6-2ef18119ba49 Informed Consent 27 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1499 56 false '-- '-- '-- '-- -20668 '-- f5853584-62ad-5679-9cb3-8ca4b7d8a998 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1499_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- de1c7df5-71b2-4382-b560-c13b3f482ed3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1499_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1499_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1499_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6fcfcf49-01b5-4172-ad1e-deb7a9ac0ee9 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV b31d85cc-d2e2-4bd1-9986-d6bbe30e657f Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2094 63 false '-- '-- '-- '-- -23273 '-- b5affed5-6e77-5623-b1a4-a0cdcef3b0d9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2094_demographic Alive '-- '-- '-- '-- 23273 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2182.0 '-- '-- 38e754fd-a254-5193-9f78-49239781ea56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2094_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2094_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 58dedc4b-d8c0-4b8a-b51c-7b92f4eb7f06 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b31d85cc-d2e2-4bd1-9986-d6bbe30e657f Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2094 63 false '-- '-- '-- '-- -23273 '-- b5affed5-6e77-5623-b1a4-a0cdcef3b0d9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2094_demographic Alive '-- '-- '-- '-- 23273 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2182.0 '-- '-- 38e754fd-a254-5193-9f78-49239781ea56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2094_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 166 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2094_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d0cf9ac5-8f1b-4a67-9753-6d31662bb1c8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b31d85cc-d2e2-4bd1-9986-d6bbe30e657f Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2094 63 false '-- '-- '-- '-- -23273 '-- b5affed5-6e77-5623-b1a4-a0cdcef3b0d9 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2094_demographic Alive '-- '-- '-- '-- 23273 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2182.0 '-- '-- 38e754fd-a254-5193-9f78-49239781ea56 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2094_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 166 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2094_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e9c4d759-9318-57e7-ac69-8e7165a8bf5f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b3511675-fd68-4745-8020-e290ca0fd115 Informed Consent 1430 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1703 56 false '-- '-- '-- '-- -20622 1815 d3239bb4-63cb-5ba3-911b-f8ef467f8bb5 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1703_demographic Dead '-- '-- '-- '-- 20946 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 324 '-- '-- '-- 0d1ae180-6e6d-47bc-8741-41dbc17c5e2b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1703_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1703_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1703_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 38e1d347-f75e-43cc-95fb-b0b365177b47 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV b3511675-fd68-4745-8020-e290ca0fd115 Informed Consent 1430 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1703 56 false '-- '-- '-- '-- -20622 1815 d3239bb4-63cb-5ba3-911b-f8ef467f8bb5 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1703_demographic Dead '-- '-- '-- '-- 20946 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 324 '-- '-- '-- 0d1ae180-6e6d-47bc-8741-41dbc17c5e2b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1703_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1703_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1703_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8d1953ac-15b1-4166-8291-1085f0c12c07 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV b3511675-fd68-4745-8020-e290ca0fd115 Informed Consent 1430 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1703 56 false '-- '-- '-- '-- -20622 1815 d3239bb4-63cb-5ba3-911b-f8ef467f8bb5 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1703_demographic Dead '-- '-- '-- '-- 20622 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1815.0 '-- '-- 17951518-166e-5b1e-b7a9-d3cda6b3bd1c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1703_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 1720 1720 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1703_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 390 '-- mg '-- '-- '-- '-- 10a2db1c-4e5d-45a1-bcc0-dd9dc6c7ccaf '-- yes '-- '-- Chemotherapy +TCGA-OV b3511675-fd68-4745-8020-e290ca0fd115 Informed Consent 1430 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1703 56 false '-- '-- '-- '-- -20622 1815 d3239bb4-63cb-5ba3-911b-f8ef467f8bb5 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1703_demographic Dead '-- '-- '-- '-- 20622 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1815.0 '-- '-- 17951518-166e-5b1e-b7a9-d3cda6b3bd1c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1703_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 1314 1030 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1703_treatment11 Motesanib Diphosphate '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 11fe8fc2-4038-4fe7-93aa-911952b77b45 '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV b3511675-fd68-4745-8020-e290ca0fd115 Informed Consent 1430 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1703 56 false '-- '-- '-- '-- -20622 1815 d3239bb4-63cb-5ba3-911b-f8ef467f8bb5 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1703_demographic Dead '-- '-- '-- '-- 20622 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1815.0 '-- '-- 17951518-166e-5b1e-b7a9-d3cda6b3bd1c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1703_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 1667 1577 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1703_treatment8 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1370 '-- mg '-- '-- '-- '-- 20f8eb26-a9d5-43df-b10b-96b679e27336 '-- yes '-- '-- Chemotherapy +TCGA-OV b3511675-fd68-4745-8020-e290ca0fd115 Informed Consent 1430 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1703 56 false '-- '-- '-- '-- -20622 1815 d3239bb4-63cb-5ba3-911b-f8ef467f8bb5 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1703_demographic Dead '-- '-- '-- '-- 20622 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1815.0 '-- '-- 17951518-166e-5b1e-b7a9-d3cda6b3bd1c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1703_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 163 16 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-29-1703_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1595 '-- mg '-- '-- '-- '-- 2fd1d9cb-646d-5b93-893b-daff67331324 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b3511675-fd68-4745-8020-e290ca0fd115 Informed Consent 1430 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1703 56 false '-- '-- '-- '-- -20622 1815 d3239bb4-63cb-5ba3-911b-f8ef467f8bb5 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1703_demographic Dead '-- '-- '-- '-- 20622 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1815.0 '-- '-- 17951518-166e-5b1e-b7a9-d3cda6b3bd1c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1703_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 1753 1746 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1703_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 80 '-- mg/m2 '-- '-- '-- '-- 57b4753c-c610-48e7-8e2d-374bab66b19f '-- yes '-- '-- Chemotherapy +TCGA-OV b3511675-fd68-4745-8020-e290ca0fd115 Informed Consent 1430 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1703 56 false '-- '-- '-- '-- -20622 1815 d3239bb4-63cb-5ba3-911b-f8ef467f8bb5 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1703_demographic Dead '-- '-- '-- '-- 20622 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1815.0 '-- '-- 17951518-166e-5b1e-b7a9-d3cda6b3bd1c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1703_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 651 478 '-- '-- Progressive Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1703_treatment12 Carboplatin '-- '-- '-- '-- '-- '-- '-- 773 '-- mg '-- '-- '-- '-- 5ed64560-bb75-49cf-a236-b1fd17ced80c '-- yes '-- '-- Chemotherapy +TCGA-OV b3511675-fd68-4745-8020-e290ca0fd115 Informed Consent 1430 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1703 56 false '-- '-- '-- '-- -20622 1815 d3239bb4-63cb-5ba3-911b-f8ef467f8bb5 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1703_demographic Dead '-- '-- '-- '-- 20622 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1815.0 '-- '-- 17951518-166e-5b1e-b7a9-d3cda6b3bd1c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1703_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 163 16 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-29-1703_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4081 '-- mg '-- '-- '-- '-- 739c8393-1d27-48c6-8ea4-e8bb07ce89d3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b3511675-fd68-4745-8020-e290ca0fd115 Informed Consent 1430 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1703 56 false '-- '-- '-- '-- -20622 1815 d3239bb4-63cb-5ba3-911b-f8ef467f8bb5 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1703_demographic Dead '-- '-- '-- '-- 20622 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1815.0 '-- '-- 17951518-166e-5b1e-b7a9-d3cda6b3bd1c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1703_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 470 337 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1703_treatment10 Tamoxifen '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8aa943c6-6b79-4d9d-9ad0-8a22084c4697 '-- yes '-- '-- Hormone Therapy +TCGA-OV b3511675-fd68-4745-8020-e290ca0fd115 Informed Consent 1430 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1703 56 false '-- '-- '-- '-- -20622 1815 d3239bb4-63cb-5ba3-911b-f8ef467f8bb5 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1703_demographic Dead '-- '-- '-- '-- 20622 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1815.0 '-- '-- 17951518-166e-5b1e-b7a9-d3cda6b3bd1c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1703_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1703_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bc39619b-a009-498b-a944-29e8da826893 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b3511675-fd68-4745-8020-e290ca0fd115 Informed Consent 1430 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1703 56 false '-- '-- '-- '-- -20622 1815 d3239bb4-63cb-5ba3-911b-f8ef467f8bb5 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1703_demographic Dead '-- '-- '-- '-- 20622 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1815.0 '-- '-- 17951518-166e-5b1e-b7a9-d3cda6b3bd1c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1703_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 1457 1317 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1703_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 70 '-- mg '-- '-- '-- '-- ca301917-9abe-4d38-bf15-5d943388d513 '-- yes '-- '-- Chemotherapy +TCGA-OV b3511675-fd68-4745-8020-e290ca0fd115 Informed Consent 1430 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1703 56 false '-- '-- '-- '-- -20622 1815 d3239bb4-63cb-5ba3-911b-f8ef467f8bb5 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1703_demographic Dead '-- '-- '-- '-- 20622 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1815.0 '-- '-- 17951518-166e-5b1e-b7a9-d3cda6b3bd1c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1703_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 946 743 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-29-1703_treatment9 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 50 '-- mg '-- '-- '-- '-- dbab1353-2e5e-4d94-a963-0da5ed53145a '-- yes '-- '-- Chemotherapy +TCGA-OV b3511675-fd68-4745-8020-e290ca0fd115 Informed Consent 1430 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1703 56 false '-- '-- '-- '-- -20622 1815 d3239bb4-63cb-5ba3-911b-f8ef467f8bb5 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1703_demographic Dead '-- '-- '-- '-- 20622 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1815.0 '-- '-- 17951518-166e-5b1e-b7a9-d3cda6b3bd1c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1703_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 651 478 '-- '-- Progressive Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1703_treatment6 Docetaxel '-- '-- '-- '-- '-- '-- '-- 55 '-- mg '-- '-- '-- '-- e71c6ba0-0129-475b-bb8d-e8862297a4b9 '-- yes '-- '-- Chemotherapy +TCGA-OV b3511675-fd68-4745-8020-e290ca0fd115 Informed Consent 1430 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1703 56 false '-- '-- '-- '-- -20622 1815 d3239bb4-63cb-5ba3-911b-f8ef467f8bb5 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1703_demographic Dead '-- '-- '-- '-- 20622 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1815.0 '-- '-- 17951518-166e-5b1e-b7a9-d3cda6b3bd1c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1703_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 946 743 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1703_treatment5 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 800 '-- mg '-- '-- '-- '-- f526ac04-3f56-4bc4-943d-aa044f497d2c '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1691 51 false '-- '-- '-- '-- -18664 1470 3e0c0748-6430-57d2-81fa-e74f67bba190 '-- not reported female '-- '-- '-- '-- white TCGA-29-1691_demographic Dead '-- '-- '-- '-- 18664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1470.0 '-- '-- 462c9b3c-1b04-5e25-bdd0-cb23c26c7256 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1691_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 137 '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1691_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 19b3b873-f0c8-4043-a827-11da06f523b9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1691 51 false '-- '-- '-- '-- -18664 1470 3e0c0748-6430-57d2-81fa-e74f67bba190 '-- not reported female '-- '-- '-- '-- white TCGA-29-1691_demographic Dead '-- '-- '-- '-- 18664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1470.0 '-- '-- 462c9b3c-1b04-5e25-bdd0-cb23c26c7256 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1691_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 1353 1233 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1691_treatment3 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 21675d44-1a2b-4119-bebf-87315ce21123 '-- yes '-- '-- Chemotherapy +TCGA-OV b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1691 51 false '-- '-- '-- '-- -18664 1470 3e0c0748-6430-57d2-81fa-e74f67bba190 '-- not reported female '-- '-- '-- '-- white TCGA-29-1691_demographic Dead '-- '-- '-- '-- 18664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1470.0 '-- '-- 462c9b3c-1b04-5e25-bdd0-cb23c26c7256 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1691_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 1353 1233 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1691_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 422134be-b175-48af-9f71-330e754e04aa '-- yes '-- '-- Chemotherapy +TCGA-OV b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1691 51 false '-- '-- '-- '-- -18664 1470 3e0c0748-6430-57d2-81fa-e74f67bba190 '-- not reported female '-- '-- '-- '-- white TCGA-29-1691_demographic Dead '-- '-- '-- '-- 18664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1470.0 '-- '-- 462c9b3c-1b04-5e25-bdd0-cb23c26c7256 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1691_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- '-- 988 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1691_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 807f244e-7c88-4767-a43c-cd3216e872da '-- yes '-- '-- Chemotherapy +TCGA-OV b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1691 51 false '-- '-- '-- '-- -18664 1470 3e0c0748-6430-57d2-81fa-e74f67bba190 '-- not reported female '-- '-- '-- '-- white TCGA-29-1691_demographic Dead '-- '-- '-- '-- 18664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1470.0 '-- '-- 462c9b3c-1b04-5e25-bdd0-cb23c26c7256 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1691_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 868 654 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1691_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- a93d26be-fd01-447d-b0fc-663276156cfb '-- yes '-- '-- Chemotherapy +TCGA-OV b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1691 51 false '-- '-- '-- '-- -18664 1470 3e0c0748-6430-57d2-81fa-e74f67bba190 '-- not reported female '-- '-- '-- '-- white TCGA-29-1691_demographic Dead '-- '-- '-- '-- 18664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1470.0 '-- '-- 462c9b3c-1b04-5e25-bdd0-cb23c26c7256 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1691_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 868 654 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1691_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- ab171b2b-788a-4081-ae4f-0772abcc0e25 '-- yes '-- '-- Chemotherapy +TCGA-OV b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1691 51 false '-- '-- '-- '-- -18664 1470 3e0c0748-6430-57d2-81fa-e74f67bba190 '-- not reported female '-- '-- '-- '-- white TCGA-29-1691_demographic Dead '-- '-- '-- '-- 18664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1470.0 '-- '-- 462c9b3c-1b04-5e25-bdd0-cb23c26c7256 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1691_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 137 '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1691_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ab9e8288-c148-5fc9-8502-54b6d560c9a5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1691 51 false '-- '-- '-- '-- -18664 1470 3e0c0748-6430-57d2-81fa-e74f67bba190 '-- not reported female '-- '-- '-- '-- white TCGA-29-1691_demographic Dead '-- '-- '-- '-- 18664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1470.0 '-- '-- 462c9b3c-1b04-5e25-bdd0-cb23c26c7256 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1691_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- '-- 988 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-29-1691_treatment8 Megestrol Acetate '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cf846774-fdc5-405a-9588-3b4105652c67 '-- yes '-- '-- Hormone Therapy +TCGA-OV b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1691 51 false '-- '-- '-- '-- -18664 1470 3e0c0748-6430-57d2-81fa-e74f67bba190 '-- not reported female '-- '-- '-- '-- white TCGA-29-1691_demographic Dead '-- '-- '-- '-- 18664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1470.0 '-- '-- 462c9b3c-1b04-5e25-bdd0-cb23c26c7256 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1691_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1691_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e5572e60-116e-40e7-8580-0db6d6c662a4 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1691 51 false '-- '-- '-- '-- -18664 1470 3e0c0748-6430-57d2-81fa-e74f67bba190 '-- not reported female '-- '-- '-- '-- white TCGA-29-1691_demographic Dead '-- '-- '-- '-- 18664 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1470.0 '-- '-- 462c9b3c-1b04-5e25-bdd0-cb23c26c7256 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1691_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- '-- 868 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-29-1691_treatment9 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- eed38277-d0a0-4093-b8d3-4cff500fb40a '-- yes '-- '-- Chemotherapy +TCGA-OV b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1691 51 false '-- '-- '-- '-- -18664 1470 3e0c0748-6430-57d2-81fa-e74f67bba190 '-- not reported female '-- '-- '-- '-- white TCGA-29-1691_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 89cbf08d-96f7-4c9a-875f-61ee382f54f6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1691_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1691_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1691_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 10045b25-cdb9-4973-b9e7-14f068c70f0a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1691 51 false '-- '-- '-- '-- -18664 1470 3e0c0748-6430-57d2-81fa-e74f67bba190 '-- not reported female '-- '-- '-- '-- white TCGA-29-1691_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 89cbf08d-96f7-4c9a-875f-61ee382f54f6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1691_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1691_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 624 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1691_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 873f971c-773f-4adc-9c0f-cf5d447f04b7 '-- yes '-- '-- Surgery, NOS +TCGA-OV b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1691 51 false '-- '-- '-- '-- -18664 1470 3e0c0748-6430-57d2-81fa-e74f67bba190 '-- not reported female '-- '-- '-- '-- white TCGA-29-1691_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 89cbf08d-96f7-4c9a-875f-61ee382f54f6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1691_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1691_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1691_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- efa4edd8-20b8-41dd-a649-d3bd155fd616 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1691 51 false '-- '-- '-- '-- -18664 1470 3e0c0748-6430-57d2-81fa-e74f67bba190 '-- not reported female '-- '-- '-- '-- white TCGA-29-1691_demographic Dead '-- '-- '-- '-- 19277 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 613 '-- '-- '-- e9f6e17f-b0e6-456f-aee7-8cb4e48874af false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1691_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1691_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1691_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8b8308b0-7844-4fb5-a3d5-c36b8e4730e4 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1691 51 false '-- '-- '-- '-- -18664 1470 3e0c0748-6430-57d2-81fa-e74f67bba190 '-- not reported female '-- '-- '-- '-- white TCGA-29-1691_demographic Dead '-- '-- '-- '-- 19277 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 613 '-- '-- '-- e9f6e17f-b0e6-456f-aee7-8cb4e48874af false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1691_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1691_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1691_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c55e4769-e78b-4656-9615-0898a5c60998 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV b45c543a-40d9-423a-a7fa-98e4b325b487 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1928 77 false '-- '-- '-- '-- -28126 336 e160398a-2b94-5d6a-88dc-1950614fd97d '-- not reported female '-- '-- '-- '-- white TCGA-24-1928_demographic Dead '-- '-- '-- '-- 28126 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 336.0 '-- '-- 20d832c5-76d1-5895-aa49-3794d469aede true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1928_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 126 14 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1928_treatment5 Cisplatin '-- '-- '-- '-- '-- '-- '-- 537 '-- mg '-- '-- '-- '-- 1faabed2-3b8b-49ba-b0b6-f5e3327d28cf Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b45c543a-40d9-423a-a7fa-98e4b325b487 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1928 77 false '-- '-- '-- '-- -28126 336 e160398a-2b94-5d6a-88dc-1950614fd97d '-- not reported female '-- '-- '-- '-- white TCGA-24-1928_demographic Dead '-- '-- '-- '-- 28126 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 336.0 '-- '-- 20d832c5-76d1-5895-aa49-3794d469aede true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1928_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 282 254 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1928_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 138 '-- mg '-- '-- '-- '-- 206c6379-6da7-4e1b-b997-eb7472e9f959 '-- yes '-- '-- Chemotherapy +TCGA-OV b45c543a-40d9-423a-a7fa-98e4b325b487 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1928 77 false '-- '-- '-- '-- -28126 336 e160398a-2b94-5d6a-88dc-1950614fd97d '-- not reported female '-- '-- '-- '-- white TCGA-24-1928_demographic Dead '-- '-- '-- '-- 28126 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 336.0 '-- '-- 20d832c5-76d1-5895-aa49-3794d469aede true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1928_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- '-- 327 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-1928_treatment2 Etoposide '-- '-- '-- '-- '-- '-- '-- 1200 '-- mg '-- '-- '-- '-- 45dfb6ee-1b16-4b3b-9965-592c263730a1 '-- yes '-- '-- Chemotherapy +TCGA-OV b45c543a-40d9-423a-a7fa-98e4b325b487 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1928 77 false '-- '-- '-- '-- -28126 336 e160398a-2b94-5d6a-88dc-1950614fd97d '-- not reported female '-- '-- '-- '-- white TCGA-24-1928_demographic Dead '-- '-- '-- '-- 28126 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 336.0 '-- '-- 20d832c5-76d1-5895-aa49-3794d469aede true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1928_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 226 156 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1928_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- 560 '-- mg '-- '-- '-- '-- 60b47769-537d-536e-bfc4-e058ffe51a16 '-- yes '-- '-- Chemotherapy +TCGA-OV b45c543a-40d9-423a-a7fa-98e4b325b487 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1928 77 false '-- '-- '-- '-- -28126 336 e160398a-2b94-5d6a-88dc-1950614fd97d '-- not reported female '-- '-- '-- '-- white TCGA-24-1928_demographic Dead '-- '-- '-- '-- 28126 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 336.0 '-- '-- 20d832c5-76d1-5895-aa49-3794d469aede true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1928_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 126 14 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1928_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1130 '-- mg '-- '-- '-- '-- d0516061-9e84-47ca-a334-53a84a5eea0e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b45c543a-40d9-423a-a7fa-98e4b325b487 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1928 77 false '-- '-- '-- '-- -28126 336 e160398a-2b94-5d6a-88dc-1950614fd97d '-- not reported female '-- '-- '-- '-- white TCGA-24-1928_demographic Dead '-- '-- '-- '-- 28126 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 336.0 '-- '-- 20d832c5-76d1-5895-aa49-3794d469aede true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1928_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1928_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f5a5f9f8-0965-448d-83f6-a351acb22075 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b45c543a-40d9-423a-a7fa-98e4b325b487 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1928 77 false '-- '-- '-- '-- -28126 336 e160398a-2b94-5d6a-88dc-1950614fd97d '-- not reported female '-- '-- '-- '-- white TCGA-24-1928_demographic Dead '-- '-- '-- '-- 28196 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 70 '-- '-- '-- 5fee2713-6cd2-4687-a32d-1320979acafa false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1928_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1928_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1928_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a1ad3111-a4c9-41c2-811e-cc448171f12a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV b45c543a-40d9-423a-a7fa-98e4b325b487 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1928 77 false '-- '-- '-- '-- -28126 336 e160398a-2b94-5d6a-88dc-1950614fd97d '-- not reported female '-- '-- '-- '-- white TCGA-24-1928_demographic Dead '-- '-- '-- '-- 28196 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 70 '-- '-- '-- 5fee2713-6cd2-4687-a32d-1320979acafa false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1928_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1928_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1928_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aa83be3e-fdfa-4be3-a6b7-ea64379049e7 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV b46263ab-c3ca-4fda-a895-74c7e6e6fe22 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1332 70 false '-- '-- '-- '-- -25786 1247 b30355c0-e9f5-5b9d-88e5-05f6e7ec84d8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1332_demographic Dead '-- '-- '-- '-- 26179 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 393 '-- '-- '-- 36c3ac04-81eb-4379-b954-1e4e1a0c6dfe false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1332_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1332_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1332_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2e2274e1-5dbb-4f12-b890-b15463d4008d '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV b46263ab-c3ca-4fda-a895-74c7e6e6fe22 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1332 70 false '-- '-- '-- '-- -25786 1247 b30355c0-e9f5-5b9d-88e5-05f6e7ec84d8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1332_demographic Dead '-- '-- '-- '-- 26179 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 393 '-- '-- '-- 36c3ac04-81eb-4379-b954-1e4e1a0c6dfe false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1332_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1332_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1332_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 49c9720b-db0c-4cfb-b763-d618ceacfb40 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV b46263ab-c3ca-4fda-a895-74c7e6e6fe22 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1332 70 false '-- '-- '-- '-- -25786 1247 b30355c0-e9f5-5b9d-88e5-05f6e7ec84d8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1332_demographic Dead '-- '-- '-- '-- 25786 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1247.0 '-- '-- 6686400d-d4de-5369-ae39-7518bd6bfcad true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1332_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 606 424 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1332_treatment12 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 014a2315-b937-40bc-9542-e58dd084cd93 '-- yes '-- '-- Chemotherapy +TCGA-OV b46263ab-c3ca-4fda-a895-74c7e6e6fe22 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1332 70 false '-- '-- '-- '-- -25786 1247 b30355c0-e9f5-5b9d-88e5-05f6e7ec84d8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1332_demographic Dead '-- '-- '-- '-- 25786 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1247.0 '-- '-- 6686400d-d4de-5369-ae39-7518bd6bfcad true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1332_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 606 424 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1332_treatment11 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 07402307-0587-47f6-8328-f9d88724936b '-- yes '-- '-- Chemotherapy +TCGA-OV b46263ab-c3ca-4fda-a895-74c7e6e6fe22 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1332 70 false '-- '-- '-- '-- -25786 1247 b30355c0-e9f5-5b9d-88e5-05f6e7ec84d8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1332_demographic Dead '-- '-- '-- '-- 25786 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1247.0 '-- '-- 6686400d-d4de-5369-ae39-7518bd6bfcad true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1332_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 179 28 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1332_treatment9 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1c8b501d-5526-456b-acaa-37b96a8364f8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b46263ab-c3ca-4fda-a895-74c7e6e6fe22 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1332 70 false '-- '-- '-- '-- -25786 1247 b30355c0-e9f5-5b9d-88e5-05f6e7ec84d8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1332_demographic Dead '-- '-- '-- '-- 25786 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1247.0 '-- '-- 6686400d-d4de-5369-ae39-7518bd6bfcad true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1332_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1155 1094 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1332_treatment6 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 21588d82-3cd2-4131-ac40-4c9aa1137269 '-- yes '-- '-- Chemotherapy +TCGA-OV b46263ab-c3ca-4fda-a895-74c7e6e6fe22 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1332 70 false '-- '-- '-- '-- -25786 1247 b30355c0-e9f5-5b9d-88e5-05f6e7ec84d8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1332_demographic Dead '-- '-- '-- '-- 25786 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1247.0 '-- '-- 6686400d-d4de-5369-ae39-7518bd6bfcad true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1332_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 179 28 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1332_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2677d8ee-59f4-4908-8921-a80d35cdabc8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b46263ab-c3ca-4fda-a895-74c7e6e6fe22 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1332 70 false '-- '-- '-- '-- -25786 1247 b30355c0-e9f5-5b9d-88e5-05f6e7ec84d8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1332_demographic Dead '-- '-- '-- '-- 25786 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1247.0 '-- '-- 6686400d-d4de-5369-ae39-7518bd6bfcad true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1332_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1155 1094 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1332_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 59be1e2d-dd7b-47b5-8ce9-62abaa67479a '-- yes '-- '-- Chemotherapy +TCGA-OV b46263ab-c3ca-4fda-a895-74c7e6e6fe22 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1332 70 false '-- '-- '-- '-- -25786 1247 b30355c0-e9f5-5b9d-88e5-05f6e7ec84d8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1332_demographic Dead '-- '-- '-- '-- 25786 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1247.0 '-- '-- 6686400d-d4de-5369-ae39-7518bd6bfcad true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1332_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1216 1155 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1332_treatment10 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7a473ba1-db4f-4138-8afc-fc22de0bb5c2 '-- yes '-- '-- Chemotherapy +TCGA-OV b46263ab-c3ca-4fda-a895-74c7e6e6fe22 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1332 70 false '-- '-- '-- '-- -25786 1247 b30355c0-e9f5-5b9d-88e5-05f6e7ec84d8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1332_demographic Dead '-- '-- '-- '-- 25786 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1247.0 '-- '-- 6686400d-d4de-5369-ae39-7518bd6bfcad true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1332_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1332_treatment7 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 971c9bf0-ac3a-4c60-8357-648682f8ab2b '-- yes '-- '-- Chemotherapy +TCGA-OV b46263ab-c3ca-4fda-a895-74c7e6e6fe22 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1332 70 false '-- '-- '-- '-- -25786 1247 b30355c0-e9f5-5b9d-88e5-05f6e7ec84d8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1332_demographic Dead '-- '-- '-- '-- 25786 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1247.0 '-- '-- 6686400d-d4de-5369-ae39-7518bd6bfcad true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1332_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 179 28 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1332_treatment Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c06afc1b-0d7e-5ba3-a070-aab9e7264afc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b46263ab-c3ca-4fda-a895-74c7e6e6fe22 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1332 70 false '-- '-- '-- '-- -25786 1247 b30355c0-e9f5-5b9d-88e5-05f6e7ec84d8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1332_demographic Dead '-- '-- '-- '-- 25786 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1247.0 '-- '-- 6686400d-d4de-5369-ae39-7518bd6bfcad true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1332_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1063 971 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1332_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c8284aff-53c8-4e1f-b001-069ea4b4c2f1 '-- yes '-- '-- Chemotherapy +TCGA-OV b46263ab-c3ca-4fda-a895-74c7e6e6fe22 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1332 70 false '-- '-- '-- '-- -25786 1247 b30355c0-e9f5-5b9d-88e5-05f6e7ec84d8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1332_demographic Dead '-- '-- '-- '-- 25786 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1247.0 '-- '-- 6686400d-d4de-5369-ae39-7518bd6bfcad true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1332_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1332_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cddd1ff2-8081-4d6e-9d99-e41e5a5a9f26 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b46263ab-c3ca-4fda-a895-74c7e6e6fe22 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1332 70 false '-- '-- '-- '-- -25786 1247 b30355c0-e9f5-5b9d-88e5-05f6e7ec84d8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1332_demographic Dead '-- '-- '-- '-- 25786 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1247.0 '-- '-- 6686400d-d4de-5369-ae39-7518bd6bfcad true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1332_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1332_treatment5 Gemcitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fc111872-2775-4599-abaf-55149f69cdbe '-- yes '-- '-- Chemotherapy +TCGA-OV b46263ab-c3ca-4fda-a895-74c7e6e6fe22 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1332 70 false '-- '-- '-- '-- -25786 1247 b30355c0-e9f5-5b9d-88e5-05f6e7ec84d8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1332_demographic Dead '-- '-- '-- '-- 25786 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1247.0 '-- '-- 6686400d-d4de-5369-ae39-7518bd6bfcad true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1332_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1063 971 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1332_treatment8 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fe4657ff-79d9-4a9e-8361-2d52a34df616 '-- yes '-- '-- Chemotherapy +TCGA-OV b4b49027-7815-4813-9769-a3fe3a26a37a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2393 80 false '-- '-- '-- '-- -29585 1157 d287eb95-3746-5617-b7a4-31ccca93dffb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2393_demographic Dead '-- '-- '-- '-- 29585 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1157.0 '-- '-- 635b00aa-baef-5228-96e1-96c52b8da8a3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2393_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 123 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2393_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 01f77f81-c3b9-4a94-9e4e-940cbe0d0e51 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b4b49027-7815-4813-9769-a3fe3a26a37a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2393 80 false '-- '-- '-- '-- -29585 1157 d287eb95-3746-5617-b7a4-31ccca93dffb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2393_demographic Dead '-- '-- '-- '-- 29585 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1157.0 '-- '-- 635b00aa-baef-5228-96e1-96c52b8da8a3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2393_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 517 305 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2393_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 741660b1-377a-46a2-9228-5997f90230bd '-- yes '-- '-- Chemotherapy +TCGA-OV b4b49027-7815-4813-9769-a3fe3a26a37a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2393 80 false '-- '-- '-- '-- -29585 1157 d287eb95-3746-5617-b7a4-31ccca93dffb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2393_demographic Dead '-- '-- '-- '-- 29585 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1157.0 '-- '-- 635b00aa-baef-5228-96e1-96c52b8da8a3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2393_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2393_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7f236410-a19b-46b8-bbac-f12a0ee3bfcc Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b4b49027-7815-4813-9769-a3fe3a26a37a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2393 80 false '-- '-- '-- '-- -29585 1157 d287eb95-3746-5617-b7a4-31ccca93dffb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2393_demographic Dead '-- '-- '-- '-- 29585 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1157.0 '-- '-- 635b00aa-baef-5228-96e1-96c52b8da8a3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2393_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 123 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2393_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ebf44a84-1696-59f7-9b25-926975930d32 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b4b49027-7815-4813-9769-a3fe3a26a37a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2393 80 false '-- '-- '-- '-- -29585 1157 d287eb95-3746-5617-b7a4-31ccca93dffb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2393_demographic Dead '-- '-- '-- '-- 29890 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 305 '-- '-- '-- ae09478c-b9fc-4b28-b133-5bf5b4f20b0d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-2393_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-2393_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2393_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1923c444-c05e-4171-9561-ff19c079808a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV b4b49027-7815-4813-9769-a3fe3a26a37a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2393 80 false '-- '-- '-- '-- -29585 1157 d287eb95-3746-5617-b7a4-31ccca93dffb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2393_demographic Dead '-- '-- '-- '-- 29890 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 305 '-- '-- '-- ae09478c-b9fc-4b28-b133-5bf5b4f20b0d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-2393_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-2393_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2393_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f356349d-2179-456a-9c3b-239d735cde43 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV b520aae5-65a6-4b27-bc2a-10b02c7b1aeb Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1322 62 false '-- '-- '-- '-- -22646 91 895829cd-984f-5029-ac7d-de8de3feb97f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1322_demographic Dead '-- '-- '-- '-- 22646 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 91.0 '-- '-- d7d5faf4-cb8e-5db8-9a9c-7894070b7ead true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1322_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 91 30 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1322_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0552af02-bfa2-562e-a1c2-e127329c9904 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b520aae5-65a6-4b27-bc2a-10b02c7b1aeb Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1322 62 false '-- '-- '-- '-- -22646 91 895829cd-984f-5029-ac7d-de8de3feb97f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1322_demographic Dead '-- '-- '-- '-- 22646 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 91.0 '-- '-- d7d5faf4-cb8e-5db8-9a9c-7894070b7ead true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1322_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 91 30 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1322_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4caf2e83-ef64-4910-94bf-0d82bc556152 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b520aae5-65a6-4b27-bc2a-10b02c7b1aeb Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1322 62 false '-- '-- '-- '-- -22646 91 895829cd-984f-5029-ac7d-de8de3feb97f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1322_demographic Dead '-- '-- '-- '-- 22646 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 91.0 '-- '-- d7d5faf4-cb8e-5db8-9a9c-7894070b7ead true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1322_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1322_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d9532dfc-9ef1-44c2-93dc-999d90fdaf5b Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b63cad1b-b4c7-4e50-8acb-5cee4e9ce4a9 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0794 60 false '-- '-- '-- '-- -21945 1919 fa35c656-8f50-5dec-ba84-60947bff024e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0794_demographic Dead '-- '-- '-- '-- 22790 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 845 '-- '-- '-- 9360765c-7910-4df0-b4d6-d6cee5ba5d00 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0794_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0794_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0794_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2a032c37-5ed6-420e-87df-bd83c84cd571 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV b63cad1b-b4c7-4e50-8acb-5cee4e9ce4a9 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0794 60 false '-- '-- '-- '-- -21945 1919 fa35c656-8f50-5dec-ba84-60947bff024e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0794_demographic Dead '-- '-- '-- '-- 22790 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 845 '-- '-- '-- 9360765c-7910-4df0-b4d6-d6cee5ba5d00 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0794_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0794_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0794_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b2374cf6-1c63-47ac-8a00-04bdc653791a '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV b63cad1b-b4c7-4e50-8acb-5cee4e9ce4a9 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0794 60 false '-- '-- '-- '-- -21945 1919 fa35c656-8f50-5dec-ba84-60947bff024e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0794_demographic Dead '-- '-- '-- '-- 21945 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1919.0 '-- '-- a5ff4951-fce7-5218-9310-fef56c55a850 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0794_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0794_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1b4b9424-0e02-4736-8f30-7c7559d4bc93 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b63cad1b-b4c7-4e50-8acb-5cee4e9ce4a9 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0794 60 false '-- '-- '-- '-- -21945 1919 fa35c656-8f50-5dec-ba84-60947bff024e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0794_demographic Dead '-- '-- '-- '-- 21945 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1919.0 '-- '-- a5ff4951-fce7-5218-9310-fef56c55a850 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0794_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 132 26 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0794_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9db4ed1b-104f-4fab-9cda-3a2213c87acf Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b63cad1b-b4c7-4e50-8acb-5cee4e9ce4a9 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0794 60 false '-- '-- '-- '-- -21945 1919 fa35c656-8f50-5dec-ba84-60947bff024e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0794_demographic Dead '-- '-- '-- '-- 21945 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1919.0 '-- '-- a5ff4951-fce7-5218-9310-fef56c55a850 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0794_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 132 26 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-13-0794_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- bf1b3f3a-97be-5df6-8542-4c76ecd62e0a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b63cad1b-b4c7-4e50-8acb-5cee4e9ce4a9 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0794 60 false '-- '-- '-- '-- -21945 1919 fa35c656-8f50-5dec-ba84-60947bff024e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0794_demographic Dead '-- '-- '-- '-- 22790 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 845 '-- '-- '-- de9393c8-e1a5-4014-afad-06d09c39ef63 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0794_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0794_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV b6b607cd-67b8-4c04-a212-a4e8c0743f05 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1850 72 false '-- '-- '-- '-- -26369 '-- d6afc291-5d82-5eb0-90e0-91d9933e5c0a '-- not reported female '-- '-- '-- '-- white TCGA-24-1850_demographic Alive '-- '-- '-- '-- 26369 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 168.0 '-- '-- f34214f1-17e6-51fa-a214-6826ccc10fd8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1850_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1850_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 08a909a0-6ca2-47fb-87fd-7514445993ee Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b6b607cd-67b8-4c04-a212-a4e8c0743f05 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1850 72 false '-- '-- '-- '-- -26369 '-- d6afc291-5d82-5eb0-90e0-91d9933e5c0a '-- not reported female '-- '-- '-- '-- white TCGA-24-1850_demographic Alive '-- '-- '-- '-- 26369 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 168.0 '-- '-- f34214f1-17e6-51fa-a214-6826ccc10fd8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1850_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 138 34 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1850_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 706 '-- mg '-- '-- '-- '-- 294270d5-39c3-4bff-9e8d-6012f7b1ff73 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b6b607cd-67b8-4c04-a212-a4e8c0743f05 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1850 72 false '-- '-- '-- '-- -26369 '-- d6afc291-5d82-5eb0-90e0-91d9933e5c0a '-- not reported female '-- '-- '-- '-- white TCGA-24-1850_demographic Alive '-- '-- '-- '-- 26369 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 168.0 '-- '-- f34214f1-17e6-51fa-a214-6826ccc10fd8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1850_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 138 34 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1850_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 3138 '-- mg '-- '-- '-- '-- b0328c0c-f7ff-526e-9535-360ebe7a5d00 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b7715ff6-57a6-4513-9447-aa8bc93f16d4 Informed Consent 22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1343 72 false '-- '-- '-- '-- -26428 361 f71d969e-38e8-523e-8db7-d8b2e3f0ae0c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1343_demographic Dead '-- '-- '-- '-- 26428 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 361.0 '-- '-- bd744f83-779b-5ca5-af2b-45670de8fcec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1343_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 323 262 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1343_treatment8 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0a294ee7-808f-43fc-a4aa-3810346ace6f '-- yes '-- '-- Chemotherapy +TCGA-OV b7715ff6-57a6-4513-9447-aa8bc93f16d4 Informed Consent 22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1343 72 false '-- '-- '-- '-- -26428 361 f71d969e-38e8-523e-8db7-d8b2e3f0ae0c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1343_demographic Dead '-- '-- '-- '-- 26428 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 361.0 '-- '-- bd744f83-779b-5ca5-af2b-45670de8fcec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1343_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 323 262 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1343_treatment5 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 11b727cb-d596-4d37-979c-35dd35c18740 '-- yes '-- '-- Chemotherapy +TCGA-OV b7715ff6-57a6-4513-9447-aa8bc93f16d4 Informed Consent 22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1343 72 false '-- '-- '-- '-- -26428 361 f71d969e-38e8-523e-8db7-d8b2e3f0ae0c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1343_demographic Dead '-- '-- '-- '-- 26428 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 361.0 '-- '-- bd744f83-779b-5ca5-af2b-45670de8fcec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1343_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 170 50 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1343_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 1a7a6396-27a8-48f9-a39d-5e299397e004 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b7715ff6-57a6-4513-9447-aa8bc93f16d4 Informed Consent 22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1343 72 false '-- '-- '-- '-- -26428 361 f71d969e-38e8-523e-8db7-d8b2e3f0ae0c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1343_demographic Dead '-- '-- '-- '-- 26428 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 361.0 '-- '-- bd744f83-779b-5ca5-af2b-45670de8fcec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1343_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 170 50 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1343_treatment3 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 800 '-- mg/m2 '-- '-- '-- '-- 36480907-4106-42cd-9737-eecf33a87557 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b7715ff6-57a6-4513-9447-aa8bc93f16d4 Informed Consent 22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1343 72 false '-- '-- '-- '-- -26428 361 f71d969e-38e8-523e-8db7-d8b2e3f0ae0c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1343_demographic Dead '-- '-- '-- '-- 26428 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 361.0 '-- '-- bd744f83-779b-5ca5-af2b-45670de8fcec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1343_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 354 323 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1343_treatment Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3a42b4ee-f935-5ed4-a090-fd63bb17beb5 '-- yes '-- '-- Chemotherapy +TCGA-OV b7715ff6-57a6-4513-9447-aa8bc93f16d4 Informed Consent 22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1343 72 false '-- '-- '-- '-- -26428 361 f71d969e-38e8-523e-8db7-d8b2e3f0ae0c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1343_demographic Dead '-- '-- '-- '-- 26428 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 361.0 '-- '-- bd744f83-779b-5ca5-af2b-45670de8fcec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1343_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 262 170 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1343_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a923e63a-228d-4f5e-9a90-782d1a63dd52 '-- yes '-- '-- Chemotherapy +TCGA-OV b7715ff6-57a6-4513-9447-aa8bc93f16d4 Informed Consent 22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1343 72 false '-- '-- '-- '-- -26428 361 f71d969e-38e8-523e-8db7-d8b2e3f0ae0c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1343_demographic Dead '-- '-- '-- '-- 26428 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 361.0 '-- '-- bd744f83-779b-5ca5-af2b-45670de8fcec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1343_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 170 50 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1343_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- b9ae122b-8e83-40c4-8b01-160db0e8e912 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b7715ff6-57a6-4513-9447-aa8bc93f16d4 Informed Consent 22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1343 72 false '-- '-- '-- '-- -26428 361 f71d969e-38e8-523e-8db7-d8b2e3f0ae0c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1343_demographic Dead '-- '-- '-- '-- 26428 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 361.0 '-- '-- bd744f83-779b-5ca5-af2b-45670de8fcec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1343_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 262 170 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1343_treatment6 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ec734cef-bdb2-4dd5-a9ec-380f44d04b08 '-- yes '-- '-- Chemotherapy +TCGA-OV b7715ff6-57a6-4513-9447-aa8bc93f16d4 Informed Consent 22 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1343 72 false '-- '-- '-- '-- -26428 361 f71d969e-38e8-523e-8db7-d8b2e3f0ae0c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1343_demographic Dead '-- '-- '-- '-- 26428 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 361.0 '-- '-- bd744f83-779b-5ca5-af2b-45670de8fcec true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1343_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1343_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- edfe6b0c-ffbf-4013-af01-7e3fb00b8fc1 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b783f33b-734a-4801-bf39-b559a2035c6f '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0910 58 false '-- '-- '-- '-- -21473 '-- 02c834f7-3d97-5d5a-85ba-df4939f9e4d5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0910_demographic Alive '-- '-- '-- '-- 22685 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 1212 '-- '-- '-- 75a6b2fa-eb02-4fbc-972d-68daa5db8837 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0910_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0910_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV b783f33b-734a-4801-bf39-b559a2035c6f '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0910 58 false '-- '-- '-- '-- -21473 '-- 02c834f7-3d97-5d5a-85ba-df4939f9e4d5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0910_demographic Alive '-- '-- '-- '-- 21473 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3548.0 '-- '-- 7a3f1e6f-c559-5681-909a-d54d09b1634a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0910_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 289 238 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0910_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- 0c05cc19-8aad-5563-b5c6-882f309fee36 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b783f33b-734a-4801-bf39-b559a2035c6f '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0910 58 false '-- '-- '-- '-- -21473 '-- 02c834f7-3d97-5d5a-85ba-df4939f9e4d5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0910_demographic Alive '-- '-- '-- '-- 21473 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3548.0 '-- '-- 7a3f1e6f-c559-5681-909a-d54d09b1634a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0910_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0910_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 14b9cce1-10a0-48bc-b5ee-f64bc3141258 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b783f33b-734a-4801-bf39-b559a2035c6f '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0910 58 false '-- '-- '-- '-- -21473 '-- 02c834f7-3d97-5d5a-85ba-df4939f9e4d5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0910_demographic Alive '-- '-- '-- '-- 21473 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3548.0 '-- '-- 7a3f1e6f-c559-5681-909a-d54d09b1634a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0910_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 175 70 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0910_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- a09cd8f6-3123-4fea-974d-23a39536f0bb Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b783f33b-734a-4801-bf39-b559a2035c6f '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0910 58 false '-- '-- '-- '-- -21473 '-- 02c834f7-3d97-5d5a-85ba-df4939f9e4d5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0910_demographic Alive '-- '-- '-- '-- 21473 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3548.0 '-- '-- 7a3f1e6f-c559-5681-909a-d54d09b1634a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0910_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 175 70 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0910_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c292e95b-eb92-400a-8596-cff98c554e48 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b8023162-5e82-40e6-ad8c-8acf81821f01 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-WR-A838 72 false '-- '-- '-- United States -26418 304 2e3f8de2-09c9-56c0-9615-ff7b01989992 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-WR-A838_demographic Dead '-- '-- '-- '-- 26663 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 245 '-- '-- '-- 4c207882-6cf0-4f0f-a759-abec3c65f99e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-WR-A838_diagnosis4 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-WR-A838_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV b8023162-5e82-40e6-ad8c-8acf81821f01 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-WR-A838 72 false '-- '-- '-- United States -26418 304 2e3f8de2-09c9-56c0-9615-ff7b01989992 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-WR-A838_demographic Dead '-- '-- '-- '-- 26663 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 245 '-- '-- '-- 54f790b2-0b9f-4ea6-a34c-468b5fe3a64a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-WR-A838_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-WR-A838_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-WR-A838_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6cae8cff-a066-4b41-a0b8-58833105ae62 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV b8023162-5e82-40e6-ad8c-8acf81821f01 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-WR-A838 72 false '-- '-- '-- United States -26418 304 2e3f8de2-09c9-56c0-9615-ff7b01989992 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-WR-A838_demographic Dead '-- '-- '-- '-- 26663 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 245 '-- '-- '-- 54f790b2-0b9f-4ea6-a34c-468b5fe3a64a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-WR-A838_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-WR-A838_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-WR-A838_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f5ded378-8e3c-48ea-9ebc-b8032253785a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV b8023162-5e82-40e6-ad8c-8acf81821f01 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-WR-A838 72 false '-- '-- '-- United States -26418 304 2e3f8de2-09c9-56c0-9615-ff7b01989992 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-WR-A838_demographic Dead '-- '-- '-- '-- 26663 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 245 '-- '-- '-- 5959f04b-4bb1-4cc6-9763-e4b2579a490e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-WR-A838_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-WR-A838_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-WR-A838_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 71881689-383c-4f16-9165-78127f797ebe '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV b8023162-5e82-40e6-ad8c-8acf81821f01 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-WR-A838 72 false '-- '-- '-- United States -26418 304 2e3f8de2-09c9-56c0-9615-ff7b01989992 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-WR-A838_demographic Dead '-- '-- '-- '-- 26663 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 245 '-- '-- '-- 5959f04b-4bb1-4cc6-9763-e4b2579a490e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-WR-A838_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-WR-A838_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-WR-A838_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a4f72fca-e113-4ecb-807a-7bc6f1cc9e5d '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV b8023162-5e82-40e6-ad8c-8acf81821f01 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-WR-A838 72 false '-- '-- '-- United States -26418 304 2e3f8de2-09c9-56c0-9615-ff7b01989992 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-WR-A838_demographic Dead '-- '-- '-- '-- 26418 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 304.0 '-- '-- fefb6772-4f28-54b1-8e0d-7b57065372c5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- no No '-- '-- '-- '-- Ovary '-- '-- TCGA-WR-A838_diagnosis '-- No Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2013 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-WR-A838_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7613299c-f0d7-4f00-8418-cf448d40ec8a Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b8023162-5e82-40e6-ad8c-8acf81821f01 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-WR-A838 72 false '-- '-- '-- United States -26418 304 2e3f8de2-09c9-56c0-9615-ff7b01989992 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-WR-A838_demographic Dead '-- '-- '-- '-- 26418 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 304.0 '-- '-- fefb6772-4f28-54b1-8e0d-7b57065372c5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- no No '-- '-- '-- '-- Ovary '-- '-- TCGA-WR-A838_diagnosis '-- No Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2013 '-- No '-- 92 30 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-WR-A838_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7cfb0d44-4e59-517a-9019-0834b030ab52 '-- yes Progressive Disease '-- Chemotherapy +TCGA-OV b8023162-5e82-40e6-ad8c-8acf81821f01 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-WR-A838 72 false '-- '-- '-- United States -26418 304 2e3f8de2-09c9-56c0-9615-ff7b01989992 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-WR-A838_demographic Dead '-- '-- '-- '-- 26418 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 304.0 '-- '-- fefb6772-4f28-54b1-8e0d-7b57065372c5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- no No '-- '-- '-- '-- Ovary '-- '-- TCGA-WR-A838_diagnosis '-- No Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2013 '-- No '-- 92 30 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-WR-A838_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d5124712-7da8-4714-b658-bf40229f7105 '-- yes Progressive Disease '-- Chemotherapy +TCGA-OV b867e933-e3e3-4491-9bb6-b18c48d6f173 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2289 68 false '-- '-- '-- '-- -25191 2049 c9b134f1-5648-5775-8531-9769fbda3073 '-- not reported female '-- '-- '-- '-- white TCGA-24-2289_demographic Dead '-- '-- '-- '-- 25191 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2049.0 '-- '-- 566061b0-53fa-5c9b-aba1-fe01ff343b32 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2289_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 183 4 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2289_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 645 '-- mg '-- '-- '-- '-- 029f7aa0-151f-44ec-9551-8c7c98234723 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b867e933-e3e3-4491-9bb6-b18c48d6f173 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2289 68 false '-- '-- '-- '-- -25191 2049 c9b134f1-5648-5775-8531-9769fbda3073 '-- not reported female '-- '-- '-- '-- white TCGA-24-2289_demographic Dead '-- '-- '-- '-- 25191 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2049.0 '-- '-- 566061b0-53fa-5c9b-aba1-fe01ff343b32 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2289_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 183 4 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2289_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1735 '-- mg '-- '-- '-- '-- 13ec1c2a-b48f-5fce-a7c0-e091a367564f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b867e933-e3e3-4491-9bb6-b18c48d6f173 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2289 68 false '-- '-- '-- '-- -25191 2049 c9b134f1-5648-5775-8531-9769fbda3073 '-- not reported female '-- '-- '-- '-- white TCGA-24-2289_demographic Dead '-- '-- '-- '-- 25191 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2049.0 '-- '-- 566061b0-53fa-5c9b-aba1-fe01ff343b32 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2289_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 708 598 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2289_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- 957 '-- mg '-- '-- '-- '-- 685d1a50-2c1d-4c4d-b9d1-897db586953f '-- yes '-- '-- Chemotherapy +TCGA-OV b867e933-e3e3-4491-9bb6-b18c48d6f173 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2289 68 false '-- '-- '-- '-- -25191 2049 c9b134f1-5648-5775-8531-9769fbda3073 '-- not reported female '-- '-- '-- '-- white TCGA-24-2289_demographic Dead '-- '-- '-- '-- 25191 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2049.0 '-- '-- 566061b0-53fa-5c9b-aba1-fe01ff343b32 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2289_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2289_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ff29b456-ee5e-4902-b2cf-8579e4b5c94c Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b867e933-e3e3-4491-9bb6-b18c48d6f173 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2289 68 false '-- '-- '-- '-- -25191 2049 c9b134f1-5648-5775-8531-9769fbda3073 '-- not reported female '-- '-- '-- '-- white TCGA-24-2289_demographic Dead '-- '-- '-- '-- 25759 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 568 '-- '-- '-- 8f95c121-0953-4513-9cf4-ff9b998d700a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2289_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2289_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2289_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1d5d18ba-9dbd-4cdb-94c3-39564e9a0a70 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV b867e933-e3e3-4491-9bb6-b18c48d6f173 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2289 68 false '-- '-- '-- '-- -25191 2049 c9b134f1-5648-5775-8531-9769fbda3073 '-- not reported female '-- '-- '-- '-- white TCGA-24-2289_demographic Dead '-- '-- '-- '-- 25759 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 568 '-- '-- '-- 8f95c121-0953-4513-9cf4-ff9b998d700a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2289_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2289_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2289_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- acaf448c-12c2-4759-9d69-65b597179582 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV b8c3d99c-429b-42a3-b486-6fbcb90cc2e0 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0801 46 false '-- '-- '-- '-- -16812 1399 7bbb9196-227a-56c9-83d2-215537f27f32 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-13-0801_demographic Dead '-- '-- '-- '-- 16812 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1399.0 '-- '-- 6d02c417-f8de-5616-9116-d5ca3ede4004 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0801_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 144 32 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0801_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 94acb906-c80b-54ca-9199-5e88c45d41d9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b8c3d99c-429b-42a3-b486-6fbcb90cc2e0 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0801 46 false '-- '-- '-- '-- -16812 1399 7bbb9196-227a-56c9-83d2-215537f27f32 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-13-0801_demographic Dead '-- '-- '-- '-- 16812 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1399.0 '-- '-- 6d02c417-f8de-5616-9116-d5ca3ede4004 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0801_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 144 32 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0801_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9af8b654-ca4d-403c-8299-895fb269988f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b8c3d99c-429b-42a3-b486-6fbcb90cc2e0 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0801 46 false '-- '-- '-- '-- -16812 1399 7bbb9196-227a-56c9-83d2-215537f27f32 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-13-0801_demographic Dead '-- '-- '-- '-- 16812 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1399.0 '-- '-- 6d02c417-f8de-5616-9116-d5ca3ede4004 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0801_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0801_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d47c112f-c7b3-4504-afb2-8fc74188e9f1 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b8c3d99c-429b-42a3-b486-6fbcb90cc2e0 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0801 46 false '-- '-- '-- '-- -16812 1399 7bbb9196-227a-56c9-83d2-215537f27f32 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-13-0801_demographic Dead '-- '-- '-- '-- 16812 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1399.0 '-- '-- 6d02c417-f8de-5616-9116-d5ca3ede4004 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0801_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 144 32 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0801_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f02bc20b-9795-43fa-aea0-b399aa5a623f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b8c3d99c-429b-42a3-b486-6fbcb90cc2e0 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0801 46 false '-- '-- '-- '-- -16812 1399 7bbb9196-227a-56c9-83d2-215537f27f32 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-13-0801_demographic Dead '-- '-- '-- '-- 17157 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 345 '-- '-- '-- e438d7dd-744b-4b78-aff0-a1bdb3af414b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0801_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0801_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV b923ac70-70ea-4a82-8466-46350c5803bf Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1021 45 false '-- '-- '-- '-- -16484 1446 5bf4dbf9-9ad3-56b4-a16a-b891ca34a898 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1021_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8ab9fe04-df2e-45b9-9304-b32a5a6d17f4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1021_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1021_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1181 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1021_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5eaf9dc2-d162-492f-b786-6abc79a6cfe6 '-- yes '-- '-- Surgery, NOS +TCGA-OV b923ac70-70ea-4a82-8466-46350c5803bf Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1021 45 false '-- '-- '-- '-- -16484 1446 5bf4dbf9-9ad3-56b4-a16a-b891ca34a898 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1021_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8ab9fe04-df2e-45b9-9304-b32a5a6d17f4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1021_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1021_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1021_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 658276ed-fd28-49a5-866b-49e7ef2b0872 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV b923ac70-70ea-4a82-8466-46350c5803bf Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1021 45 false '-- '-- '-- '-- -16484 1446 5bf4dbf9-9ad3-56b4-a16a-b891ca34a898 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1021_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8ab9fe04-df2e-45b9-9304-b32a5a6d17f4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1021_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1021_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1021_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 79797abf-14fd-42c6-afb1-be88409bd7f9 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV b923ac70-70ea-4a82-8466-46350c5803bf Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1021 45 false '-- '-- '-- '-- -16484 1446 5bf4dbf9-9ad3-56b4-a16a-b891ca34a898 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1021_demographic Dead '-- '-- '-- '-- 16484 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1446.0 '-- '-- aa38d2f9-46a7-5bed-ba31-29109424d54a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1021_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1021_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 002ef306-8f73-4f54-b81c-a2351479d8c6 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b923ac70-70ea-4a82-8466-46350c5803bf Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1021 45 false '-- '-- '-- '-- -16484 1446 5bf4dbf9-9ad3-56b4-a16a-b891ca34a898 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1021_demographic Dead '-- '-- '-- '-- 16484 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1446.0 '-- '-- aa38d2f9-46a7-5bed-ba31-29109424d54a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1021_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1331 1226 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1021_treatment7 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2540 '-- mg '-- '-- '-- '-- 0a9f4f95-78bc-4890-a655-567676121f63 '-- yes '-- '-- Chemotherapy +TCGA-OV b923ac70-70ea-4a82-8466-46350c5803bf Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1021 45 false '-- '-- '-- '-- -16484 1446 5bf4dbf9-9ad3-56b4-a16a-b891ca34a898 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1021_demographic Dead '-- '-- '-- '-- 16484 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1446.0 '-- '-- aa38d2f9-46a7-5bed-ba31-29109424d54a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1021_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1380 1352 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1021_treatment5 Vinorelbine '-- '-- '-- '-- '-- '-- '-- 50 '-- mg '-- '-- '-- '-- 464ebd2e-901c-46ed-af14-797591331df8 '-- yes '-- '-- Chemotherapy +TCGA-OV b923ac70-70ea-4a82-8466-46350c5803bf Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1021 45 false '-- '-- '-- '-- -16484 1446 5bf4dbf9-9ad3-56b4-a16a-b891ca34a898 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1021_demographic Dead '-- '-- '-- '-- 16484 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1446.0 '-- '-- aa38d2f9-46a7-5bed-ba31-29109424d54a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1021_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 861 722 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1021_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- 60 '-- mg '-- '-- '-- '-- 540c2d4b-0369-4e2a-aa9e-181e54406c12 '-- yes '-- '-- Chemotherapy +TCGA-OV b923ac70-70ea-4a82-8466-46350c5803bf Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1021 45 false '-- '-- '-- '-- -16484 1446 5bf4dbf9-9ad3-56b4-a16a-b891ca34a898 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1021_demographic Dead '-- '-- '-- '-- 16484 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1446.0 '-- '-- aa38d2f9-46a7-5bed-ba31-29109424d54a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1021_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 119 14 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1021_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2880 '-- mg '-- '-- '-- '-- 82aa4a2a-a987-4121-8a47-6f197238339a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b923ac70-70ea-4a82-8466-46350c5803bf Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1021 45 false '-- '-- '-- '-- -16484 1446 5bf4dbf9-9ad3-56b4-a16a-b891ca34a898 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1021_demographic Dead '-- '-- '-- '-- 16484 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1446.0 '-- '-- aa38d2f9-46a7-5bed-ba31-29109424d54a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1021_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1408 1408 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1021_treatment6 Doxorubicin '-- '-- '-- '-- '-- '-- '-- 25 '-- mg '-- '-- '-- '-- 83b674be-0773-4403-9e84-080e92592a62 '-- yes '-- '-- Chemotherapy +TCGA-OV b923ac70-70ea-4a82-8466-46350c5803bf Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1021 45 false '-- '-- '-- '-- -16484 1446 5bf4dbf9-9ad3-56b4-a16a-b891ca34a898 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1021_demographic Dead '-- '-- '-- '-- 16484 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1446.0 '-- '-- aa38d2f9-46a7-5bed-ba31-29109424d54a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1021_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 119 14 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1021_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2100 '-- mg '-- '-- '-- '-- c1f54b72-ca1e-430a-80f6-23d80a887d04 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b923ac70-70ea-4a82-8466-46350c5803bf Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1021 45 false '-- '-- '-- '-- -16484 1446 5bf4dbf9-9ad3-56b4-a16a-b891ca34a898 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1021_demographic Dead '-- '-- '-- '-- 16484 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1446.0 '-- '-- aa38d2f9-46a7-5bed-ba31-29109424d54a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1021_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 693 526 '-- '-- Persistent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1021_treatment Gemcitabine '-- '-- '-- '-- '-- '-- '-- 6061 '-- mg '-- '-- '-- '-- f3469830-8e5e-50fc-a8df-4e016b741a1e Not Reported yes '-- '-- Chemotherapy +TCGA-OV b9418c6d-94f7-4db4-a1e4-f384b09d54cb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0799 44 false '-- '-- '-- '-- -16171 '-- 7c7c62c8-4ef7-5df4-a00b-512a62df70bf '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-0799_demographic Alive '-- '-- '-- '-- 16171 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2535.0 '-- '-- 1216ba5e-1eb5-5540-9476-831e7434c39a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0799_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 146 36 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0799_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- 1197e425-e369-4998-8e07-beb27ef0ce11 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b9418c6d-94f7-4db4-a1e4-f384b09d54cb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0799 44 false '-- '-- '-- '-- -16171 '-- 7c7c62c8-4ef7-5df4-a00b-512a62df70bf '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-0799_demographic Alive '-- '-- '-- '-- 16171 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2535.0 '-- '-- 1216ba5e-1eb5-5540-9476-831e7434c39a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0799_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0799_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 36ab23c0-ffed-4fa8-9d91-268b417e8b42 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV b9418c6d-94f7-4db4-a1e4-f384b09d54cb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0799 44 false '-- '-- '-- '-- -16171 '-- 7c7c62c8-4ef7-5df4-a00b-512a62df70bf '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-0799_demographic Alive '-- '-- '-- '-- 16171 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2535.0 '-- '-- 1216ba5e-1eb5-5540-9476-831e7434c39a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0799_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 146 36 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0799_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- 4800630e-79c4-5b3f-a821-3b0ec51f16d5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b9418c6d-94f7-4db4-a1e4-f384b09d54cb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0799 44 false '-- '-- '-- '-- -16171 '-- 7c7c62c8-4ef7-5df4-a00b-512a62df70bf '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-0799_demographic Alive '-- '-- '-- '-- 16171 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2535.0 '-- '-- 1216ba5e-1eb5-5540-9476-831e7434c39a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0799_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 146 36 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0799_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- 6b00f295-1259-46f3-a799-7daf5600dd22 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV b9418c6d-94f7-4db4-a1e4-f384b09d54cb '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0799 44 false '-- '-- '-- '-- -16171 '-- 7c7c62c8-4ef7-5df4-a00b-512a62df70bf '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-0799_demographic Alive '-- '-- '-- '-- 17433 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 1262 '-- '-- '-- 98529311-0cbd-4a40-8f43-42506c07a8f5 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0799_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0799_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV ba68f2cf-9271-41fd-9655-1fac7681f588 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1558 73 false '-- '-- '-- '-- -27004 594 58103f7a-0d5a-5c6b-b9cb-6214466a0c34 '-- not reported female '-- '-- '-- '-- white TCGA-24-1558_demographic Dead '-- '-- '-- '-- 27004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 594.0 '-- '-- 2c050cd3-82f7-5809-b295-340ecf3cb89c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1558_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 487 403 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1558_treatment7 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 277 '-- mg '-- '-- '-- '-- 0563b68b-beaa-4507-87d6-51231025c82c '-- yes '-- '-- Chemotherapy +TCGA-OV ba68f2cf-9271-41fd-9655-1fac7681f588 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1558 73 false '-- '-- '-- '-- -27004 594 58103f7a-0d5a-5c6b-b9cb-6214466a0c34 '-- not reported female '-- '-- '-- '-- white TCGA-24-1558_demographic Dead '-- '-- '-- '-- 27004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 594.0 '-- '-- 2c050cd3-82f7-5809-b295-340ecf3cb89c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1558_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1558_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0f2adf95-1701-4d75-8da6-7fcdec862fc7 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ba68f2cf-9271-41fd-9655-1fac7681f588 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1558 73 false '-- '-- '-- '-- -27004 594 58103f7a-0d5a-5c6b-b9cb-6214466a0c34 '-- not reported female '-- '-- '-- '-- white TCGA-24-1558_demographic Dead '-- '-- '-- '-- 27004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 594.0 '-- '-- 2c050cd3-82f7-5809-b295-340ecf3cb89c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1558_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 588 515 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1558_treatment3 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 11810 '-- mg '-- '-- '-- '-- 13443c28-f67e-41a1-9113-b4fd4c4cdfa4 '-- yes '-- '-- Chemotherapy +TCGA-OV ba68f2cf-9271-41fd-9655-1fac7681f588 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1558 73 false '-- '-- '-- '-- -27004 594 58103f7a-0d5a-5c6b-b9cb-6214466a0c34 '-- not reported female '-- '-- '-- '-- white TCGA-24-1558_demographic Dead '-- '-- '-- '-- 27004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 594.0 '-- '-- 2c050cd3-82f7-5809-b295-340ecf3cb89c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1558_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 382 316 '-- '-- Persistent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1558_treatment4 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 3600 '-- mg '-- '-- '-- '-- 3f1affec-eeab-40e7-96de-2a956516eefa Not Reported yes '-- '-- Chemotherapy +TCGA-OV ba68f2cf-9271-41fd-9655-1fac7681f588 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1558 73 false '-- '-- '-- '-- -27004 594 58103f7a-0d5a-5c6b-b9cb-6214466a0c34 '-- not reported female '-- '-- '-- '-- white TCGA-24-1558_demographic Dead '-- '-- '-- '-- 27004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 594.0 '-- '-- 2c050cd3-82f7-5809-b295-340ecf3cb89c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1558_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 247 37 '-- '-- '-- '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1558_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 44 '-- mg '-- '-- '-- '-- 5e803842-33be-5620-ac0b-2cfd048621d8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ba68f2cf-9271-41fd-9655-1fac7681f588 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1558 73 false '-- '-- '-- '-- -27004 594 58103f7a-0d5a-5c6b-b9cb-6214466a0c34 '-- not reported female '-- '-- '-- '-- white TCGA-24-1558_demographic Dead '-- '-- '-- '-- 27004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 594.0 '-- '-- 2c050cd3-82f7-5809-b295-340ecf3cb89c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1558_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 247 37 '-- '-- '-- '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1558_treatment5 Topotecan '-- '-- '-- '-- '-- '-- '-- 14 '-- mg '-- '-- '-- '-- 80f229b9-2f48-4103-b81d-221c06a86467 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ba68f2cf-9271-41fd-9655-1fac7681f588 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1558 73 false '-- '-- '-- '-- -27004 594 58103f7a-0d5a-5c6b-b9cb-6214466a0c34 '-- not reported female '-- '-- '-- '-- white TCGA-24-1558_demographic Dead '-- '-- '-- '-- 27004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 594.0 '-- '-- 2c050cd3-82f7-5809-b295-340ecf3cb89c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1558_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 382 316 '-- '-- Persistent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1558_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 524 '-- mg '-- '-- '-- '-- e20283cd-ed7e-4842-9ab9-d8cdf1b9887e Not Reported yes '-- '-- Chemotherapy +TCGA-OV ba68f2cf-9271-41fd-9655-1fac7681f588 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1558 73 false '-- '-- '-- '-- -27004 594 58103f7a-0d5a-5c6b-b9cb-6214466a0c34 '-- not reported female '-- '-- '-- '-- white TCGA-24-1558_demographic Dead '-- '-- '-- '-- 27004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 594.0 '-- '-- 2c050cd3-82f7-5809-b295-340ecf3cb89c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1558_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 247 37 '-- '-- '-- '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1558_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1800 '-- mg '-- '-- '-- '-- ff1faaaa-8290-4a11-bd63-d7e9aaa0dc06 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ba68f2cf-9271-41fd-9655-1fac7681f588 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1558 73 false '-- '-- '-- '-- -27004 594 58103f7a-0d5a-5c6b-b9cb-6214466a0c34 '-- not reported female '-- '-- '-- '-- white TCGA-24-1558_demographic Dead '-- '-- '-- '-- 27277 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 273 '-- '-- '-- 688a52cb-75a3-46d0-b134-00b9f880bd81 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1558_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1558_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1558_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6780e6a1-b698-4a30-a7b5-a0f177d05fe3 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ba68f2cf-9271-41fd-9655-1fac7681f588 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1558 73 false '-- '-- '-- '-- -27004 594 58103f7a-0d5a-5c6b-b9cb-6214466a0c34 '-- not reported female '-- '-- '-- '-- white TCGA-24-1558_demographic Dead '-- '-- '-- '-- 27277 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 273 '-- '-- '-- 688a52cb-75a3-46d0-b134-00b9f880bd81 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1558_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1558_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1558_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b7357cbc-6206-4804-868f-7ab0fed43397 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV bbad2efe-e9c7-4f8f-924b-ebbbe4c181d4 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2019 46 false '-- '-- '-- '-- -17009 '-- d1eab0fc-7b3b-562a-a9f8-771209dca14f '-- not reported female '-- '-- '-- '-- white TCGA-24-2019_demographic Alive '-- '-- '-- '-- 17009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 148.0 '-- '-- 4422c00b-d710-52d1-b3c3-a3b6879dd792 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2019_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2019_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 02bd3368-a572-426a-8489-966260e79e34 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV bbad2efe-e9c7-4f8f-924b-ebbbe4c181d4 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2019 46 false '-- '-- '-- '-- -17009 '-- d1eab0fc-7b3b-562a-a9f8-771209dca14f '-- not reported female '-- '-- '-- '-- white TCGA-24-2019_demographic Alive '-- '-- '-- '-- 17009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 148.0 '-- '-- 4422c00b-d710-52d1-b3c3-a3b6879dd792 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2019_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2019_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a78e377d-5270-55e9-ba09-406e129ccc09 Adjuvant yes Not Reported '-- Pharmaceutical Therapy, NOS +TCGA-OV bbbf1184-1e19-479a-b31f-daa692d52e02 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2029 75 false '-- '-- '-- '-- -27527 439 1fdebbf4-4cbc-559c-a2e8-ac58ea459669 '-- not reported female '-- '-- '-- '-- white TCGA-24-2029_demographic Dead '-- '-- '-- '-- 27899 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 372 '-- '-- '-- 6a10a4b5-3d50-4aef-b494-6c90254bd3c2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2029_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2029_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2029_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0232587d-cceb-4a31-b482-866db1ac83ea '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV bbbf1184-1e19-479a-b31f-daa692d52e02 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2029 75 false '-- '-- '-- '-- -27527 439 1fdebbf4-4cbc-559c-a2e8-ac58ea459669 '-- not reported female '-- '-- '-- '-- white TCGA-24-2029_demographic Dead '-- '-- '-- '-- 27899 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 372 '-- '-- '-- 6a10a4b5-3d50-4aef-b494-6c90254bd3c2 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2029_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2029_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2029_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- afed7ca0-0487-48fa-8f0a-e01fd2f41aff '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV bbbf1184-1e19-479a-b31f-daa692d52e02 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2029 75 false '-- '-- '-- '-- -27527 439 1fdebbf4-4cbc-559c-a2e8-ac58ea459669 '-- not reported female '-- '-- '-- '-- white TCGA-24-2029_demographic Dead '-- '-- '-- '-- 27527 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 439.0 '-- '-- 72aab74a-d46d-5d5b-a028-46a554b6fa0e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2029_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 218 8 '-- '-- '-- '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2029_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1946 '-- mg '-- '-- '-- '-- 33638edc-02f2-4f57-a24b-818b1dadff92 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV bbbf1184-1e19-479a-b31f-daa692d52e02 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2029 75 false '-- '-- '-- '-- -27527 439 1fdebbf4-4cbc-559c-a2e8-ac58ea459669 '-- not reported female '-- '-- '-- '-- white TCGA-24-2029_demographic Dead '-- '-- '-- '-- 27527 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 439.0 '-- '-- 72aab74a-d46d-5d5b-a028-46a554b6fa0e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2029_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2029_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d861a570-bf82-46b2-815b-9fb7b198b8b1 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV bbbf1184-1e19-479a-b31f-daa692d52e02 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2029 75 false '-- '-- '-- '-- -27527 439 1fdebbf4-4cbc-559c-a2e8-ac58ea459669 '-- not reported female '-- '-- '-- '-- white TCGA-24-2029_demographic Dead '-- '-- '-- '-- 27527 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 439.0 '-- '-- 72aab74a-d46d-5d5b-a028-46a554b6fa0e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2029_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 218 8 '-- '-- '-- '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2029_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 3773 '-- mg '-- '-- '-- '-- fc37ec63-7282-5e98-ad2f-4eeb55d4f58d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV bc2591b0-65d7-48c3-a5cc-783f67b65869 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1635 71 false '-- '-- '-- '-- -26200 1583 79dac28f-6891-5ca1-9a1b-b6b946171961 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1635_demographic Dead '-- '-- '-- '-- 26200 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1583.0 '-- '-- 1b49c382-da56-568d-823a-34afc1fd6a96 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1635_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1635_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 15cfd467-6fb7-4706-83de-f824bbe4b372 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV bc2591b0-65d7-48c3-a5cc-783f67b65869 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1635 71 false '-- '-- '-- '-- -26200 1583 79dac28f-6891-5ca1-9a1b-b6b946171961 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1635_demographic Dead '-- '-- '-- '-- 26200 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1583.0 '-- '-- 1b49c382-da56-568d-823a-34afc1fd6a96 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1635_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 233 24 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1635_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6c4bddce-4032-4c19-83bf-998a0f7fc10f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV bc2591b0-65d7-48c3-a5cc-783f67b65869 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1635 71 false '-- '-- '-- '-- -26200 1583 79dac28f-6891-5ca1-9a1b-b6b946171961 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1635_demographic Dead '-- '-- '-- '-- 26200 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1583.0 '-- '-- 1b49c382-da56-568d-823a-34afc1fd6a96 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1635_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 233 24 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1635_treatment Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 73649ab7-ae3a-5923-8c7b-d9afbaf187f4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV bc2591b0-65d7-48c3-a5cc-783f67b65869 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1635 71 false '-- '-- '-- '-- -26200 1583 79dac28f-6891-5ca1-9a1b-b6b946171961 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1635_demographic Dead '-- '-- '-- '-- 26200 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1583.0 '-- '-- 1b49c382-da56-568d-823a-34afc1fd6a96 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1635_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 741 614 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1635_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b74a13b4-37e3-418d-b17e-e24c1f3b2fd7 '-- yes '-- '-- Chemotherapy +TCGA-OV bc2591b0-65d7-48c3-a5cc-783f67b65869 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1635 71 false '-- '-- '-- '-- -26200 1583 79dac28f-6891-5ca1-9a1b-b6b946171961 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1635_demographic Dead '-- '-- '-- '-- 26200 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1583.0 '-- '-- 1b49c382-da56-568d-823a-34afc1fd6a96 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1635_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 741 614 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1635_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d93eea66-4271-441e-9792-f10b63b5ff76 '-- yes '-- '-- Chemotherapy +TCGA-OV bc2591b0-65d7-48c3-a5cc-783f67b65869 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1635 71 false '-- '-- '-- '-- -26200 1583 79dac28f-6891-5ca1-9a1b-b6b946171961 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1635_demographic Dead '-- '-- '-- '-- 26200 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1583.0 '-- '-- 1b49c382-da56-568d-823a-34afc1fd6a96 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1635_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 233 24 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1635_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- eb5c70cc-6bcb-4142-a229-ca6dd0c35311 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV bc2591b0-65d7-48c3-a5cc-783f67b65869 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1635 71 false '-- '-- '-- '-- -26200 1583 79dac28f-6891-5ca1-9a1b-b6b946171961 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1635_demographic Dead '-- '-- '-- '-- 26814 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 614 '-- '-- '-- 624bdf8f-fa2b-4ef9-bfac-e4d0ea1d2cb4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1635_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1635_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1635_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 90daddd3-d744-4f98-b94e-66d6bab01d45 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV bc2591b0-65d7-48c3-a5cc-783f67b65869 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1635 71 false '-- '-- '-- '-- -26200 1583 79dac28f-6891-5ca1-9a1b-b6b946171961 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1635_demographic Dead '-- '-- '-- '-- 26814 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 614 '-- '-- '-- 624bdf8f-fa2b-4ef9-bfac-e4d0ea1d2cb4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1635_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1635_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1635_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fde1e2d4-e872-4d9c-a9de-ae0cd3eb24a6 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV bc3e0b74-ea09-46a5-9f61-16bd15ffd883 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1809 63 false '-- '-- '-- '-- -23111 '-- 8cd7c35b-a01a-52cd-b6fe-c23edb79cfc4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1809_demographic Alive '-- '-- '-- '-- 23111 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 16.0 '-- '-- ba8c7f10-02ed-5863-a63b-881397fd3c13 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1809_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 107 24 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1809_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1898 '-- mg '-- '-- '-- '-- 3c25f0d8-7069-4497-9aa7-ab29da1d6b8a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV bc3e0b74-ea09-46a5-9f61-16bd15ffd883 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1809 63 false '-- '-- '-- '-- -23111 '-- 8cd7c35b-a01a-52cd-b6fe-c23edb79cfc4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1809_demographic Alive '-- '-- '-- '-- 23111 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 16.0 '-- '-- ba8c7f10-02ed-5863-a63b-881397fd3c13 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1809_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1809_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 54de9b84-cd40-4919-9c47-3077078c171a Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV bc3e0b74-ea09-46a5-9f61-16bd15ffd883 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1809 63 false '-- '-- '-- '-- -23111 '-- 8cd7c35b-a01a-52cd-b6fe-c23edb79cfc4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1809_demographic Alive '-- '-- '-- '-- 23111 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 16.0 '-- '-- ba8c7f10-02ed-5863-a63b-881397fd3c13 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1809_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 107 24 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1809_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1495 '-- mg '-- '-- '-- '-- 5825fcbd-3f5b-5845-8028-b80430d579ff Adjuvant yes '-- '-- Chemotherapy +TCGA-OV bc4bc342-20bf-40c3-af26-2c6f942da93d Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1497 47 false '-- '-- '-- '-- -17528 '-- 9c931a7a-6e3c-5a87-a410-c936e9789e42 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1497_demographic Alive '-- '-- '-- '-- 18341 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 813 '-- '-- '-- 055381ca-f580-4a7e-a407-e7e314f6e24a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1497_diagnosis4 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1497_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV bc4bc342-20bf-40c3-af26-2c6f942da93d Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1497 47 false '-- '-- '-- '-- -17528 '-- 9c931a7a-6e3c-5a87-a410-c936e9789e42 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1497_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 32d4e4a5-5527-4ea9-be80-19959940d4d6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1497_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1497_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1497_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2c444e04-4b02-4462-9a63-76be1a87f418 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV bc4bc342-20bf-40c3-af26-2c6f942da93d Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1497 47 false '-- '-- '-- '-- -17528 '-- 9c931a7a-6e3c-5a87-a410-c936e9789e42 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1497_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 32d4e4a5-5527-4ea9-be80-19959940d4d6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1497_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1497_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1497_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6f0ecf82-a3b3-4aa3-bc90-d2a1ca989f8a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV bc4bc342-20bf-40c3-af26-2c6f942da93d Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1497 47 false '-- '-- '-- '-- -17528 '-- 9c931a7a-6e3c-5a87-a410-c936e9789e42 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1497_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 32d4e4a5-5527-4ea9-be80-19959940d4d6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1497_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1497_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 861 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1497_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a899ab9c-7eda-4a65-9cdd-0467bf5c23ef '-- yes '-- '-- Surgery, NOS +TCGA-OV bc4bc342-20bf-40c3-af26-2c6f942da93d Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1497 47 false '-- '-- '-- '-- -17528 '-- 9c931a7a-6e3c-5a87-a410-c936e9789e42 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1497_demographic Alive '-- '-- '-- '-- 18341 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 813 '-- '-- '-- 6296945c-745a-4120-9350-25b2e8f859fe false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1497_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1497_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1497_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8006921f-734c-4061-b0b7-a2c6b1db2ade '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV bc4bc342-20bf-40c3-af26-2c6f942da93d Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1497 47 false '-- '-- '-- '-- -17528 '-- 9c931a7a-6e3c-5a87-a410-c936e9789e42 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1497_demographic Alive '-- '-- '-- '-- 18341 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 813 '-- '-- '-- 6296945c-745a-4120-9350-25b2e8f859fe false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1497_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1497_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1497_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f4b7fefd-1202-4d06-b6b5-f0d5d7aab673 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV bc4bc342-20bf-40c3-af26-2c6f942da93d Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1497 47 false '-- '-- '-- '-- -17528 '-- 9c931a7a-6e3c-5a87-a410-c936e9789e42 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1497_demographic Alive '-- '-- '-- '-- 17528 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3871.0 '-- '-- b1652541-14ef-5640-8541-d042fdc2524a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1497_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 127 22 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1497_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3ac7d057-ea1c-46b9-9568-6fe097e670e1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV bc4bc342-20bf-40c3-af26-2c6f942da93d Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1497 47 false '-- '-- '-- '-- -17528 '-- 9c931a7a-6e3c-5a87-a410-c936e9789e42 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1497_demographic Alive '-- '-- '-- '-- 17528 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3871.0 '-- '-- b1652541-14ef-5640-8541-d042fdc2524a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1497_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 185 185 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-1497_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- 6399754c-8906-5395-942f-205595f1b6a9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV bc4bc342-20bf-40c3-af26-2c6f942da93d Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1497 47 false '-- '-- '-- '-- -17528 '-- 9c931a7a-6e3c-5a87-a410-c936e9789e42 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1497_demographic Alive '-- '-- '-- '-- 17528 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3871.0 '-- '-- b1652541-14ef-5640-8541-d042fdc2524a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1497_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 71 22 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1497_treatment4 Cetuximab '-- '-- '-- '-- '-- '-- '-- 250 '-- mg/m2 '-- '-- '-- '-- 777aa665-01d5-4c90-9377-12f7afeac8da Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV bc4bc342-20bf-40c3-af26-2c6f942da93d Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1497 47 false '-- '-- '-- '-- -17528 '-- 9c931a7a-6e3c-5a87-a410-c936e9789e42 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1497_demographic Alive '-- '-- '-- '-- 17528 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3871.0 '-- '-- b1652541-14ef-5640-8541-d042fdc2524a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1497_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1497_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a22bbd3e-48e2-4778-8755-aa503e55d197 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV bc4bc342-20bf-40c3-af26-2c6f942da93d Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1497 47 false '-- '-- '-- '-- -17528 '-- 9c931a7a-6e3c-5a87-a410-c936e9789e42 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1497_demographic Alive '-- '-- '-- '-- 17528 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3871.0 '-- '-- b1652541-14ef-5640-8541-d042fdc2524a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1497_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 127 22 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1497_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- ac60a672-7f3b-470b-afee-15eec3273918 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV bc84c5c5-1785-4edd-b732-8987f862063e Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-5X-AA5U 61 false '-- '-- '-- United States -22438 '-- 168d1029-2d5f-5f1c-8258-18c881e52862 '-- not reported female '-- '-- '-- '-- black or african american TCGA-5X-AA5U_demographic Alive '-- '-- '-- '-- 22438 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 361.0 '-- '-- 14b248c8-51a1-5f37-9c1f-5b310254bd02 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8460/3 '-- '-- '-- '-- '-- '-- Papillary serous cystadenocarcinoma '-- '-- no No '-- R0 '-- '-- Ovary '-- '-- TCGA-5X-AA5U_diagnosis '-- Yes Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2013 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-5X-AA5U_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 146393dd-59e3-405c-bc0a-54fc24c4deeb Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV bc84c5c5-1785-4edd-b732-8987f862063e Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-5X-AA5U 61 false '-- '-- '-- United States -22438 '-- 168d1029-2d5f-5f1c-8258-18c881e52862 '-- not reported female '-- '-- '-- '-- black or african american TCGA-5X-AA5U_demographic Alive '-- '-- '-- '-- 22438 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 361.0 '-- '-- 14b248c8-51a1-5f37-9c1f-5b310254bd02 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8460/3 '-- '-- '-- '-- '-- '-- Papillary serous cystadenocarcinoma '-- '-- no No '-- R0 '-- '-- Ovary '-- '-- TCGA-5X-AA5U_diagnosis '-- Yes Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2013 '-- No '-- 178 66 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-5X-AA5U_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2fec166a-281f-55ed-97e9-c3513e22fb44 '-- yes Complete Response '-- Chemotherapy +TCGA-OV bc84c5c5-1785-4edd-b732-8987f862063e Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-5X-AA5U 61 false '-- '-- '-- United States -22438 '-- 168d1029-2d5f-5f1c-8258-18c881e52862 '-- not reported female '-- '-- '-- '-- black or african american TCGA-5X-AA5U_demographic Alive '-- '-- '-- '-- 22438 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 361.0 '-- '-- 14b248c8-51a1-5f37-9c1f-5b310254bd02 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8460/3 '-- '-- '-- '-- '-- '-- Papillary serous cystadenocarcinoma '-- '-- no No '-- R0 '-- '-- Ovary '-- '-- TCGA-5X-AA5U_diagnosis '-- Yes Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2013 '-- No '-- 178 63 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-5X-AA5U_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 83850744-4f0c-42a9-a897-27fc30f54c5b '-- yes Complete Response '-- Chemotherapy +TCGA-OV bc84c5c5-1785-4edd-b732-8987f862063e Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-5X-AA5U 61 false '-- '-- '-- United States -22438 '-- 168d1029-2d5f-5f1c-8258-18c881e52862 '-- not reported female '-- '-- '-- '-- black or african american TCGA-5X-AA5U_demographic Alive '-- '-- '-- '-- 22438 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 361.0 '-- '-- 14b248c8-51a1-5f37-9c1f-5b310254bd02 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8460/3 '-- '-- '-- '-- '-- '-- Papillary serous cystadenocarcinoma '-- '-- no No '-- R0 '-- '-- Ovary '-- '-- TCGA-5X-AA5U_diagnosis '-- Yes Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2013 '-- No '-- 178 63 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-5X-AA5U_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cc1856bd-72ea-4852-8546-d7a8b91583f2 '-- yes Complete Response '-- Chemotherapy +TCGA-OV bc84c5c5-1785-4edd-b732-8987f862063e Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-5X-AA5U 61 false '-- '-- '-- United States -22438 '-- 168d1029-2d5f-5f1c-8258-18c881e52862 '-- not reported female '-- '-- '-- '-- black or african american TCGA-5X-AA5U_demographic Alive '-- '-- '-- '-- 22437 '-- '-- '-- '-- M0 NX '-- T1b '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Synchronous primary '-- '-- '-- '-- '-- '-- -1 '-- '-- '-- 2acc63ec-6d6d-4be3-a1f0-8cefd920e716 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IB 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8050/3 '-- '-- '-- '-- '-- '-- Papillary carcinoma, NOS '-- '-- '-- '-- '-- '-- '-- '-- Not Reported '-- '-- TCGA-5X-AA5U_diagnosis2 '-- '-- Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-5X-AA5U_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 669a8282-7241-44a5-b9ec-aa62b891c88a '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV bc84c5c5-1785-4edd-b732-8987f862063e Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-5X-AA5U 61 false '-- '-- '-- United States -22438 '-- 168d1029-2d5f-5f1c-8258-18c881e52862 '-- not reported female '-- '-- '-- '-- black or african american TCGA-5X-AA5U_demographic Alive '-- '-- '-- '-- 22437 '-- '-- '-- '-- M0 NX '-- T1b '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Synchronous primary '-- '-- '-- '-- '-- '-- -1 '-- '-- '-- 2acc63ec-6d6d-4be3-a1f0-8cefd920e716 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IB 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8050/3 '-- '-- '-- '-- '-- '-- Papillary carcinoma, NOS '-- '-- '-- '-- '-- '-- '-- '-- Not Reported '-- '-- TCGA-5X-AA5U_diagnosis2 '-- '-- Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- -1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-5X-AA5U_treatment7 '-- '-- '-- '-- '-- '-- Uterus '-- '-- '-- '-- '-- '-- '-- '-- 6b9ed08f-f493-4c89-b998-e9d22e53f31b '-- yes '-- '-- Surgery, NOS +TCGA-OV bc84c5c5-1785-4edd-b732-8987f862063e Informed Consent -11 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-5X-AA5U 61 false '-- '-- '-- United States -22438 '-- 168d1029-2d5f-5f1c-8258-18c881e52862 '-- not reported female '-- '-- '-- '-- black or african american TCGA-5X-AA5U_demographic Alive '-- '-- '-- '-- 22437 '-- '-- '-- '-- M0 NX '-- T1b '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Synchronous primary '-- '-- '-- '-- '-- '-- -1 '-- '-- '-- 2acc63ec-6d6d-4be3-a1f0-8cefd920e716 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IB 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8050/3 '-- '-- '-- '-- '-- '-- Papillary carcinoma, NOS '-- '-- '-- '-- '-- '-- '-- '-- Not Reported '-- '-- TCGA-5X-AA5U_diagnosis2 '-- '-- Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-5X-AA5U_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ac0875e5-4587-4a2b-a54e-bdcb23b55d5f '-- no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV bc873b2a-35b7-4365-a2cc-e6a83063556e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1880 56 false '-- '-- '-- '-- -20525 1751 0bdb811f-db83-5992-a1b6-e02dbff3bd99 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1880_demographic Dead '-- '-- '-- '-- 20873 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 348 '-- '-- '-- 0026adcd-4eb4-405b-b012-a9bcad1ca889 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1880_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1880_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1880_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cf679100-d966-4ee8-a422-23ac883a40c8 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV bc873b2a-35b7-4365-a2cc-e6a83063556e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1880 56 false '-- '-- '-- '-- -20525 1751 0bdb811f-db83-5992-a1b6-e02dbff3bd99 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1880_demographic Dead '-- '-- '-- '-- 20873 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 348 '-- '-- '-- 0026adcd-4eb4-405b-b012-a9bcad1ca889 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1880_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1880_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1880_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d79c87ae-be86-4c1e-9ea6-5167c48b889e '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV bc873b2a-35b7-4365-a2cc-e6a83063556e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1880 56 false '-- '-- '-- '-- -20525 1751 0bdb811f-db83-5992-a1b6-e02dbff3bd99 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1880_demographic Dead '-- '-- '-- '-- 20525 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1751.0 '-- '-- 6a680bc8-c6c5-5c38-aa49-9a8054b3d849 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1880_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 152 46 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1880_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 06d0e958-e503-4fd4-9b1a-19caec1c0e94 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV bc873b2a-35b7-4365-a2cc-e6a83063556e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1880 56 false '-- '-- '-- '-- -20525 1751 0bdb811f-db83-5992-a1b6-e02dbff3bd99 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1880_demographic Dead '-- '-- '-- '-- 20525 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1751.0 '-- '-- 6a680bc8-c6c5-5c38-aa49-9a8054b3d849 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1880_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1722 1660 '-- '-- Progressive Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1880_treatment5 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- 20 '-- mg/m2 '-- '-- '-- '-- 359e8eda-fa3b-4199-98e8-aaf85f5199dc '-- yes '-- '-- Chemotherapy +TCGA-OV bc873b2a-35b7-4365-a2cc-e6a83063556e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1880 56 false '-- '-- '-- '-- -20525 1751 0bdb811f-db83-5992-a1b6-e02dbff3bd99 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1880_demographic Dead '-- '-- '-- '-- 20525 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1751.0 '-- '-- 6a680bc8-c6c5-5c38-aa49-9a8054b3d849 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1880_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1610 1400 '-- '-- Progressive Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1880_treatment7 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 37b4bf2c-5c01-4ed3-854b-bd1b72027221 '-- yes '-- '-- Chemotherapy +TCGA-OV bc873b2a-35b7-4365-a2cc-e6a83063556e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1880 56 false '-- '-- '-- '-- -20525 1751 0bdb811f-db83-5992-a1b6-e02dbff3bd99 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1880_demographic Dead '-- '-- '-- '-- 20525 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1751.0 '-- '-- 6a680bc8-c6c5-5c38-aa49-9a8054b3d849 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1880_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 497 357 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1880_treatment10 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 40 '-- mg/m2 '-- '-- '-- '-- 563ef6bb-92cb-49de-8874-9d4e77f907cf '-- yes '-- '-- Chemotherapy +TCGA-OV bc873b2a-35b7-4365-a2cc-e6a83063556e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1880 56 false '-- '-- '-- '-- -20525 1751 0bdb811f-db83-5992-a1b6-e02dbff3bd99 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1880_demographic Dead '-- '-- '-- '-- 20525 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1751.0 '-- '-- 6a680bc8-c6c5-5c38-aa49-9a8054b3d849 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1880_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1880_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 89e6246d-81c7-4594-833f-e817bee76166 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV bc873b2a-35b7-4365-a2cc-e6a83063556e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1880 56 false '-- '-- '-- '-- -20525 1751 0bdb811f-db83-5992-a1b6-e02dbff3bd99 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1880_demographic Dead '-- '-- '-- '-- 20525 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1751.0 '-- '-- 6a680bc8-c6c5-5c38-aa49-9a8054b3d849 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1880_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1610 1400 '-- '-- Progressive Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1880_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 8aa7f9b4-5a22-4d19-a75e-c182d6625a52 '-- yes '-- '-- Chemotherapy +TCGA-OV bc873b2a-35b7-4365-a2cc-e6a83063556e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1880 56 false '-- '-- '-- '-- -20525 1751 0bdb811f-db83-5992-a1b6-e02dbff3bd99 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1880_demographic Dead '-- '-- '-- '-- 20525 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1751.0 '-- '-- 6a680bc8-c6c5-5c38-aa49-9a8054b3d849 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1880_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1722 1660 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-30-1880_treatment11 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 10 '-- mg/kg '-- '-- '-- '-- a1e3ae38-8f0a-4485-8b68-193f85101bdd '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV bc873b2a-35b7-4365-a2cc-e6a83063556e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1880 56 false '-- '-- '-- '-- -20525 1751 0bdb811f-db83-5992-a1b6-e02dbff3bd99 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1880_demographic Dead '-- '-- '-- '-- 20525 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1751.0 '-- '-- 6a680bc8-c6c5-5c38-aa49-9a8054b3d849 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1880_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1656 1642 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1880_treatment Serine/Threonine Kinase Inhibitor CBP501 '-- '-- '-- '-- '-- '-- '-- 4 '-- mg/m2 '-- '-- '-- '-- aa6c8560-4fa3-548f-bd36-afa2ccd14aab '-- yes '-- '-- Chemotherapy +TCGA-OV bc873b2a-35b7-4365-a2cc-e6a83063556e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1880 56 false '-- '-- '-- '-- -20525 1751 0bdb811f-db83-5992-a1b6-e02dbff3bd99 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1880_demographic Dead '-- '-- '-- '-- 20525 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1751.0 '-- '-- 6a680bc8-c6c5-5c38-aa49-9a8054b3d849 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1880_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 823 718 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1880_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- c1d74e2f-53be-46f0-9c83-27a20ac04ba1 '-- yes '-- '-- Chemotherapy +TCGA-OV bc873b2a-35b7-4365-a2cc-e6a83063556e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1880 56 false '-- '-- '-- '-- -20525 1751 0bdb811f-db83-5992-a1b6-e02dbff3bd99 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1880_demographic Dead '-- '-- '-- '-- 20525 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1751.0 '-- '-- 6a680bc8-c6c5-5c38-aa49-9a8054b3d849 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1880_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1228 1106 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1880_treatment9 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 700 '-- mg/m2 '-- '-- '-- '-- c4a5a09f-f765-4b9d-81ba-9ac4cf4bd7ad '-- yes '-- '-- Chemotherapy +TCGA-OV bc873b2a-35b7-4365-a2cc-e6a83063556e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1880 56 false '-- '-- '-- '-- -20525 1751 0bdb811f-db83-5992-a1b6-e02dbff3bd99 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1880_demographic Dead '-- '-- '-- '-- 20525 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1751.0 '-- '-- 6a680bc8-c6c5-5c38-aa49-9a8054b3d849 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1880_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 823 718 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1880_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- cbbd0e4a-e4b6-4b70-be56-f2eb194c97c3 '-- yes '-- '-- Chemotherapy +TCGA-OV bc873b2a-35b7-4365-a2cc-e6a83063556e Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1880 56 false '-- '-- '-- '-- -20525 1751 0bdb811f-db83-5992-a1b6-e02dbff3bd99 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1880_demographic Dead '-- '-- '-- '-- 20525 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1751.0 '-- '-- 6a680bc8-c6c5-5c38-aa49-9a8054b3d849 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1880_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 152 46 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1880_treatment8 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- f41d8257-b820-4a45-9c8d-0cc3eb76b2fe Adjuvant yes '-- '-- Chemotherapy +TCGA-OV bcb87812-94e3-4dc0-867e-d049b44a2690 Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2066 49 false '-- '-- '-- '-- -18170 2133 bb8c537f-700f-5ff2-9914-02894f74d718 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-13-2066_demographic Dead '-- '-- '-- '-- 18170 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2133.0 '-- '-- 0e193eed-4daa-5b3a-9236-54bcff12a0e1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2066_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 169 61 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-2066_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- b82403d8-28c9-5217-af22-43702a26b371 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV bcb87812-94e3-4dc0-867e-d049b44a2690 Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2066 49 false '-- '-- '-- '-- -18170 2133 bb8c537f-700f-5ff2-9914-02894f74d718 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-13-2066_demographic Dead '-- '-- '-- '-- 18170 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2133.0 '-- '-- 0e193eed-4daa-5b3a-9236-54bcff12a0e1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2066_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-2066_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- da5c8f8f-eadd-43d3-863d-d8ac37f6d941 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV bcb87812-94e3-4dc0-867e-d049b44a2690 Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2066 49 false '-- '-- '-- '-- -18170 2133 bb8c537f-700f-5ff2-9914-02894f74d718 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-13-2066_demographic Dead '-- '-- '-- '-- 18170 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2133.0 '-- '-- 0e193eed-4daa-5b3a-9236-54bcff12a0e1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2066_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 169 61 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-2066_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fca0958b-49bd-46d1-be40-a5a80ee99021 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV bcb87812-94e3-4dc0-867e-d049b44a2690 Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2066 49 false '-- '-- '-- '-- -18170 2133 bb8c537f-700f-5ff2-9914-02894f74d718 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-13-2066_demographic Dead '-- '-- '-- '-- 19198 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 1028 '-- '-- '-- 9986f1c1-ac88-46c7-9dd2-29186777f392 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-2066_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-2066_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV bff84539-7862-45b2-b5fc-e77291fcca8b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1371 58 false '-- '-- '-- '-- -21243 '-- e27abeaf-ee39-5350-9f70-20f7a4936900 '-- not reported female '-- '-- '-- '-- white TCGA-04-1371_demographic Alive '-- '-- '-- '-- 21243 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2506.0 '-- '-- adedbbe2-61ef-507f-998f-5754bae8c068 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1371_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 199 7 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1371_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5120 '-- mg '-- '-- '-- '-- 8df2bad2-d5e3-4d4e-b1eb-db3deafff597 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV bff84539-7862-45b2-b5fc-e77291fcca8b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1371 58 false '-- '-- '-- '-- -21243 '-- e27abeaf-ee39-5350-9f70-20f7a4936900 '-- not reported female '-- '-- '-- '-- white TCGA-04-1371_demographic Alive '-- '-- '-- '-- 21243 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2506.0 '-- '-- adedbbe2-61ef-507f-998f-5754bae8c068 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1371_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1371_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8f69078d-f628-44d7-8fab-b80b2868cc06 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV bff84539-7862-45b2-b5fc-e77291fcca8b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1371 58 false '-- '-- '-- '-- -21243 '-- e27abeaf-ee39-5350-9f70-20f7a4936900 '-- not reported female '-- '-- '-- '-- white TCGA-04-1371_demographic Alive '-- '-- '-- '-- 21243 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2506.0 '-- '-- adedbbe2-61ef-507f-998f-5754bae8c068 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1371_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 199 7 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1371_treatment2 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 13200 '-- mg '-- '-- '-- '-- b988600b-25b8-4949-a8a7-b946e82e4c47 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV bff84539-7862-45b2-b5fc-e77291fcca8b '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1371 58 false '-- '-- '-- '-- -21243 '-- e27abeaf-ee39-5350-9f70-20f7a4936900 '-- not reported female '-- '-- '-- '-- white TCGA-04-1371_demographic Alive '-- '-- '-- '-- 21243 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2506.0 '-- '-- adedbbe2-61ef-507f-998f-5754bae8c068 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1371_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 199 7 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1371_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1160 '-- mg '-- '-- '-- '-- fde18a92-bfbe-5aa0-a8cc-be9df108119a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- 20409 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2089.0 '-- '-- 2f26a07c-893d-5252-be5b-5dcb2902113a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1114_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1918 1741 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1114_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 475 '-- mg '-- '-- '-- '-- 217a7e5b-2644-4622-b6df-e0de8ec63e34 '-- yes '-- '-- Chemotherapy +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- 20409 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2089.0 '-- '-- 2f26a07c-893d-5252-be5b-5dcb2902113a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1114_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1114_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 260cad42-2a86-4d9d-a65d-5a0f4f4dc962 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- 20409 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2089.0 '-- '-- 2f26a07c-893d-5252-be5b-5dcb2902113a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1114_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 182 43 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1114_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3dc9ae85-15bc-4e2b-aa27-6a6366cacb81 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- 20409 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2089.0 '-- '-- 2f26a07c-893d-5252-be5b-5dcb2902113a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1114_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 907 865 '-- '-- Not Reported '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1114_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 1305 '-- mg '-- '-- '-- '-- 4ce7f4c7-428f-5c90-85c3-de43de186e0c Consolidation Therapy yes '-- '-- Chemotherapy +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- 20409 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2089.0 '-- '-- 2f26a07c-893d-5252-be5b-5dcb2902113a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1114_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 182 43 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1114_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 53ed84a0-5e50-4f25-8fee-89b2f705a28e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- 20409 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2089.0 '-- '-- 2f26a07c-893d-5252-be5b-5dcb2902113a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1114_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 747 663 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1114_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1400 '-- mg '-- '-- '-- '-- 5ff2f676-16fc-4f39-85b8-16bdb77046fe '-- yes '-- '-- Chemotherapy +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- 20409 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2089.0 '-- '-- 2f26a07c-893d-5252-be5b-5dcb2902113a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1114_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1222 1159 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1114_treatment10 Docetaxel '-- '-- '-- '-- '-- '-- '-- 520 '-- mg '-- '-- '-- '-- 75ef0e20-b37b-49f0-bb47-45de5d650e5a '-- yes '-- '-- Chemotherapy +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- 20409 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2089.0 '-- '-- 2f26a07c-893d-5252-be5b-5dcb2902113a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1114_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 747 663 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1114_treatment9 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2100 '-- mg '-- '-- '-- '-- 8a0adf52-6226-4724-a475-ddb5c691788c '-- yes '-- '-- Chemotherapy +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- 20409 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2089.0 '-- '-- 2f26a07c-893d-5252-be5b-5dcb2902113a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1114_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1425 1357 '-- '-- Persistent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1114_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1190 '-- mg '-- '-- '-- '-- 93c56564-9055-40f6-8c36-c19116986251 Not Reported yes '-- '-- Chemotherapy +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- 20409 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2089.0 '-- '-- 2f26a07c-893d-5252-be5b-5dcb2902113a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1114_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1425 1348 '-- '-- Persistent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1114_treatment11 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 9625 '-- mg '-- '-- '-- '-- b024cf14-1247-46c3-b80d-e40f5c9fc1bb Not Reported yes '-- '-- Chemotherapy +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- 20409 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2089.0 '-- '-- 2f26a07c-893d-5252-be5b-5dcb2902113a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1114_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 2026 1985 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1114_treatment2 Topotecan '-- '-- '-- '-- '-- '-- '-- 20 '-- mg '-- '-- '-- '-- be918966-a95d-4a87-97ad-c4a4c18979f8 '-- yes '-- '-- Chemotherapy +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- 20409 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2089.0 '-- '-- 2f26a07c-893d-5252-be5b-5dcb2902113a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1114_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1350 1324 '-- '-- Persistent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1114_treatment8 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 5500 '-- mg '-- '-- '-- '-- e9e3f762-6e37-4613-8b3f-4e556f91e96c Not Reported yes '-- '-- Chemotherapy +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- 20409 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2089.0 '-- '-- 2f26a07c-893d-5252-be5b-5dcb2902113a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1114_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1350 1324 '-- '-- Persistent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1114_treatment12 Cisplatin '-- '-- '-- '-- '-- '-- '-- 260 '-- mg '-- '-- '-- '-- f2e65017-3d5c-4b25-a8f0-29dd7f80be74 Not Reported yes '-- '-- Chemotherapy +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8de7faad-7f73-4541-a113-4ba0b228935f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1114_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1114_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1114_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5b906a33-af03-4386-a139-b4c0b17c96a3 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8de7faad-7f73-4541-a113-4ba0b228935f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1114_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1114_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 634 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1114_treatment18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7a6cd2ad-3148-48f0-aab3-e9559502c703 '-- yes '-- '-- Surgery, NOS +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8de7faad-7f73-4541-a113-4ba0b228935f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1114_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1114_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1114_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 80237e5b-550d-459a-b7cd-99b6ec043927 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- 21043 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 634 '-- '-- '-- fbec5e51-4146-4efc-8513-7b6e4d7aa520 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1114_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1114_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1114_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3b314132-99b5-4842-9575-6ba2dd089520 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV c0c3caab-9277-4a31-a96c-c607e38d5ccc Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1114 55 false '-- '-- '-- '-- -20409 2089 53467ffb-93bb-5572-b01e-19602c063a44 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1114_demographic Dead '-- '-- '-- '-- 21043 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 634 '-- '-- '-- fbec5e51-4146-4efc-8513-7b6e4d7aa520 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1114_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1114_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1114_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f7a99641-c257-4092-a3c8-910dac22e560 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV c11cae7e-91cd-4470-a9d8-188a4f6b8fa1 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0792 40 false '-- '-- '-- '-- -14729 '-- 2822a96c-de00-5755-9a4c-4d76f2370b4b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0792_demographic Alive '-- '-- '-- '-- 15545 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 816 '-- '-- '-- 1d4cfe00-fce8-4b44-ac63-792e73180575 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0792_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0792_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0792_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3564d562-454a-4e01-a299-0946149420ea '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV c11cae7e-91cd-4470-a9d8-188a4f6b8fa1 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0792 40 false '-- '-- '-- '-- -14729 '-- 2822a96c-de00-5755-9a4c-4d76f2370b4b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0792_demographic Alive '-- '-- '-- '-- 15545 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 816 '-- '-- '-- 1d4cfe00-fce8-4b44-ac63-792e73180575 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0792_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0792_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0792_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ae568b06-50cb-49ec-bc6e-995fb82d855e '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV c11cae7e-91cd-4470-a9d8-188a4f6b8fa1 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0792 40 false '-- '-- '-- '-- -14729 '-- 2822a96c-de00-5755-9a4c-4d76f2370b4b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0792_demographic Alive '-- '-- '-- '-- 15545 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 816 '-- '-- '-- 37e10c85-f9da-4e10-8e83-3006fbb24430 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0792_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0792_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV c11cae7e-91cd-4470-a9d8-188a4f6b8fa1 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0792 40 false '-- '-- '-- '-- -14729 '-- 2822a96c-de00-5755-9a4c-4d76f2370b4b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0792_demographic Alive '-- '-- '-- '-- 14729 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3602.0 '-- '-- 4df27519-c7c4-5b0b-bc36-95846cc7d970 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0792_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0792_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 09db58b6-9c3c-444c-8a2a-70af224407d7 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV c11cae7e-91cd-4470-a9d8-188a4f6b8fa1 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0792 40 false '-- '-- '-- '-- -14729 '-- 2822a96c-de00-5755-9a4c-4d76f2370b4b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0792_demographic Alive '-- '-- '-- '-- 14729 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3602.0 '-- '-- 4df27519-c7c4-5b0b-bc36-95846cc7d970 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0792_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 160 34 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0792_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- 4f7216c1-7161-489a-8a31-809aab37c867 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c11cae7e-91cd-4470-a9d8-188a4f6b8fa1 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0792 40 false '-- '-- '-- '-- -14729 '-- 2822a96c-de00-5755-9a4c-4d76f2370b4b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0792_demographic Alive '-- '-- '-- '-- 14729 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3602.0 '-- '-- 4df27519-c7c4-5b0b-bc36-95846cc7d970 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0792_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 160 34 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0792_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- 61d58db2-42c0-4c47-ad24-fd96f4e7d08d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c11cae7e-91cd-4470-a9d8-188a4f6b8fa1 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0792 40 false '-- '-- '-- '-- -14729 '-- 2822a96c-de00-5755-9a4c-4d76f2370b4b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0792_demographic Alive '-- '-- '-- '-- 14729 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3602.0 '-- '-- 4df27519-c7c4-5b0b-bc36-95846cc7d970 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0792_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 160 34 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0792_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- d6cda6d7-8cea-5bb9-9b39-5403f054deb6 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c183d3fb-2eee-44f8-890e-b9bf907141e6 Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2092 57 false '-- '-- '-- '-- -21072 '-- 53de236f-819a-54ee-9111-6556f3647385 '-- not reported female '-- '-- '-- '-- white TCGA-61-2092_demographic Alive '-- '-- '-- '-- 21072 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1573.0 '-- '-- 8fd8c018-04a7-549f-a3a6-ac8e9b87c065 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2092_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 160 41 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2092_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2d8c1dcf-b0a7-4630-82c2-8054ac8b7052 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c183d3fb-2eee-44f8-890e-b9bf907141e6 Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2092 57 false '-- '-- '-- '-- -21072 '-- 53de236f-819a-54ee-9111-6556f3647385 '-- not reported female '-- '-- '-- '-- white TCGA-61-2092_demographic Alive '-- '-- '-- '-- 21072 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1573.0 '-- '-- 8fd8c018-04a7-549f-a3a6-ac8e9b87c065 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2092_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2092_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ac21f76e-5537-42ee-b868-8831478c5150 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV c183d3fb-2eee-44f8-890e-b9bf907141e6 Informed Consent -3 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2092 57 false '-- '-- '-- '-- -21072 '-- 53de236f-819a-54ee-9111-6556f3647385 '-- not reported female '-- '-- '-- '-- white TCGA-61-2092_demographic Alive '-- '-- '-- '-- 21072 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1573.0 '-- '-- 8fd8c018-04a7-549f-a3a6-ac8e9b87c065 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2092_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 160 41 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2092_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e69ef619-a6ae-5941-a261-0a6ee83ea47a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c3e443b9-5dc5-4793-91e3-534f21485268 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1424 67 false '-- '-- '-- '-- -24545 '-- 63997bed-da2a-57ae-81e4-53468e3d556a '-- not reported female '-- '-- '-- '-- white TCGA-24-1424_demographic Alive '-- '-- '-- '-- 24545 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 183.0 '-- '-- 51ca0e22-1a4d-5b23-a0bb-f197df114dfe true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1424_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 120 8 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1424_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 1441 '-- mg '-- '-- '-- '-- 0abda174-3602-5b21-9c07-80eb17808870 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c3e443b9-5dc5-4793-91e3-534f21485268 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1424 67 false '-- '-- '-- '-- -24545 '-- 63997bed-da2a-57ae-81e4-53468e3d556a '-- not reported female '-- '-- '-- '-- white TCGA-24-1424_demographic Alive '-- '-- '-- '-- 24545 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 183.0 '-- '-- 51ca0e22-1a4d-5b23-a0bb-f197df114dfe true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1424_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1424_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7e58fd31-8b1f-4eae-80aa-4c5a4d850a71 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV c3e443b9-5dc5-4793-91e3-534f21485268 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1424 67 false '-- '-- '-- '-- -24545 '-- 63997bed-da2a-57ae-81e4-53468e3d556a '-- not reported female '-- '-- '-- '-- white TCGA-24-1424_demographic Alive '-- '-- '-- '-- 24545 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 183.0 '-- '-- 51ca0e22-1a4d-5b23-a0bb-f197df114dfe true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1424_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 120 8 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1424_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- 429 '-- mg '-- '-- '-- '-- a5120aaa-833a-472e-bd7f-4e3ff3cb8eaf Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c3e443b9-5dc5-4793-91e3-534f21485268 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1424 67 false '-- '-- '-- '-- -24545 '-- 63997bed-da2a-57ae-81e4-53468e3d556a '-- not reported female '-- '-- '-- '-- white TCGA-24-1424_demographic Alive '-- '-- '-- '-- 24545 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 183.0 '-- '-- 51ca0e22-1a4d-5b23-a0bb-f197df114dfe true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1424_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 120 8 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1424_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 972 '-- mg '-- '-- '-- '-- b9c16de8-5e53-41c7-806f-ab2fd1a2f602 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c3f9ee36-d34f-472b-ac7f-801a0d400aa4 Informed Consent -18 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1410 57 false '-- '-- '-- '-- -20950 '-- dddcc9ce-814f-57e6-88a2-e528d7447fbb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1410_demographic Alive '-- '-- '-- '-- 20950 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2464.0 '-- '-- 5e13b45b-37a6-5228-8b30-a580f27d1c1a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1410_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 83 39 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1410_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2b230ef2-11da-4175-9171-30caca913d2c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c3f9ee36-d34f-472b-ac7f-801a0d400aa4 Informed Consent -18 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1410 57 false '-- '-- '-- '-- -20950 '-- dddcc9ce-814f-57e6-88a2-e528d7447fbb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1410_demographic Alive '-- '-- '-- '-- 20950 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2464.0 '-- '-- 5e13b45b-37a6-5228-8b30-a580f27d1c1a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1410_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 125 103 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-13-1410_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- 35b5209f-4450-58fe-87f6-96613c89f7fb Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c3f9ee36-d34f-472b-ac7f-801a0d400aa4 Informed Consent -18 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1410 57 false '-- '-- '-- '-- -20950 '-- dddcc9ce-814f-57e6-88a2-e528d7447fbb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1410_demographic Alive '-- '-- '-- '-- 20950 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2464.0 '-- '-- 5e13b45b-37a6-5228-8b30-a580f27d1c1a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1410_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 83 39 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1410_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 7679adc6-2db2-4f4e-9f5d-f96dfc269e3a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c3f9ee36-d34f-472b-ac7f-801a0d400aa4 Informed Consent -18 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1410 57 false '-- '-- '-- '-- -20950 '-- dddcc9ce-814f-57e6-88a2-e528d7447fbb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1410_demographic Alive '-- '-- '-- '-- 20950 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2464.0 '-- '-- 5e13b45b-37a6-5228-8b30-a580f27d1c1a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1410_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1410_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7fd0fe35-169f-4f40-8c86-cf4e7b50d8aa Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV c3f9ee36-d34f-472b-ac7f-801a0d400aa4 Informed Consent -18 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1410 57 false '-- '-- '-- '-- -20950 '-- dddcc9ce-814f-57e6-88a2-e528d7447fbb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1410_demographic Alive '-- '-- '-- '-- 20950 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2464.0 '-- '-- 5e13b45b-37a6-5228-8b30-a580f27d1c1a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1410_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 125 103 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-13-1410_treatment4 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- f817e44e-f432-4d4b-b6b3-22322566d04f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c3f9ee36-d34f-472b-ac7f-801a0d400aa4 Informed Consent -18 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1410 57 false '-- '-- '-- '-- -20950 '-- dddcc9ce-814f-57e6-88a2-e528d7447fbb '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1410_demographic Alive '-- '-- '-- '-- 21269 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 319 '-- '-- '-- 707cfeea-8f3d-4af8-9252-e3688211d9b3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1410_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1410_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV c435627c-159d-4a6d-a819-30abac24bf4d Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1632 68 false '-- '-- '-- '-- -24993 1799 ecf4f54b-a69f-5931-8dc3-82641be4e4f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1632_demographic Dead '-- '-- '-- '-- 25530 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 537 '-- '-- '-- 03854145-98b4-4997-999d-7303bf40d770 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1632_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1632_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1632_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 66e1f0d5-eb8b-4222-aa6a-c5ba4fc76c93 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV c435627c-159d-4a6d-a819-30abac24bf4d Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1632 68 false '-- '-- '-- '-- -24993 1799 ecf4f54b-a69f-5931-8dc3-82641be4e4f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1632_demographic Dead '-- '-- '-- '-- 25530 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 537 '-- '-- '-- 03854145-98b4-4997-999d-7303bf40d770 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1632_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1632_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1632_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 94799d53-168e-413b-940c-08c4de75c13f '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV c435627c-159d-4a6d-a819-30abac24bf4d Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1632 68 false '-- '-- '-- '-- -24993 1799 ecf4f54b-a69f-5931-8dc3-82641be4e4f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1632_demographic Dead '-- '-- '-- '-- 24993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1799.0 '-- '-- c8695a7a-bbd7-5587-abe6-4896e3db73ba true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1632_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1632_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 23c018a6-e68d-43ee-9f7d-f5efae848c14 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV c435627c-159d-4a6d-a819-30abac24bf4d Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1632 68 false '-- '-- '-- '-- -24993 1799 ecf4f54b-a69f-5931-8dc3-82641be4e4f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1632_demographic Dead '-- '-- '-- '-- 24993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1799.0 '-- '-- c8695a7a-bbd7-5587-abe6-4896e3db73ba true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1632_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 719 566 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1632_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3995de18-6364-449b-bad3-02e493e0a4a4 '-- yes '-- '-- Chemotherapy +TCGA-OV c435627c-159d-4a6d-a819-30abac24bf4d Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1632 68 false '-- '-- '-- '-- -24993 1799 ecf4f54b-a69f-5931-8dc3-82641be4e4f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1632_demographic Dead '-- '-- '-- '-- 24993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1799.0 '-- '-- c8695a7a-bbd7-5587-abe6-4896e3db73ba true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1632_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 719 566 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1632_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 48fa0442-2828-4674-82ed-5fc329acfb6a '-- yes '-- '-- Chemotherapy +TCGA-OV c435627c-159d-4a6d-a819-30abac24bf4d Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1632 68 false '-- '-- '-- '-- -24993 1799 ecf4f54b-a69f-5931-8dc3-82641be4e4f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1632_demographic Dead '-- '-- '-- '-- 24993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1799.0 '-- '-- c8695a7a-bbd7-5587-abe6-4896e3db73ba true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1632_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 200 82 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1632_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 76150ff8-715c-502e-b0a0-483aadf886d4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c435627c-159d-4a6d-a819-30abac24bf4d Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1632 68 false '-- '-- '-- '-- -24993 1799 ecf4f54b-a69f-5931-8dc3-82641be4e4f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1632_demographic Dead '-- '-- '-- '-- 24993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1799.0 '-- '-- c8695a7a-bbd7-5587-abe6-4896e3db73ba true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1632_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 200 82 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1632_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 94389e58-8b86-41ce-b06e-3614d107a4e9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c435627c-159d-4a6d-a819-30abac24bf4d Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1632 68 false '-- '-- '-- '-- -24993 1799 ecf4f54b-a69f-5931-8dc3-82641be4e4f4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1632_demographic Dead '-- '-- '-- '-- 24993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1799.0 '-- '-- c8695a7a-bbd7-5587-abe6-4896e3db73ba true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1632_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 200 82 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1632_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ac66b5cb-256d-476c-8bd8-db6ddd85042a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c5355491-e1e8-46a4-a05e-bafcaf2e7459 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1481 76 false '-- '-- '-- '-- -27898 2648 3feefab3-b78e-5f51-a8f7-b0601937c6dc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1481_demographic Dead '-- '-- '-- '-- 27898 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2648.0 '-- '-- 6876be41-0a9d-5d46-b658-88ac8875f007 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1481_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 242 198 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-1481_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 59a108b5-57c4-5efc-b34f-97cd49df570c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c5355491-e1e8-46a4-a05e-bafcaf2e7459 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1481 76 false '-- '-- '-- '-- -27898 2648 3feefab3-b78e-5f51-a8f7-b0601937c6dc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1481_demographic Dead '-- '-- '-- '-- 27898 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2648.0 '-- '-- 6876be41-0a9d-5d46-b658-88ac8875f007 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1481_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 131 11 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1481_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9f848a6a-9e86-4a61-82ef-5bf10f16d76f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c5355491-e1e8-46a4-a05e-bafcaf2e7459 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1481 76 false '-- '-- '-- '-- -27898 2648 3feefab3-b78e-5f51-a8f7-b0601937c6dc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1481_demographic Dead '-- '-- '-- '-- 27898 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2648.0 '-- '-- 6876be41-0a9d-5d46-b658-88ac8875f007 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1481_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1481_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- afe86459-325d-4aa8-b408-e711b86f942b Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV c5355491-e1e8-46a4-a05e-bafcaf2e7459 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1481 76 false '-- '-- '-- '-- -27898 2648 3feefab3-b78e-5f51-a8f7-b0601937c6dc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1481_demographic Dead '-- '-- '-- '-- 27898 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2648.0 '-- '-- 6876be41-0a9d-5d46-b658-88ac8875f007 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1481_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 131 11 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1481_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- f35ffa58-18cf-4730-96c9-07907f59fa17 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c6ede8ae-881c-47a0-a0ef-745ed4b7764a Informed Consent 1095 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1026 45 false '-- '-- '-- '-- -16442 '-- c1602427-bdf1-51ea-b682-09a7e2a740c1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1026_demographic Alive '-- '-- '-- '-- 16442 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 816.0 '-- '-- 0a5bc544-d5cc-57d6-85e2-fd38deb2fccb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1026_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 108 7 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1026_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1560 '-- mg '-- '-- '-- '-- 6d3785bf-c3d1-46d2-ab7e-9a0c599a4f19 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c6ede8ae-881c-47a0-a0ef-745ed4b7764a Informed Consent 1095 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1026 45 false '-- '-- '-- '-- -16442 '-- c1602427-bdf1-51ea-b682-09a7e2a740c1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1026_demographic Alive '-- '-- '-- '-- 16442 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 816.0 '-- '-- 0a5bc544-d5cc-57d6-85e2-fd38deb2fccb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1026_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 936 866 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-23-1026_treatment4 Cisplatin '-- '-- '-- '-- '-- '-- '-- 520 '-- mg '-- '-- '-- '-- a20eb4ed-953f-4e5a-83e7-ae0d96813a06 '-- yes '-- '-- Chemotherapy +TCGA-OV c6ede8ae-881c-47a0-a0ef-745ed4b7764a Informed Consent 1095 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1026 45 false '-- '-- '-- '-- -16442 '-- c1602427-bdf1-51ea-b682-09a7e2a740c1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1026_demographic Alive '-- '-- '-- '-- 16442 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 816.0 '-- '-- 0a5bc544-d5cc-57d6-85e2-fd38deb2fccb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1026_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 936 866 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-23-1026_treatment Gemcitabine '-- '-- '-- '-- '-- '-- '-- 5648 '-- mg '-- '-- '-- '-- abcd3aa9-29eb-52a2-a30b-9378a2110059 '-- yes '-- '-- Chemotherapy +TCGA-OV c6ede8ae-881c-47a0-a0ef-745ed4b7764a Informed Consent 1095 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1026 45 false '-- '-- '-- '-- -16442 '-- c1602427-bdf1-51ea-b682-09a7e2a740c1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1026_demographic Alive '-- '-- '-- '-- 16442 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 816.0 '-- '-- 0a5bc544-d5cc-57d6-85e2-fd38deb2fccb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1026_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1026_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ba1d4a77-776b-4c88-8025-e42a16399294 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV c6ede8ae-881c-47a0-a0ef-745ed4b7764a Informed Consent 1095 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1026 45 false '-- '-- '-- '-- -16442 '-- c1602427-bdf1-51ea-b682-09a7e2a740c1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1026_demographic Alive '-- '-- '-- '-- 16442 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 816.0 '-- '-- 0a5bc544-d5cc-57d6-85e2-fd38deb2fccb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1026_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 108 7 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1026_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3420 '-- mg '-- '-- '-- '-- c080e577-f2ce-47eb-96ca-654154cd3162 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c6ede8ae-881c-47a0-a0ef-745ed4b7764a Informed Consent 1095 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1026 45 false '-- '-- '-- '-- -16442 '-- c1602427-bdf1-51ea-b682-09a7e2a740c1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1026_demographic Alive '-- '-- '-- '-- 17239 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 797 '-- '-- '-- 21c9f279-b78d-4f65-8a01-48a8049dfa7f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1026_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1026_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1026_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 63ff0ebd-d6ac-4034-a175-8c08787dff73 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV c6ede8ae-881c-47a0-a0ef-745ed4b7764a Informed Consent 1095 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1026 45 false '-- '-- '-- '-- -16442 '-- c1602427-bdf1-51ea-b682-09a7e2a740c1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1026_demographic Alive '-- '-- '-- '-- 17239 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 797 '-- '-- '-- 21c9f279-b78d-4f65-8a01-48a8049dfa7f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1026_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1026_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1026_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 74b201c6-5bbc-4cb6-b32e-00dad201ee3f '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV c6ede8ae-881c-47a0-a0ef-745ed4b7764a Informed Consent 1095 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1026 45 false '-- '-- '-- '-- -16442 '-- c1602427-bdf1-51ea-b682-09a7e2a740c1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1026_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7b08ac98-ca67-4948-bd3e-b80392a1efac false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1026_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1026_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1026_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 39d1f94a-fc1a-44e4-8c9b-6d5aa98f3e8f '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV c6ede8ae-881c-47a0-a0ef-745ed4b7764a Informed Consent 1095 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1026 45 false '-- '-- '-- '-- -16442 '-- c1602427-bdf1-51ea-b682-09a7e2a740c1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1026_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7b08ac98-ca67-4948-bd3e-b80392a1efac false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1026_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1026_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 816 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1026_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- acb5bdef-8322-4434-9760-2f611e2fa658 '-- yes '-- '-- Surgery, NOS +TCGA-OV c6ede8ae-881c-47a0-a0ef-745ed4b7764a Informed Consent 1095 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1026 45 false '-- '-- '-- '-- -16442 '-- c1602427-bdf1-51ea-b682-09a7e2a740c1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1026_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7b08ac98-ca67-4948-bd3e-b80392a1efac false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1026_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1026_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1026_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fcdda856-da61-44cd-b192-2219048f2759 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV c70228cc-79c0-4c00-8926-6671c1474701 Informed Consent 1739 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1764 49 false '-- '-- '-- '-- -18012 '-- d54d8b8c-c3c0-5230-aff1-849fc314c771 '-- not reported female '-- '-- '-- '-- white TCGA-29-1764_demographic Alive '-- '-- '-- '-- 18012 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1914.0 '-- '-- dd129643-2b6a-531f-b314-1e5c9d464300 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1764_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1973 1816 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1764_treatment4 Topotecan Hydrochloride '-- '-- '-- '-- '-- '-- '-- 6 '-- mg '-- '-- '-- '-- 155829e7-8ad6-4132-a610-39c32fef3069 '-- yes '-- '-- Chemotherapy +TCGA-OV c70228cc-79c0-4c00-8926-6671c1474701 Informed Consent 1739 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1764 49 false '-- '-- '-- '-- -18012 '-- d54d8b8c-c3c0-5230-aff1-849fc314c771 '-- not reported female '-- '-- '-- '-- white TCGA-29-1764_demographic Alive '-- '-- '-- '-- 18012 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1914.0 '-- '-- dd129643-2b6a-531f-b314-1e5c9d464300 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1764_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 167 15 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1764_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 4581 '-- mg '-- '-- '-- '-- 1c0b3a4e-752b-57c1-92ae-f8436cde7fae Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c70228cc-79c0-4c00-8926-6671c1474701 Informed Consent 1739 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1764 49 false '-- '-- '-- '-- -18012 '-- d54d8b8c-c3c0-5230-aff1-849fc314c771 '-- not reported female '-- '-- '-- '-- white TCGA-29-1764_demographic Alive '-- '-- '-- '-- 18012 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1914.0 '-- '-- dd129643-2b6a-531f-b314-1e5c9d464300 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1764_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 87 15 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1764_treatment2 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 12000 '-- mg '-- '-- '-- '-- 2dea88e2-5a08-47d4-98c8-b095d2d5be91 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c70228cc-79c0-4c00-8926-6671c1474701 Informed Consent 1739 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1764 49 false '-- '-- '-- '-- -18012 '-- d54d8b8c-c3c0-5230-aff1-849fc314c771 '-- not reported female '-- '-- '-- '-- white TCGA-29-1764_demographic Alive '-- '-- '-- '-- 18012 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1914.0 '-- '-- dd129643-2b6a-531f-b314-1e5c9d464300 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1764_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 968 822 '-- '-- Progressive Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1764_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 590 '-- mg '-- '-- '-- '-- 2e7023f0-95d2-4312-af8b-83ee55cb2f16 '-- yes '-- '-- Chemotherapy +TCGA-OV c70228cc-79c0-4c00-8926-6671c1474701 Informed Consent 1739 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1764 49 false '-- '-- '-- '-- -18012 '-- d54d8b8c-c3c0-5230-aff1-849fc314c771 '-- not reported female '-- '-- '-- '-- white TCGA-29-1764_demographic Alive '-- '-- '-- '-- 18012 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1914.0 '-- '-- dd129643-2b6a-531f-b314-1e5c9d464300 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1764_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1515 1366 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1764_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 80 '-- mg '-- '-- '-- '-- 5d47937e-6358-4426-97fc-f66a9ca4f26c '-- yes '-- '-- Chemotherapy +TCGA-OV c70228cc-79c0-4c00-8926-6671c1474701 Informed Consent 1739 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1764 49 false '-- '-- '-- '-- -18012 '-- d54d8b8c-c3c0-5230-aff1-849fc314c771 '-- not reported female '-- '-- '-- '-- white TCGA-29-1764_demographic Alive '-- '-- '-- '-- 18012 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1914.0 '-- '-- dd129643-2b6a-531f-b314-1e5c9d464300 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1764_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1785 1785 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1764_treatment8 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 80 '-- mg '-- '-- '-- '-- 6d38dfb1-4ebe-4af1-aebc-14cd1bd16907 '-- yes '-- '-- Chemotherapy +TCGA-OV c70228cc-79c0-4c00-8926-6671c1474701 Informed Consent 1739 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1764 49 false '-- '-- '-- '-- -18012 '-- d54d8b8c-c3c0-5230-aff1-849fc314c771 '-- not reported female '-- '-- '-- '-- white TCGA-29-1764_demographic Alive '-- '-- '-- '-- 18012 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1914.0 '-- '-- dd129643-2b6a-531f-b314-1e5c9d464300 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1764_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1973 1816 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1764_treatment6 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 1100 '-- mg '-- '-- '-- '-- 8a012dfd-b045-412e-8063-0e73c571cf7a '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV c70228cc-79c0-4c00-8926-6671c1474701 Informed Consent 1739 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1764 49 false '-- '-- '-- '-- -18012 '-- d54d8b8c-c3c0-5230-aff1-849fc314c771 '-- not reported female '-- '-- '-- '-- white TCGA-29-1764_demographic Alive '-- '-- '-- '-- 18012 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1914.0 '-- '-- dd129643-2b6a-531f-b314-1e5c9d464300 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1764_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 818 797 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1764_treatment10 Docetaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg '-- '-- '-- '-- bcc91916-66e6-40d1-8d7d-fd50ab6dfdbd '-- yes '-- '-- Chemotherapy +TCGA-OV c70228cc-79c0-4c00-8926-6671c1474701 Informed Consent 1739 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1764 49 false '-- '-- '-- '-- -18012 '-- d54d8b8c-c3c0-5230-aff1-849fc314c771 '-- not reported female '-- '-- '-- '-- white TCGA-29-1764_demographic Alive '-- '-- '-- '-- 18012 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1914.0 '-- '-- dd129643-2b6a-531f-b314-1e5c9d464300 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1764_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1343 1301 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1764_treatment9 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c5968859-b507-45b9-855f-bb9a36b20d5a '-- yes '-- '-- Chemotherapy +TCGA-OV c70228cc-79c0-4c00-8926-6671c1474701 Informed Consent 1739 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1764 49 false '-- '-- '-- '-- -18012 '-- d54d8b8c-c3c0-5230-aff1-849fc314c771 '-- not reported female '-- '-- '-- '-- white TCGA-29-1764_demographic Alive '-- '-- '-- '-- 18012 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1914.0 '-- '-- dd129643-2b6a-531f-b314-1e5c9d464300 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1764_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1764_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c996acbb-8c7e-4cdb-b533-45a194fbb232 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV c70228cc-79c0-4c00-8926-6671c1474701 Informed Consent 1739 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1764 49 false '-- '-- '-- '-- -18012 '-- d54d8b8c-c3c0-5230-aff1-849fc314c771 '-- not reported female '-- '-- '-- '-- white TCGA-29-1764_demographic Alive '-- '-- '-- '-- 18012 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1914.0 '-- '-- dd129643-2b6a-531f-b314-1e5c9d464300 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1764_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 167 111 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1764_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1050 '-- mg '-- '-- '-- '-- f17f8d02-6267-4ee2-8054-e3ec9d35a2ea Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c70228cc-79c0-4c00-8926-6671c1474701 Informed Consent 1739 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1764 49 false '-- '-- '-- '-- -18012 '-- d54d8b8c-c3c0-5230-aff1-849fc314c771 '-- not reported female '-- '-- '-- '-- white TCGA-29-1764_demographic Alive '-- '-- '-- '-- 18804 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 792 '-- '-- '-- ea17e6ab-cfa4-46e2-93b7-7cabbd35d656 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1764_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1764_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1764_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 07af308b-53ca-4e97-b2e5-251194109dc2 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV c70228cc-79c0-4c00-8926-6671c1474701 Informed Consent 1739 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1764 49 false '-- '-- '-- '-- -18012 '-- d54d8b8c-c3c0-5230-aff1-849fc314c771 '-- not reported female '-- '-- '-- '-- white TCGA-29-1764_demographic Alive '-- '-- '-- '-- 18804 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 792 '-- '-- '-- ea17e6ab-cfa4-46e2-93b7-7cabbd35d656 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1764_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1764_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1764_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cbc3c85c-010d-48f6-9f79-ee9d9c9eee2a '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV c73244fd-d486-439f-a94f-fb0bd4e9ac8f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1324 74 false '-- '-- '-- '-- -27090 1035 82f1207d-737a-5fa8-bd7e-a9555193d7ff '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1324_demographic Dead '-- '-- '-- '-- 27090 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1035.0 '-- '-- bfdec51d-c323-5a52-8541-41131eef2710 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1324_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1324_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 17df83aa-1728-42f4-810a-550800f0a18e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c73244fd-d486-439f-a94f-fb0bd4e9ac8f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1324 74 false '-- '-- '-- '-- -27090 1035 82f1207d-737a-5fa8-bd7e-a9555193d7ff '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1324_demographic Dead '-- '-- '-- '-- 27090 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1035.0 '-- '-- bfdec51d-c323-5a52-8541-41131eef2710 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1324_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1324_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8db7a10d-09d1-45a2-b5b6-f8b7c792b0b4 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV c73244fd-d486-439f-a94f-fb0bd4e9ac8f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1324 74 false '-- '-- '-- '-- -27090 1035 82f1207d-737a-5fa8-bd7e-a9555193d7ff '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1324_demographic Dead '-- '-- '-- '-- 27090 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1035.0 '-- '-- bfdec51d-c323-5a52-8541-41131eef2710 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1324_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1324_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a14514cb-922d-5a4e-9c43-0e9387795c08 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c75c915f-ef4b-4c19-8ace-995e6c6015fd Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1638 57 false '-- '-- '-- '-- -20987 1686 86ded55e-67fc-5d3d-bd07-cc9cef57e7e4 '-- not reported female '-- '-- '-- '-- black or african american TCGA-04-1638_demographic Dead '-- '-- '-- '-- 20987 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1686.0 '-- '-- 40943cb9-97d0-5487-8756-f560b33dcdca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1638_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 193 17 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1638_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 968 '-- mg '-- '-- '-- '-- 0a8ae8b0-5555-4247-b819-bbb07279f05e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c75c915f-ef4b-4c19-8ace-995e6c6015fd Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1638 57 false '-- '-- '-- '-- -20987 1686 86ded55e-67fc-5d3d-bd07-cc9cef57e7e4 '-- not reported female '-- '-- '-- '-- black or african american TCGA-04-1638_demographic Dead '-- '-- '-- '-- 20987 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1686.0 '-- '-- 40943cb9-97d0-5487-8756-f560b33dcdca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1638_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- 346 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1638_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 19cba536-82e3-4b58-88e1-4a42282ef99b '-- yes '-- '-- Chemotherapy +TCGA-OV c75c915f-ef4b-4c19-8ace-995e6c6015fd Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1638 57 false '-- '-- '-- '-- -20987 1686 86ded55e-67fc-5d3d-bd07-cc9cef57e7e4 '-- not reported female '-- '-- '-- '-- black or african american TCGA-04-1638_demographic Dead '-- '-- '-- '-- 20987 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1686.0 '-- '-- 40943cb9-97d0-5487-8756-f560b33dcdca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1638_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- 346 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1638_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1d6b63e9-6b17-4be1-8f67-c8d54a8b1ef3 '-- yes '-- '-- Chemotherapy +TCGA-OV c75c915f-ef4b-4c19-8ace-995e6c6015fd Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1638 57 false '-- '-- '-- '-- -20987 1686 86ded55e-67fc-5d3d-bd07-cc9cef57e7e4 '-- not reported female '-- '-- '-- '-- black or african american TCGA-04-1638_demographic Dead '-- '-- '-- '-- 20987 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1686.0 '-- '-- 40943cb9-97d0-5487-8756-f560b33dcdca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1638_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- 346 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1638_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 802ccfb5-4ab2-452f-99bd-103c98c5c26a '-- yes '-- '-- Chemotherapy +TCGA-OV c75c915f-ef4b-4c19-8ace-995e6c6015fd Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1638 57 false '-- '-- '-- '-- -20987 1686 86ded55e-67fc-5d3d-bd07-cc9cef57e7e4 '-- not reported female '-- '-- '-- '-- black or african american TCGA-04-1638_demographic Dead '-- '-- '-- '-- 20987 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1686.0 '-- '-- 40943cb9-97d0-5487-8756-f560b33dcdca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1638_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- 614 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1638_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cbc29d62-bad4-5e73-ac5d-85eb0b688864 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV c75c915f-ef4b-4c19-8ace-995e6c6015fd Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1638 57 false '-- '-- '-- '-- -20987 1686 86ded55e-67fc-5d3d-bd07-cc9cef57e7e4 '-- not reported female '-- '-- '-- '-- black or african american TCGA-04-1638_demographic Dead '-- '-- '-- '-- 20987 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1686.0 '-- '-- 40943cb9-97d0-5487-8756-f560b33dcdca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1638_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 193 17 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1638_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2990 '-- mg '-- '-- '-- '-- ced9799d-1b39-4c91-bf9c-5dc6b4b607a3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c75c915f-ef4b-4c19-8ace-995e6c6015fd Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1638 57 false '-- '-- '-- '-- -20987 1686 86ded55e-67fc-5d3d-bd07-cc9cef57e7e4 '-- not reported female '-- '-- '-- '-- black or african american TCGA-04-1638_demographic Dead '-- '-- '-- '-- 20987 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1686.0 '-- '-- 40943cb9-97d0-5487-8756-f560b33dcdca true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1638_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 193 17 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1638_treatment7 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 11400 '-- mg '-- '-- '-- '-- d45dbc41-ed1f-490a-adde-99b5d6410169 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c75c915f-ef4b-4c19-8ace-995e6c6015fd Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1638 57 false '-- '-- '-- '-- -20987 1686 86ded55e-67fc-5d3d-bd07-cc9cef57e7e4 '-- not reported female '-- '-- '-- '-- black or african american TCGA-04-1638_demographic Dead '-- '-- '-- '-- 21285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 298 '-- '-- '-- 8b7720b1-f860-40a7-8b45-be8a675f2ae4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1638_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1638_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1638_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 18526119-3878-4f33-9985-3a3c6f5e6885 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV c75c915f-ef4b-4c19-8ace-995e6c6015fd Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1638 57 false '-- '-- '-- '-- -20987 1686 86ded55e-67fc-5d3d-bd07-cc9cef57e7e4 '-- not reported female '-- '-- '-- '-- black or african american TCGA-04-1638_demographic Dead '-- '-- '-- '-- 21285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 298 '-- '-- '-- 8b7720b1-f860-40a7-8b45-be8a675f2ae4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1638_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1638_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1638_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c8d9602b-a663-4534-8755-158a06cce4b5 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV c7c3fe4a-327a-4b7e-a259-989b72971209 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1031 60 false '-- '-- '-- '-- -22225 575 143dd419-6ffb-50c9-9174-95a77ec94c6a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1031_demographic Dead '-- '-- '-- '-- 22225 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 575.0 '-- '-- 23169e53-4b87-5106-8876-8d3021c2bbde true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1031_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 166 26 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1031_treatment8 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6e5ac70d-cc9f-45dd-9e84-be757f8af9b2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c7c3fe4a-327a-4b7e-a259-989b72971209 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1031 60 false '-- '-- '-- '-- -22225 575 143dd419-6ffb-50c9-9174-95a77ec94c6a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1031_demographic Dead '-- '-- '-- '-- 22225 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 575.0 '-- '-- 23169e53-4b87-5106-8876-8d3021c2bbde true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1031_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 555 541 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1031_treatment7 Topotecan '-- '-- '-- '-- '-- '-- '-- 11 '-- mg '-- '-- '-- '-- 71d5ec32-816f-4de8-ad37-71d6bd202407 '-- yes '-- '-- Chemotherapy +TCGA-OV c7c3fe4a-327a-4b7e-a259-989b72971209 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1031 60 false '-- '-- '-- '-- -22225 575 143dd419-6ffb-50c9-9174-95a77ec94c6a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1031_demographic Dead '-- '-- '-- '-- 22225 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 575.0 '-- '-- 23169e53-4b87-5106-8876-8d3021c2bbde true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1031_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 477 460 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-23-1031_treatment2 Capecitabine '-- '-- '-- '-- '-- '-- '-- 1000 '-- mg '-- '-- '-- '-- 78474251-d578-4ada-8a86-29e49d17ee86 '-- yes '-- '-- Chemotherapy +TCGA-OV c7c3fe4a-327a-4b7e-a259-989b72971209 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1031 60 false '-- '-- '-- '-- -22225 575 143dd419-6ffb-50c9-9174-95a77ec94c6a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1031_demographic Dead '-- '-- '-- '-- 22225 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 575.0 '-- '-- 23169e53-4b87-5106-8876-8d3021c2bbde true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1031_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 446 341 '-- '-- '-- '-- '-- '-- '-- 11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1031_treatment6 Cisplatin '-- '-- '-- '-- '-- '-- '-- 715 '-- mg '-- '-- '-- '-- 7fe16046-a403-423b-91b6-97d0bdbd6722 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c7c3fe4a-327a-4b7e-a259-989b72971209 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1031 60 false '-- '-- '-- '-- -22225 575 143dd419-6ffb-50c9-9174-95a77ec94c6a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1031_demographic Dead '-- '-- '-- '-- 22225 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 575.0 '-- '-- 23169e53-4b87-5106-8876-8d3021c2bbde true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1031_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 321 265 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1031_treatment5 Doxorubicin '-- '-- '-- '-- '-- '-- '-- 225 '-- mg '-- '-- '-- '-- 925d4bfa-5467-44ce-a6c2-6c631ccbd8e5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c7c3fe4a-327a-4b7e-a259-989b72971209 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1031 60 false '-- '-- '-- '-- -22225 575 143dd419-6ffb-50c9-9174-95a77ec94c6a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1031_demographic Dead '-- '-- '-- '-- 22225 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 575.0 '-- '-- 23169e53-4b87-5106-8876-8d3021c2bbde true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1031_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1031_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a43a47dc-8fcf-405b-95a7-7cc730e81dd2 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV c7c3fe4a-327a-4b7e-a259-989b72971209 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1031 60 false '-- '-- '-- '-- -22225 575 143dd419-6ffb-50c9-9174-95a77ec94c6a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1031_demographic Dead '-- '-- '-- '-- 22225 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 575.0 '-- '-- 23169e53-4b87-5106-8876-8d3021c2bbde true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1031_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 446 341 '-- '-- '-- '-- '-- '-- '-- 11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1031_treatment Gemcitabine '-- '-- '-- '-- '-- '-- '-- 16500 '-- mg '-- '-- '-- '-- b83cf82b-1417-5a91-9f15-b5d67bdc946a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c7c3fe4a-327a-4b7e-a259-989b72971209 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1031 60 false '-- '-- '-- '-- -22225 575 143dd419-6ffb-50c9-9174-95a77ec94c6a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1031_demographic Dead '-- '-- '-- '-- 22225 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 575.0 '-- '-- 23169e53-4b87-5106-8876-8d3021c2bbde true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1031_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 485 460 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1031_treatment4 Docetaxel '-- '-- '-- '-- '-- '-- '-- 280 '-- mg '-- '-- '-- '-- cc1dd8b6-e39e-4a9d-8dc5-e7e4f18fcf9f '-- yes '-- '-- Chemotherapy +TCGA-OV c7c3fe4a-327a-4b7e-a259-989b72971209 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1031 60 false '-- '-- '-- '-- -22225 575 143dd419-6ffb-50c9-9174-95a77ec94c6a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-1031_demographic Dead '-- '-- '-- '-- 22225 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 575.0 '-- '-- 23169e53-4b87-5106-8876-8d3021c2bbde true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1031_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 166 26 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1031_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2305 '-- mg '-- '-- '-- '-- f328b31a-536b-4c76-94b2-006a190ed654 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c7cf6755-8856-435b-a443-174b22a25b07 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-OY-A56Q 78 false '-- '-- '-- United States -28623 '-- d29528b8-bba5-5033-8fed-7dc94e0f4764 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-OY-A56Q_demographic Alive '-- '-- '-- '-- 28623 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 576.0 '-- '-- e64f78a3-2512-50f4-8b0c-34493a440422 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- no No '-- RX '-- '-- Ovary '-- '-- TCGA-OY-A56Q_diagnosis '-- No Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2012 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-OY-A56Q_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 77a61c99-b15a-47d5-8fcf-aa0f0a0f9432 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV c7cf6755-8856-435b-a443-174b22a25b07 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-OY-A56Q 78 false '-- '-- '-- United States -28623 '-- d29528b8-bba5-5033-8fed-7dc94e0f4764 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-OY-A56Q_demographic Alive '-- '-- '-- '-- 28623 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 576.0 '-- '-- e64f78a3-2512-50f4-8b0c-34493a440422 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- no No '-- RX '-- '-- Ovary '-- '-- TCGA-OY-A56Q_diagnosis '-- No Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2012 '-- No '-- 128 23 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-OY-A56Q_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aed9933d-25e1-49ce-9f7b-3fdcbc48cb27 '-- yes Complete Response '-- Chemotherapy +TCGA-OV c7cf6755-8856-435b-a443-174b22a25b07 Informed Consent -5 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-OY-A56Q 78 false '-- '-- '-- United States -28623 '-- d29528b8-bba5-5033-8fed-7dc94e0f4764 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-OY-A56Q_demographic Alive '-- '-- '-- '-- 28623 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 576.0 '-- '-- e64f78a3-2512-50f4-8b0c-34493a440422 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- no No '-- RX '-- '-- Ovary '-- '-- TCGA-OY-A56Q_diagnosis '-- No Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2012 '-- No '-- 128 23 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-OY-A56Q_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- af64e246-f0f8-51c9-8cc0-473354478c58 '-- yes Complete Response '-- Chemotherapy +TCGA-OV c8acee1b-6854-409b-86ab-bf69dbe22ab6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1426 43 false '-- '-- '-- '-- -15949 '-- 13753562-152d-554c-9562-f22a3fcf89f7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1426_demographic Alive '-- '-- '-- '-- 15949 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 163.0 '-- '-- 73d04d1d-d04a-5882-9b7c-26f5a22bf03e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1426_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 142 -8 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1426_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 900 '-- mg '-- '-- '-- '-- 4e62a9f2-3ff9-53b6-bc81-449ddbcee8a9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c8acee1b-6854-409b-86ab-bf69dbe22ab6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1426 43 false '-- '-- '-- '-- -15949 '-- 13753562-152d-554c-9562-f22a3fcf89f7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1426_demographic Alive '-- '-- '-- '-- 15949 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 163.0 '-- '-- 73d04d1d-d04a-5882-9b7c-26f5a22bf03e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1426_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1426_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 62c57493-d8f6-481b-81ec-e66ce354b1dd Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV c8acee1b-6854-409b-86ab-bf69dbe22ab6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1426 43 false '-- '-- '-- '-- -15949 '-- 13753562-152d-554c-9562-f22a3fcf89f7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1426_demographic Alive '-- '-- '-- '-- 15949 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 163.0 '-- '-- 73d04d1d-d04a-5882-9b7c-26f5a22bf03e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1426_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 142 -8 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1426_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 720 '-- mg '-- '-- '-- '-- a1b61240-4ef4-4c49-8ed1-a27e42b5f6bc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c8acee1b-6854-409b-86ab-bf69dbe22ab6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1426 43 false '-- '-- '-- '-- -15949 '-- 13753562-152d-554c-9562-f22a3fcf89f7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1426_demographic Alive '-- '-- '-- '-- 15949 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 163.0 '-- '-- 73d04d1d-d04a-5882-9b7c-26f5a22bf03e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1426_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 142 -8 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1426_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 780 '-- mg '-- '-- '-- '-- ad86990f-6dc2-414a-b937-1bb92e36ea74 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c8febeef-8e7e-459e-88cb-8086692dc559 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1491 55 false '-- '-- '-- '-- -20262 1595 b0bb4fb1-0854-5a35-b6e3-5b5714f81e4b '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-1491_demographic Dead '-- '-- '-- '-- 20262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1595.0 '-- '-- 3aaa1d46-63dd-5226-b364-db4934c67d87 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1491_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 401 245 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1491_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- 1855c583-9d34-43d7-a38a-a4619cd003d2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c8febeef-8e7e-459e-88cb-8086692dc559 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1491 55 false '-- '-- '-- '-- -20262 1595 b0bb4fb1-0854-5a35-b6e3-5b5714f81e4b '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-1491_demographic Dead '-- '-- '-- '-- 20262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1595.0 '-- '-- 3aaa1d46-63dd-5226-b364-db4934c67d87 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1491_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 154 42 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1491_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 22281777-a91b-485f-99bb-d03c3815f097 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c8febeef-8e7e-459e-88cb-8086692dc559 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1491 55 false '-- '-- '-- '-- -20262 1595 b0bb4fb1-0854-5a35-b6e3-5b5714f81e4b '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-1491_demographic Dead '-- '-- '-- '-- 20262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1595.0 '-- '-- 3aaa1d46-63dd-5226-b364-db4934c67d87 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1491_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 154 42 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1491_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 712ef219-2d65-5dc8-b2b7-f30f38bd5418 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c8febeef-8e7e-459e-88cb-8086692dc559 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1491 55 false '-- '-- '-- '-- -20262 1595 b0bb4fb1-0854-5a35-b6e3-5b5714f81e4b '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-1491_demographic Dead '-- '-- '-- '-- 20262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1595.0 '-- '-- 3aaa1d46-63dd-5226-b364-db4934c67d87 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1491_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1491_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bb259a1f-880d-45c6-a4e5-584d0c2df059 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV c8febeef-8e7e-459e-88cb-8086692dc559 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1491 55 false '-- '-- '-- '-- -20262 1595 b0bb4fb1-0854-5a35-b6e3-5b5714f81e4b '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-1491_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8c557eda-1893-4986-a767-a0adbb1976b5 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1491_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1491_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1491_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1fe6dcfa-9f39-4e2d-8584-89e093e33a64 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV c8febeef-8e7e-459e-88cb-8086692dc559 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1491 55 false '-- '-- '-- '-- -20262 1595 b0bb4fb1-0854-5a35-b6e3-5b5714f81e4b '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-1491_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8c557eda-1893-4986-a767-a0adbb1976b5 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1491_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1491_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1298 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1491_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2650840a-cd72-4d99-9e6e-e05c5278a4f1 '-- yes '-- '-- Surgery, NOS +TCGA-OV c8febeef-8e7e-459e-88cb-8086692dc559 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1491 55 false '-- '-- '-- '-- -20262 1595 b0bb4fb1-0854-5a35-b6e3-5b5714f81e4b '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-1491_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8c557eda-1893-4986-a767-a0adbb1976b5 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1491_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1491_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1491_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fa4cc51d-d060-4d84-810b-91041b27bc35 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV c8febeef-8e7e-459e-88cb-8086692dc559 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1491 55 false '-- '-- '-- '-- -20262 1595 b0bb4fb1-0854-5a35-b6e3-5b5714f81e4b '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-1491_demographic Dead '-- '-- '-- '-- 20770 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 508 '-- '-- '-- 91aa6177-359f-4d21-b5d6-c361cdad50d1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1491_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1491_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1491_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c36ded4e-a192-449a-93cf-8b83a334e2c2 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV c8febeef-8e7e-459e-88cb-8086692dc559 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1491 55 false '-- '-- '-- '-- -20262 1595 b0bb4fb1-0854-5a35-b6e3-5b5714f81e4b '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-13-1491_demographic Dead '-- '-- '-- '-- 20770 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 508 '-- '-- '-- 91aa6177-359f-4d21-b5d6-c361cdad50d1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1491_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1491_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1491_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- de414bae-7757-4c4c-b780-d2d830977a1b '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV c9226204-cb61-40b8-8a94-a7e71c14ea3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2036 50 false '-- '-- '-- '-- -18582 1947 8d1986bb-40dd-57cb-9ca9-33b4a9651882 '-- not reported female '-- '-- '-- '-- white TCGA-24-2036_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 69d25ae5-5d99-4ab9-ad5c-7499e42c04a9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2036_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2036_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 579 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2036_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0ec49ace-90f6-4079-b084-de76c23cf912 '-- yes '-- '-- Surgery, NOS +TCGA-OV c9226204-cb61-40b8-8a94-a7e71c14ea3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2036 50 false '-- '-- '-- '-- -18582 1947 8d1986bb-40dd-57cb-9ca9-33b4a9651882 '-- not reported female '-- '-- '-- '-- white TCGA-24-2036_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 69d25ae5-5d99-4ab9-ad5c-7499e42c04a9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2036_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2036_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2036_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 65592d8c-8757-47c6-be67-619856bb7d9b '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV c9226204-cb61-40b8-8a94-a7e71c14ea3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2036 50 false '-- '-- '-- '-- -18582 1947 8d1986bb-40dd-57cb-9ca9-33b4a9651882 '-- not reported female '-- '-- '-- '-- white TCGA-24-2036_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 69d25ae5-5d99-4ab9-ad5c-7499e42c04a9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2036_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2036_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2036_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 73560574-2111-4d58-b5d6-e73a05637de8 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV c9226204-cb61-40b8-8a94-a7e71c14ea3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2036 50 false '-- '-- '-- '-- -18582 1947 8d1986bb-40dd-57cb-9ca9-33b4a9651882 '-- not reported female '-- '-- '-- '-- white TCGA-24-2036_demographic Dead '-- '-- '-- '-- 18582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1947.0 '-- '-- 74e1f295-8a60-5d66-95ed-2dd395075e1e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2036_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 1916 1897 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- 14.0 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2036_treatment '-- '-- '-- '-- '-- '-- Locoregional Site '-- 35 '-- cGy '-- '-- '-- '-- 1a9d9ad6-eb9a-544e-ae73-fe307f320b65 '-- yes '-- '-- Radiation, External Beam +TCGA-OV c9226204-cb61-40b8-8a94-a7e71c14ea3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2036 50 false '-- '-- '-- '-- -18582 1947 8d1986bb-40dd-57cb-9ca9-33b4a9651882 '-- not reported female '-- '-- '-- '-- white TCGA-24-2036_demographic Dead '-- '-- '-- '-- 18582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1947.0 '-- '-- 74e1f295-8a60-5d66-95ed-2dd395075e1e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2036_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 638 592 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-2036_treatment10 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 24c3ab38-d88b-43f9-9019-2e9a434eaf7d '-- yes '-- '-- Chemotherapy +TCGA-OV c9226204-cb61-40b8-8a94-a7e71c14ea3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2036 50 false '-- '-- '-- '-- -18582 1947 8d1986bb-40dd-57cb-9ca9-33b4a9651882 '-- not reported female '-- '-- '-- '-- white TCGA-24-2036_demographic Dead '-- '-- '-- '-- 18582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1947.0 '-- '-- 74e1f295-8a60-5d66-95ed-2dd395075e1e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2036_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- 1064 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2036_treatment7 Tamoxifen '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3faaa265-e7e6-4168-8196-6780a4158cdb '-- yes '-- '-- Hormone Therapy +TCGA-OV c9226204-cb61-40b8-8a94-a7e71c14ea3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2036 50 false '-- '-- '-- '-- -18582 1947 8d1986bb-40dd-57cb-9ca9-33b4a9651882 '-- not reported female '-- '-- '-- '-- white TCGA-24-2036_demographic Dead '-- '-- '-- '-- 18582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1947.0 '-- '-- 74e1f295-8a60-5d66-95ed-2dd395075e1e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2036_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- 1430 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2036_treatment9 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 58abbd48-670e-449f-97df-60d9f3e79f6f '-- yes '-- '-- Chemotherapy +TCGA-OV c9226204-cb61-40b8-8a94-a7e71c14ea3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2036 50 false '-- '-- '-- '-- -18582 1947 8d1986bb-40dd-57cb-9ca9-33b4a9651882 '-- not reported female '-- '-- '-- '-- white TCGA-24-2036_demographic Dead '-- '-- '-- '-- 18582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1947.0 '-- '-- 74e1f295-8a60-5d66-95ed-2dd395075e1e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2036_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- 1156 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2036_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7fcc60a9-c96c-4e04-965d-c8a71156695b '-- yes '-- '-- Chemotherapy +TCGA-OV c9226204-cb61-40b8-8a94-a7e71c14ea3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2036 50 false '-- '-- '-- '-- -18582 1947 8d1986bb-40dd-57cb-9ca9-33b4a9651882 '-- not reported female '-- '-- '-- '-- white TCGA-24-2036_demographic Dead '-- '-- '-- '-- 18582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1947.0 '-- '-- 74e1f295-8a60-5d66-95ed-2dd395075e1e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2036_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 638 592 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-2036_treatment6 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8d963b17-a84d-4e93-9a8e-c3d1333dcdb5 '-- yes '-- '-- Chemotherapy +TCGA-OV c9226204-cb61-40b8-8a94-a7e71c14ea3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2036 50 false '-- '-- '-- '-- -18582 1947 8d1986bb-40dd-57cb-9ca9-33b4a9651882 '-- not reported female '-- '-- '-- '-- white TCGA-24-2036_demographic Dead '-- '-- '-- '-- 18582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1947.0 '-- '-- 74e1f295-8a60-5d66-95ed-2dd395075e1e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2036_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- 1454 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2036_treatment8 Mitomycin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9588456d-db6c-45ff-ad83-3e5013ffca12 '-- yes '-- '-- Chemotherapy +TCGA-OV c9226204-cb61-40b8-8a94-a7e71c14ea3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2036 50 false '-- '-- '-- '-- -18582 1947 8d1986bb-40dd-57cb-9ca9-33b4a9651882 '-- not reported female '-- '-- '-- '-- white TCGA-24-2036_demographic Dead '-- '-- '-- '-- 18582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1947.0 '-- '-- 74e1f295-8a60-5d66-95ed-2dd395075e1e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2036_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 153 '-- '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2036_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b14b6fa6-099b-42e4-94a0-b831e36b21e0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c9226204-cb61-40b8-8a94-a7e71c14ea3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2036 50 false '-- '-- '-- '-- -18582 1947 8d1986bb-40dd-57cb-9ca9-33b4a9651882 '-- not reported female '-- '-- '-- '-- white TCGA-24-2036_demographic Dead '-- '-- '-- '-- 18582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1947.0 '-- '-- 74e1f295-8a60-5d66-95ed-2dd395075e1e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2036_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- 1156 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2036_treatment11 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e4387bca-6539-4b33-889c-fcfcabe29b88 '-- yes '-- '-- Chemotherapy +TCGA-OV c9226204-cb61-40b8-8a94-a7e71c14ea3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2036 50 false '-- '-- '-- '-- -18582 1947 8d1986bb-40dd-57cb-9ca9-33b4a9651882 '-- not reported female '-- '-- '-- '-- white TCGA-24-2036_demographic Dead '-- '-- '-- '-- 18582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1947.0 '-- '-- 74e1f295-8a60-5d66-95ed-2dd395075e1e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2036_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- 153 '-- '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2036_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f0f70fb0-83b4-44df-b907-781574a8169f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c9226204-cb61-40b8-8a94-a7e71c14ea3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2036 50 false '-- '-- '-- '-- -18582 1947 8d1986bb-40dd-57cb-9ca9-33b4a9651882 '-- not reported female '-- '-- '-- '-- white TCGA-24-2036_demographic Dead '-- '-- '-- '-- 18582 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1947.0 '-- '-- 74e1f295-8a60-5d66-95ed-2dd395075e1e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2036_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1996 '-- '-- '-- '-- 1855 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2036_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f5b34091-9dd3-4765-90b3-0881aa826a00 '-- yes '-- '-- Chemotherapy +TCGA-OV c9226204-cb61-40b8-8a94-a7e71c14ea3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2036 50 false '-- '-- '-- '-- -18582 1947 8d1986bb-40dd-57cb-9ca9-33b4a9651882 '-- not reported female '-- '-- '-- '-- white TCGA-24-2036_demographic Dead '-- '-- '-- '-- 19496 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 914 '-- '-- '-- f0d1b028-f9f3-4e0e-9e0a-fc547c462cc3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2036_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2036_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2036_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 27c0e7ba-1317-489c-9a95-bf7ed7f5e7fd '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV c9226204-cb61-40b8-8a94-a7e71c14ea3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2036 50 false '-- '-- '-- '-- -18582 1947 8d1986bb-40dd-57cb-9ca9-33b4a9651882 '-- not reported female '-- '-- '-- '-- white TCGA-24-2036_demographic Dead '-- '-- '-- '-- 19496 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 914 '-- '-- '-- f0d1b028-f9f3-4e0e-9e0a-fc547c462cc3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2036_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2036_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2036_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ad6b7644-c494-4b88-841d-38250f1ed538 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV c9524775-6b50-4793-8858-24b6a6d3e4e6 Informed Consent 52 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-0990 74 false '-- '-- '-- '-- -27170 '-- a7c1369d-5a75-5a57-8e01-0abbc14b35e4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-0990_demographic Alive '-- '-- '-- '-- 27170 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 871.0 '-- '-- 109b38cc-08ac-54ac-a97b-0b6bce93b5aa true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-0990_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 1174 1034 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-0990_treatment2 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 47 '-- mg '-- '-- '-- '-- a43681f4-6514-471c-aebd-1f8fbf0420dd '-- yes '-- '-- Chemotherapy +TCGA-OV c9524775-6b50-4793-8858-24b6a6d3e4e6 Informed Consent 52 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-0990 74 false '-- '-- '-- '-- -27170 '-- a7c1369d-5a75-5a57-8e01-0abbc14b35e4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-0990_demographic Alive '-- '-- '-- '-- 27170 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 871.0 '-- '-- 109b38cc-08ac-54ac-a97b-0b6bce93b5aa true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-0990_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 236 116 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-0990_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- a879c3e0-f416-4c27-9d86-8914447715ff Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c9524775-6b50-4793-8858-24b6a6d3e4e6 Informed Consent 52 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-0990 74 false '-- '-- '-- '-- -27170 '-- a7c1369d-5a75-5a57-8e01-0abbc14b35e4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-0990_demographic Alive '-- '-- '-- '-- 27170 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 871.0 '-- '-- 109b38cc-08ac-54ac-a97b-0b6bce93b5aa true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-0990_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 1174 1034 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-0990_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 320 '-- mg '-- '-- '-- '-- b6c61308-de6b-50e5-8073-2e67f0b61769 '-- yes '-- '-- Chemotherapy +TCGA-OV c9524775-6b50-4793-8858-24b6a6d3e4e6 Informed Consent 52 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-0990 74 false '-- '-- '-- '-- -27170 '-- a7c1369d-5a75-5a57-8e01-0abbc14b35e4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-0990_demographic Alive '-- '-- '-- '-- 27170 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 871.0 '-- '-- 109b38cc-08ac-54ac-a97b-0b6bce93b5aa true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-0990_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-20-0990_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cfcb4c56-d83f-4aaa-a23f-b8d6a9616200 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV c9524775-6b50-4793-8858-24b6a6d3e4e6 Informed Consent 52 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-0990 74 false '-- '-- '-- '-- -27170 '-- a7c1369d-5a75-5a57-8e01-0abbc14b35e4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-0990_demographic Alive '-- '-- '-- '-- 27170 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 871.0 '-- '-- 109b38cc-08ac-54ac-a97b-0b6bce93b5aa true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-0990_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 236 116 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-0990_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 480 '-- mg '-- '-- '-- '-- f1f50315-d026-4696-b7bd-75676c5e0972 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c9524775-6b50-4793-8858-24b6a6d3e4e6 Informed Consent 52 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-0990 74 false '-- '-- '-- '-- -27170 '-- a7c1369d-5a75-5a57-8e01-0abbc14b35e4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-0990_demographic Alive '-- '-- '-- '-- 27170 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 871.0 '-- '-- 109b38cc-08ac-54ac-a97b-0b6bce93b5aa true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-0990_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 999 901 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-0990_treatment5 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1240 '-- mg '-- '-- '-- '-- fa1f94d4-6d70-4127-b0b2-6adc85e1f739 '-- yes '-- '-- Chemotherapy +TCGA-OV c9524775-6b50-4793-8858-24b6a6d3e4e6 Informed Consent 52 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-0990 74 false '-- '-- '-- '-- -27170 '-- a7c1369d-5a75-5a57-8e01-0abbc14b35e4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-0990_demographic Alive '-- '-- '-- '-- 28041 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 871 '-- '-- '-- c658eb79-7aae-4dcf-8199-37017d73f92c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-20-0990_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-20-0990_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-20-0990_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e209075a-fea6-4249-bab9-1936ec5e706e '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV c9524775-6b50-4793-8858-24b6a6d3e4e6 Informed Consent 52 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-0990 74 false '-- '-- '-- '-- -27170 '-- a7c1369d-5a75-5a57-8e01-0abbc14b35e4 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-0990_demographic Alive '-- '-- '-- '-- 28041 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 871 '-- '-- '-- c658eb79-7aae-4dcf-8199-37017d73f92c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-20-0990_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-20-0990_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-20-0990_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f994b39d-cb3f-4c78-b901-27941cc2c152 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV c9e28934-8379-4511-817c-d787f2c4ca3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1487 74 false '-- '-- '-- '-- -27176 681 d660ec1a-93b8-5ce7-9a60-49c9ec945ce8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1487_demographic Dead '-- '-- '-- '-- 27176 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 681.0 '-- '-- f2bef3a1-e2c5-5c6f-8f16-e34d476c1a86 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1487_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 412 257 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1487_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- 1c09ace5-9961-4498-8f0e-52b6f269eada Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c9e28934-8379-4511-817c-d787f2c4ca3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1487 74 false '-- '-- '-- '-- -27176 681 d660ec1a-93b8-5ce7-9a60-49c9ec945ce8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1487_demographic Dead '-- '-- '-- '-- 27176 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 681.0 '-- '-- f2bef3a1-e2c5-5c6f-8f16-e34d476c1a86 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1487_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 208 208 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-1487_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- 649e57e1-55fb-4c60-8c88-a08b38dd294b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c9e28934-8379-4511-817c-d787f2c4ca3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1487 74 false '-- '-- '-- '-- -27176 681 d660ec1a-93b8-5ce7-9a60-49c9ec945ce8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1487_demographic Dead '-- '-- '-- '-- 27176 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 681.0 '-- '-- f2bef3a1-e2c5-5c6f-8f16-e34d476c1a86 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1487_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1487_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aefcf7ba-41ad-4ef2-bb2f-23a96633e0d8 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV c9e28934-8379-4511-817c-d787f2c4ca3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1487 74 false '-- '-- '-- '-- -27176 681 d660ec1a-93b8-5ce7-9a60-49c9ec945ce8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1487_demographic Dead '-- '-- '-- '-- 27176 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 681.0 '-- '-- f2bef3a1-e2c5-5c6f-8f16-e34d476c1a86 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1487_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 129 17 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1487_treatment4 Docetaxel '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- ca824dc1-b7f2-47ab-950c-881911e7b16b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c9e28934-8379-4511-817c-d787f2c4ca3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1487 74 false '-- '-- '-- '-- -27176 681 d660ec1a-93b8-5ce7-9a60-49c9ec945ce8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1487_demographic Dead '-- '-- '-- '-- 27176 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 681.0 '-- '-- f2bef3a1-e2c5-5c6f-8f16-e34d476c1a86 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1487_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 129 17 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1487_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 300 '-- mg/m2 '-- '-- '-- '-- f3bec8f1-1367-5073-a080-dae1f9d758dd Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c9e28934-8379-4511-817c-d787f2c4ca3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1487 74 false '-- '-- '-- '-- -27176 681 d660ec1a-93b8-5ce7-9a60-49c9ec945ce8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1487_demographic Dead '-- '-- '-- '-- 27588 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 412 '-- '-- '-- ff9eb4d2-2cad-4ffa-aa07-45203fd0ce78 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1487_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1487_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1487_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5ade079e-d925-49f0-82fb-8cee4b138814 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV c9e28934-8379-4511-817c-d787f2c4ca3a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1487 74 false '-- '-- '-- '-- -27176 681 d660ec1a-93b8-5ce7-9a60-49c9ec945ce8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1487_demographic Dead '-- '-- '-- '-- 27588 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 412 '-- '-- '-- ff9eb4d2-2cad-4ffa-aa07-45203fd0ce78 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1487_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1487_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1487_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 62206dfd-c948-4104-adfd-687140aa6c27 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV c9e58844-9d61-44a2-aee6-1760bc19711b Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1027 48 false '-- '-- '-- '-- -17588 976 de6818be-e2c7-5255-b1fa-d8444f500277 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1027_demographic Dead '-- '-- '-- '-- 17702 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 114 '-- '-- '-- 7032b5c6-acde-41cf-aa8e-2082c88d4406 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1027_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1027_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1027_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2ef6b38f-6932-4ea9-ac4d-b28154ebf239 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV c9e58844-9d61-44a2-aee6-1760bc19711b Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1027 48 false '-- '-- '-- '-- -17588 976 de6818be-e2c7-5255-b1fa-d8444f500277 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1027_demographic Dead '-- '-- '-- '-- 17702 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 114 '-- '-- '-- 7032b5c6-acde-41cf-aa8e-2082c88d4406 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1027_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1027_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1027_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d52f73c5-7c49-4339-a443-53b56dab6113 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV c9e58844-9d61-44a2-aee6-1760bc19711b Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1027 48 false '-- '-- '-- '-- -17588 976 de6818be-e2c7-5255-b1fa-d8444f500277 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1027_demographic Dead '-- '-- '-- '-- 17588 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 976.0 '-- '-- ed60e55e-cdc8-51e1-9be4-00d4c65cb2ce true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1027_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2ed7aa99-8fcc-4934-bbb1-61f305c57aae Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV c9e58844-9d61-44a2-aee6-1760bc19711b Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1027 48 false '-- '-- '-- '-- -17588 976 de6818be-e2c7-5255-b1fa-d8444f500277 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1027_demographic Dead '-- '-- '-- '-- 17588 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 976.0 '-- '-- ed60e55e-cdc8-51e1-9be4-00d4c65cb2ce true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 129 26 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1027_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2088 '-- mg '-- '-- '-- '-- 370998fb-df1e-4643-b26a-d3febdf06209 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c9e58844-9d61-44a2-aee6-1760bc19711b Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1027 48 false '-- '-- '-- '-- -17588 976 de6818be-e2c7-5255-b1fa-d8444f500277 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1027_demographic Dead '-- '-- '-- '-- 17588 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 976.0 '-- '-- ed60e55e-cdc8-51e1-9be4-00d4c65cb2ce true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 250 166 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1027_treatment4 Cisplatin '-- '-- '-- '-- '-- '-- '-- 748 '-- mg '-- '-- '-- '-- 448bb838-14f0-4e52-9ba2-d65796fed301 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c9e58844-9d61-44a2-aee6-1760bc19711b Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1027 48 false '-- '-- '-- '-- -17588 976 de6818be-e2c7-5255-b1fa-d8444f500277 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1027_demographic Dead '-- '-- '-- '-- 17588 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 976.0 '-- '-- ed60e55e-cdc8-51e1-9be4-00d4c65cb2ce true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 250 166 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1027_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 360 '-- mg '-- '-- '-- '-- 560ce1c5-fba8-4faa-b1d1-11e66aa34a13 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c9e58844-9d61-44a2-aee6-1760bc19711b Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1027 48 false '-- '-- '-- '-- -17588 976 de6818be-e2c7-5255-b1fa-d8444f500277 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1027_demographic Dead '-- '-- '-- '-- 17588 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 976.0 '-- '-- ed60e55e-cdc8-51e1-9be4-00d4c65cb2ce true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 867 769 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-23-1027_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 450 '-- mg '-- '-- '-- '-- 7c46dafb-005d-48ca-9cdd-a8b4ae2f5db3 '-- yes '-- '-- Chemotherapy +TCGA-OV c9e58844-9d61-44a2-aee6-1760bc19711b Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1027 48 false '-- '-- '-- '-- -17588 976 de6818be-e2c7-5255-b1fa-d8444f500277 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1027_demographic Dead '-- '-- '-- '-- 17588 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 976.0 '-- '-- ed60e55e-cdc8-51e1-9be4-00d4c65cb2ce true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 129 26 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1027_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1281 '-- mg '-- '-- '-- '-- 9c7cd4f2-ba03-4822-a917-28e6b801594e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV c9e58844-9d61-44a2-aee6-1760bc19711b Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1027 48 false '-- '-- '-- '-- -17588 976 de6818be-e2c7-5255-b1fa-d8444f500277 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1027_demographic Dead '-- '-- '-- '-- 17588 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 976.0 '-- '-- ed60e55e-cdc8-51e1-9be4-00d4c65cb2ce true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1027_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 867 769 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-23-1027_treatment Gemcitabine '-- '-- '-- '-- '-- '-- '-- 10932 '-- mg '-- '-- '-- '-- 9f7b72b5-ce0c-5818-93bd-511e96f93728 '-- yes '-- '-- Chemotherapy +TCGA-OV cbc5b936-ead5-4858-ab90-e639402789b0 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1685 45 false '-- '-- '-- '-- -16745 '-- b30231af-aec0-558d-82d5-1c88bcf2176a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1685_demographic Alive '-- '-- '-- '-- 16745 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 508.0 '-- '-- bb3ebf3b-4ded-57a8-b64e-eea59df41b37 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1685_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 144 39 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-1685_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0e148de3-7555-5e71-a2c8-49923da30177 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cbc5b936-ead5-4858-ab90-e639402789b0 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1685 45 false '-- '-- '-- '-- -16745 '-- b30231af-aec0-558d-82d5-1c88bcf2176a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1685_demographic Alive '-- '-- '-- '-- 16745 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 508.0 '-- '-- bb3ebf3b-4ded-57a8-b64e-eea59df41b37 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1685_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 144 39 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-1685_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 3e67efd2-0355-4091-8c02-19aabd6d6566 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cbc5b936-ead5-4858-ab90-e639402789b0 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1685 45 false '-- '-- '-- '-- -16745 '-- b30231af-aec0-558d-82d5-1c88bcf2176a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1685_demographic Alive '-- '-- '-- '-- 16745 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 508.0 '-- '-- bb3ebf3b-4ded-57a8-b64e-eea59df41b37 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1685_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 144 39 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-1685_treatment2 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 15 '-- mg/kg '-- '-- '-- '-- 5f3e78cc-6706-40b5-a6db-a2f6319cab2a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cbc5b936-ead5-4858-ab90-e639402789b0 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1685 45 false '-- '-- '-- '-- -16745 '-- b30231af-aec0-558d-82d5-1c88bcf2176a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1685_demographic Alive '-- '-- '-- '-- 16745 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 508.0 '-- '-- bb3ebf3b-4ded-57a8-b64e-eea59df41b37 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1685_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-20-1685_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f6e00839-ebb1-4575-a9d2-dcb05848047d Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV cbc7f427-5f7b-4267-ad56-055d8880a4cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1866 61 false '-- '-- '-- '-- -22562 1114 279cd324-6a0b-5661-a9fa-20e52a631c31 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1866_demographic Dead '-- '-- '-- '-- 22847 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 285 '-- '-- '-- 51d47fdb-3067-493c-b382-8239cd6d430e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1866_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1866_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1866_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8158e226-1bab-424d-8762-d1f039d7137b '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV cbc7f427-5f7b-4267-ad56-055d8880a4cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1866 61 false '-- '-- '-- '-- -22562 1114 279cd324-6a0b-5661-a9fa-20e52a631c31 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1866_demographic Dead '-- '-- '-- '-- 22847 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 285 '-- '-- '-- 51d47fdb-3067-493c-b382-8239cd6d430e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1866_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1866_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1866_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cb18656b-46c0-46fc-82cc-23bbeef9fe6e '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV cbc7f427-5f7b-4267-ad56-055d8880a4cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1866 61 false '-- '-- '-- '-- -22562 1114 279cd324-6a0b-5661-a9fa-20e52a631c31 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1866_demographic Dead '-- '-- '-- '-- 22562 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1114.0 '-- '-- 85df57f5-3d3c-516c-8925-cfddbb62eedd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1866_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1866_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2e2ad35a-eda0-590a-a6f1-485f44ae5752 '-- yes '-- '-- Chemotherapy +TCGA-OV cbc7f427-5f7b-4267-ad56-055d8880a4cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1866 61 false '-- '-- '-- '-- -22562 1114 279cd324-6a0b-5661-a9fa-20e52a631c31 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1866_demographic Dead '-- '-- '-- '-- 22562 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1114.0 '-- '-- 85df57f5-3d3c-516c-8925-cfddbb62eedd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1866_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1866_treatment6 Gemcitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 49e0e88c-6451-49c3-a705-92bcf3974856 '-- yes '-- '-- Chemotherapy +TCGA-OV cbc7f427-5f7b-4267-ad56-055d8880a4cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1866 61 false '-- '-- '-- '-- -22562 1114 279cd324-6a0b-5661-a9fa-20e52a631c31 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1866_demographic Dead '-- '-- '-- '-- 22562 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1114.0 '-- '-- 85df57f5-3d3c-516c-8925-cfddbb62eedd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1866_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 126 19 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1866_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 617ed7a9-c96e-40bd-9312-04b7912c6fd4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cbc7f427-5f7b-4267-ad56-055d8880a4cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1866 61 false '-- '-- '-- '-- -22562 1114 279cd324-6a0b-5661-a9fa-20e52a631c31 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1866_demographic Dead '-- '-- '-- '-- 22562 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1114.0 '-- '-- 85df57f5-3d3c-516c-8925-cfddbb62eedd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1866_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1866_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7e7264fb-0245-4db8-b488-a9d9c06629e4 '-- yes '-- '-- Chemotherapy +TCGA-OV cbc7f427-5f7b-4267-ad56-055d8880a4cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1866 61 false '-- '-- '-- '-- -22562 1114 279cd324-6a0b-5661-a9fa-20e52a631c31 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1866_demographic Dead '-- '-- '-- '-- 22562 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1114.0 '-- '-- 85df57f5-3d3c-516c-8925-cfddbb62eedd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1866_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1866_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b1c33193-8860-4d59-ac6e-8fe619c09407 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV cbc7f427-5f7b-4267-ad56-055d8880a4cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1866 61 false '-- '-- '-- '-- -22562 1114 279cd324-6a0b-5661-a9fa-20e52a631c31 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1866_demographic Dead '-- '-- '-- '-- 22562 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1114.0 '-- '-- 85df57f5-3d3c-516c-8925-cfddbb62eedd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1866_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 126 19 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1866_treatment8 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cad3afa9-7132-4375-ae34-478210b4f1a5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cbc7f427-5f7b-4267-ad56-055d8880a4cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1866 61 false '-- '-- '-- '-- -22562 1114 279cd324-6a0b-5661-a9fa-20e52a631c31 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1866_demographic Dead '-- '-- '-- '-- 22562 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1114.0 '-- '-- 85df57f5-3d3c-516c-8925-cfddbb62eedd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1866_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1866_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cae9bbc7-8c5e-4020-a5ef-a7fd1dd3ad84 '-- yes '-- '-- Chemotherapy +TCGA-OV cbc7f427-5f7b-4267-ad56-055d8880a4cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1866 61 false '-- '-- '-- '-- -22562 1114 279cd324-6a0b-5661-a9fa-20e52a631c31 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1866_demographic Dead '-- '-- '-- '-- 22562 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1114.0 '-- '-- 85df57f5-3d3c-516c-8925-cfddbb62eedd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1866_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 265 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1866_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d79d44c6-a2c0-4e02-ad79-9c3f220b5003 '-- yes '-- '-- Chemotherapy +TCGA-OV cbc7f427-5f7b-4267-ad56-055d8880a4cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1866 61 false '-- '-- '-- '-- -22562 1114 279cd324-6a0b-5661-a9fa-20e52a631c31 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1866_demographic Dead '-- '-- '-- '-- 22562 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1114.0 '-- '-- 85df57f5-3d3c-516c-8925-cfddbb62eedd true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1866_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1866_treatment5 Gemcitabine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e3094594-c0e8-452b-80c2-7d9e70371c37 '-- yes '-- '-- Chemotherapy +TCGA-OV cbc7f427-5f7b-4267-ad56-055d8880a4cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1866 61 false '-- '-- '-- '-- -22562 1114 279cd324-6a0b-5661-a9fa-20e52a631c31 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1866_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- da67e978-5fb4-4945-b04c-df6492401f4c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1866_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1866_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1866_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0e2dd1ab-8f19-4980-9f32-02d3733b39ea '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV cbc7f427-5f7b-4267-ad56-055d8880a4cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1866 61 false '-- '-- '-- '-- -22562 1114 279cd324-6a0b-5661-a9fa-20e52a631c31 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1866_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- da67e978-5fb4-4945-b04c-df6492401f4c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1866_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1866_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 285 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1866_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1341ac7d-bbe4-495c-bd61-38ba9b49a02b '-- yes '-- '-- Surgery, NOS +TCGA-OV cbc7f427-5f7b-4267-ad56-055d8880a4cc Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1866 61 false '-- '-- '-- '-- -22562 1114 279cd324-6a0b-5661-a9fa-20e52a631c31 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1866_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- da67e978-5fb4-4945-b04c-df6492401f4c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1866_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1866_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1866_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 98ef42b0-f515-477b-ab95-82e3be7f03e7 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV cbcf6922-a3c0-43a1-826e-642918b0a635 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1030 64 false '-- '-- '-- '-- -23416 '-- e8dc4dd7-3263-5e49-bcf9-65c4e263a04f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1030_demographic Alive '-- '-- '-- '-- 23960 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 544 '-- '-- '-- 411da102-2939-45e2-972a-96369daee5ce false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1030_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1030_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1030_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cbe72d2a-a9ef-4b82-a211-a1cc6709b077 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV cbcf6922-a3c0-43a1-826e-642918b0a635 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1030 64 false '-- '-- '-- '-- -23416 '-- e8dc4dd7-3263-5e49-bcf9-65c4e263a04f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1030_demographic Alive '-- '-- '-- '-- 23960 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 544 '-- '-- '-- 411da102-2939-45e2-972a-96369daee5ce false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1030_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1030_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1030_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e91e3101-d39d-45dc-9cac-fad15ec80cc5 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV cbcf6922-a3c0-43a1-826e-642918b0a635 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1030 64 false '-- '-- '-- '-- -23416 '-- e8dc4dd7-3263-5e49-bcf9-65c4e263a04f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1030_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- abd41fe4-ff04-4c60-97ab-90aaf457e198 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1030_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1030_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1030_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 26aa76fa-60fd-4c9c-877e-47c1dd2b3669 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV cbcf6922-a3c0-43a1-826e-642918b0a635 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1030 64 false '-- '-- '-- '-- -23416 '-- e8dc4dd7-3263-5e49-bcf9-65c4e263a04f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1030_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- abd41fe4-ff04-4c60-97ab-90aaf457e198 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1030_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1030_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 544 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1030_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3def0da0-5ead-4877-b387-cac5430690ff '-- yes '-- '-- Surgery, NOS +TCGA-OV cbcf6922-a3c0-43a1-826e-642918b0a635 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1030 64 false '-- '-- '-- '-- -23416 '-- e8dc4dd7-3263-5e49-bcf9-65c4e263a04f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1030_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- abd41fe4-ff04-4c60-97ab-90aaf457e198 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1030_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1030_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1030_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 40657a14-561f-40ec-9759-d3ce276d9802 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV cbcf6922-a3c0-43a1-826e-642918b0a635 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1030 64 false '-- '-- '-- '-- -23416 '-- e8dc4dd7-3263-5e49-bcf9-65c4e263a04f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1030_demographic Alive '-- '-- '-- '-- 23416 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 886.0 '-- '-- c428661a-76b6-5998-8f9e-3de1a5441bc1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1030_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 767 622 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1030_treatment Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 540 '-- mg '-- '-- '-- '-- 595cde23-d937-59f1-b3f6-4237faf481bc '-- yes '-- '-- Chemotherapy +TCGA-OV cbcf6922-a3c0-43a1-826e-642918b0a635 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1030 64 false '-- '-- '-- '-- -23416 '-- e8dc4dd7-3263-5e49-bcf9-65c4e263a04f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1030_demographic Alive '-- '-- '-- '-- 23416 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 886.0 '-- '-- c428661a-76b6-5998-8f9e-3de1a5441bc1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1030_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1030_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6bef13b9-5419-4544-87f9-a8195e93e417 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV cbcf6922-a3c0-43a1-826e-642918b0a635 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1030 64 false '-- '-- '-- '-- -23416 '-- e8dc4dd7-3263-5e49-bcf9-65c4e263a04f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1030_demographic Alive '-- '-- '-- '-- 23416 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 886.0 '-- '-- c428661a-76b6-5998-8f9e-3de1a5441bc1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1030_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 438 243 '-- '-- Not Reported '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1030_treatment2 Paclitaxel Poliglumex '-- '-- '-- '-- '-- '-- '-- 2160 '-- mg '-- '-- '-- '-- 87228392-c4ca-4a86-bead-d74e8126f539 Consolidation Therapy yes '-- '-- Chemotherapy +TCGA-OV cbcf6922-a3c0-43a1-826e-642918b0a635 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1030 64 false '-- '-- '-- '-- -23416 '-- e8dc4dd7-3263-5e49-bcf9-65c4e263a04f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1030_demographic Alive '-- '-- '-- '-- 23416 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 886.0 '-- '-- c428661a-76b6-5998-8f9e-3de1a5441bc1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1030_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 165 62 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1030_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2130 '-- mg '-- '-- '-- '-- caa92577-befd-42aa-8f32-0828117fd67b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cbcf6922-a3c0-43a1-826e-642918b0a635 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1030 64 false '-- '-- '-- '-- -23416 '-- e8dc4dd7-3263-5e49-bcf9-65c4e263a04f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1030_demographic Alive '-- '-- '-- '-- 23416 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 886.0 '-- '-- c428661a-76b6-5998-8f9e-3de1a5441bc1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1030_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 165 62 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1030_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5010 '-- mg '-- '-- '-- '-- e4957eb8-dc73-45f3-8410-6a52abb4b707 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cbd87697-7708-4b69-9e50-9ee474feabe1 Informed Consent 170 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2054 58 false '-- '-- '-- '-- -21285 637 8be5e1f5-91eb-53cd-9cfe-8cc67176093b '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-09-2054_demographic Dead '-- '-- '-- '-- 21285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 637.0 '-- '-- 90364ee6-2b18-5172-a7f4-b50c4343e0f4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2054_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 161 37 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2054_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 0d318cfb-b4dd-5b02-aac5-d0e3fe6aa09d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cbd87697-7708-4b69-9e50-9ee474feabe1 Informed Consent 170 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2054 58 false '-- '-- '-- '-- -21285 637 8be5e1f5-91eb-53cd-9cfe-8cc67176093b '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-09-2054_demographic Dead '-- '-- '-- '-- 21285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 637.0 '-- '-- 90364ee6-2b18-5172-a7f4-b50c4343e0f4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2054_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 513 428 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2054_treatment3 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 893e8433-a421-44d1-bfc9-57ff8e61e401 '-- yes '-- '-- Chemotherapy +TCGA-OV cbd87697-7708-4b69-9e50-9ee474feabe1 Informed Consent 170 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2054 58 false '-- '-- '-- '-- -21285 637 8be5e1f5-91eb-53cd-9cfe-8cc67176093b '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-09-2054_demographic Dead '-- '-- '-- '-- 21285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 637.0 '-- '-- 90364ee6-2b18-5172-a7f4-b50c4343e0f4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2054_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 421 329 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2054_treatment5 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 922f5dd7-63d0-4b63-ac69-9ffa83becf70 '-- yes '-- '-- Chemotherapy +TCGA-OV cbd87697-7708-4b69-9e50-9ee474feabe1 Informed Consent 170 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2054 58 false '-- '-- '-- '-- -21285 637 8be5e1f5-91eb-53cd-9cfe-8cc67176093b '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-09-2054_demographic Dead '-- '-- '-- '-- 21285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 637.0 '-- '-- 90364ee6-2b18-5172-a7f4-b50c4343e0f4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2054_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2054_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b01cdacb-54fd-46d1-9b7a-61f52867217b Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV cbd87697-7708-4b69-9e50-9ee474feabe1 Informed Consent 170 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2054 58 false '-- '-- '-- '-- -21285 637 8be5e1f5-91eb-53cd-9cfe-8cc67176093b '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-09-2054_demographic Dead '-- '-- '-- '-- 21285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 637.0 '-- '-- 90364ee6-2b18-5172-a7f4-b50c4343e0f4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2054_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 300 244 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2054_treatment2 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 50 '-- mg/m2 '-- '-- '-- '-- e25c7aa7-a2c4-4bea-82a3-37bb321f0c7a '-- yes '-- '-- Chemotherapy +TCGA-OV cbd87697-7708-4b69-9e50-9ee474feabe1 Informed Consent 170 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2054 58 false '-- '-- '-- '-- -21285 637 8be5e1f5-91eb-53cd-9cfe-8cc67176093b '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-09-2054_demographic Dead '-- '-- '-- '-- 21285 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 637.0 '-- '-- 90364ee6-2b18-5172-a7f4-b50c4343e0f4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2054_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 161 37 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2054_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- fcf55172-4912-4acd-8f36-5f5318d4c28d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cbe3309e-9b7b-4f62-87b5-0f5ed4218ada Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1627 73 false '-- '-- '-- '-- -26784 394 f17d6310-6505-5f0f-a62b-1a1f807f9e50 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1627_demographic Dead '-- '-- '-- '-- 26784 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 394.0 '-- '-- b0bdaa93-0778-58a1-a5ab-dd9f0efa3171 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1627_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1627_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7f8fd9a1-9d68-5d75-850b-b199877c0d1d Adjuvant yes Not Reported '-- Pharmaceutical Therapy, NOS +TCGA-OV cbe3309e-9b7b-4f62-87b5-0f5ed4218ada Informed Consent -2 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1627 73 false '-- '-- '-- '-- -26784 394 f17d6310-6505-5f0f-a62b-1a1f807f9e50 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1627_demographic Dead '-- '-- '-- '-- 26784 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 394.0 '-- '-- b0bdaa93-0778-58a1-a5ab-dd9f0efa3171 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1627_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1627_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bb6c814f-d04d-47e1-8e56-4951e54c0db4 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV cd49126a-ec15-43fa-9e43-3f7460d43f2b Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1504 68 false '-- '-- '-- '-- -25008 1059 0ff901de-2119-537b-acc7-5df2f8cc3868 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1504_demographic Dead '-- '-- '-- '-- 25008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1059.0 '-- '-- 8df71aec-e7ca-5c35-8baa-80cb0c619519 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1504_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1504_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 80bc400d-3aa6-49b8-91a4-49314ae8394e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV cd49126a-ec15-43fa-9e43-3f7460d43f2b Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1504 68 false '-- '-- '-- '-- -25008 1059 0ff901de-2119-537b-acc7-5df2f8cc3868 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1504_demographic Dead '-- '-- '-- '-- 25008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1059.0 '-- '-- 8df71aec-e7ca-5c35-8baa-80cb0c619519 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1504_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 283 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1504_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9306ef2a-6e1f-58af-865b-e57ac64f6f83 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cd49126a-ec15-43fa-9e43-3f7460d43f2b Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1504 68 false '-- '-- '-- '-- -25008 1059 0ff901de-2119-537b-acc7-5df2f8cc3868 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1504_demographic Dead '-- '-- '-- '-- 25008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1059.0 '-- '-- 8df71aec-e7ca-5c35-8baa-80cb0c619519 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1504_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 283 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1504_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e8a93427-ec30-4cc0-bf41-55e2c90b9512 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cd49126a-ec15-43fa-9e43-3f7460d43f2b Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1504 68 false '-- '-- '-- '-- -25008 1059 0ff901de-2119-537b-acc7-5df2f8cc3868 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1504_demographic Dead '-- '-- '-- '-- 25556 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 548 '-- '-- '-- 9a0e60f3-dd0d-4f4c-bfdd-19f1cbd426d5 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1504_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1504_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV cd6e5d3d-1c86-40dd-9cb3-b2e2075dec56 Informed Consent 100 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1469 71 false '-- '-- '-- '-- -25937 '-- a68ea48a-8b0a-554f-a2a7-29d4474fe9e5 '-- not reported female '-- '-- '-- '-- white TCGA-24-1469_demographic Alive '-- '-- '-- '-- 25937 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 277.0 '-- '-- c35644a3-29fa-58ef-96eb-39833b3fd41f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1469_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 135 '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1469_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a3e878cc-484a-5420-bdbf-c28781031d39 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cd6e5d3d-1c86-40dd-9cb3-b2e2075dec56 Informed Consent 100 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1469 71 false '-- '-- '-- '-- -25937 '-- a68ea48a-8b0a-554f-a2a7-29d4474fe9e5 '-- not reported female '-- '-- '-- '-- white TCGA-24-1469_demographic Alive '-- '-- '-- '-- 25937 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 277.0 '-- '-- c35644a3-29fa-58ef-96eb-39833b3fd41f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1469_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 135 '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1469_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aeca23ed-c058-4181-b00c-d8962c26890a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cd6e5d3d-1c86-40dd-9cb3-b2e2075dec56 Informed Consent 100 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1469 71 false '-- '-- '-- '-- -25937 '-- a68ea48a-8b0a-554f-a2a7-29d4474fe9e5 '-- not reported female '-- '-- '-- '-- white TCGA-24-1469_demographic Alive '-- '-- '-- '-- 25937 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 277.0 '-- '-- c35644a3-29fa-58ef-96eb-39833b3fd41f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1469_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1469_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ce19525e-a81a-4d67-bd4f-ef1892d660b4 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV cddbac56-2861-46a5-98a3-df32ab69d5da Informed Consent 16 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-04-1353 64 false '-- '-- '-- '-- -23611 '-- 03f8aba2-0edd-5d65-87da-f21572282384 '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-04-1353_demographic Alive '-- '-- '-- '-- 23611 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 16.0 '-- '-- df397076-c052-51ee-9c9d-c1b57558a680 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- no No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1353_diagnosis '-- No Ovary '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV cddce77f-21e6-4124-9f03-96fb5ca7cefa Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1648 57 false '-- '-- '-- '-- -21113 871 bf5dd053-0971-5b16-9bd2-9ee9b821551d '-- not reported female '-- '-- '-- '-- white TCGA-04-1648_demographic Dead '-- '-- '-- '-- 21113 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 871.0 '-- '-- 258aa1d0-810d-53d9-8274-f290e2d22468 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1648_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 149 3 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1648_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2544 '-- mg '-- '-- '-- '-- 0c37fd6c-eae4-4848-9daa-662894cbe10f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cddce77f-21e6-4124-9f03-96fb5ca7cefa Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1648 57 false '-- '-- '-- '-- -21113 871 bf5dd053-0971-5b16-9bd2-9ee9b821551d '-- not reported female '-- '-- '-- '-- white TCGA-04-1648_demographic Dead '-- '-- '-- '-- 21113 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 871.0 '-- '-- 258aa1d0-810d-53d9-8274-f290e2d22468 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1648_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1648_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5a031f62-efc3-4fbd-a9e5-a024f71576e3 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV cddce77f-21e6-4124-9f03-96fb5ca7cefa Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1648 57 false '-- '-- '-- '-- -21113 871 bf5dd053-0971-5b16-9bd2-9ee9b821551d '-- not reported female '-- '-- '-- '-- white TCGA-04-1648_demographic Dead '-- '-- '-- '-- 21113 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 871.0 '-- '-- 258aa1d0-810d-53d9-8274-f290e2d22468 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1648_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 149 3 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1648_treatment3 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 23296 '-- mg '-- '-- '-- '-- 61f60d4d-5d80-4567-a791-22823ea9f715 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cddce77f-21e6-4124-9f03-96fb5ca7cefa Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1648 57 false '-- '-- '-- '-- -21113 871 bf5dd053-0971-5b16-9bd2-9ee9b821551d '-- not reported female '-- '-- '-- '-- white TCGA-04-1648_demographic Dead '-- '-- '-- '-- 21113 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 871.0 '-- '-- 258aa1d0-810d-53d9-8274-f290e2d22468 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1648_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 149 3 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1648_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 5140 '-- mg '-- '-- '-- '-- b7ec434e-46b6-5ab5-bc2c-91ed3f4eeb4e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cddce77f-21e6-4124-9f03-96fb5ca7cefa Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1648 57 false '-- '-- '-- '-- -21113 871 bf5dd053-0971-5b16-9bd2-9ee9b821551d '-- not reported female '-- '-- '-- '-- white TCGA-04-1648_demographic Dead '-- '-- '-- '-- 21113 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 871.0 '-- '-- 258aa1d0-810d-53d9-8274-f290e2d22468 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1648_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 247 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1648_treatment2 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 40 '-- mg '-- '-- '-- '-- bc6ad631-e909-47b0-8be7-4400431506a8 '-- yes '-- '-- Chemotherapy +TCGA-OV cddce77f-21e6-4124-9f03-96fb5ca7cefa Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1648 57 false '-- '-- '-- '-- -21113 871 bf5dd053-0971-5b16-9bd2-9ee9b821551d '-- not reported female '-- '-- '-- '-- white TCGA-04-1648_demographic Dead '-- '-- '-- '-- 21113 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 871.0 '-- '-- 258aa1d0-810d-53d9-8274-f290e2d22468 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1648_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 247 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1648_treatment4 Bevacizumab '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- be387329-e062-4975-89e6-0436d21e4526 '-- yes '-- '-- Immunotherapy (Including Vaccines) +TCGA-OV cddce77f-21e6-4124-9f03-96fb5ca7cefa Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1648 57 false '-- '-- '-- '-- -21113 871 bf5dd053-0971-5b16-9bd2-9ee9b821551d '-- not reported female '-- '-- '-- '-- white TCGA-04-1648_demographic Dead '-- '-- '-- '-- 21113 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 871.0 '-- '-- 258aa1d0-810d-53d9-8274-f290e2d22468 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1648_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 247 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1648_treatment5 Docetaxel '-- '-- '-- '-- '-- '-- '-- 129 '-- mg '-- '-- '-- '-- cb20f2ee-d742-41b3-8291-276a37e5f3dd '-- yes '-- '-- Chemotherapy +TCGA-OV cddce77f-21e6-4124-9f03-96fb5ca7cefa Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1648 57 false '-- '-- '-- '-- -21113 871 bf5dd053-0971-5b16-9bd2-9ee9b821551d '-- not reported female '-- '-- '-- '-- white TCGA-04-1648_demographic Dead '-- '-- '-- '-- 21113 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 871.0 '-- '-- 258aa1d0-810d-53d9-8274-f290e2d22468 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1648_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 247 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1648_treatment7 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d0efee94-b20a-4f31-a2ce-62760bc178a2 '-- yes '-- '-- Chemotherapy +TCGA-OV cddce77f-21e6-4124-9f03-96fb5ca7cefa Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1648 57 false '-- '-- '-- '-- -21113 871 bf5dd053-0971-5b16-9bd2-9ee9b821551d '-- not reported female '-- '-- '-- '-- white TCGA-04-1648_demographic Dead '-- '-- '-- '-- 21525 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 412 '-- '-- '-- d46fa8de-cc64-400f-91b3-1dbcabff9da8 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1648_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1648_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1648_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 01a4c028-882d-4758-a48c-812fd0a0b0e3 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV cddce77f-21e6-4124-9f03-96fb5ca7cefa Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1648 57 false '-- '-- '-- '-- -21113 871 bf5dd053-0971-5b16-9bd2-9ee9b821551d '-- not reported female '-- '-- '-- '-- white TCGA-04-1648_demographic Dead '-- '-- '-- '-- 21525 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 412 '-- '-- '-- d46fa8de-cc64-400f-91b3-1dbcabff9da8 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1648_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1648_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1648_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 77471f85-a5df-49b4-a2e4-0061fef2ef2a '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ce871097-a6e9-4139-897e-642ee24ee123 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1919 58 false '-- '-- '-- '-- -21199 1161 23c0b61b-61e7-5f1e-8ed1-2e01f6ec1a56 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1919_demographic Dead '-- '-- '-- '-- 21199 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1161.0 '-- '-- 41c9c74c-e5f7-5f95-b067-21508c7d5999 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1919_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1919_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 03223c84-530f-518f-ad2f-990a1386e1b2 Adjuvant yes Complete Response '-- Pharmaceutical Therapy, NOS +TCGA-OV ce871097-a6e9-4139-897e-642ee24ee123 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1919 58 false '-- '-- '-- '-- -21199 1161 23c0b61b-61e7-5f1e-8ed1-2e01f6ec1a56 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1919_demographic Dead '-- '-- '-- '-- 21199 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1161.0 '-- '-- 41c9c74c-e5f7-5f95-b067-21508c7d5999 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1919_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1919_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4a61d7ed-10b8-488c-9a4a-c9bc020ae912 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ce871097-a6e9-4139-897e-642ee24ee123 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1919 58 false '-- '-- '-- '-- -21199 1161 23c0b61b-61e7-5f1e-8ed1-2e01f6ec1a56 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1919_demographic Dead '-- '-- '-- '-- 21638 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 439 '-- '-- '-- 5f90740f-bb30-4784-b25b-8c1ba4044d10 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1919_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1919_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1919_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3e79b088-4ab3-4f2b-801e-b6c9658835e5 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV ce871097-a6e9-4139-897e-642ee24ee123 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1919 58 false '-- '-- '-- '-- -21199 1161 23c0b61b-61e7-5f1e-8ed1-2e01f6ec1a56 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1919_demographic Dead '-- '-- '-- '-- 21638 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 439 '-- '-- '-- 5f90740f-bb30-4784-b25b-8c1ba4044d10 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1919_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1919_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1919_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 68c19346-bd3d-403f-996b-76c321f50a1e '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ce871097-a6e9-4139-897e-642ee24ee123 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1919 58 false '-- '-- '-- '-- -21199 1161 23c0b61b-61e7-5f1e-8ed1-2e01f6ec1a56 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1919_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6d44c4e7-c6b5-42ae-8b1b-88b7cd33dc1e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1919_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1919_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1919_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0abc8d4b-8c69-4b3d-8192-ecc90cebc2fc '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV ce871097-a6e9-4139-897e-642ee24ee123 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1919 58 false '-- '-- '-- '-- -21199 1161 23c0b61b-61e7-5f1e-8ed1-2e01f6ec1a56 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1919_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6d44c4e7-c6b5-42ae-8b1b-88b7cd33dc1e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1919_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1919_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1919_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 440a89e8-e2f9-485f-8969-fd06a9f8ebb7 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ce871097-a6e9-4139-897e-642ee24ee123 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1919 58 false '-- '-- '-- '-- -21199 1161 23c0b61b-61e7-5f1e-8ed1-2e01f6ec1a56 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1919_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6d44c4e7-c6b5-42ae-8b1b-88b7cd33dc1e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1919_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1919_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 438 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1919_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4e2924eb-3d16-44ca-9c98-4e64136075dd '-- yes '-- '-- Surgery, NOS +TCGA-OV ceb19678-b453-4529-b6cb-d02f9cb101b4 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1471 60 false '-- '-- '-- '-- -22081 '-- 2cc27fab-a108-5748-aefe-0bef861bc009 '-- not reported female '-- '-- '-- '-- white TCGA-24-1471_demographic Alive '-- '-- '-- '-- 22081 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 36.0 '-- '-- 43f6535a-4e53-5545-8cb3-311a4901f939 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1471_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1471_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 261f42c9-fc10-44a9-b754-6fcaa8932e3a Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ceb19678-b453-4529-b6cb-d02f9cb101b4 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1471 60 false '-- '-- '-- '-- -22081 '-- 2cc27fab-a108-5748-aefe-0bef861bc009 '-- not reported female '-- '-- '-- '-- white TCGA-24-1471_demographic Alive '-- '-- '-- '-- 22081 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 36.0 '-- '-- 43f6535a-4e53-5545-8cb3-311a4901f939 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1471_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1471_treatment2 Clinical Trial '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6d58e60c-c601-41b9-ba19-0683bec01fad Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV ceb19678-b453-4529-b6cb-d02f9cb101b4 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1471 60 false '-- '-- '-- '-- -22081 '-- 2cc27fab-a108-5748-aefe-0bef861bc009 '-- not reported female '-- '-- '-- '-- white TCGA-24-1471_demographic Alive '-- '-- '-- '-- 22081 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 36.0 '-- '-- 43f6535a-4e53-5545-8cb3-311a4901f939 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1471_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1471_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fc984d64-8a86-5f39-ae93-f96f0a16b7c6 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cf1e86ec-4bcb-403c-831b-d67bddef14eb Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1565 74 false '-- '-- '-- '-- -27048 312 ff23d451-c438-5f18-9951-f4adc6b0744f '-- not reported female '-- '-- '-- '-- white TCGA-24-1565_demographic Dead '-- '-- '-- '-- 27193 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 145 '-- '-- '-- 92cebb47-506c-453c-9300-27a945763627 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1565_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1565_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1565_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 377206a0-9893-4eda-9abb-6d1e31e21ea4 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV cf1e86ec-4bcb-403c-831b-d67bddef14eb Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1565 74 false '-- '-- '-- '-- -27048 312 ff23d451-c438-5f18-9951-f4adc6b0744f '-- not reported female '-- '-- '-- '-- white TCGA-24-1565_demographic Dead '-- '-- '-- '-- 27193 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 145 '-- '-- '-- 92cebb47-506c-453c-9300-27a945763627 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1565_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1565_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1565_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d6a4211d-320d-45f9-9e89-77c0a03f05c6 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV cf1e86ec-4bcb-403c-831b-d67bddef14eb Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1565 74 false '-- '-- '-- '-- -27048 312 ff23d451-c438-5f18-9951-f4adc6b0744f '-- not reported female '-- '-- '-- '-- white TCGA-24-1565_demographic Dead '-- '-- '-- '-- 27048 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 312.0 '-- '-- e36db772-f900-5281-9362-18c0fa204e9a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1565_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1565_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 306060bd-02df-4b07-a9be-4d2dc45ca1be Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV cf1e86ec-4bcb-403c-831b-d67bddef14eb Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1565 74 false '-- '-- '-- '-- -27048 312 ff23d451-c438-5f18-9951-f4adc6b0744f '-- not reported female '-- '-- '-- '-- white TCGA-24-1565_demographic Dead '-- '-- '-- '-- 27048 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 312.0 '-- '-- e36db772-f900-5281-9362-18c0fa204e9a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1565_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 123 39 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1565_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 774 '-- mg '-- '-- '-- '-- 3565516e-0dfc-48ae-b68f-6547b82372ef Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cf1e86ec-4bcb-403c-831b-d67bddef14eb Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1565 74 false '-- '-- '-- '-- -27048 312 ff23d451-c438-5f18-9951-f4adc6b0744f '-- not reported female '-- '-- '-- '-- white TCGA-24-1565_demographic Dead '-- '-- '-- '-- 27048 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 312.0 '-- '-- e36db772-f900-5281-9362-18c0fa204e9a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1565_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 123 39 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1565_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1389 '-- mg '-- '-- '-- '-- 461f56c9-ffc0-5212-a78d-f465658fd2ad Adjuvant yes '-- '-- Chemotherapy +TCGA-OV cf1e86ec-4bcb-403c-831b-d67bddef14eb Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1565 74 false '-- '-- '-- '-- -27048 312 ff23d451-c438-5f18-9951-f4adc6b0744f '-- not reported female '-- '-- '-- '-- white TCGA-24-1565_demographic Dead '-- '-- '-- '-- 27048 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 312.0 '-- '-- e36db772-f900-5281-9362-18c0fa204e9a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1565_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- 178 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1565_treatment2 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5c6067a8-4a12-4111-a80d-3ae6e7b54032 '-- yes '-- '-- Chemotherapy +TCGA-OV d0673efd-3315-4dd5-8ab6-912bfa07dceb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1022 67 false '-- '-- '-- '-- -24798 1511 c4eab79f-a23b-5be3-abcc-b2e64f7626dc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1022_demographic Dead '-- '-- '-- '-- 24798 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1511.0 '-- '-- 0cb11846-7903-535a-926e-9347464dcdd3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1022_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 1378 1378 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1022_treatment3 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1560 '-- mg '-- '-- '-- '-- 0bfaffe7-deea-44df-bf87-d50b0fb74e0e '-- yes '-- '-- Chemotherapy +TCGA-OV d0673efd-3315-4dd5-8ab6-912bfa07dceb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1022 67 false '-- '-- '-- '-- -24798 1511 c4eab79f-a23b-5be3-abcc-b2e64f7626dc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1022_demographic Dead '-- '-- '-- '-- 24798 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1511.0 '-- '-- 0cb11846-7903-535a-926e-9347464dcdd3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1022_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 937 853 '-- '-- Recurrent Disease '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1022_treatment9 Docetaxel '-- '-- '-- '-- '-- '-- '-- 640 '-- mg '-- '-- '-- '-- 58cc0762-c458-48c4-828a-b8084ef9e335 '-- yes '-- '-- Chemotherapy +TCGA-OV d0673efd-3315-4dd5-8ab6-912bfa07dceb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1022 67 false '-- '-- '-- '-- -24798 1511 c4eab79f-a23b-5be3-abcc-b2e64f7626dc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1022_demographic Dead '-- '-- '-- '-- 24798 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1511.0 '-- '-- 0cb11846-7903-535a-926e-9347464dcdd3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1022_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 162 29 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1022_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2170 '-- mg '-- '-- '-- '-- 5eee8d7b-7f8d-591a-8674-7896ce4867ff Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d0673efd-3315-4dd5-8ab6-912bfa07dceb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1022 67 false '-- '-- '-- '-- -24798 1511 c4eab79f-a23b-5be3-abcc-b2e64f7626dc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1022_demographic Dead '-- '-- '-- '-- 24798 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1511.0 '-- '-- 0cb11846-7903-535a-926e-9347464dcdd3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1022_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 1357 1274 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1022_treatment6 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 8120 '-- mg '-- '-- '-- '-- 71b6b764-d1c1-4f26-817b-464c5e861d7a '-- yes '-- '-- Chemotherapy +TCGA-OV d0673efd-3315-4dd5-8ab6-912bfa07dceb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1022 67 false '-- '-- '-- '-- -24798 1511 c4eab79f-a23b-5be3-abcc-b2e64f7626dc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1022_demographic Dead '-- '-- '-- '-- 24798 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1511.0 '-- '-- 0cb11846-7903-535a-926e-9347464dcdd3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1022_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 1252 1056 '-- '-- Progressive Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1022_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2500 '-- mg '-- '-- '-- '-- 72903838-3351-46c1-829e-57b2f6057724 '-- yes '-- '-- Chemotherapy +TCGA-OV d0673efd-3315-4dd5-8ab6-912bfa07dceb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1022 67 false '-- '-- '-- '-- -24798 1511 c4eab79f-a23b-5be3-abcc-b2e64f7626dc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1022_demographic Dead '-- '-- '-- '-- 24798 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1511.0 '-- '-- 0cb11846-7903-535a-926e-9347464dcdd3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1022_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 162 29 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1022_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2730 '-- mg '-- '-- '-- '-- 7b39082a-a7bb-460e-b6e3-2dbf2e7c04c0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d0673efd-3315-4dd5-8ab6-912bfa07dceb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1022 67 false '-- '-- '-- '-- -24798 1511 c4eab79f-a23b-5be3-abcc-b2e64f7626dc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1022_demographic Dead '-- '-- '-- '-- 24798 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1511.0 '-- '-- 0cb11846-7903-535a-926e-9347464dcdd3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1022_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 741 614 '-- '-- Recurrent Disease '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1022_treatment8 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 17200 '-- mg '-- '-- '-- '-- adb3a4e0-a958-47c9-a469-eecee42ef46c '-- yes '-- '-- Chemotherapy +TCGA-OV d0673efd-3315-4dd5-8ab6-912bfa07dceb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1022 67 false '-- '-- '-- '-- -24798 1511 c4eab79f-a23b-5be3-abcc-b2e64f7626dc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1022_demographic Dead '-- '-- '-- '-- 24798 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1511.0 '-- '-- 0cb11846-7903-535a-926e-9347464dcdd3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1022_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 741 614 '-- '-- Recurrent Disease '-- '-- '-- '-- 12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1022_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 820 '-- mg '-- '-- '-- '-- afe0eb85-dad3-4ea4-8466-a2a84c2c6d60 '-- yes '-- '-- Chemotherapy +TCGA-OV d0673efd-3315-4dd5-8ab6-912bfa07dceb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1022 67 false '-- '-- '-- '-- -24798 1511 c4eab79f-a23b-5be3-abcc-b2e64f7626dc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1022_demographic Dead '-- '-- '-- '-- 24798 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1511.0 '-- '-- 0cb11846-7903-535a-926e-9347464dcdd3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1022_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1022_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c6b5fd1a-27d6-4846-9258-db397fd1f456 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV d0673efd-3315-4dd5-8ab6-912bfa07dceb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1022 67 false '-- '-- '-- '-- -24798 1511 c4eab79f-a23b-5be3-abcc-b2e64f7626dc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1022_demographic Dead '-- '-- '-- '-- 24798 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1511.0 '-- '-- 0cb11846-7903-535a-926e-9347464dcdd3 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1022_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 818 762 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1022_treatment5 Topotecan '-- '-- '-- '-- '-- '-- '-- 28 '-- mg '-- '-- '-- '-- dcd18ac2-d0e0-4e44-84cd-6d84858a64bc '-- yes '-- '-- Chemotherapy +TCGA-OV d0673efd-3315-4dd5-8ab6-912bfa07dceb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1022 67 false '-- '-- '-- '-- -24798 1511 c4eab79f-a23b-5be3-abcc-b2e64f7626dc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1022_demographic Dead '-- '-- '-- '-- 25248 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 450 '-- '-- '-- c075994d-4355-455e-bf1a-22e28e7fb44f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1022_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1022_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1022_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7bc7268e-96ba-4f4e-9780-72222733a9e0 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV d0673efd-3315-4dd5-8ab6-912bfa07dceb Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1022 67 false '-- '-- '-- '-- -24798 1511 c4eab79f-a23b-5be3-abcc-b2e64f7626dc '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1022_demographic Dead '-- '-- '-- '-- 25248 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 450 '-- '-- '-- c075994d-4355-455e-bf1a-22e28e7fb44f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1022_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1022_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1022_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f0a21c7c-9b99-401b-9ae9-2af0d7b26ead '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV d1976840-35f7-4423-8458-12fb32a52b33 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1032 73 false '-- '-- '-- '-- -26715 84 11f19a38-9234-583d-bfa1-72d744906534 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-23-1032_demographic Dead '-- '-- '-- '-- 26715 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 84.0 '-- '-- ce95a788-c4a1-573a-bf27-259e0b06fc75 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1032_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1032_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 418a9bac-9b85-4c4c-9b29-a554b0af5674 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV d1976840-35f7-4423-8458-12fb32a52b33 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1032 73 false '-- '-- '-- '-- -26715 84 11f19a38-9234-583d-bfa1-72d744906534 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-23-1032_demographic Dead '-- '-- '-- '-- 26715 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 84.0 '-- '-- ce95a788-c4a1-573a-bf27-259e0b06fc75 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1032_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1032_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ed7d9fbd-a8bd-50cc-acf7-b81fc834bc92 Adjuvant no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV d1e974e7-dd68-40cc-ad06-2b57d964e5a1 Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1337 78 false '-- '-- '-- '-- -28626 61 955e097e-08f9-5ef5-8ca0-932e5d45ac9f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1337_demographic Dead '-- '-- '-- '-- 28626 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 61.0 '-- '-- 34aa5429-9d9e-5eea-bf66-26acfdbb8a96 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1337_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1337_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 203e69ba-ee47-43e9-8592-3c248d14f1c0 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV d1e974e7-dd68-40cc-ad06-2b57d964e5a1 Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1337 78 false '-- '-- '-- '-- -28626 61 955e097e-08f9-5ef5-8ca0-932e5d45ac9f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1337_demographic Dead '-- '-- '-- '-- 28626 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 61.0 '-- '-- 34aa5429-9d9e-5eea-bf66-26acfdbb8a96 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1337_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1337_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e50538d0-06ca-523d-b631-9dbc3e96a5f7 Adjuvant no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV d2c0d320-d1c5-4eed-af4f-15540e60db0b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1122 53 false '-- '-- '-- '-- -19537 1189 35fba336-e795-5600-a892-a3899a3d9fe3 '-- not reported female '-- '-- '-- '-- white TCGA-23-1122_demographic Dead '-- '-- '-- '-- 19537 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1189.0 '-- '-- 0bf0b7d6-59fd-5d2e-b753-857c4b618889 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1122_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 244 27 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1122_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4200 '-- mg '-- '-- '-- '-- 10571b3f-0223-4817-aa51-f0fb0e6301cf Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d2c0d320-d1c5-4eed-af4f-15540e60db0b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1122 53 false '-- '-- '-- '-- -19537 1189 35fba336-e795-5600-a892-a3899a3d9fe3 '-- not reported female '-- '-- '-- '-- white TCGA-23-1122_demographic Dead '-- '-- '-- '-- 19537 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1189.0 '-- '-- 0bf0b7d6-59fd-5d2e-b753-857c4b618889 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1122_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1031 921 '-- '-- Persistent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1122_treatment2 Ifosfamide '-- '-- '-- '-- '-- '-- '-- 72 '-- mg '-- '-- '-- '-- 167ee7a8-51da-4383-9f9b-ddaeb59c1f74 Not Reported yes '-- '-- Chemotherapy +TCGA-OV d2c0d320-d1c5-4eed-af4f-15540e60db0b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1122 53 false '-- '-- '-- '-- -19537 1189 35fba336-e795-5600-a892-a3899a3d9fe3 '-- not reported female '-- '-- '-- '-- white TCGA-23-1122_demographic Dead '-- '-- '-- '-- 19537 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1189.0 '-- '-- 0bf0b7d6-59fd-5d2e-b753-857c4b618889 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1122_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 686 501 '-- '-- Recurrent Disease '-- '-- '-- '-- 20 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1122_treatment4 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 15900 '-- mg '-- '-- '-- '-- 38fb62c6-526b-4ac3-a117-8595ddb580c9 '-- yes '-- '-- Chemotherapy +TCGA-OV d2c0d320-d1c5-4eed-af4f-15540e60db0b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1122 53 false '-- '-- '-- '-- -19537 1189 35fba336-e795-5600-a892-a3899a3d9fe3 '-- not reported female '-- '-- '-- '-- white TCGA-23-1122_demographic Dead '-- '-- '-- '-- 19537 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1189.0 '-- '-- 0bf0b7d6-59fd-5d2e-b753-857c4b618889 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1122_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 859 775 '-- '-- Persistent Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1122_treatment7 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 5900 '-- mg '-- '-- '-- '-- 696b1bf9-db47-48ca-b491-bc75ece1615c Not Reported yes '-- '-- Chemotherapy +TCGA-OV d2c0d320-d1c5-4eed-af4f-15540e60db0b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1122 53 false '-- '-- '-- '-- -19537 1189 35fba336-e795-5600-a892-a3899a3d9fe3 '-- not reported female '-- '-- '-- '-- white TCGA-23-1122_demographic Dead '-- '-- '-- '-- 19537 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1189.0 '-- '-- 0bf0b7d6-59fd-5d2e-b753-857c4b618889 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1122_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 754 707 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1122_treatment6 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 3500 '-- mg '-- '-- '-- '-- 7fc5ab77-a14a-4d63-a56b-2e90d91ec211 '-- yes '-- '-- Chemotherapy +TCGA-OV d2c0d320-d1c5-4eed-af4f-15540e60db0b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1122 53 false '-- '-- '-- '-- -19537 1189 35fba336-e795-5600-a892-a3899a3d9fe3 '-- not reported female '-- '-- '-- '-- white TCGA-23-1122_demographic Dead '-- '-- '-- '-- 19537 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1189.0 '-- '-- 0bf0b7d6-59fd-5d2e-b753-857c4b618889 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1122_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1089 1054 '-- '-- Progressive Disease '-- '-- '-- '-- '-- 29.0 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1122_treatment '-- '-- '-- '-- '-- '-- Distant Site '-- 14290 '-- cGy '-- '-- '-- '-- 9d7b0051-95b8-5e5f-850a-505f56d62842 '-- yes '-- '-- Radiation, External Beam +TCGA-OV d2c0d320-d1c5-4eed-af4f-15540e60db0b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1122 53 false '-- '-- '-- '-- -19537 1189 35fba336-e795-5600-a892-a3899a3d9fe3 '-- not reported female '-- '-- '-- '-- white TCGA-23-1122_demographic Dead '-- '-- '-- '-- 19537 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1189.0 '-- '-- 0bf0b7d6-59fd-5d2e-b753-857c4b618889 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1122_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1998 '-- '-- '-- 1089 1054 '-- '-- Persistent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1122_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 240 '-- mg '-- '-- '-- '-- dfd3da5b-71a1-48f8-aea0-21a1c4905e18 Not Reported yes '-- '-- Chemotherapy +TCGA-OV d2c0d320-d1c5-4eed-af4f-15540e60db0b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1122 53 false '-- '-- '-- '-- -19537 1189 35fba336-e795-5600-a892-a3899a3d9fe3 '-- not reported female '-- '-- '-- '-- white TCGA-23-1122_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3feb5069-2db9-40fc-a0ce-2d0dd2997e36 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1122_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1122_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1122_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0d0d5ab2-2582-45a7-8be1-ddcb2a22e409 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV d2c0d320-d1c5-4eed-af4f-15540e60db0b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1122 53 false '-- '-- '-- '-- -19537 1189 35fba336-e795-5600-a892-a3899a3d9fe3 '-- not reported female '-- '-- '-- '-- white TCGA-23-1122_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3feb5069-2db9-40fc-a0ce-2d0dd2997e36 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1122_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1122_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1122_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6d118d74-e535-4afb-8dce-e42ad1b69436 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV d2c0d320-d1c5-4eed-af4f-15540e60db0b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1122 53 false '-- '-- '-- '-- -19537 1189 35fba336-e795-5600-a892-a3899a3d9fe3 '-- not reported female '-- '-- '-- '-- white TCGA-23-1122_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3feb5069-2db9-40fc-a0ce-2d0dd2997e36 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1122_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1122_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 470 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1122_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d9360c57-24fb-4558-afbb-583aa183500c '-- yes '-- '-- Surgery, NOS +TCGA-OV d2c0d320-d1c5-4eed-af4f-15540e60db0b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1122 53 false '-- '-- '-- '-- -19537 1189 35fba336-e795-5600-a892-a3899a3d9fe3 '-- not reported female '-- '-- '-- '-- white TCGA-23-1122_demographic Dead '-- '-- '-- '-- 19984 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 447 '-- '-- '-- 524a9b6a-da9e-4866-9a9d-99686127633d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1122_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1122_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1122_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 918cf43c-8f16-46ae-9ed0-f3a495b18479 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV d2c0d320-d1c5-4eed-af4f-15540e60db0b Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1122 53 false '-- '-- '-- '-- -19537 1189 35fba336-e795-5600-a892-a3899a3d9fe3 '-- not reported female '-- '-- '-- '-- white TCGA-23-1122_demographic Dead '-- '-- '-- '-- 19984 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 447 '-- '-- '-- 524a9b6a-da9e-4866-9a9d-99686127633d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1122_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1122_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1122_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f0e14c6d-3a20-4c0b-82f5-6254f1e6f13a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV d2ccefea-c1d6-465f-97b1-e51e29c5f1f8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2030 87 true '-- '-- '-- '-- -31900 972 1e6770e3-530b-5551-b539-b04e94701bc0 '-- not reported female '-- '-- '-- '-- white TCGA-24-2030_demographic Dead '-- '-- '-- '-- 31900 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 972.0 '-- '-- a4587419-35db-5312-8878-2491ceeaa92f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2030_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2030_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 01539d0d-de6f-4c0f-8777-fb5f90f6f35d Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV d2ccefea-c1d6-465f-97b1-e51e29c5f1f8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2030 87 true '-- '-- '-- '-- -31900 972 1e6770e3-530b-5551-b539-b04e94701bc0 '-- not reported female '-- '-- '-- '-- white TCGA-24-2030_demographic Dead '-- '-- '-- '-- 31900 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 972.0 '-- '-- a4587419-35db-5312-8878-2491ceeaa92f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2030_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 972 972 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2030_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 50 '-- mg '-- '-- '-- '-- 0a1717dd-0b51-4483-a8a8-69936ddc04e4 '-- yes '-- '-- Chemotherapy +TCGA-OV d2ccefea-c1d6-465f-97b1-e51e29c5f1f8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2030 87 true '-- '-- '-- '-- -31900 972 1e6770e3-530b-5551-b539-b04e94701bc0 '-- not reported female '-- '-- '-- '-- white TCGA-24-2030_demographic Dead '-- '-- '-- '-- 31900 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 972.0 '-- '-- a4587419-35db-5312-8878-2491ceeaa92f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2030_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 972 864 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2030_treatment5 Topotecan '-- '-- '-- '-- '-- '-- '-- 48 '-- mg '-- '-- '-- '-- 333ce2b2-dcfd-4c84-90a3-2b683edc2855 '-- yes '-- '-- Chemotherapy +TCGA-OV d2ccefea-c1d6-465f-97b1-e51e29c5f1f8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2030 87 true '-- '-- '-- '-- -31900 972 1e6770e3-530b-5551-b539-b04e94701bc0 '-- not reported female '-- '-- '-- '-- white TCGA-24-2030_demographic Dead '-- '-- '-- '-- 31900 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 972.0 '-- '-- a4587419-35db-5312-8878-2491ceeaa92f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2030_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 790 657 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2030_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1380 '-- mg '-- '-- '-- '-- 710517ad-bd57-5b47-bee1-88eb6586e8b7 '-- yes '-- '-- Chemotherapy +TCGA-OV d2ccefea-c1d6-465f-97b1-e51e29c5f1f8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2030 87 true '-- '-- '-- '-- -31900 972 1e6770e3-530b-5551-b539-b04e94701bc0 '-- not reported female '-- '-- '-- '-- white TCGA-24-2030_demographic Dead '-- '-- '-- '-- 31900 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 972.0 '-- '-- a4587419-35db-5312-8878-2491ceeaa92f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2030_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 972 972 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2030_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1420 '-- mg '-- '-- '-- '-- 76b34a93-8856-4179-b2cc-6c19e25f6a08 '-- yes '-- '-- Chemotherapy +TCGA-OV d2ccefea-c1d6-465f-97b1-e51e29c5f1f8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2030 87 true '-- '-- '-- '-- -31900 972 1e6770e3-530b-5551-b539-b04e94701bc0 '-- not reported female '-- '-- '-- '-- white TCGA-24-2030_demographic Dead '-- '-- '-- '-- 31900 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 972.0 '-- '-- a4587419-35db-5312-8878-2491ceeaa92f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2030_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 127 13 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2030_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2334 '-- mg '-- '-- '-- '-- 9960822a-fd88-48e3-b877-c9e588565f9c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d2ccefea-c1d6-465f-97b1-e51e29c5f1f8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2030 87 true '-- '-- '-- '-- -31900 972 1e6770e3-530b-5551-b539-b04e94701bc0 '-- not reported female '-- '-- '-- '-- white TCGA-24-2030_demographic Dead '-- '-- '-- '-- 31900 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 972.0 '-- '-- a4587419-35db-5312-8878-2491ceeaa92f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2030_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 127 13 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2030_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1064 '-- mg '-- '-- '-- '-- b54d5b6f-1a41-408d-b80b-535c0991688c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d2ccefea-c1d6-465f-97b1-e51e29c5f1f8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2030 87 true '-- '-- '-- '-- -31900 972 1e6770e3-530b-5551-b539-b04e94701bc0 '-- not reported female '-- '-- '-- '-- white TCGA-24-2030_demographic Dead '-- '-- '-- '-- 31900 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 972.0 '-- '-- a4587419-35db-5312-8878-2491ceeaa92f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2030_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 790 657 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2030_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1778 '-- mg '-- '-- '-- '-- b91d384b-9353-4b7d-b6be-dfd5ac3295f7 '-- yes '-- '-- Chemotherapy +TCGA-OV d2ccefea-c1d6-465f-97b1-e51e29c5f1f8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2030 87 true '-- '-- '-- '-- -31900 972 1e6770e3-530b-5551-b539-b04e94701bc0 '-- not reported female '-- '-- '-- '-- white TCGA-24-2030_demographic Dead '-- '-- '-- '-- 31900 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 972.0 '-- '-- a4587419-35db-5312-8878-2491ceeaa92f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2030_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- 972 972 '-- '-- Progressive Disease '-- '-- '-- '-- 11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2030_treatment8 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1100 '-- mg '-- '-- '-- '-- fa75615a-6b21-417f-b39d-01350649ae9c '-- yes '-- '-- Chemotherapy +TCGA-OV d2ccefea-c1d6-465f-97b1-e51e29c5f1f8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2030 87 true '-- '-- '-- '-- -31900 972 1e6770e3-530b-5551-b539-b04e94701bc0 '-- not reported female '-- '-- '-- '-- white TCGA-24-2030_demographic Dead '-- '-- '-- '-- 32546 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 646 '-- '-- '-- e7a76af0-c60f-4544-808a-9b23d17aae29 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2030_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2030_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2030_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 56d33c49-198a-4459-8ff8-2934bf0e5808 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV d2ccefea-c1d6-465f-97b1-e51e29c5f1f8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2030 87 true '-- '-- '-- '-- -31900 972 1e6770e3-530b-5551-b539-b04e94701bc0 '-- not reported female '-- '-- '-- '-- white TCGA-24-2030_demographic Dead '-- '-- '-- '-- 32546 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 646 '-- '-- '-- e7a76af0-c60f-4544-808a-9b23d17aae29 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2030_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2030_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2030_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 99247ade-92d2-43de-82ff-c1bfc66bdec0 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV d3164236-c14a-4230-b527-ecd1a3992f02 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1614 57 false '-- '-- '-- '-- -20993 1470 0711b8a8-17a2-592b-ab16-ee158a843e19 '-- not reported female '-- '-- '-- '-- white TCGA-24-1614_demographic Dead '-- '-- '-- '-- 21637 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 644 '-- '-- '-- 8c061c05-64d4-4f3e-b155-38ab0ffe391c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1614_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1614_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1614_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 35baf592-0475-43a7-b9ec-0e5e02cc3966 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV d3164236-c14a-4230-b527-ecd1a3992f02 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1614 57 false '-- '-- '-- '-- -20993 1470 0711b8a8-17a2-592b-ab16-ee158a843e19 '-- not reported female '-- '-- '-- '-- white TCGA-24-1614_demographic Dead '-- '-- '-- '-- 21637 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 644 '-- '-- '-- 8c061c05-64d4-4f3e-b155-38ab0ffe391c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1614_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1614_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1614_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bb9a5448-3732-4c93-a5f5-35f505b1dbcd '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV d3164236-c14a-4230-b527-ecd1a3992f02 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1614 57 false '-- '-- '-- '-- -20993 1470 0711b8a8-17a2-592b-ab16-ee158a843e19 '-- not reported female '-- '-- '-- '-- white TCGA-24-1614_demographic Dead '-- '-- '-- '-- 20993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1470.0 '-- '-- 946bfc83-f887-54ac-85e8-290e1c119cbb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1614_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1133 1010 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1614_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0f3ef686-8b40-46d5-b4b8-bbbb10390fc8 '-- yes '-- '-- Chemotherapy +TCGA-OV d3164236-c14a-4230-b527-ecd1a3992f02 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1614 57 false '-- '-- '-- '-- -20993 1470 0711b8a8-17a2-592b-ab16-ee158a843e19 '-- not reported female '-- '-- '-- '-- white TCGA-24-1614_demographic Dead '-- '-- '-- '-- 20993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1470.0 '-- '-- 946bfc83-f887-54ac-85e8-290e1c119cbb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1614_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 888 644 '-- '-- Recurrent Disease '-- '-- '-- '-- 11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1614_treatment7 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1bd7dee1-2d51-4554-b44e-59c802726a3c '-- yes '-- '-- Chemotherapy +TCGA-OV d3164236-c14a-4230-b527-ecd1a3992f02 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1614 57 false '-- '-- '-- '-- -20993 1470 0711b8a8-17a2-592b-ab16-ee158a843e19 '-- not reported female '-- '-- '-- '-- white TCGA-24-1614_demographic Dead '-- '-- '-- '-- 20993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1470.0 '-- '-- 946bfc83-f887-54ac-85e8-290e1c119cbb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1614_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 188 22 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1614_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 240c2214-4c79-44de-b847-693b5f0e61d1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d3164236-c14a-4230-b527-ecd1a3992f02 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1614 57 false '-- '-- '-- '-- -20993 1470 0711b8a8-17a2-592b-ab16-ee158a843e19 '-- not reported female '-- '-- '-- '-- white TCGA-24-1614_demographic Dead '-- '-- '-- '-- 20993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1470.0 '-- '-- 946bfc83-f887-54ac-85e8-290e1c119cbb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1614_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 188 22 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1614_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 522838c4-6075-44d2-b865-c90677c95049 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d3164236-c14a-4230-b527-ecd1a3992f02 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1614 57 false '-- '-- '-- '-- -20993 1470 0711b8a8-17a2-592b-ab16-ee158a843e19 '-- not reported female '-- '-- '-- '-- white TCGA-24-1614_demographic Dead '-- '-- '-- '-- 20993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1470.0 '-- '-- 946bfc83-f887-54ac-85e8-290e1c119cbb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1614_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1614_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5e0c4b67-0dca-457f-b4de-0a241c640fdd Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV d3164236-c14a-4230-b527-ecd1a3992f02 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1614 57 false '-- '-- '-- '-- -20993 1470 0711b8a8-17a2-592b-ab16-ee158a843e19 '-- not reported female '-- '-- '-- '-- white TCGA-24-1614_demographic Dead '-- '-- '-- '-- 20993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1470.0 '-- '-- 946bfc83-f887-54ac-85e8-290e1c119cbb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1614_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1443 1284 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1614_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6d09b947-7d0b-4f9f-b59c-8f4b40a4404b '-- yes '-- '-- Chemotherapy +TCGA-OV d3164236-c14a-4230-b527-ecd1a3992f02 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1614 57 false '-- '-- '-- '-- -20993 1470 0711b8a8-17a2-592b-ab16-ee158a843e19 '-- not reported female '-- '-- '-- '-- white TCGA-24-1614_demographic Dead '-- '-- '-- '-- 20993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1470.0 '-- '-- 946bfc83-f887-54ac-85e8-290e1c119cbb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1614_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 888 644 '-- '-- Recurrent Disease '-- '-- '-- '-- 11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1614_treatment3 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9ab1da22-062d-4747-b92e-f295e2bb18a0 '-- yes '-- '-- Chemotherapy +TCGA-OV d3164236-c14a-4230-b527-ecd1a3992f02 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1614 57 false '-- '-- '-- '-- -20993 1470 0711b8a8-17a2-592b-ab16-ee158a843e19 '-- not reported female '-- '-- '-- '-- white TCGA-24-1614_demographic Dead '-- '-- '-- '-- 20993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1470.0 '-- '-- 946bfc83-f887-54ac-85e8-290e1c119cbb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1614_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1133 1010 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1614_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f822d753-cdb2-5097-9514-3ceb8598bd95 '-- yes '-- '-- Chemotherapy +TCGA-OV d38ca631-ed5c-4182-a647-625060726fa7 Informed Consent 21 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1646 60 false '-- '-- '-- '-- -22207 848 68602378-68b7-555f-8fa8-16de90560248 '-- not reported female '-- '-- '-- '-- white TCGA-04-1646_demographic Dead '-- '-- '-- '-- 22715 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 508 '-- '-- '-- 763073cc-4f8f-4844-94c3-7e5c927010a3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1646_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1646_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1646_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8922e39b-431f-4c39-9203-33cbf711cc6d '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV d38ca631-ed5c-4182-a647-625060726fa7 Informed Consent 21 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1646 60 false '-- '-- '-- '-- -22207 848 68602378-68b7-555f-8fa8-16de90560248 '-- not reported female '-- '-- '-- '-- white TCGA-04-1646_demographic Dead '-- '-- '-- '-- 22715 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 508 '-- '-- '-- 763073cc-4f8f-4844-94c3-7e5c927010a3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1646_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1646_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1646_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a0b9c711-1d23-4a07-81ae-ff11b8c74bfb '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV d38ca631-ed5c-4182-a647-625060726fa7 Informed Consent 21 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1646 60 false '-- '-- '-- '-- -22207 848 68602378-68b7-555f-8fa8-16de90560248 '-- not reported female '-- '-- '-- '-- white TCGA-04-1646_demographic Dead '-- '-- '-- '-- 22207 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 848.0 '-- '-- 8b691e5e-8ec8-5ac4-8c47-d9728f229f23 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1646_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1646_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3869be80-c625-4d60-9794-11fe4b550ee2 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV d38ca631-ed5c-4182-a647-625060726fa7 Informed Consent 21 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1646 60 false '-- '-- '-- '-- -22207 848 68602378-68b7-555f-8fa8-16de90560248 '-- not reported female '-- '-- '-- '-- white TCGA-04-1646_demographic Dead '-- '-- '-- '-- 22207 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 848.0 '-- '-- 8b691e5e-8ec8-5ac4-8c47-d9728f229f23 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1646_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 522 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1646_treatment2 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 77c2c694-5128-4332-b4c1-fb794e7a7779 Unknown yes '-- '-- Chemotherapy +TCGA-OV d38ca631-ed5c-4182-a647-625060726fa7 Informed Consent 21 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1646 60 false '-- '-- '-- '-- -22207 848 68602378-68b7-555f-8fa8-16de90560248 '-- not reported female '-- '-- '-- '-- white TCGA-04-1646_demographic Dead '-- '-- '-- '-- 22207 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 848.0 '-- '-- 8b691e5e-8ec8-5ac4-8c47-d9728f229f23 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1646_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 239 18 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1646_treatment Gemcitabine '-- '-- '-- '-- '-- '-- '-- 8188 '-- mg '-- '-- '-- '-- 8cbcf0c4-93e4-5361-9888-6b2a7d546b7b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d38ca631-ed5c-4182-a647-625060726fa7 Informed Consent 21 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1646 60 false '-- '-- '-- '-- -22207 848 68602378-68b7-555f-8fa8-16de90560248 '-- not reported female '-- '-- '-- '-- white TCGA-04-1646_demographic Dead '-- '-- '-- '-- 22207 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 848.0 '-- '-- 8b691e5e-8ec8-5ac4-8c47-d9728f229f23 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1646_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 239 18 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1646_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1504 '-- mg '-- '-- '-- '-- 9e215d71-1fca-47bb-88de-3e35da14d6f4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d38ca631-ed5c-4182-a647-625060726fa7 Informed Consent 21 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1646 60 false '-- '-- '-- '-- -22207 848 68602378-68b7-555f-8fa8-16de90560248 '-- not reported female '-- '-- '-- '-- white TCGA-04-1646_demographic Dead '-- '-- '-- '-- 22207 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 848.0 '-- '-- 8b691e5e-8ec8-5ac4-8c47-d9728f229f23 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1646_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- 522 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1646_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d2fdf97b-1036-4e2f-a764-129d224d5764 Unknown yes '-- '-- Chemotherapy +TCGA-OV d38ca631-ed5c-4182-a647-625060726fa7 Informed Consent 21 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1646 60 false '-- '-- '-- '-- -22207 848 68602378-68b7-555f-8fa8-16de90560248 '-- not reported female '-- '-- '-- '-- white TCGA-04-1646_demographic Dead '-- '-- '-- '-- 22207 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 848.0 '-- '-- 8b691e5e-8ec8-5ac4-8c47-d9728f229f23 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1646_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 239 18 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1646_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4709 '-- mg '-- '-- '-- '-- e7e5ec0d-f055-4d6e-9185-9200d64f8e30 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d3dd5e69-9752-4b50-9b1f-814afbc2c3dd Informed Consent 310 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1774 82 false '-- '-- '-- '-- -29991 '-- 1d15823e-4daa-5758-8481-cfa43f826e1e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-29-1774_demographic Alive '-- '-- '-- '-- 30225 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 234 '-- '-- '-- 6da4fb09-fc5a-402e-9ed6-cf5cb628762b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1774_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1774_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1774_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1ad73947-a6a6-4329-9307-a99ac941d511 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV d3dd5e69-9752-4b50-9b1f-814afbc2c3dd Informed Consent 310 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1774 82 false '-- '-- '-- '-- -29991 '-- 1d15823e-4daa-5758-8481-cfa43f826e1e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-29-1774_demographic Alive '-- '-- '-- '-- 30225 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 234 '-- '-- '-- 6da4fb09-fc5a-402e-9ed6-cf5cb628762b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1774_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1774_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1774_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 559d6335-b989-4d8b-bf2f-e7eee52df1e4 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV d3dd5e69-9752-4b50-9b1f-814afbc2c3dd Informed Consent 310 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1774 82 false '-- '-- '-- '-- -29991 '-- 1d15823e-4daa-5758-8481-cfa43f826e1e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-29-1774_demographic Alive '-- '-- '-- '-- 29991 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 527.0 '-- '-- dbf2bcbf-39a4-5c2a-8db3-883fffc89e0e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1774_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 37 37 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1774_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 410 '-- mg '-- '-- '-- '-- 15103971-2183-4c66-a745-736117ef7e43 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d3dd5e69-9752-4b50-9b1f-814afbc2c3dd Informed Consent 310 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1774 82 false '-- '-- '-- '-- -29991 '-- 1d15823e-4daa-5758-8481-cfa43f826e1e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-29-1774_demographic Alive '-- '-- '-- '-- 29991 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 527.0 '-- '-- dbf2bcbf-39a4-5c2a-8db3-883fffc89e0e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1774_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 14 14 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1774_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 340 '-- mg '-- '-- '-- '-- 168ec590-d425-5f64-9493-68e3ea3df84d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d3dd5e69-9752-4b50-9b1f-814afbc2c3dd Informed Consent 310 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1774 82 false '-- '-- '-- '-- -29991 '-- 1d15823e-4daa-5758-8481-cfa43f826e1e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-29-1774_demographic Alive '-- '-- '-- '-- 29991 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 527.0 '-- '-- dbf2bcbf-39a4-5c2a-8db3-883fffc89e0e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1774_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 86 86 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1774_treatment2 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1075 '-- mg '-- '-- '-- '-- 29521784-a80e-4723-9dc3-cef8c351ce77 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d3dd5e69-9752-4b50-9b1f-814afbc2c3dd Informed Consent 310 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1774 82 false '-- '-- '-- '-- -29991 '-- 1d15823e-4daa-5758-8481-cfa43f826e1e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-29-1774_demographic Alive '-- '-- '-- '-- 29991 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 527.0 '-- '-- dbf2bcbf-39a4-5c2a-8db3-883fffc89e0e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1774_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 380 247 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1774_treatment3 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1425 '-- mg '-- '-- '-- '-- 68a1f6cc-0df7-4c03-816a-3a866566f242 '-- yes '-- '-- Chemotherapy +TCGA-OV d3dd5e69-9752-4b50-9b1f-814afbc2c3dd Informed Consent 310 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1774 82 false '-- '-- '-- '-- -29991 '-- 1d15823e-4daa-5758-8481-cfa43f826e1e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-29-1774_demographic Alive '-- '-- '-- '-- 29991 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 527.0 '-- '-- dbf2bcbf-39a4-5c2a-8db3-883fffc89e0e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1774_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 133 65 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1774_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 340 '-- mg '-- '-- '-- '-- bdbe0a65-5e3e-42f5-a537-546e2cd7b0ad Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d3dd5e69-9752-4b50-9b1f-814afbc2c3dd Informed Consent 310 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1774 82 false '-- '-- '-- '-- -29991 '-- 1d15823e-4daa-5758-8481-cfa43f826e1e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-29-1774_demographic Alive '-- '-- '-- '-- 29991 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 527.0 '-- '-- dbf2bcbf-39a4-5c2a-8db3-883fffc89e0e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1774_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1774_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bfe166cc-21c1-4728-b6ad-7137c8b7aa09 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV d73a0a33-e4e8-44bd-9580-2038ab06583a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1313 62 false '-- '-- '-- '-- -22982 820 eb34da9e-5cca-54f5-8a3b-7a4745c1edb5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1313_demographic Dead '-- '-- '-- '-- 22982 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 820.0 '-- '-- 1ad23243-90b7-58dd-a896-f3a3432ad5f2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1313_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 547 394 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1313_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c9c7bc22-468c-48d9-8507-e8e8d742e8d7 '-- yes '-- '-- Chemotherapy +TCGA-OV d73a0a33-e4e8-44bd-9580-2038ab06583a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1313 62 false '-- '-- '-- '-- -22982 820 eb34da9e-5cca-54f5-8a3b-7a4745c1edb5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1313_demographic Dead '-- '-- '-- '-- 22982 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 820.0 '-- '-- 1ad23243-90b7-58dd-a896-f3a3432ad5f2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1313_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 151 29 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1313_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e9515711-ffd8-53a5-b970-1a4ff3a601d2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d73a0a33-e4e8-44bd-9580-2038ab06583a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1313 62 false '-- '-- '-- '-- -22982 820 eb34da9e-5cca-54f5-8a3b-7a4745c1edb5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1313_demographic Dead '-- '-- '-- '-- 22982 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 820.0 '-- '-- 1ad23243-90b7-58dd-a896-f3a3432ad5f2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1313_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 151 29 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1313_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f2107365-4254-473e-a355-aeaa149453c6 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d73a0a33-e4e8-44bd-9580-2038ab06583a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1313 62 false '-- '-- '-- '-- -22982 820 eb34da9e-5cca-54f5-8a3b-7a4745c1edb5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1313_demographic Dead '-- '-- '-- '-- 23376 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 394 '-- '-- '-- 3b4a2cbc-7618-47d6-906f-5b09f40a2b6a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1313_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1313_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1313_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 89c1005b-651e-444f-ba00-84e0ac9bd425 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV d73a0a33-e4e8-44bd-9580-2038ab06583a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1313 62 false '-- '-- '-- '-- -22982 820 eb34da9e-5cca-54f5-8a3b-7a4745c1edb5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1313_demographic Dead '-- '-- '-- '-- 23376 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 394 '-- '-- '-- 3b4a2cbc-7618-47d6-906f-5b09f40a2b6a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1313_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1313_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1313_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9d656652-a3ee-43f0-9a42-8bd145169173 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV d77ef9cf-f8e6-4ee9-8d4f-1106885f6b06 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1564 67 false '-- '-- '-- '-- -24668 787 3a32c00c-98b2-5f28-ac70-dc47e5e99798 '-- not reported female '-- '-- '-- '-- white TCGA-24-1564_demographic Dead '-- '-- '-- '-- 24668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 787.0 '-- '-- 049c7bc3-3d4a-5872-8d4a-eaffbf8187f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1564_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 406 333 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1564_treatment12 Topotecan '-- '-- '-- '-- '-- '-- '-- 33 '-- mg '-- '-- '-- '-- 1b5f9f14-98f9-485d-9cfe-34ae3b34ad38 '-- yes '-- '-- Chemotherapy +TCGA-OV d77ef9cf-f8e6-4ee9-8d4f-1106885f6b06 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1564 67 false '-- '-- '-- '-- -24668 787 3a32c00c-98b2-5f28-ac70-dc47e5e99798 '-- not reported female '-- '-- '-- '-- white TCGA-24-1564_demographic Dead '-- '-- '-- '-- 24668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 787.0 '-- '-- 049c7bc3-3d4a-5872-8d4a-eaffbf8187f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1564_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1564_treatment '-- '-- '-- '-- '-- '-- Primary Tumor Field '-- '-- '-- '-- '-- '-- '-- '-- 223471a9-7d76-54de-b753-01e84ad6be87 '-- yes '-- '-- Radiation, External Beam +TCGA-OV d77ef9cf-f8e6-4ee9-8d4f-1106885f6b06 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1564 67 false '-- '-- '-- '-- -24668 787 3a32c00c-98b2-5f28-ac70-dc47e5e99798 '-- not reported female '-- '-- '-- '-- white TCGA-24-1564_demographic Dead '-- '-- '-- '-- 24668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 787.0 '-- '-- 049c7bc3-3d4a-5872-8d4a-eaffbf8187f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1564_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 295 248 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1564_treatment10 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5080 '-- mg '-- '-- '-- '-- 3b5b1164-0577-4f53-8780-76ed8c8dfc84 '-- yes '-- '-- Chemotherapy +TCGA-OV d77ef9cf-f8e6-4ee9-8d4f-1106885f6b06 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1564 67 false '-- '-- '-- '-- -24668 787 3a32c00c-98b2-5f28-ac70-dc47e5e99798 '-- not reported female '-- '-- '-- '-- white TCGA-24-1564_demographic Dead '-- '-- '-- '-- 24668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 787.0 '-- '-- 049c7bc3-3d4a-5872-8d4a-eaffbf8187f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1564_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 295 248 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1564_treatment5 Amifostine '-- '-- '-- '-- '-- '-- '-- 5080 '-- mg '-- '-- '-- '-- 6e743e05-1e27-49cb-bcdf-0922cb45feda '-- yes '-- '-- Chemotherapy +TCGA-OV d77ef9cf-f8e6-4ee9-8d4f-1106885f6b06 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1564 67 false '-- '-- '-- '-- -24668 787 3a32c00c-98b2-5f28-ac70-dc47e5e99798 '-- not reported female '-- '-- '-- '-- white TCGA-24-1564_demographic Dead '-- '-- '-- '-- 24668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 787.0 '-- '-- 049c7bc3-3d4a-5872-8d4a-eaffbf8187f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1564_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- 736 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-1564_treatment11 Tamoxifen '-- '-- '-- '-- '-- '-- '-- 20 '-- mg '-- '-- '-- '-- 939a330c-747e-4e50-83f8-b02648740e4f '-- yes '-- '-- Hormone Therapy +TCGA-OV d77ef9cf-f8e6-4ee9-8d4f-1106885f6b06 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1564 67 false '-- '-- '-- '-- -24668 787 3a32c00c-98b2-5f28-ac70-dc47e5e99798 '-- not reported female '-- '-- '-- '-- white TCGA-24-1564_demographic Dead '-- '-- '-- '-- 24668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 787.0 '-- '-- 049c7bc3-3d4a-5872-8d4a-eaffbf8187f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1564_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 463 435 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1564_treatment7 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 136 '-- mg '-- '-- '-- '-- 9d8f06fc-24aa-4d0b-aaf9-190bdf262663 '-- yes '-- '-- Chemotherapy +TCGA-OV d77ef9cf-f8e6-4ee9-8d4f-1106885f6b06 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1564 67 false '-- '-- '-- '-- -24668 787 3a32c00c-98b2-5f28-ac70-dc47e5e99798 '-- not reported female '-- '-- '-- '-- white TCGA-24-1564_demographic Dead '-- '-- '-- '-- 24668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 787.0 '-- '-- 049c7bc3-3d4a-5872-8d4a-eaffbf8187f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1564_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 624 589 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1564_treatment8 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 2462 '-- mg '-- '-- '-- '-- a2fa824b-c072-48de-905b-5821ba9bf08a '-- yes '-- '-- Chemotherapy +TCGA-OV d77ef9cf-f8e6-4ee9-8d4f-1106885f6b06 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1564 67 false '-- '-- '-- '-- -24668 787 3a32c00c-98b2-5f28-ac70-dc47e5e99798 '-- not reported female '-- '-- '-- '-- white TCGA-24-1564_demographic Dead '-- '-- '-- '-- 24668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 787.0 '-- '-- 049c7bc3-3d4a-5872-8d4a-eaffbf8187f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1564_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 568 499 '-- '-- Progressive Disease '-- '-- '-- '-- 11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1564_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1496 '-- mg '-- '-- '-- '-- a6d6d5af-9060-4549-bff3-f33f321d0821 '-- yes '-- '-- Chemotherapy +TCGA-OV d77ef9cf-f8e6-4ee9-8d4f-1106885f6b06 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1564 67 false '-- '-- '-- '-- -24668 787 3a32c00c-98b2-5f28-ac70-dc47e5e99798 '-- not reported female '-- '-- '-- '-- white TCGA-24-1564_demographic Dead '-- '-- '-- '-- 24668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 787.0 '-- '-- 049c7bc3-3d4a-5872-8d4a-eaffbf8187f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1564_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 624 589 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-1564_treatment6 Etoposide '-- '-- '-- '-- '-- '-- '-- 1500 '-- mg '-- '-- '-- '-- c5322b17-5be1-46d2-93db-8b6319462704 '-- yes '-- '-- Chemotherapy +TCGA-OV d77ef9cf-f8e6-4ee9-8d4f-1106885f6b06 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1564 67 false '-- '-- '-- '-- -24668 787 3a32c00c-98b2-5f28-ac70-dc47e5e99798 '-- not reported female '-- '-- '-- '-- white TCGA-24-1564_demographic Dead '-- '-- '-- '-- 24668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 787.0 '-- '-- 049c7bc3-3d4a-5872-8d4a-eaffbf8187f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1564_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 116 8 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1564_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 779 '-- mg '-- '-- '-- '-- e1973295-b7b1-4f65-8b03-d88adae9e88b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d77ef9cf-f8e6-4ee9-8d4f-1106885f6b06 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1564 67 false '-- '-- '-- '-- -24668 787 3a32c00c-98b2-5f28-ac70-dc47e5e99798 '-- not reported female '-- '-- '-- '-- white TCGA-24-1564_demographic Dead '-- '-- '-- '-- 24668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 787.0 '-- '-- 049c7bc3-3d4a-5872-8d4a-eaffbf8187f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1564_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 116 8 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1564_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1396 '-- mg '-- '-- '-- '-- ef979a6b-9734-4d58-9b1f-81ae653dc54e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d77ef9cf-f8e6-4ee9-8d4f-1106885f6b06 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1564 67 false '-- '-- '-- '-- -24668 787 3a32c00c-98b2-5f28-ac70-dc47e5e99798 '-- not reported female '-- '-- '-- '-- white TCGA-24-1564_demographic Dead '-- '-- '-- '-- 24668 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 787.0 '-- '-- 049c7bc3-3d4a-5872-8d4a-eaffbf8187f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1564_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 295 248 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1564_treatment9 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1200 '-- mg '-- '-- '-- '-- f1e890be-5279-4163-9268-24f147417082 '-- yes '-- '-- Chemotherapy +TCGA-OV d77ef9cf-f8e6-4ee9-8d4f-1106885f6b06 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1564 67 false '-- '-- '-- '-- -24668 787 3a32c00c-98b2-5f28-ac70-dc47e5e99798 '-- not reported female '-- '-- '-- '-- white TCGA-24-1564_demographic Dead '-- '-- '-- '-- 24889 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 221 '-- '-- '-- d9da33e6-2e6b-4e86-9d5c-f817ff150db3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1564_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1564_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1564_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0f7dea7e-8faf-41c0-9414-179abcff6377 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV d77ef9cf-f8e6-4ee9-8d4f-1106885f6b06 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1564 67 false '-- '-- '-- '-- -24668 787 3a32c00c-98b2-5f28-ac70-dc47e5e99798 '-- not reported female '-- '-- '-- '-- white TCGA-24-1564_demographic Dead '-- '-- '-- '-- 24889 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 221 '-- '-- '-- d9da33e6-2e6b-4e86-9d5c-f817ff150db3 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1564_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1564_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1564_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 42069717-b60d-44b4-ba22-4e7b2c6b122f '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV d7925dfc-18ce-46ab-a47b-9d06eacc96d0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2354 63 false '-- '-- '-- '-- '-- 1046 87faef0a-06fb-53fa-b2e6-7ac6f4cb94c1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-59-2354_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 462 '-- '-- '-- 1a99e81a-0fd9-4996-b994-99842226692b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-59-2354_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-59-2354_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-2354_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 45a2565f-9be8-4d56-921d-a25d796b1f8f '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV d7925dfc-18ce-46ab-a47b-9d06eacc96d0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2354 63 false '-- '-- '-- '-- '-- 1046 87faef0a-06fb-53fa-b2e6-7ac6f4cb94c1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-59-2354_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 462 '-- '-- '-- 1a99e81a-0fd9-4996-b994-99842226692b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-59-2354_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-59-2354_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-2354_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b5696de2-6e85-4a95-9a0c-f19685c00a80 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV d7925dfc-18ce-46ab-a47b-9d06eacc96d0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2354 63 false '-- '-- '-- '-- '-- 1046 87faef0a-06fb-53fa-b2e6-7ac6f4cb94c1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-59-2354_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1046.0 '-- '-- d102e815-6af9-5d9f-b5ff-36b7b8730c4b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-59-2354_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-2354_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9a6346ee-be59-4932-b915-3daab940033a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d7925dfc-18ce-46ab-a47b-9d06eacc96d0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2354 63 false '-- '-- '-- '-- '-- 1046 87faef0a-06fb-53fa-b2e6-7ac6f4cb94c1 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-59-2354_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1046.0 '-- '-- d102e815-6af9-5d9f-b5ff-36b7b8730c4b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-59-2354_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-2354_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dcbd83c4-6827-5b46-8f65-b68ba8d3b247 '-- yes '-- '-- Chemotherapy +TCGA-OV d7b3156d-672a-4a55-868d-9ca6a09fcb0f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1474 57 false '-- '-- '-- '-- -20902 676 4812aee4-fa81-5936-a941-fc0d01dba26d '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1474_demographic Dead '-- '-- '-- '-- 21234 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 332 '-- '-- '-- b25cd618-4a70-4b9a-a75d-227666c21295 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1474_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1474_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1474_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2400da21-e14c-4bcd-b792-bb4003e8ebbb '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV d7b3156d-672a-4a55-868d-9ca6a09fcb0f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1474 57 false '-- '-- '-- '-- -20902 676 4812aee4-fa81-5936-a941-fc0d01dba26d '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1474_demographic Dead '-- '-- '-- '-- 21234 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 332 '-- '-- '-- b25cd618-4a70-4b9a-a75d-227666c21295 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1474_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1474_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1474_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- bfd3390d-341a-4fc4-b025-402d4c49ecf4 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV d7b3156d-672a-4a55-868d-9ca6a09fcb0f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1474 57 false '-- '-- '-- '-- -20902 676 4812aee4-fa81-5936-a941-fc0d01dba26d '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1474_demographic Dead '-- '-- '-- '-- 20902 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 676.0 '-- '-- ed25dede-8f3b-53e0-b342-842614bc07b4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1474_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 123 18 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1474_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4050 '-- mg '-- '-- '-- '-- 25df8049-5e75-4965-b4d5-a2e0a68723c0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d7b3156d-672a-4a55-868d-9ca6a09fcb0f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1474 57 false '-- '-- '-- '-- -20902 676 4812aee4-fa81-5936-a941-fc0d01dba26d '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1474_demographic Dead '-- '-- '-- '-- 20902 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 676.0 '-- '-- ed25dede-8f3b-53e0-b342-842614bc07b4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1474_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 635 454 '-- '-- Progressive Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1474_treatment Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 2365 '-- mg '-- '-- '-- '-- 3e543b09-92f6-5b4d-874c-2a0176cd2714 '-- yes '-- '-- Chemotherapy +TCGA-OV d7b3156d-672a-4a55-868d-9ca6a09fcb0f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1474 57 false '-- '-- '-- '-- -20902 676 4812aee4-fa81-5936-a941-fc0d01dba26d '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1474_demographic Dead '-- '-- '-- '-- 20902 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 676.0 '-- '-- ed25dede-8f3b-53e0-b342-842614bc07b4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1474_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 431 350 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1474_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- 57 '-- mg '-- '-- '-- '-- 6362ad1d-0f4e-4fc2-84f7-1519c9879f1f '-- yes '-- '-- Chemotherapy +TCGA-OV d7b3156d-672a-4a55-868d-9ca6a09fcb0f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1474 57 false '-- '-- '-- '-- -20902 676 4812aee4-fa81-5936-a941-fc0d01dba26d '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1474_demographic Dead '-- '-- '-- '-- 20902 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 676.0 '-- '-- ed25dede-8f3b-53e0-b342-842614bc07b4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1474_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 123 18 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1474_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1962 '-- mg '-- '-- '-- '-- 795fdfcc-8fac-4a82-a3bc-fb52816ff1ff Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d7b3156d-672a-4a55-868d-9ca6a09fcb0f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1474 57 false '-- '-- '-- '-- -20902 676 4812aee4-fa81-5936-a941-fc0d01dba26d '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1474_demographic Dead '-- '-- '-- '-- 20902 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 676.0 '-- '-- ed25dede-8f3b-53e0-b342-842614bc07b4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1474_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 635 454 '-- '-- Progressive Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1474_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 302 '-- mg '-- '-- '-- '-- a7c4853e-fd2a-457c-a158-f87ad16c520c '-- yes '-- '-- Chemotherapy +TCGA-OV d7b3156d-672a-4a55-868d-9ca6a09fcb0f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1474 57 false '-- '-- '-- '-- -20902 676 4812aee4-fa81-5936-a941-fc0d01dba26d '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1474_demographic Dead '-- '-- '-- '-- 20902 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 676.0 '-- '-- ed25dede-8f3b-53e0-b342-842614bc07b4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1474_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1474_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f40c73b3-b41a-44bb-8fe1-2ac291e5ec81 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV d7f82e34-5b34-4e8c-a0cf-d7561bcea43c Informed Consent 135 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-0996 59 false '-- '-- '-- '-- -21572 '-- 8b3c2a3f-e3f4-58fc-9358-78d3c10eeef2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-0996_demographic Alive '-- '-- '-- '-- 21572 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2196.0 '-- '-- 6551e851-3643-5c34-97cb-133390070998 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-0996_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 590 443 '-- '-- '-- '-- '-- '-- '-- 15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-20-0996_treatment Topotecan '-- '-- '-- '-- '-- '-- '-- 4 '-- mg/m2 '-- '-- '-- '-- 04281c15-7839-5628-a792-a3682c7b2db0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d7f82e34-5b34-4e8c-a0cf-d7561bcea43c Informed Consent 135 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-0996 59 false '-- '-- '-- '-- -21572 '-- 8b3c2a3f-e3f4-58fc-9358-78d3c10eeef2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-0996_demographic Alive '-- '-- '-- '-- 21572 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2196.0 '-- '-- 6551e851-3643-5c34-97cb-133390070998 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-0996_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-20-0996_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 59e54fd4-d48f-4d33-996e-f72ac3617d4b Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV d7f82e34-5b34-4e8c-a0cf-d7561bcea43c Informed Consent 135 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-0996 59 false '-- '-- '-- '-- -21572 '-- 8b3c2a3f-e3f4-58fc-9358-78d3c10eeef2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-0996_demographic Alive '-- '-- '-- '-- 21572 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2196.0 '-- '-- 6551e851-3643-5c34-97cb-133390070998 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-0996_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 224 168 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-0996_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9423f5b8-a605-4b98-8432-1e4c23782b5b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d7f82e34-5b34-4e8c-a0cf-d7561bcea43c Informed Consent 135 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-0996 59 false '-- '-- '-- '-- -21572 '-- 8b3c2a3f-e3f4-58fc-9358-78d3c10eeef2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-0996_demographic Alive '-- '-- '-- '-- 21572 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2196.0 '-- '-- 6551e851-3643-5c34-97cb-133390070998 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-0996_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 224 168 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-0996_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- afb813f3-5645-413f-b7e2-1445861cd73e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d7f82e34-5b34-4e8c-a0cf-d7561bcea43c Informed Consent 135 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-0996 59 false '-- '-- '-- '-- -21572 '-- 8b3c2a3f-e3f4-58fc-9358-78d3c10eeef2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-0996_demographic Alive '-- '-- '-- '-- 21572 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2196.0 '-- '-- 6551e851-3643-5c34-97cb-133390070998 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-0996_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1078 616 '-- '-- '-- '-- '-- '-- '-- 13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-20-0996_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 40 '-- mg/m2 '-- '-- '-- '-- d621e0cc-49d6-430a-b6ba-853e70cd858d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d7f82e34-5b34-4e8c-a0cf-d7561bcea43c Informed Consent 135 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-0996 59 false '-- '-- '-- '-- -21572 '-- 8b3c2a3f-e3f4-58fc-9358-78d3c10eeef2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-0996_demographic Alive '-- '-- '-- '-- 21572 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2196.0 '-- '-- 6551e851-3643-5c34-97cb-133390070998 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-0996_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- 1106 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-20-0996_treatment4 Etoposide '-- '-- '-- '-- '-- '-- '-- 50 '-- mg '-- '-- '-- '-- e8690abf-a9b8-4480-97a1-ce7df8558a40 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d86adfac-56be-4a69-9315-5a90b4113e65 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1652 76 false '-- '-- '-- '-- -28101 969 08bebec2-0364-5268-b201-6422af495971 '-- not reported female '-- '-- '-- '-- white TCGA-04-1652_demographic Dead '-- '-- '-- '-- 28981 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 880 '-- '-- '-- 6398d6ba-17cc-4fa0-874f-940c6a9091df false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1652_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1652_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1652_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 81ed1646-fd00-4837-ac0a-3552ce1c192d '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV d86adfac-56be-4a69-9315-5a90b4113e65 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1652 76 false '-- '-- '-- '-- -28101 969 08bebec2-0364-5268-b201-6422af495971 '-- not reported female '-- '-- '-- '-- white TCGA-04-1652_demographic Dead '-- '-- '-- '-- 28981 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 880 '-- '-- '-- 6398d6ba-17cc-4fa0-874f-940c6a9091df false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1652_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1652_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1652_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9d3786e7-fa6c-46f9-89fe-3e03a573ed14 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV d86adfac-56be-4a69-9315-5a90b4113e65 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1652 76 false '-- '-- '-- '-- -28101 969 08bebec2-0364-5268-b201-6422af495971 '-- not reported female '-- '-- '-- '-- white TCGA-04-1652_demographic Dead '-- '-- '-- '-- 28101 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 969.0 '-- '-- 847dd3b8-484f-56b5-9a42-091d919cbc0e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1652_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1652_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 067cd234-1e6f-4b26-bf88-fd45085bed79 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV d86adfac-56be-4a69-9315-5a90b4113e65 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1652 76 false '-- '-- '-- '-- -28101 969 08bebec2-0364-5268-b201-6422af495971 '-- not reported female '-- '-- '-- '-- white TCGA-04-1652_demographic Dead '-- '-- '-- '-- 28101 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 969.0 '-- '-- 847dd3b8-484f-56b5-9a42-091d919cbc0e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1652_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 199 60 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1652_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 0dffcfb4-df5a-589e-aa0e-6a414aa9e51a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d86adfac-56be-4a69-9315-5a90b4113e65 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1652 76 false '-- '-- '-- '-- -28101 969 08bebec2-0364-5268-b201-6422af495971 '-- not reported female '-- '-- '-- '-- white TCGA-04-1652_demographic Dead '-- '-- '-- '-- 28101 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 969.0 '-- '-- 847dd3b8-484f-56b5-9a42-091d919cbc0e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1652_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 199 60 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1652_treatment4 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 800 '-- mg/m2 '-- '-- '-- '-- 1dfea611-8924-4afb-9196-9a3e75562f9f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d86adfac-56be-4a69-9315-5a90b4113e65 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1652 76 false '-- '-- '-- '-- -28101 969 08bebec2-0364-5268-b201-6422af495971 '-- not reported female '-- '-- '-- '-- white TCGA-04-1652_demographic Dead '-- '-- '-- '-- 28101 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 969.0 '-- '-- 847dd3b8-484f-56b5-9a42-091d919cbc0e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1652_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 955 894 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1652_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- 30 '-- mg/m2 '-- '-- '-- '-- c9e94566-dc4c-4d09-8563-2c64fd05ea9c '-- yes '-- '-- Chemotherapy +TCGA-OV d86adfac-56be-4a69-9315-5a90b4113e65 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1652 76 false '-- '-- '-- '-- -28101 969 08bebec2-0364-5268-b201-6422af495971 '-- not reported female '-- '-- '-- '-- white TCGA-04-1652_demographic Dead '-- '-- '-- '-- 28101 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 969.0 '-- '-- 847dd3b8-484f-56b5-9a42-091d919cbc0e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1652_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 199 60 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1652_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- f7985d86-4175-4009-9cc9-c3acff648412 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV d8d13aa4-45d5-4e1a-a6cf-895bdf05e7b2 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0760 63 false '-- '-- '-- '-- -23036 351 a21a3737-2000-5301-893e-32381b15763d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0760_demographic Dead '-- '-- '-- '-- 23036 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 351.0 '-- '-- d11f1746-a660-5998-8830-1b5d634182a1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0760_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0760_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 16d4d5b9-a87f-5014-9c9d-f47adced18a6 Adjuvant yes Not Reported '-- Pharmaceutical Therapy, NOS +TCGA-OV d8d13aa4-45d5-4e1a-a6cf-895bdf05e7b2 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0760 63 false '-- '-- '-- '-- -23036 351 a21a3737-2000-5301-893e-32381b15763d '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0760_demographic Dead '-- '-- '-- '-- 23036 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 351.0 '-- '-- d11f1746-a660-5998-8830-1b5d634182a1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0760_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0760_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c9190dfd-69f9-479e-8a38-2b4468687132 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV da274941-3edd-420b-9262-bbd959923c67 Informed Consent 1016 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1946 30 false '-- '-- '-- '-- -11146 '-- 52037f73-8727-533e-ad4c-c42bb53d20a2 '-- not reported female '-- '-- '-- '-- not reported TCGA-31-1946_demographic Alive '-- '-- '-- '-- 11810 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 664 '-- '-- '-- 1a230ef7-744d-4447-94df-5244ee86153e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-31-1946_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-31-1946_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1946_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0be5c320-def7-4c0c-b75b-b69213cb6b8f '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV da274941-3edd-420b-9262-bbd959923c67 Informed Consent 1016 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1946 30 false '-- '-- '-- '-- -11146 '-- 52037f73-8727-533e-ad4c-c42bb53d20a2 '-- not reported female '-- '-- '-- '-- not reported TCGA-31-1946_demographic Alive '-- '-- '-- '-- 11810 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 664 '-- '-- '-- 1a230ef7-744d-4447-94df-5244ee86153e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-31-1946_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-31-1946_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1946_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f72bc4a1-188f-4c8c-8d87-b1413d8f74cb '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV da274941-3edd-420b-9262-bbd959923c67 Informed Consent 1016 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1946 30 false '-- '-- '-- '-- -11146 '-- 52037f73-8727-533e-ad4c-c42bb53d20a2 '-- not reported female '-- '-- '-- '-- not reported TCGA-31-1946_demographic Alive '-- '-- '-- '-- 11146 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 918.0 '-- '-- c421708e-784f-5520-8391-a1d9ce7ae6ae true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1946_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 828 771 '-- '-- Not Reported '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1946_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1500 '-- mg '-- '-- '-- '-- 0672d8f5-da7e-40d4-8d24-1f6d0a52605b Not Reported yes '-- '-- Chemotherapy +TCGA-OV da274941-3edd-420b-9262-bbd959923c67 Informed Consent 1016 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1946 30 false '-- '-- '-- '-- -11146 '-- 52037f73-8727-533e-ad4c-c42bb53d20a2 '-- not reported female '-- '-- '-- '-- not reported TCGA-31-1946_demographic Alive '-- '-- '-- '-- 11146 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 918.0 '-- '-- c421708e-784f-5520-8391-a1d9ce7ae6ae true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1946_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 743 687 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1946_treatment4 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 144 '-- mg '-- '-- '-- '-- 22bbe37d-d684-4830-9bc1-2c9b70b647c6 '-- yes '-- '-- Chemotherapy +TCGA-OV da274941-3edd-420b-9262-bbd959923c67 Informed Consent 1016 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1946 30 false '-- '-- '-- '-- -11146 '-- 52037f73-8727-533e-ad4c-c42bb53d20a2 '-- not reported female '-- '-- '-- '-- not reported TCGA-31-1946_demographic Alive '-- '-- '-- '-- 11146 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 918.0 '-- '-- c421708e-784f-5520-8391-a1d9ce7ae6ae true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1946_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 148 64 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1946_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2200 '-- mg '-- '-- '-- '-- 2511b853-c1cf-4eb1-90c1-d692b2390e54 '-- yes '-- '-- Chemotherapy +TCGA-OV da274941-3edd-420b-9262-bbd959923c67 Informed Consent 1016 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1946 30 false '-- '-- '-- '-- -11146 '-- 52037f73-8727-533e-ad4c-c42bb53d20a2 '-- not reported female '-- '-- '-- '-- not reported TCGA-31-1946_demographic Alive '-- '-- '-- '-- 11146 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 918.0 '-- '-- c421708e-784f-5520-8391-a1d9ce7ae6ae true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1946_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1946_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a27306c3-6700-4ed0-80d6-7f3e42da196b Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV da274941-3edd-420b-9262-bbd959923c67 Informed Consent 1016 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1946 30 false '-- '-- '-- '-- -11146 '-- 52037f73-8727-533e-ad4c-c42bb53d20a2 '-- not reported female '-- '-- '-- '-- not reported TCGA-31-1946_demographic Alive '-- '-- '-- '-- 11146 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 918.0 '-- '-- c421708e-784f-5520-8391-a1d9ce7ae6ae true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1946_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 148 64 '-- '-- Progressive Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1946_treatment Gemcitabine '-- '-- '-- '-- '-- '-- '-- 12000 '-- mg '-- '-- '-- '-- d8c671d0-213e-5d91-af1a-cdb539436e7b '-- yes '-- '-- Chemotherapy +TCGA-OV da274941-3edd-420b-9262-bbd959923c67 Informed Consent 1016 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1946 30 false '-- '-- '-- '-- -11146 '-- 52037f73-8727-533e-ad4c-c42bb53d20a2 '-- not reported female '-- '-- '-- '-- not reported TCGA-31-1946_demographic Alive '-- '-- '-- '-- 11146 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 918.0 '-- '-- c421708e-784f-5520-8391-a1d9ce7ae6ae true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1946_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 743 687 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1946_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 180 '-- mg '-- '-- '-- '-- f6870cd7-c1ed-4e5a-b774-739ed4c30964 '-- yes '-- '-- Chemotherapy +TCGA-OV da274941-3edd-420b-9262-bbd959923c67 Informed Consent 1016 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1946 30 false '-- '-- '-- '-- -11146 '-- 52037f73-8727-533e-ad4c-c42bb53d20a2 '-- not reported female '-- '-- '-- '-- not reported TCGA-31-1946_demographic Alive '-- '-- '-- '-- 11146 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 918.0 '-- '-- c421708e-784f-5520-8391-a1d9ce7ae6ae true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1946_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 43 22 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1946_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1400 '-- mg '-- '-- '-- '-- fa81c8cb-7b9c-4e02-985e-e49a8ee44ee4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV da274941-3edd-420b-9262-bbd959923c67 Informed Consent 1016 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1946 30 false '-- '-- '-- '-- -11146 '-- 52037f73-8727-533e-ad4c-c42bb53d20a2 '-- not reported female '-- '-- '-- '-- not reported TCGA-31-1946_demographic Alive '-- '-- '-- '-- 11146 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 918.0 '-- '-- c421708e-784f-5520-8391-a1d9ce7ae6ae true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1946_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 43 22 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1946_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 260 '-- mg '-- '-- '-- '-- fde92d83-d06b-4bdc-8f02-ecbefcb546c1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV dac8d825-dd47-47ed-a426-0ee75feb76f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1859 56 false '-- '-- '-- '-- -20498 1463 16466d80-d2a3-5a03-b770-d501569e6035 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1859_demographic Dead '-- '-- '-- '-- 20498 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1463.0 '-- '-- 396466b8-157f-528b-b6bd-0c85653dc7f1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1859_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1166 1135 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1859_treatment11 Anastrozole '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 14a433c7-41f6-444b-9d76-7a4f3d3a7972 '-- yes '-- '-- Hormone Therapy +TCGA-OV dac8d825-dd47-47ed-a426-0ee75feb76f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1859 56 false '-- '-- '-- '-- -20498 1463 16466d80-d2a3-5a03-b770-d501569e6035 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1859_demographic Dead '-- '-- '-- '-- 20498 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1463.0 '-- '-- 396466b8-157f-528b-b6bd-0c85653dc7f1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1859_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1131 1104 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1859_treatment12 Sargramostim '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 19954def-ea0d-43e3-a2c2-60a7e41e701e '-- yes '-- '-- Immunotherapy (Including Vaccines) +TCGA-OV dac8d825-dd47-47ed-a426-0ee75feb76f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1859 56 false '-- '-- '-- '-- -20498 1463 16466d80-d2a3-5a03-b770-d501569e6035 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1859_demographic Dead '-- '-- '-- '-- 20498 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1463.0 '-- '-- 396466b8-157f-528b-b6bd-0c85653dc7f1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1859_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 199 31 '-- '-- '-- '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1859_treatment9 Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 25 '-- mg/m2 '-- '-- '-- '-- 39a50987-7a78-4eab-a31d-370e9e260751 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV dac8d825-dd47-47ed-a426-0ee75feb76f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1859 56 false '-- '-- '-- '-- -20498 1463 16466d80-d2a3-5a03-b770-d501569e6035 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1859_demographic Dead '-- '-- '-- '-- 20498 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1463.0 '-- '-- 396466b8-157f-528b-b6bd-0c85653dc7f1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1859_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1376 1214 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1859_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 80 '-- mg/m2 '-- '-- '-- '-- 4214394d-ca87-564e-aff7-7857208b64c9 '-- yes '-- '-- Chemotherapy +TCGA-OV dac8d825-dd47-47ed-a426-0ee75feb76f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1859 56 false '-- '-- '-- '-- -20498 1463 16466d80-d2a3-5a03-b770-d501569e6035 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1859_demographic Dead '-- '-- '-- '-- 20498 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1463.0 '-- '-- 396466b8-157f-528b-b6bd-0c85653dc7f1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1859_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 199 31 '-- '-- '-- '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1859_treatment8 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 4b25a743-914e-475b-a224-a6a0d79c6acb Adjuvant yes '-- '-- Chemotherapy +TCGA-OV dac8d825-dd47-47ed-a426-0ee75feb76f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1859 56 false '-- '-- '-- '-- -20498 1463 16466d80-d2a3-5a03-b770-d501569e6035 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1859_demographic Dead '-- '-- '-- '-- 20498 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1463.0 '-- '-- 396466b8-157f-528b-b6bd-0c85653dc7f1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1859_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 199 31 '-- '-- '-- '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1859_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 624d0852-a95d-47b9-ad99-1516d871fd8d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV dac8d825-dd47-47ed-a426-0ee75feb76f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1859 56 false '-- '-- '-- '-- -20498 1463 16466d80-d2a3-5a03-b770-d501569e6035 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1859_demographic Dead '-- '-- '-- '-- 20498 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1463.0 '-- '-- 396466b8-157f-528b-b6bd-0c85653dc7f1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1859_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1197 1162 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1859_treatment3 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 40 '-- mg/m2 '-- '-- '-- '-- 6c22f87b-33ee-4cae-aebd-544490c3e45d '-- yes '-- '-- Chemotherapy +TCGA-OV dac8d825-dd47-47ed-a426-0ee75feb76f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1859 56 false '-- '-- '-- '-- -20498 1463 16466d80-d2a3-5a03-b770-d501569e6035 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1859_demographic Dead '-- '-- '-- '-- 20498 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1463.0 '-- '-- 396466b8-157f-528b-b6bd-0c85653dc7f1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1859_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1379 1334 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-30-1859_treatment5 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6df35227-e79f-4eb8-8a97-23eb850efb17 '-- yes '-- '-- Chemotherapy +TCGA-OV dac8d825-dd47-47ed-a426-0ee75feb76f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1859 56 false '-- '-- '-- '-- -20498 1463 16466d80-d2a3-5a03-b770-d501569e6035 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1859_demographic Dead '-- '-- '-- '-- 20498 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1463.0 '-- '-- 396466b8-157f-528b-b6bd-0c85653dc7f1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1859_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 1103 982 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1859_treatment10 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 91ce2b9f-1837-445c-9c78-63bda85e92d5 '-- yes '-- '-- Chemotherapy +TCGA-OV dac8d825-dd47-47ed-a426-0ee75feb76f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1859 56 false '-- '-- '-- '-- -20498 1463 16466d80-d2a3-5a03-b770-d501569e6035 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1859_demographic Dead '-- '-- '-- '-- 20498 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1463.0 '-- '-- 396466b8-157f-528b-b6bd-0c85653dc7f1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1859_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 199 31 '-- '-- '-- '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1859_treatment7 Topotecan '-- '-- '-- '-- '-- '-- '-- 1 '-- mg/m2 '-- '-- '-- '-- 98c6e678-24bc-4287-b55e-4f1e88b42dfb Adjuvant yes '-- '-- Chemotherapy +TCGA-OV dac8d825-dd47-47ed-a426-0ee75feb76f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1859 56 false '-- '-- '-- '-- -20498 1463 16466d80-d2a3-5a03-b770-d501569e6035 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1859_demographic Dead '-- '-- '-- '-- 20498 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1463.0 '-- '-- 396466b8-157f-528b-b6bd-0c85653dc7f1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1859_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1859_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9de92d5d-4636-48d8-be48-b76ce3d67e6f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV dac8d825-dd47-47ed-a426-0ee75feb76f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1859 56 false '-- '-- '-- '-- -20498 1463 16466d80-d2a3-5a03-b770-d501569e6035 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1859_demographic Dead '-- '-- '-- '-- 20498 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1463.0 '-- '-- 396466b8-157f-528b-b6bd-0c85653dc7f1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1859_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 199 31 '-- '-- '-- '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1859_treatment6 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1000 '-- mg/m2 '-- '-- '-- '-- ce503c1c-566c-4b9d-bb6c-f450586d694a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV dac8d825-dd47-47ed-a426-0ee75feb76f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1859 56 false '-- '-- '-- '-- -20498 1463 16466d80-d2a3-5a03-b770-d501569e6035 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1859_demographic Dead '-- '-- '-- '-- 20498 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1463.0 '-- '-- 396466b8-157f-528b-b6bd-0c85653dc7f1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1859_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 593 369 '-- '-- Progressive Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1859_treatment2 Trabectedin '-- '-- '-- '-- '-- '-- '-- 500 '-- mg/m2 '-- '-- '-- '-- de1e747b-06d6-43a0-9edf-5c5d0e608118 '-- yes '-- '-- Chemotherapy +TCGA-OV dac8d825-dd47-47ed-a426-0ee75feb76f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1859 56 false '-- '-- '-- '-- -20498 1463 16466d80-d2a3-5a03-b770-d501569e6035 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1859_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b6e69df5-8ce5-4401-9756-d81a54632d4d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1859_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1859_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 210 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1859_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3f56f405-6ceb-4eb4-96bf-04deb2e6ddb5 '-- yes '-- '-- Surgery, NOS +TCGA-OV dac8d825-dd47-47ed-a426-0ee75feb76f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1859 56 false '-- '-- '-- '-- -20498 1463 16466d80-d2a3-5a03-b770-d501569e6035 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1859_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b6e69df5-8ce5-4401-9756-d81a54632d4d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1859_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1859_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1859_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 65e412cb-23d3-403a-88dc-9d129b3a4da7 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV dac8d825-dd47-47ed-a426-0ee75feb76f3 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1859 56 false '-- '-- '-- '-- -20498 1463 16466d80-d2a3-5a03-b770-d501569e6035 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1859_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b6e69df5-8ce5-4401-9756-d81a54632d4d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-30-1859_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-30-1859_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1859_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e2e98c03-25af-4120-a008-902ef3a276a1 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV dac96910-0cb2-44ea-b108-2d6d51b07112 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1510 62 false '-- '-- '-- '-- -22708 1359 d5a00182-83dc-5ef7-9d6a-3caf42ebc893 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1510_demographic Dead '-- '-- '-- '-- 23897 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 1189 '-- '-- '-- c87ea609-1d93-4150-a138-6bb571e1c677 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1510_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1510_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV dac96910-0cb2-44ea-b108-2d6d51b07112 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1510 62 false '-- '-- '-- '-- -22708 1359 d5a00182-83dc-5ef7-9d6a-3caf42ebc893 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1510_demographic Dead '-- '-- '-- '-- 22708 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1359.0 '-- '-- f0fc4512-b8f5-52b9-848e-eb15cdedcf49 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1510_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 174 62 '-- '-- '-- '-- '-- '-- '-- 6 '-- 300.0 mg '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1510_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8268f7cf-25f4-4e4f-96f0-8c6e533ee305 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV dac96910-0cb2-44ea-b108-2d6d51b07112 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1510 62 false '-- '-- '-- '-- -22708 1359 d5a00182-83dc-5ef7-9d6a-3caf42ebc893 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1510_demographic Dead '-- '-- '-- '-- 22708 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1359.0 '-- '-- f0fc4512-b8f5-52b9-848e-eb15cdedcf49 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1510_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1510_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ec3494c9-2b41-4cff-b5c2-cbe4bd63e713 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV dac96910-0cb2-44ea-b108-2d6d51b07112 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1510 62 false '-- '-- '-- '-- -22708 1359 d5a00182-83dc-5ef7-9d6a-3caf42ebc893 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1510_demographic Dead '-- '-- '-- '-- 22708 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1359.0 '-- '-- f0fc4512-b8f5-52b9-848e-eb15cdedcf49 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1510_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 174 62 '-- '-- '-- '-- '-- '-- '-- 6 '-- 325.0 mg '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1510_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fe1299cf-07a6-5314-b980-6d27541634b1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV dc5a6ce7-01e5-408d-812e-e3e0ddc1cde5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2109 40 false '-- '-- '-- '-- -14900 629 0fc3268e-adb3-5388-9bfd-2e6056af74e5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2109_demographic Dead '-- '-- '-- '-- 15365 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 465 '-- '-- '-- a2ece225-4550-4e28-9886-2e5365ae0ba4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2109_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2109_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2109_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c1820c5b-aca9-46e0-baae-34b9dda4af74 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV dc5a6ce7-01e5-408d-812e-e3e0ddc1cde5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2109 40 false '-- '-- '-- '-- -14900 629 0fc3268e-adb3-5388-9bfd-2e6056af74e5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2109_demographic Dead '-- '-- '-- '-- 15365 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 465 '-- '-- '-- a2ece225-4550-4e28-9886-2e5365ae0ba4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-2109_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-2109_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2109_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c34bb3cc-3f21-47bb-99bf-0963814c3ac3 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV dc5a6ce7-01e5-408d-812e-e3e0ddc1cde5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2109 40 false '-- '-- '-- '-- -14900 629 0fc3268e-adb3-5388-9bfd-2e6056af74e5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2109_demographic Dead '-- '-- '-- '-- 14900 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 629.0 '-- '-- d7e955fc-4cf9-5b0a-8555-41d566bd4e64 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2109_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 601 486 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2109_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 325 '-- mg '-- '-- '-- '-- 15d4f003-5ff6-4832-8d80-c7ad7b725d95 '-- yes '-- '-- Chemotherapy +TCGA-OV dc5a6ce7-01e5-408d-812e-e3e0ddc1cde5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2109 40 false '-- '-- '-- '-- -14900 629 0fc3268e-adb3-5388-9bfd-2e6056af74e5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2109_demographic Dead '-- '-- '-- '-- 14900 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 629.0 '-- '-- d7e955fc-4cf9-5b0a-8555-41d566bd4e64 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2109_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 253 14 '-- '-- '-- '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2109_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 8910 '-- mg '-- '-- '-- '-- 24b59162-47f1-4964-a377-e28e7b3899ba Adjuvant yes '-- '-- Chemotherapy +TCGA-OV dc5a6ce7-01e5-408d-812e-e3e0ddc1cde5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2109 40 false '-- '-- '-- '-- -14900 629 0fc3268e-adb3-5388-9bfd-2e6056af74e5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2109_demographic Dead '-- '-- '-- '-- 14900 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 629.0 '-- '-- d7e955fc-4cf9-5b0a-8555-41d566bd4e64 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2109_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2109_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3fecd6a1-1427-4755-a6fd-48951ea65340 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV dc5a6ce7-01e5-408d-812e-e3e0ddc1cde5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2109 40 false '-- '-- '-- '-- -14900 629 0fc3268e-adb3-5388-9bfd-2e6056af74e5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2109_demographic Dead '-- '-- '-- '-- 14900 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 629.0 '-- '-- d7e955fc-4cf9-5b0a-8555-41d566bd4e64 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2109_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 601 486 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2109_treatment4 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 9060 '-- mg '-- '-- '-- '-- f63632de-dc36-4eff-a518-0dd9ff52d6b9 '-- yes '-- '-- Chemotherapy +TCGA-OV dc5a6ce7-01e5-408d-812e-e3e0ddc1cde5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2109 40 false '-- '-- '-- '-- -14900 629 0fc3268e-adb3-5388-9bfd-2e6056af74e5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-2109_demographic Dead '-- '-- '-- '-- 14900 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 629.0 '-- '-- d7e955fc-4cf9-5b0a-8555-41d566bd4e64 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2109_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 253 14 '-- '-- '-- '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2109_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 3125 '-- mg '-- '-- '-- '-- f75efd48-3565-5fc6-9030-02c5b62923d7 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV dce71741-ccbe-40b7-a0b8-2048d07187a4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2409 71 false '-- '-- '-- '-- -26267 821 5897f462-2f0f-5340-b4d1-bff091eb649b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2409_demographic Dead '-- '-- '-- '-- 26571 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 304 '-- '-- '-- 34c4ee2c-8725-4f00-b402-a071d821e8b8 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-2409_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-2409_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2409_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7df3b163-c263-4cec-ad78-54032c4b8d19 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV dce71741-ccbe-40b7-a0b8-2048d07187a4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2409 71 false '-- '-- '-- '-- -26267 821 5897f462-2f0f-5340-b4d1-bff091eb649b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2409_demographic Dead '-- '-- '-- '-- 26571 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 304 '-- '-- '-- 34c4ee2c-8725-4f00-b402-a071d821e8b8 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-2409_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-2409_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2409_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- af661944-a9d6-4eb2-8006-dc15b02d309a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV dce71741-ccbe-40b7-a0b8-2048d07187a4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2409 71 false '-- '-- '-- '-- -26267 821 5897f462-2f0f-5340-b4d1-bff091eb649b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2409_demographic Dead '-- '-- '-- '-- 26267 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 821.0 '-- '-- c8d48465-069c-5154-9bae-9ce289ab10d4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2409_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 182 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2409_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0d88f9fe-f9d8-494e-85ce-1de4b85f4285 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV dce71741-ccbe-40b7-a0b8-2048d07187a4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2409 71 false '-- '-- '-- '-- -26267 821 5897f462-2f0f-5340-b4d1-bff091eb649b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2409_demographic Dead '-- '-- '-- '-- 26267 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 821.0 '-- '-- c8d48465-069c-5154-9bae-9ce289ab10d4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2409_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 182 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2409_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 45822b90-dc03-52ff-8615-95d34501c53e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV dce71741-ccbe-40b7-a0b8-2048d07187a4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2409 71 false '-- '-- '-- '-- -26267 821 5897f462-2f0f-5340-b4d1-bff091eb649b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2409_demographic Dead '-- '-- '-- '-- 26267 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 821.0 '-- '-- c8d48465-069c-5154-9bae-9ce289ab10d4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2409_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2409_treatment2 Tamoxifen '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6d3b0422-d4dc-4d3c-b48c-4b8812b5ba28 '-- yes '-- '-- Hormone Therapy +TCGA-OV dce71741-ccbe-40b7-a0b8-2048d07187a4 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2409 71 false '-- '-- '-- '-- -26267 821 5897f462-2f0f-5340-b4d1-bff091eb649b '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2409_demographic Dead '-- '-- '-- '-- 26267 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 821.0 '-- '-- c8d48465-069c-5154-9bae-9ce289ab10d4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2409_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2409_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d5d30283-622e-4a19-a932-ea7d12a0aa9b Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV de548bdd-14ca-486b-bd16-a6fbdd5b50d2 Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1568 52 false '-- '-- '-- '-- -19311 '-- 357b0c19-bb6c-588d-a652-1d4bf67cc0c4 '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1568_demographic Alive '-- '-- '-- '-- 19311 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 875.0 '-- '-- f0ac6623-6d2a-5f87-a515-fe563d907b98 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1568_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 737 624 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1568_treatment Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 286 '-- mg '-- '-- '-- '-- 2a0802da-d09e-5156-bca8-f7f3f8d78cb7 '-- yes '-- '-- Chemotherapy +TCGA-OV de548bdd-14ca-486b-bd16-a6fbdd5b50d2 Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1568 52 false '-- '-- '-- '-- -19311 '-- 357b0c19-bb6c-588d-a652-1d4bf67cc0c4 '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1568_demographic Alive '-- '-- '-- '-- 19311 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 875.0 '-- '-- f0ac6623-6d2a-5f87-a515-fe563d907b98 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1568_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 123 10 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1568_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1257 '-- mg '-- '-- '-- '-- 487170b3-8753-45ab-9bb3-67e1e2bc9bff Adjuvant yes '-- '-- Chemotherapy +TCGA-OV de548bdd-14ca-486b-bd16-a6fbdd5b50d2 Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1568 52 false '-- '-- '-- '-- -19311 '-- 357b0c19-bb6c-588d-a652-1d4bf67cc0c4 '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1568_demographic Alive '-- '-- '-- '-- 19311 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 875.0 '-- '-- f0ac6623-6d2a-5f87-a515-fe563d907b98 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1568_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1568_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 77e10bbe-63a9-456c-8668-43aab839981c Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV de548bdd-14ca-486b-bd16-a6fbdd5b50d2 Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1568 52 false '-- '-- '-- '-- -19311 '-- 357b0c19-bb6c-588d-a652-1d4bf67cc0c4 '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1568_demographic Alive '-- '-- '-- '-- 19311 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 875.0 '-- '-- f0ac6623-6d2a-5f87-a515-fe563d907b98 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1568_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 123 10 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1568_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2610 '-- mg '-- '-- '-- '-- 8a4c0d5f-6264-4df9-b0a3-6db46d6f0876 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV de548bdd-14ca-486b-bd16-a6fbdd5b50d2 Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1568 52 false '-- '-- '-- '-- -19311 '-- 357b0c19-bb6c-588d-a652-1d4bf67cc0c4 '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1568_demographic Alive '-- '-- '-- '-- 19859 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 548 '-- '-- '-- f75931d8-f937-4378-b48c-f1d0730a756c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-36-1568_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-36-1568_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1568_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 296b498c-de39-487b-8ab6-69b839bf1864 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV de548bdd-14ca-486b-bd16-a6fbdd5b50d2 Informed Consent -12 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1568 52 false '-- '-- '-- '-- -19311 '-- 357b0c19-bb6c-588d-a652-1d4bf67cc0c4 '-- not reported female '-- '-- '-- '-- not reported TCGA-36-1568_demographic Alive '-- '-- '-- '-- 19859 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 548 '-- '-- '-- f75931d8-f937-4378-b48c-f1d0730a756c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-36-1568_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-36-1568_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1568_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7770314a-e7d6-45b0-bbb6-581f09a8df8c '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- 16018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1503.0 '-- '-- 26b720a3-88e1-5202-a2e2-08f958ebe521 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1028_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1461 1363 '-- '-- Progressive Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1028_treatment13 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2667 '-- mg '-- '-- '-- '-- 071eb24a-94ac-4c74-8375-7aaec1eeb119 '-- yes '-- '-- Chemotherapy +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- 16018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1503.0 '-- '-- 26b720a3-88e1-5202-a2e2-08f958ebe521 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1028_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1335 1112 '-- '-- Progressive Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1028_treatment4 Doxorubicin '-- '-- '-- '-- '-- '-- '-- 418 '-- mg '-- '-- '-- '-- 07d18b90-62cf-4ef7-ab04-775e709e852c '-- yes '-- '-- Chemotherapy +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- 16018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1503.0 '-- '-- 26b720a3-88e1-5202-a2e2-08f958ebe521 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1028_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 110 26 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1028_treatment12 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1600 '-- mg '-- '-- '-- '-- 1c95739b-b7c9-479a-be12-ec9e9cf74001 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- 16018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1503.0 '-- '-- 26b720a3-88e1-5202-a2e2-08f958ebe521 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1028_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 859 749 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1028_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2802 '-- mg '-- '-- '-- '-- 518d9ab4-2ac4-4edb-9229-0796f5598b73 '-- yes '-- '-- Chemotherapy +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- 16018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1503.0 '-- '-- 26b720a3-88e1-5202-a2e2-08f958ebe521 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1028_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1153 1140 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1028_treatment11 Topotecan '-- '-- '-- '-- '-- '-- '-- 10 '-- mg '-- '-- '-- '-- 549dc9d3-e2f5-4d8a-b9e3-136c21f18f69 '-- yes '-- '-- Chemotherapy +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- 16018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1503.0 '-- '-- 26b720a3-88e1-5202-a2e2-08f958ebe521 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1028_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 859 749 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1028_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 846 '-- mg '-- '-- '-- '-- 9d88e2ab-cba3-43bc-b301-4d1eb26a70e1 '-- yes '-- '-- Chemotherapy +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- 16018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1503.0 '-- '-- 26b720a3-88e1-5202-a2e2-08f958ebe521 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1028_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1006 908 '-- '-- Progressive Disease '-- '-- '-- '-- 11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1028_treatment10 Topotecan '-- '-- '-- '-- '-- '-- '-- 41 '-- mg '-- '-- '-- '-- a6463587-2697-4b7a-aaab-8c5421cd004f '-- yes '-- '-- Chemotherapy +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- 16018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1503.0 '-- '-- 26b720a3-88e1-5202-a2e2-08f958ebe521 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1028_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 229 173 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1028_treatment Doxorubicin '-- '-- '-- '-- '-- '-- '-- 201 '-- mg '-- '-- '-- '-- a66174fd-178d-511f-9c97-9a42c2cc621e '-- yes '-- '-- Chemotherapy +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- 16018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1503.0 '-- '-- 26b720a3-88e1-5202-a2e2-08f958ebe521 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1028_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1461 1461 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1028_treatment6 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 1552 '-- mg '-- '-- '-- '-- a864308f-df06-42cd-91a0-e44041f064af '-- yes '-- '-- Chemotherapy +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- 16018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1503.0 '-- '-- 26b720a3-88e1-5202-a2e2-08f958ebe521 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1028_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1461 1461 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1028_treatment9 Carboplatin '-- '-- '-- '-- '-- '-- '-- 525 '-- mg '-- '-- '-- '-- b6c8f3f0-3016-474f-9f61-a9d43c88afef '-- yes '-- '-- Chemotherapy +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- 16018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1503.0 '-- '-- 26b720a3-88e1-5202-a2e2-08f958ebe521 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1028_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1028_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cc10f5ee-35f6-4c47-9e4a-329b8a04c42f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- 16018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1503.0 '-- '-- 26b720a3-88e1-5202-a2e2-08f958ebe521 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1028_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1489 1468 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1028_treatment8 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 3100 '-- mg '-- '-- '-- '-- ce925375-3896-4368-b001-78846a003960 '-- yes '-- '-- Chemotherapy +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- 16018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1503.0 '-- '-- 26b720a3-88e1-5202-a2e2-08f958ebe521 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1028_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 110 26 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1028_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2900 '-- mg '-- '-- '-- '-- d701e49c-97b4-4cc0-871b-da37cca160a4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- 16018 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1503.0 '-- '-- 26b720a3-88e1-5202-a2e2-08f958ebe521 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1028_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1489 1468 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-1028_treatment5 Cisplatin '-- '-- '-- '-- '-- '-- '-- 100 '-- mg '-- '-- '-- '-- d854e904-ce09-43f8-b801-e642fc1200b0 '-- yes '-- '-- Chemotherapy +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- 16151 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 133 '-- '-- '-- 85c471dd-c814-4fc8-9da0-6ce8dd374a81 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1028_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1028_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1028_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 00af1382-1232-4501-8d64-b346a7756ce4 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- 16151 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 133 '-- '-- '-- 85c471dd-c814-4fc8-9da0-6ce8dd374a81 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1028_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1028_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1028_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9f78d003-9357-4abe-9094-b8e162173428 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b8e5f493-11f8-470a-818e-35d717818586 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1028_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1028_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1028_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 25ca20ed-f042-4591-8569-bc64c5107a7a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b8e5f493-11f8-470a-818e-35d717818586 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1028_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1028_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 133 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1028_treatment19 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 39d347a3-368c-43cd-b3b2-0a64ad92bca1 '-- yes '-- '-- Surgery, NOS +TCGA-OV df53c3c0-3605-4d2b-bdc7-96d9beab27ea Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1028 43 false '-- '-- '-- '-- -16018 '-- c98a0351-dc5f-5f3c-984f-638eae453300 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-23-1028_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b8e5f493-11f8-470a-818e-35d717818586 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-1028_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-1028_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1028_treatment18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 821e0dec-373a-4256-b4cc-be9aa62d27d7 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV e0502c47-3234-4609-a8d5-730a9e6eb5b8 Informed Consent 34 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1360 65 false '-- '-- '-- '-- -23993 '-- 79744137-b068-582c-9750-aee5fe8917b4 '-- not reported female '-- '-- '-- '-- not reported TCGA-04-1360_demographic Alive '-- '-- '-- '-- 23993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 12f787cf-31ec-520a-9c91-5808e0c7c8b9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1360_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1360_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 48fe5fba-46ee-5425-a4f3-40b68d7b64dd Adjuvant yes Not Reported '-- Pharmaceutical Therapy, NOS +TCGA-OV e0502c47-3234-4609-a8d5-730a9e6eb5b8 Informed Consent 34 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1360 65 false '-- '-- '-- '-- -23993 '-- 79744137-b068-582c-9750-aee5fe8917b4 '-- not reported female '-- '-- '-- '-- not reported TCGA-04-1360_demographic Alive '-- '-- '-- '-- 23993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 12f787cf-31ec-520a-9c91-5808e0c7c8b9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1360_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1360_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cdb9d1d1-c91c-4c2b-9964-696af48ad4a8 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV e07a61e2-bcd2-4a96-80df-97e04aafbd32 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0931 44 false '-- '-- '-- '-- -16262 1000 9d30f62d-cadc-5d3f-8505-00561713c897 '-- not reported female '-- '-- '-- '-- white TCGA-10-0931_demographic Dead '-- '-- '-- '-- 16262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1000.0 '-- '-- da8e8e22-7514-538e-8029-9f2dd1dbf55e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0931_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 509 386 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0931_treatment8 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1632 '-- mg/m2 '-- '-- '-- '-- 01f9dd21-25c9-454b-9205-f2c458d2f8a7 '-- yes '-- '-- Chemotherapy +TCGA-OV e07a61e2-bcd2-4a96-80df-97e04aafbd32 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0931 44 false '-- '-- '-- '-- -16262 1000 9d30f62d-cadc-5d3f-8505-00561713c897 '-- not reported female '-- '-- '-- '-- white TCGA-10-0931_demographic Dead '-- '-- '-- '-- 16262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1000.0 '-- '-- da8e8e22-7514-538e-8029-9f2dd1dbf55e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0931_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 124 19 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0931_treatment2 Trastuzumab '-- '-- '-- '-- '-- '-- '-- 2268 '-- mg/m2 '-- '-- '-- '-- 0c1dc48a-b18e-4b8e-bd35-b4822eb06c5e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e07a61e2-bcd2-4a96-80df-97e04aafbd32 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0931 44 false '-- '-- '-- '-- -16262 1000 9d30f62d-cadc-5d3f-8505-00561713c897 '-- not reported female '-- '-- '-- '-- white TCGA-10-0931_demographic Dead '-- '-- '-- '-- 16262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1000.0 '-- '-- da8e8e22-7514-538e-8029-9f2dd1dbf55e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0931_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 666 538 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0931_treatment6 Docetaxel '-- '-- '-- '-- '-- '-- '-- 420 '-- mg '-- '-- '-- '-- 14c75b55-acf4-417b-a32c-8552bc9f43e5 '-- yes '-- '-- Chemotherapy +TCGA-OV e07a61e2-bcd2-4a96-80df-97e04aafbd32 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0931 44 false '-- '-- '-- '-- -16262 1000 9d30f62d-cadc-5d3f-8505-00561713c897 '-- not reported female '-- '-- '-- '-- white TCGA-10-0931_demographic Dead '-- '-- '-- '-- 16262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1000.0 '-- '-- da8e8e22-7514-538e-8029-9f2dd1dbf55e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0931_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 932 876 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0931_treatment9 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 231 '-- mg/m2 '-- '-- '-- '-- 16c1e0eb-78f8-4707-9119-7dd2969fe7b1 '-- yes '-- '-- Chemotherapy +TCGA-OV e07a61e2-bcd2-4a96-80df-97e04aafbd32 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0931 44 false '-- '-- '-- '-- -16262 1000 9d30f62d-cadc-5d3f-8505-00561713c897 '-- not reported female '-- '-- '-- '-- white TCGA-10-0931_demographic Dead '-- '-- '-- '-- 16262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1000.0 '-- '-- da8e8e22-7514-538e-8029-9f2dd1dbf55e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0931_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 383 335 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0931_treatment7 Tamoxifen '-- '-- '-- '-- '-- '-- '-- 1880 '-- mg/m2 '-- '-- '-- '-- 1e8264ab-317c-4d55-b2f6-9ed253448e4e '-- yes '-- '-- Hormone Therapy +TCGA-OV e07a61e2-bcd2-4a96-80df-97e04aafbd32 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0931 44 false '-- '-- '-- '-- -16262 1000 9d30f62d-cadc-5d3f-8505-00561713c897 '-- not reported female '-- '-- '-- '-- white TCGA-10-0931_demographic Dead '-- '-- '-- '-- 16262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1000.0 '-- '-- da8e8e22-7514-538e-8029-9f2dd1dbf55e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0931_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 124 19 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0931_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 24db6c59-4d7d-47fb-8e7d-1a19c5bfa33d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e07a61e2-bcd2-4a96-80df-97e04aafbd32 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0931 44 false '-- '-- '-- '-- -16262 1000 9d30f62d-cadc-5d3f-8505-00561713c897 '-- not reported female '-- '-- '-- '-- white TCGA-10-0931_demographic Dead '-- '-- '-- '-- 16262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1000.0 '-- '-- da8e8e22-7514-538e-8029-9f2dd1dbf55e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0931_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 124 19 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0931_treatment11 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2430 '-- mg/m2 '-- '-- '-- '-- 587aee78-3f41-4627-8417-5ed3e096e1f8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e07a61e2-bcd2-4a96-80df-97e04aafbd32 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0931 44 false '-- '-- '-- '-- -16262 1000 9d30f62d-cadc-5d3f-8505-00561713c897 '-- not reported female '-- '-- '-- '-- white TCGA-10-0931_demographic Dead '-- '-- '-- '-- 16262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1000.0 '-- '-- da8e8e22-7514-538e-8029-9f2dd1dbf55e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0931_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 666 538 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0931_treatment10 Docetaxel '-- '-- '-- '-- '-- '-- '-- 440 '-- mg/m2 '-- '-- '-- '-- 7889d6e0-a465-4848-8999-ab4007017d3d '-- yes '-- '-- Chemotherapy +TCGA-OV e07a61e2-bcd2-4a96-80df-97e04aafbd32 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0931 44 false '-- '-- '-- '-- -16262 1000 9d30f62d-cadc-5d3f-8505-00561713c897 '-- not reported female '-- '-- '-- '-- white TCGA-10-0931_demographic Dead '-- '-- '-- '-- 16262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1000.0 '-- '-- da8e8e22-7514-538e-8029-9f2dd1dbf55e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0931_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 848 792 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0931_treatment12 Topotecan '-- '-- '-- '-- '-- '-- '-- 24 '-- mg/m2 '-- '-- '-- '-- 8d683a71-955c-40a9-98d6-28d8a94b9a23 '-- yes '-- '-- Chemotherapy +TCGA-OV e07a61e2-bcd2-4a96-80df-97e04aafbd32 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0931 44 false '-- '-- '-- '-- -16262 1000 9d30f62d-cadc-5d3f-8505-00561713c897 '-- not reported female '-- '-- '-- '-- white TCGA-10-0931_demographic Dead '-- '-- '-- '-- 16262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1000.0 '-- '-- da8e8e22-7514-538e-8029-9f2dd1dbf55e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0931_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 666 538 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0931_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1840 '-- mg/m2 '-- '-- '-- '-- 96b3fa9a-cc3d-4568-83e2-6acd1c365980 '-- yes '-- '-- Chemotherapy +TCGA-OV e07a61e2-bcd2-4a96-80df-97e04aafbd32 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0931 44 false '-- '-- '-- '-- -16262 1000 9d30f62d-cadc-5d3f-8505-00561713c897 '-- not reported female '-- '-- '-- '-- white TCGA-10-0931_demographic Dead '-- '-- '-- '-- 16262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1000.0 '-- '-- da8e8e22-7514-538e-8029-9f2dd1dbf55e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0931_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 509 386 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0931_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 3240 '-- mg/m2 '-- '-- '-- '-- 9f28ef7c-ec38-53e3-9538-b454efcde173 '-- yes '-- '-- Chemotherapy +TCGA-OV e07a61e2-bcd2-4a96-80df-97e04aafbd32 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0931 44 false '-- '-- '-- '-- -16262 1000 9d30f62d-cadc-5d3f-8505-00561713c897 '-- not reported female '-- '-- '-- '-- white TCGA-10-0931_demographic Dead '-- '-- '-- '-- 16262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1000.0 '-- '-- da8e8e22-7514-538e-8029-9f2dd1dbf55e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0931_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 848 792 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0931_treatment4 Gefitinib '-- '-- '-- '-- '-- '-- '-- 14000 '-- mg/m2 '-- '-- '-- '-- b93e42be-0cd0-4690-8542-dc74d9256e59 '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV e07a61e2-bcd2-4a96-80df-97e04aafbd32 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0931 44 false '-- '-- '-- '-- -16262 1000 9d30f62d-cadc-5d3f-8505-00561713c897 '-- not reported female '-- '-- '-- '-- white TCGA-10-0931_demographic Dead '-- '-- '-- '-- 16262 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1000.0 '-- '-- da8e8e22-7514-538e-8029-9f2dd1dbf55e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0931_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0931_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- febc92cf-e3cb-4f90-ac0a-82b326cee6e3 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV e07a61e2-bcd2-4a96-80df-97e04aafbd32 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0931 44 false '-- '-- '-- '-- -16262 1000 9d30f62d-cadc-5d3f-8505-00561713c897 '-- not reported female '-- '-- '-- '-- white TCGA-10-0931_demographic Dead '-- '-- '-- '-- 16562 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 300 '-- '-- '-- e89fe2b1-15a7-46aa-88e6-6e2f3bcf195c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0931_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0931_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0931_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3c878a0b-d81d-41bb-a7c9-36b93feaca66 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV e07a61e2-bcd2-4a96-80df-97e04aafbd32 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0931 44 false '-- '-- '-- '-- -16262 1000 9d30f62d-cadc-5d3f-8505-00561713c897 '-- not reported female '-- '-- '-- '-- white TCGA-10-0931_demographic Dead '-- '-- '-- '-- 16562 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 300 '-- '-- '-- e89fe2b1-15a7-46aa-88e6-6e2f3bcf195c false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0931_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0931_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0931_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 59b9546c-1455-4555-a350-23828dd981d8 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV e1158102-06f2-47bb-9fe0-49b57f070755 Informed Consent 1524 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1956 60 false '-- '-- '-- '-- -22100 '-- 567cb496-8b1d-54e3-bfa7-401b51d6b3fd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1956_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7321be07-41a7-4b72-b725-86fcf0f519ff false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-31-1956_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-31-1956_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 119 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1956_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 48bc3ec7-6be9-4bb4-b2b3-b566a19dda78 '-- yes '-- '-- Surgery, NOS +TCGA-OV e1158102-06f2-47bb-9fe0-49b57f070755 Informed Consent 1524 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1956 60 false '-- '-- '-- '-- -22100 '-- 567cb496-8b1d-54e3-bfa7-401b51d6b3fd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1956_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7321be07-41a7-4b72-b725-86fcf0f519ff false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-31-1956_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-31-1956_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1956_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dec21502-9d88-4a3d-83c3-4c075eef88e3 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV e1158102-06f2-47bb-9fe0-49b57f070755 Informed Consent 1524 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1956 60 false '-- '-- '-- '-- -22100 '-- 567cb496-8b1d-54e3-bfa7-401b51d6b3fd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1956_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7321be07-41a7-4b72-b725-86fcf0f519ff false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-31-1956_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-31-1956_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1956_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f0b3cc76-100f-43ee-a5b6-28f9ba37c7a3 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV e1158102-06f2-47bb-9fe0-49b57f070755 Informed Consent 1524 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1956 60 false '-- '-- '-- '-- -22100 '-- 567cb496-8b1d-54e3-bfa7-401b51d6b3fd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1956_demographic Alive '-- '-- '-- '-- 22100 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1342.0 '-- '-- cfbadd21-1fd9-5470-bec1-e14b76ad9ae8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1956_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 188 34 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1956_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 5150 '-- mg '-- '-- '-- '-- 01a71b58-c55c-5270-b629-f123096449bb Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e1158102-06f2-47bb-9fe0-49b57f070755 Informed Consent 1524 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1956 60 false '-- '-- '-- '-- -22100 '-- 567cb496-8b1d-54e3-bfa7-401b51d6b3fd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1956_demographic Alive '-- '-- '-- '-- 22100 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1342.0 '-- '-- cfbadd21-1fd9-5470-bec1-e14b76ad9ae8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1956_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-31-1956_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4c1c6e8f-c47a-4d01-8494-f793c9d47751 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV e1158102-06f2-47bb-9fe0-49b57f070755 Informed Consent 1524 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-31-1956 60 false '-- '-- '-- '-- -22100 '-- 567cb496-8b1d-54e3-bfa7-401b51d6b3fd '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-31-1956_demographic Alive '-- '-- '-- '-- 22100 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1342.0 '-- '-- cfbadd21-1fd9-5470-bec1-e14b76ad9ae8 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-31-1956_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 188 34 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-31-1956_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1590 '-- mg '-- '-- '-- '-- 52f3f740-72e7-4802-90cc-155c02b2f757 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e20ea417-7296-4da8-9fdb-71cd1f45153a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2020 67 false '-- '-- '-- '-- -24682 4624 bc3036a7-e795-5db4-9293-f25c1dd954ff '-- not reported female '-- '-- '-- '-- white TCGA-24-2020_demographic Dead '-- '-- '-- '-- 24682 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 4624.0 '-- '-- 2a7a1bf4-1fe5-5d1d-ad8f-a06bdfbe0774 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2020_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2020_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 37b13ff2-7b4e-490b-bb86-231abe506b08 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV e20ea417-7296-4da8-9fdb-71cd1f45153a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2020 67 false '-- '-- '-- '-- -24682 4624 bc3036a7-e795-5db4-9293-f25c1dd954ff '-- not reported female '-- '-- '-- '-- white TCGA-24-2020_demographic Dead '-- '-- '-- '-- 24682 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 4624.0 '-- '-- 2a7a1bf4-1fe5-5d1d-ad8f-a06bdfbe0774 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2020_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 2757 2593 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2020_treatment8 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 485e1f0b-2921-43cc-9209-2d289735c0f9 '-- yes '-- '-- Chemotherapy +TCGA-OV e20ea417-7296-4da8-9fdb-71cd1f45153a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2020 67 false '-- '-- '-- '-- -24682 4624 bc3036a7-e795-5db4-9293-f25c1dd954ff '-- not reported female '-- '-- '-- '-- white TCGA-24-2020_demographic Dead '-- '-- '-- '-- 24682 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 4624.0 '-- '-- 2a7a1bf4-1fe5-5d1d-ad8f-a06bdfbe0774 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2020_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 2085 1905 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2020_treatment Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 504 '-- mg '-- '-- '-- '-- 5170fed0-6c99-5fee-a14e-53b3d62e774d '-- yes '-- '-- Chemotherapy +TCGA-OV e20ea417-7296-4da8-9fdb-71cd1f45153a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2020 67 false '-- '-- '-- '-- -24682 4624 bc3036a7-e795-5db4-9293-f25c1dd954ff '-- not reported female '-- '-- '-- '-- white TCGA-24-2020_demographic Dead '-- '-- '-- '-- 24682 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 4624.0 '-- '-- 2a7a1bf4-1fe5-5d1d-ad8f-a06bdfbe0774 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2020_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 940 745 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2020_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2496 '-- mg '-- '-- '-- '-- 539cfdca-9d99-4b0b-92fd-3b136b0cf7e0 '-- yes '-- '-- Chemotherapy +TCGA-OV e20ea417-7296-4da8-9fdb-71cd1f45153a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2020 67 false '-- '-- '-- '-- -24682 4624 bc3036a7-e795-5db4-9293-f25c1dd954ff '-- not reported female '-- '-- '-- '-- white TCGA-24-2020_demographic Dead '-- '-- '-- '-- 24682 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 4624.0 '-- '-- 2a7a1bf4-1fe5-5d1d-ad8f-a06bdfbe0774 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2020_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 940 745 '-- '-- Recurrent Disease '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2020_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 3024 '-- mg '-- '-- '-- '-- 6ecb12ae-a87d-49b2-a057-0e300cb64100 '-- yes '-- '-- Chemotherapy +TCGA-OV e20ea417-7296-4da8-9fdb-71cd1f45153a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2020 67 false '-- '-- '-- '-- -24682 4624 bc3036a7-e795-5db4-9293-f25c1dd954ff '-- not reported female '-- '-- '-- '-- white TCGA-24-2020_demographic Dead '-- '-- '-- '-- 24682 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 4624.0 '-- '-- 2a7a1bf4-1fe5-5d1d-ad8f-a06bdfbe0774 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2020_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 414 274 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2020_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1836 '-- mg '-- '-- '-- '-- 7bcb2ad1-0358-4292-b39d-cf30b526ed1f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e20ea417-7296-4da8-9fdb-71cd1f45153a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2020 67 false '-- '-- '-- '-- -24682 4624 bc3036a7-e795-5db4-9293-f25c1dd954ff '-- not reported female '-- '-- '-- '-- white TCGA-24-2020_demographic Dead '-- '-- '-- '-- 24682 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 4624.0 '-- '-- 2a7a1bf4-1fe5-5d1d-ad8f-a06bdfbe0774 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2020_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 1555 1381 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2020_treatment3 Topotecan '-- '-- '-- '-- '-- '-- '-- 77 '-- mg '-- '-- '-- '-- 94253363-d734-4718-9d22-037b23016f8d '-- yes '-- '-- Chemotherapy +TCGA-OV e20ea417-7296-4da8-9fdb-71cd1f45153a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2020 67 false '-- '-- '-- '-- -24682 4624 bc3036a7-e795-5db4-9293-f25c1dd954ff '-- not reported female '-- '-- '-- '-- white TCGA-24-2020_demographic Dead '-- '-- '-- '-- 24682 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 4624.0 '-- '-- 2a7a1bf4-1fe5-5d1d-ad8f-a06bdfbe0774 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2020_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 414 274 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2020_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2013 '-- mg '-- '-- '-- '-- 9e3a2702-dbfc-4b15-af2d-c48988f0b6ef Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e20ea417-7296-4da8-9fdb-71cd1f45153a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2020 67 false '-- '-- '-- '-- -24682 4624 bc3036a7-e795-5db4-9293-f25c1dd954ff '-- not reported female '-- '-- '-- '-- white TCGA-24-2020_demographic Dead '-- '-- '-- '-- 24682 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 4624.0 '-- '-- 2a7a1bf4-1fe5-5d1d-ad8f-a06bdfbe0774 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2020_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 176 44 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2020_treatment9 Cisplatin '-- '-- '-- '-- '-- '-- '-- 1032 '-- mg '-- '-- '-- '-- f6979143-7316-4283-8bd7-8fd901aa60b4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e20ea417-7296-4da8-9fdb-71cd1f45153a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2020 67 false '-- '-- '-- '-- -24682 4624 bc3036a7-e795-5db4-9293-f25c1dd954ff '-- not reported female '-- '-- '-- '-- white TCGA-24-2020_demographic Dead '-- '-- '-- '-- 24682 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 4624.0 '-- '-- 2a7a1bf4-1fe5-5d1d-ad8f-a06bdfbe0774 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2020_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1994 '-- '-- '-- 2298 2235 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2020_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1225 '-- mg '-- '-- '-- '-- fe7267ee-a46c-4d51-af0c-e4262812853a '-- yes '-- '-- Chemotherapy +TCGA-OV e20ea417-7296-4da8-9fdb-71cd1f45153a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2020 67 false '-- '-- '-- '-- -24682 4624 bc3036a7-e795-5db4-9293-f25c1dd954ff '-- not reported female '-- '-- '-- '-- white TCGA-24-2020_demographic Dead '-- '-- '-- '-- 25405 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 723 '-- '-- '-- 651958c0-ded4-4cfb-8e8f-4ccf5dae4e01 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2020_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2020_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2020_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 267157ae-7de6-4177-ab87-da4e717e94fc '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV e20ea417-7296-4da8-9fdb-71cd1f45153a Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2020 67 false '-- '-- '-- '-- -24682 4624 bc3036a7-e795-5db4-9293-f25c1dd954ff '-- not reported female '-- '-- '-- '-- white TCGA-24-2020_demographic Dead '-- '-- '-- '-- 25405 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 723 '-- '-- '-- 651958c0-ded4-4cfb-8e8f-4ccf5dae4e01 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2020_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2020_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2020_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a7f11bb3-1013-4433-9a2d-fe19c3987207 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV e294b940-2828-499c-be24-47ef6c2e9035 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1577 43 false '-- '-- '-- '-- -15804 '-- 0aeca69b-62e8-51ea-b312-dc3e2ba3237c '-- not reported female '-- '-- '-- '-- asian TCGA-36-1577_demographic Alive '-- '-- '-- '-- 15804 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 783.0 '-- '-- e3059d66-192a-578d-8167-ccefae83a110 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1577_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 156 111 '-- '-- '-- '-- '-- '-- '-- '-- 22.0 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1577_treatment2 '-- '-- '-- '-- '-- '-- Primary Tumor Field '-- 2250 '-- cGy '-- '-- '-- '-- 2d6749d7-4bc8-4941-8193-d5d76ba4a5c2 Adjuvant yes '-- '-- Radiation, External Beam +TCGA-OV e294b940-2828-499c-be24-47ef6c2e9035 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1577 43 false '-- '-- '-- '-- -15804 '-- 0aeca69b-62e8-51ea-b312-dc3e2ba3237c '-- not reported female '-- '-- '-- '-- asian TCGA-36-1577_demographic Alive '-- '-- '-- '-- 15804 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 783.0 '-- '-- e3059d66-192a-578d-8167-ccefae83a110 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1577_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 84 28 '-- '-- '-- '-- '-- '-- '-- 3 '-- 611.0 mg '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1577_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1833 '-- mg '-- '-- '-- '-- 32939098-9279-4c7a-afa3-a74bab651621 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e294b940-2828-499c-be24-47ef6c2e9035 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1577 43 false '-- '-- '-- '-- -15804 '-- 0aeca69b-62e8-51ea-b312-dc3e2ba3237c '-- not reported female '-- '-- '-- '-- asian TCGA-36-1577_demographic Alive '-- '-- '-- '-- 15804 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 783.0 '-- '-- e3059d66-192a-578d-8167-ccefae83a110 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1577_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 156 111 '-- '-- '-- '-- '-- '-- '-- '-- 11.0 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1577_treatment '-- '-- '-- '-- '-- '-- Primary Tumor Field '-- 2250 '-- cGy '-- '-- '-- '-- cfd3536f-c38b-5edf-a9c8-7361ace4c9f7 Adjuvant yes '-- '-- Radiation, External Beam +TCGA-OV e294b940-2828-499c-be24-47ef6c2e9035 Informed Consent -4 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1577 43 false '-- '-- '-- '-- -15804 '-- 0aeca69b-62e8-51ea-b312-dc3e2ba3237c '-- not reported female '-- '-- '-- '-- asian TCGA-36-1577_demographic Alive '-- '-- '-- '-- 15804 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 783.0 '-- '-- e3059d66-192a-578d-8167-ccefae83a110 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1577_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 84 28 '-- '-- '-- '-- '-- '-- '-- 3 '-- 248.0 mg '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1577_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 744 '-- mg '-- '-- '-- '-- ee6fcda8-ac96-492a-9b68-5cd3b1ed2d21 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e35b2813-427e-4e83-95f6-4f0281f42a59 Informed Consent 53 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-3P-A9WA 55 false '-- '-- '-- United States -20211 '-- edad4644-d80b-5b6f-9928-cd2b29f1035b '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-3P-A9WA_demographic Alive '-- '-- '-- '-- 20215 '-- '-- '-- '-- MX N0 '-- T2b '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Synchronous primary '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- 8fdd4a53-c065-4923-93c3-1111e4140dab false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- '-- '-- '-- '-- '-- Not Reported '-- '-- TCGA-3P-A9WA_diagnosis2 '-- '-- Uterus, NOS '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-3P-A9WA_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e3f10f8a-e44b-4416-86a8-10cf273b1af1 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV e35b2813-427e-4e83-95f6-4f0281f42a59 Informed Consent 53 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-3P-A9WA 55 false '-- '-- '-- United States -20211 '-- edad4644-d80b-5b6f-9928-cd2b29f1035b '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-3P-A9WA_demographic Alive '-- '-- '-- '-- 20215 '-- '-- '-- '-- MX N0 '-- T2b '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Synchronous primary '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- 8fdd4a53-c065-4923-93c3-1111e4140dab false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- '-- '-- '-- '-- '-- Not Reported '-- '-- TCGA-3P-A9WA_diagnosis2 '-- '-- Uterus, NOS '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-3P-A9WA_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e9a5289c-8b46-4518-b1d4-f825d3f8a4ff '-- no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV e35b2813-427e-4e83-95f6-4f0281f42a59 Informed Consent 53 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-3P-A9WA 55 false '-- '-- '-- United States -20211 '-- edad4644-d80b-5b6f-9928-cd2b29f1035b '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-3P-A9WA_demographic Alive '-- '-- '-- '-- 20215 '-- '-- '-- '-- MX N0 '-- T2b '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Synchronous primary '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- 8fdd4a53-c065-4923-93c3-1111e4140dab false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- '-- '-- '-- '-- '-- Not Reported '-- '-- TCGA-3P-A9WA_diagnosis2 '-- '-- Uterus, NOS '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 54 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-3P-A9WA_treatment6 '-- '-- '-- '-- '-- '-- Uterus '-- '-- '-- '-- '-- '-- '-- '-- f92ff414-5657-40ca-9d28-d0c339b15661 '-- yes '-- '-- Surgery, NOS +TCGA-OV e35b2813-427e-4e83-95f6-4f0281f42a59 Informed Consent 53 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-3P-A9WA 55 false '-- '-- '-- United States -20211 '-- edad4644-d80b-5b6f-9928-cd2b29f1035b '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-3P-A9WA_demographic Alive '-- '-- '-- '-- 20211 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 420.0 '-- '-- a9e4580c-412c-5325-a91d-50fd125a515b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Dilation and Curettage Procedure '-- '-- '-- 8440/3 '-- '-- '-- '-- '-- '-- Cystadenocarcinoma, NOS '-- '-- no No '-- RX '-- '-- Ovary '-- '-- TCGA-3P-A9WA_diagnosis '-- Yes Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2013 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-3P-A9WA_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5487a273-499a-4b60-9f0b-16106c385025 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV e35b2813-427e-4e83-95f6-4f0281f42a59 Informed Consent 53 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-3P-A9WA 55 false '-- '-- '-- United States -20211 '-- edad4644-d80b-5b6f-9928-cd2b29f1035b '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-3P-A9WA_demographic Alive '-- '-- '-- '-- 20211 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 420.0 '-- '-- a9e4580c-412c-5325-a91d-50fd125a515b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Dilation and Curettage Procedure '-- '-- '-- 8440/3 '-- '-- '-- '-- '-- '-- Cystadenocarcinoma, NOS '-- '-- no No '-- RX '-- '-- Ovary '-- '-- TCGA-3P-A9WA_diagnosis '-- Yes Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2013 '-- No '-- 212 92 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-3P-A9WA_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- df053a38-d0b5-4cf5-9ac3-b1cf904661f7 '-- yes Complete Response '-- Chemotherapy +TCGA-OV e35b2813-427e-4e83-95f6-4f0281f42a59 Informed Consent 53 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-3P-A9WA 55 false '-- '-- '-- United States -20211 '-- edad4644-d80b-5b6f-9928-cd2b29f1035b '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-3P-A9WA_demographic Alive '-- '-- '-- '-- 20211 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 420.0 '-- '-- a9e4580c-412c-5325-a91d-50fd125a515b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Dilation and Curettage Procedure '-- '-- '-- 8440/3 '-- '-- '-- '-- '-- '-- Cystadenocarcinoma, NOS '-- '-- no No '-- RX '-- '-- Ovary '-- '-- TCGA-3P-A9WA_diagnosis '-- Yes Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2013 '-- No '-- 212 92 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-3P-A9WA_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f2773402-3591-5a4f-b4ec-53932172e017 '-- yes Complete Response '-- Chemotherapy +TCGA-OV e3712e5a-4575-440f-89d1-8db9498baa88 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0889 75 false '-- '-- '-- '-- -27674 2894 00711dd2-494b-5aaa-8162-d97fe7e37cbe '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0889_demographic Dead '-- '-- '-- '-- 27674 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2894.0 '-- '-- 8f320270-eca8-5178-ab0d-541324ae50f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0889_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 159 54 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0889_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 000cd122-8b79-5ffc-a2b3-824e92eb0e1f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e3712e5a-4575-440f-89d1-8db9498baa88 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0889 75 false '-- '-- '-- '-- -27674 2894 00711dd2-494b-5aaa-8162-d97fe7e37cbe '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0889_demographic Dead '-- '-- '-- '-- 27674 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2894.0 '-- '-- 8f320270-eca8-5178-ab0d-541324ae50f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0889_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0889_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e73df56a-3cfd-4214-ba3c-9aff6953ce1e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV e3712e5a-4575-440f-89d1-8db9498baa88 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0889 75 false '-- '-- '-- '-- -27674 2894 00711dd2-494b-5aaa-8162-d97fe7e37cbe '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0889_demographic Dead '-- '-- '-- '-- 27674 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2894.0 '-- '-- 8f320270-eca8-5178-ab0d-541324ae50f5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0889_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 159 54 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0889_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ff4e2dce-cd0d-4a75-961b-e45eedf57bf7 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e3ea5137-76b8-4afc-9b80-ed74714e7172 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2079 46 false '-- '-- '-- '-- -17122 '-- 91961a57-c6ea-556a-8dc9-bfe6e3272d4a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2079_demographic Alive '-- '-- '-- '-- 17122 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2788.0 '-- '-- 04708a30-ed12-5fd6-af46-0f86a67a82c0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2079_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 125 4 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2079_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1800 '-- mg '-- '-- '-- '-- 4e22b254-d222-4720-8e16-95e56275a836 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e3ea5137-76b8-4afc-9b80-ed74714e7172 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2079 46 false '-- '-- '-- '-- -17122 '-- 91961a57-c6ea-556a-8dc9-bfe6e3272d4a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2079_demographic Alive '-- '-- '-- '-- 17122 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2788.0 '-- '-- 04708a30-ed12-5fd6-af46-0f86a67a82c0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2079_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 125 4 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2079_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3420 '-- mg '-- '-- '-- '-- 5d46e0cf-9fab-4097-87b6-242dfddde457 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e3ea5137-76b8-4afc-9b80-ed74714e7172 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2079 46 false '-- '-- '-- '-- -17122 '-- 91961a57-c6ea-556a-8dc9-bfe6e3272d4a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2079_demographic Alive '-- '-- '-- '-- 17122 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2788.0 '-- '-- 04708a30-ed12-5fd6-af46-0f86a67a82c0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2079_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2079_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8d133d5b-b8fc-4722-835a-a5dbd6da494c Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV e3ea5137-76b8-4afc-9b80-ed74714e7172 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2079 46 false '-- '-- '-- '-- -17122 '-- 91961a57-c6ea-556a-8dc9-bfe6e3272d4a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2079_demographic Alive '-- '-- '-- '-- 17122 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2788.0 '-- '-- 04708a30-ed12-5fd6-af46-0f86a67a82c0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2079_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 489 296 '-- '-- Recurrent Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2079_treatment Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 663 '-- mg '-- '-- '-- '-- bcd5e138-9d52-55f8-a83c-205ba10af00c '-- yes '-- '-- Chemotherapy +TCGA-OV e3ea5137-76b8-4afc-9b80-ed74714e7172 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2079 46 false '-- '-- '-- '-- -17122 '-- 91961a57-c6ea-556a-8dc9-bfe6e3272d4a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2079_demographic Alive '-- '-- '-- '-- 17122 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2788.0 '-- '-- 04708a30-ed12-5fd6-af46-0f86a67a82c0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2079_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 2147 2102 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2079_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 1651 '-- mg '-- '-- '-- '-- f45253b8-fabc-4f73-a158-8408c4569999 '-- yes '-- '-- Chemotherapy +TCGA-OV e3ea5137-76b8-4afc-9b80-ed74714e7172 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2079 46 false '-- '-- '-- '-- -17122 '-- 91961a57-c6ea-556a-8dc9-bfe6e3272d4a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2079_demographic Alive '-- '-- '-- '-- 17405 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 283 '-- '-- '-- 2f117729-4f72-4e65-b31e-c0de876a5a45 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-2079_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-2079_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2079_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 65df331e-dee0-4e63-990f-778434510046 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV e3ea5137-76b8-4afc-9b80-ed74714e7172 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2079 46 false '-- '-- '-- '-- -17122 '-- 91961a57-c6ea-556a-8dc9-bfe6e3272d4a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2079_demographic Alive '-- '-- '-- '-- 17405 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 283 '-- '-- '-- 2f117729-4f72-4e65-b31e-c0de876a5a45 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-2079_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-2079_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2079_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 70677600-8784-4080-b761-140612036bb0 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV e3ea5137-76b8-4afc-9b80-ed74714e7172 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2079 46 false '-- '-- '-- '-- -17122 '-- 91961a57-c6ea-556a-8dc9-bfe6e3272d4a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2079_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cac52c68-23d4-4fcf-94c6-46577b4308d4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-2079_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-2079_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2079_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 541f15fa-c5dc-4bdb-92f8-2cfd0d048299 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV e3ea5137-76b8-4afc-9b80-ed74714e7172 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2079 46 false '-- '-- '-- '-- -17122 '-- 91961a57-c6ea-556a-8dc9-bfe6e3272d4a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2079_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cac52c68-23d4-4fcf-94c6-46577b4308d4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-2079_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-2079_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2079_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6fd6b105-93db-4580-bd72-cdbc80eb3652 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV e3ea5137-76b8-4afc-9b80-ed74714e7172 Informed Consent -1 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2079 46 false '-- '-- '-- '-- -17122 '-- 91961a57-c6ea-556a-8dc9-bfe6e3272d4a '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2079_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cac52c68-23d4-4fcf-94c6-46577b4308d4 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-2079_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-2079_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2488 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2079_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ebab258e-a2fb-426c-8d5f-a5e56e00aaee '-- yes '-- '-- Surgery, NOS +TCGA-OV e43d3769-e25f-4fb7-9080-ea26defaf094 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0906 50 false '-- '-- '-- '-- -18383 '-- 2669e329-d864-59c4-b6a0-2629d82ac5ee '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0906_demographic Alive '-- '-- '-- '-- 18383 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3619.0 '-- '-- 74976cb2-5ac3-5764-a813-40be781e4353 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0906_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 147 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0906_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- 53bebc61-4550-5f45-bb1b-f109e2496117 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e43d3769-e25f-4fb7-9080-ea26defaf094 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0906 50 false '-- '-- '-- '-- -18383 '-- 2669e329-d864-59c4-b6a0-2629d82ac5ee '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0906_demographic Alive '-- '-- '-- '-- 18383 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3619.0 '-- '-- 74976cb2-5ac3-5764-a813-40be781e4353 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0906_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 147 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0906_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- 5d2f76d6-1761-42dc-b6f2-bb30d355449b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e43d3769-e25f-4fb7-9080-ea26defaf094 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0906 50 false '-- '-- '-- '-- -18383 '-- 2669e329-d864-59c4-b6a0-2629d82ac5ee '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0906_demographic Alive '-- '-- '-- '-- 18383 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3619.0 '-- '-- 74976cb2-5ac3-5764-a813-40be781e4353 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0906_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0906_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7fc17858-a4f7-4e8d-85cb-1c0a05dd500d Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV e43d3769-e25f-4fb7-9080-ea26defaf094 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0906 50 false '-- '-- '-- '-- -18383 '-- 2669e329-d864-59c4-b6a0-2629d82ac5ee '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0906_demographic Alive '-- '-- '-- '-- 18383 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3619.0 '-- '-- 74976cb2-5ac3-5764-a813-40be781e4353 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0906_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 147 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0906_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- cf09a65a-765f-48a4-be44-cb61301af5d0 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e5a329ec-e50e-4786-901d-b58474f8ea65 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1496 65 false '-- '-- '-- '-- -23993 129 4d5dbb4c-1d7f-5cdf-b9db-1585b9627eb6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1496_demographic Dead '-- '-- '-- '-- 23993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 129.0 '-- '-- 7a1b6225-2e8d-59d5-a142-bc7ed5306fb5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1496_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 33 33 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1496_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1339ccd3-c639-5b24-b8b2-186a748b9abb Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e5a329ec-e50e-4786-901d-b58474f8ea65 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1496 65 false '-- '-- '-- '-- -23993 129 4d5dbb4c-1d7f-5cdf-b9db-1585b9627eb6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1496_demographic Dead '-- '-- '-- '-- 23993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 129.0 '-- '-- 7a1b6225-2e8d-59d5-a142-bc7ed5306fb5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1496_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1496_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2f9b5970-3b7f-42a3-ab40-bdb9b72f3e5e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV e5a329ec-e50e-4786-901d-b58474f8ea65 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1496 65 false '-- '-- '-- '-- -23993 129 4d5dbb4c-1d7f-5cdf-b9db-1585b9627eb6 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1496_demographic Dead '-- '-- '-- '-- 23993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 129.0 '-- '-- 7a1b6225-2e8d-59d5-a142-bc7ed5306fb5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1496_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 33 33 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1496_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 5a6c364b-1dcc-4750-8142-2bcb8db9c98c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e641aed9-1dd8-4c30-b231-f12b20a76df0 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0926 63 false '-- '-- '-- '-- -23307 788 4b183665-721a-5e26-a141-269b36017af8 '-- not reported female '-- '-- '-- '-- white TCGA-10-0926_demographic Dead '-- '-- '-- '-- 23307 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 788.0 '-- '-- 71ac222a-9ac1-59e1-9ee0-70f90b4db4f0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0926_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 143 8 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0926_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4500 '-- mg '-- '-- '-- '-- 2347024d-46c4-4b07-8934-ffe89e89dbe8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e641aed9-1dd8-4c30-b231-f12b20a76df0 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0926 63 false '-- '-- '-- '-- -23307 788 4b183665-721a-5e26-a141-269b36017af8 '-- not reported female '-- '-- '-- '-- white TCGA-10-0926_demographic Dead '-- '-- '-- '-- 23307 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 788.0 '-- '-- 71ac222a-9ac1-59e1-9ee0-70f90b4db4f0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0926_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- 273 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0926_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3da69122-0d80-507f-80d5-7c5abfc59d16 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV e641aed9-1dd8-4c30-b231-f12b20a76df0 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0926 63 false '-- '-- '-- '-- -23307 788 4b183665-721a-5e26-a141-269b36017af8 '-- not reported female '-- '-- '-- '-- white TCGA-10-0926_demographic Dead '-- '-- '-- '-- 23307 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 788.0 '-- '-- 71ac222a-9ac1-59e1-9ee0-70f90b4db4f0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0926_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 143 8 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0926_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 860 '-- mg '-- '-- '-- '-- 59f9bd8d-11dc-4d69-b653-e427394e44c9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e641aed9-1dd8-4c30-b231-f12b20a76df0 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0926 63 false '-- '-- '-- '-- -23307 788 4b183665-721a-5e26-a141-269b36017af8 '-- not reported female '-- '-- '-- '-- white TCGA-10-0926_demographic Dead '-- '-- '-- '-- 23307 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 788.0 '-- '-- 71ac222a-9ac1-59e1-9ee0-70f90b4db4f0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0926_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 729 290 '-- '-- Recurrent Disease '-- '-- '-- '-- 13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0926_treatment2 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 975 '-- mg '-- '-- '-- '-- abca861c-ffaa-4953-9ab6-14e39e88f66f '-- yes '-- '-- Chemotherapy +TCGA-OV e641aed9-1dd8-4c30-b231-f12b20a76df0 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0926 63 false '-- '-- '-- '-- -23307 788 4b183665-721a-5e26-a141-269b36017af8 '-- not reported female '-- '-- '-- '-- white TCGA-10-0926_demographic Dead '-- '-- '-- '-- 23307 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 788.0 '-- '-- 71ac222a-9ac1-59e1-9ee0-70f90b4db4f0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-10-0926_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- 232 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-10-0926_treatment5 Recombinant Interleukin-12 '-- '-- '-- '-- '-- '-- '-- 22920 '-- mg '-- '-- '-- '-- af0d1a91-3030-46ef-a3b1-10fbd6440d16 Adjuvant yes '-- '-- Immunotherapy (Including Vaccines) +TCGA-OV e641aed9-1dd8-4c30-b231-f12b20a76df0 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0926 63 false '-- '-- '-- '-- -23307 788 4b183665-721a-5e26-a141-269b36017af8 '-- not reported female '-- '-- '-- '-- white TCGA-10-0926_demographic Dead '-- '-- '-- '-- 23594 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 287 '-- '-- '-- bddcffbd-65a5-42ab-a520-5761286da636 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0926_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0926_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0926_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5b870af1-a48c-4ede-9fde-63e8ddb127ee '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV e641aed9-1dd8-4c30-b231-f12b20a76df0 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-10-0926 63 false '-- '-- '-- '-- -23307 788 4b183665-721a-5e26-a141-269b36017af8 '-- not reported female '-- '-- '-- '-- white TCGA-10-0926_demographic Dead '-- '-- '-- '-- 23594 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 287 '-- '-- '-- bddcffbd-65a5-42ab-a520-5761286da636 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-10-0926_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-10-0926_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-10-0926_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7568fd5b-579a-468e-bc3d-2f54fed13cbf '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV e732f81c-9b7d-44bd-a905-ff53fbed5009 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0768 73 false '-- '-- '-- '-- -26999 1784 966cbbef-f952-52c3-b48d-c694642a69ee '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0768_demographic Dead '-- '-- '-- '-- 26999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1784.0 '-- '-- d5398208-3c8b-5148-b69e-9f403cbb7786 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0768_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 57 36 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0768_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 151c75bf-68c3-4213-9b6e-dd33808d6557 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e732f81c-9b7d-44bd-a905-ff53fbed5009 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0768 73 false '-- '-- '-- '-- -26999 1784 966cbbef-f952-52c3-b48d-c694642a69ee '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0768_demographic Dead '-- '-- '-- '-- 26999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1784.0 '-- '-- d5398208-3c8b-5148-b69e-9f403cbb7786 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0768_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0768_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 51fa9a90-8b83-4dc6-8ec1-d6934c2fb6a8 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV e732f81c-9b7d-44bd-a905-ff53fbed5009 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0768 73 false '-- '-- '-- '-- -26999 1784 966cbbef-f952-52c3-b48d-c694642a69ee '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0768_demographic Dead '-- '-- '-- '-- 26999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1784.0 '-- '-- d5398208-3c8b-5148-b69e-9f403cbb7786 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0768_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 148 78 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0768_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 75 '-- mg/m2 '-- '-- '-- '-- 9f5ff0e6-3960-49d4-8fb6-ed40245b5721 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e732f81c-9b7d-44bd-a905-ff53fbed5009 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0768 73 false '-- '-- '-- '-- -26999 1784 966cbbef-f952-52c3-b48d-c694642a69ee '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0768_demographic Dead '-- '-- '-- '-- 26999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1784.0 '-- '-- d5398208-3c8b-5148-b69e-9f403cbb7786 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0768_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 148 78 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0768_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 60 '-- mg/m2 '-- '-- '-- '-- a48cad23-2a24-4d09-bfab-5217a57ec9f9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e732f81c-9b7d-44bd-a905-ff53fbed5009 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0768 73 false '-- '-- '-- '-- -26999 1784 966cbbef-f952-52c3-b48d-c694642a69ee '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0768_demographic Dead '-- '-- '-- '-- 26999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1784.0 '-- '-- d5398208-3c8b-5148-b69e-9f403cbb7786 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0768_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 148 78 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0768_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg/m2 '-- '-- '-- '-- b31b0776-fe73-5a8b-ae73-4dc7822bd957 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e732f81c-9b7d-44bd-a905-ff53fbed5009 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0768 73 false '-- '-- '-- '-- -26999 1784 966cbbef-f952-52c3-b48d-c694642a69ee '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0768_demographic Dead '-- '-- '-- '-- 26999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1784.0 '-- '-- d5398208-3c8b-5148-b69e-9f403cbb7786 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0768_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 57 36 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0768_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- b64a1235-0040-4df5-97f7-2faf1babbed2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e732f81c-9b7d-44bd-a905-ff53fbed5009 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0768 73 false '-- '-- '-- '-- -26999 1784 966cbbef-f952-52c3-b48d-c694642a69ee '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0768_demographic Dead '-- '-- '-- '-- 27397 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 398 '-- '-- '-- d5fbd196-d1ef-42ac-99e1-5769fa312072 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0768_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0768_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV e8372916-7ac7-4535-ae97-0248208224f5 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0894 53 false '-- '-- '-- '-- -19466 1509 a904eb82-3ff1-56b2-8d64-d0b18bb4e79c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0894_demographic Dead '-- '-- '-- '-- 19466 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1509.0 '-- '-- 642d8de4-89da-5ab3-b214-4d900d9f8ee0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0894_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 330 307 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-0894_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 600 '-- mg/m2 '-- '-- '-- '-- 805c3868-ad3d-49db-a8ab-2c2bb014c04f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e8372916-7ac7-4535-ae97-0248208224f5 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0894 53 false '-- '-- '-- '-- -19466 1509 a904eb82-3ff1-56b2-8d64-d0b18bb4e79c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0894_demographic Dead '-- '-- '-- '-- 19466 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1509.0 '-- '-- 642d8de4-89da-5ab3-b214-4d900d9f8ee0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0894_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0894_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- af7f8ce6-d7a2-4ac1-b703-d679437f3bde Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV e8372916-7ac7-4535-ae97-0248208224f5 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0894 53 false '-- '-- '-- '-- -19466 1509 a904eb82-3ff1-56b2-8d64-d0b18bb4e79c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0894_demographic Dead '-- '-- '-- '-- 19466 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1509.0 '-- '-- 642d8de4-89da-5ab3-b214-4d900d9f8ee0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0894_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 216 47 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0894_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- e4ff42e5-d99c-49c4-989a-b2cc0dd2aa47 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e8372916-7ac7-4535-ae97-0248208224f5 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0894 53 false '-- '-- '-- '-- -19466 1509 a904eb82-3ff1-56b2-8d64-d0b18bb4e79c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0894_demographic Dead '-- '-- '-- '-- 19466 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1509.0 '-- '-- 642d8de4-89da-5ab3-b214-4d900d9f8ee0 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0894_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 216 47 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0894_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ffa242d4-a690-5500-91ed-107b38ea3bb2 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e8372916-7ac7-4535-ae97-0248208224f5 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0894 53 false '-- '-- '-- '-- -19466 1509 a904eb82-3ff1-56b2-8d64-d0b18bb4e79c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0894_demographic Dead '-- '-- '-- '-- 20031 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 565 '-- '-- '-- d5c2fc6e-8d5f-4bcf-ad3f-2b4150e8671e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0894_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0894_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0894_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 60aa7493-3a12-4516-b08d-e367f89bb93c '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV e8372916-7ac7-4535-ae97-0248208224f5 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0894 53 false '-- '-- '-- '-- -19466 1509 a904eb82-3ff1-56b2-8d64-d0b18bb4e79c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0894_demographic Dead '-- '-- '-- '-- 20031 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 565 '-- '-- '-- d5c2fc6e-8d5f-4bcf-ad3f-2b4150e8671e false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0894_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0894_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0894_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9593919d-2a09-40c9-875a-f66106e2012b '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 17946 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1221 '-- '-- '-- 05b21b27-5b8b-4cfc-9e24-c2adcd31a2ed false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1514_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1514_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1514_treatment17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 583f8f13-68fe-4363-84a9-845f71857dfd '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 17946 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1221 '-- '-- '-- 05b21b27-5b8b-4cfc-9e24-c2adcd31a2ed false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1514_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1514_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1514_treatment16 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b046b9c7-204d-43b6-8d90-fd8134b47310 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 16725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1720.0 '-- '-- 79a5c305-99a7-5b90-b77c-918193fb98fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1514_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1587 1525 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1514_treatment3 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- 336 '-- mg '-- '-- '-- '-- 2cf64766-16e9-48a7-ae63-33d797e55478 '-- yes '-- '-- Chemotherapy +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 16725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1720.0 '-- '-- 79a5c305-99a7-5b90-b77c-918193fb98fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1514_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1514_treatment15 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2e5f6377-31b2-43fc-b739-777f9c86d311 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 16725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1720.0 '-- '-- 79a5c305-99a7-5b90-b77c-918193fb98fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1514_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 185 126 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-04-1514_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 4412c714-d6b9-48d1-bd93-061e575f2419 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 16725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1720.0 '-- '-- 79a5c305-99a7-5b90-b77c-918193fb98fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1514_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 185 126 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-04-1514_treatment2 Docetaxel '-- '-- '-- '-- '-- '-- '-- 333 '-- mg '-- '-- '-- '-- 4e5f80d0-410c-43e0-9cbe-a8ef1b2b72a7 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 16725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1720.0 '-- '-- 79a5c305-99a7-5b90-b77c-918193fb98fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1514_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1434 1372 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1514_treatment12 Patupilone '-- '-- '-- '-- '-- '-- '-- 51 '-- mg '-- '-- '-- '-- 5e148176-5b7a-44a0-bf80-4b3a52765633 '-- yes '-- '-- Chemotherapy +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 16725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1720.0 '-- '-- 79a5c305-99a7-5b90-b77c-918193fb98fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1514_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1342 1221 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1514_treatment14 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 685afe77-7408-43a2-a680-6b9aee490ad3 '-- yes '-- '-- Chemotherapy +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 16725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1720.0 '-- '-- 79a5c305-99a7-5b90-b77c-918193fb98fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1514_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1342 1221 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1514_treatment5 Docetaxel '-- '-- '-- '-- '-- '-- '-- 665 '-- mg '-- '-- '-- '-- 7186afbf-dd50-4b7a-80ed-81f8e41b5a30 '-- yes '-- '-- Chemotherapy +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 16725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1720.0 '-- '-- 79a5c305-99a7-5b90-b77c-918193fb98fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1514_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1495 1434 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1514_treatment6 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 201 '-- mg '-- '-- '-- '-- 7d09e2dc-879b-4646-9176-9a2ee8087bd3 '-- yes '-- '-- Chemotherapy +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 16725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1720.0 '-- '-- 79a5c305-99a7-5b90-b77c-918193fb98fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1514_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 126 34 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-04-1514_treatment10 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 494 '-- mg '-- '-- '-- '-- 92ae1d51-49c0-4eb5-930e-7110e63e6197 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 16725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1720.0 '-- '-- 79a5c305-99a7-5b90-b77c-918193fb98fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1514_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1676 1615 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1514_treatment9 Cisplatin '-- '-- '-- '-- '-- '-- '-- 292 '-- mg '-- '-- '-- '-- abc927bd-b785-4232-bd90-84b300005969 '-- yes '-- '-- Chemotherapy +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 16725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1720.0 '-- '-- 79a5c305-99a7-5b90-b77c-918193fb98fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1514_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 185 34 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1514_treatment13 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1112 '-- mg '-- '-- '-- '-- adc227f9-0aa9-4bc9-9d59-4a4e47c4c626 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 16725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1720.0 '-- '-- 79a5c305-99a7-5b90-b77c-918193fb98fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1514_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1676 1615 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1514_treatment11 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 7792 '-- mg '-- '-- '-- '-- c3d7863e-934a-4667-b476-baf133b00de8 '-- yes '-- '-- Chemotherapy +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 16725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1720.0 '-- '-- 79a5c305-99a7-5b90-b77c-918193fb98fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1514_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1587 1525 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1514_treatment8 Topotecan '-- '-- '-- '-- '-- '-- '-- 34 '-- mg '-- '-- '-- '-- c9c5d82e-3566-4b81-a30a-fcff825eb048 '-- yes '-- '-- Chemotherapy +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 16725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1720.0 '-- '-- 79a5c305-99a7-5b90-b77c-918193fb98fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1514_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1587 1464 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1514_treatment7 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 1750 '-- mg '-- '-- '-- '-- d530dc0c-4e53-4c12-b567-000472b7f6fb '-- yes '-- '-- Chemotherapy +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- 16725 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1720.0 '-- '-- 79a5c305-99a7-5b90-b77c-918193fb98fb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1514_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 126 34 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-04-1514_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 617 '-- mg '-- '-- '-- '-- f647827c-59b6-586c-b904-2f635ea833ac Adjuvant yes '-- '-- Chemotherapy +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a60c79bd-b5b3-4563-a7d2-dcde2222ecdc false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1514_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1514_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1514_treatment18 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9f6093e2-67d7-4b1c-9d4a-8486dd05f5f7 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a60c79bd-b5b3-4563-a7d2-dcde2222ecdc false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1514_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1514_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1514_treatment19 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cc776e5e-4cea-4996-bcf8-be3027153333 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV e9483296-cb91-497a-b955-39a3c3289dac Informed Consent 13 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1514 45 false '-- '-- '-- '-- -16725 1720 487bc60d-e5db-52e4-88dc-f4f3e93f6695 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1514_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a60c79bd-b5b3-4563-a7d2-dcde2222ecdc false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1514_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1514_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1284 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1514_treatment20 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d4ed50a9-110c-45f6-8f7e-357cb1fb5c85 '-- yes '-- '-- Surgery, NOS +TCGA-OV e978a457-92ff-4eab-b759-ec6e74d973e8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2350 44 false '-- '-- '-- '-- '-- 679 acbb0dbd-a668-5906-9c1c-4d880389bda6 '-- not reported female '-- '-- '-- '-- not reported TCGA-59-2350_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 211 '-- '-- '-- 12541090-8820-409f-b5de-201518523efe false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-59-2350_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-59-2350_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV e978a457-92ff-4eab-b759-ec6e74d973e8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2350 44 false '-- '-- '-- '-- '-- 679 acbb0dbd-a668-5906-9c1c-4d880389bda6 '-- not reported female '-- '-- '-- '-- not reported TCGA-59-2350_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 679.0 '-- '-- ad6e91d2-df71-5fea-b6c5-59d3ea208c19 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-59-2350_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1995 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV e978a457-92ff-4eab-b759-ec6e74d973e8 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2350 44 false '-- '-- '-- '-- '-- 679 acbb0dbd-a668-5906-9c1c-4d880389bda6 '-- not reported female '-- '-- '-- '-- not reported TCGA-59-2350_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cf0c4acf-6b1b-4e14-835a-21b269717653 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-59-2350_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-59-2350_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 211 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-2350_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 74ecd533-9738-40ac-a0e5-1ef60656e020 '-- yes '-- '-- Surgery, NOS +TCGA-OV e9b5336e-d724-4e7d-8c81-1147abd0a80d Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis Yes Ovary TCGA-04-1519 48 false '-- '-- '-- '-- -17671 '-- 3f483df1-55d7-5848-ad8c-8ba70f3f0607 '-- not reported female '-- '-- '-- '-- not reported TCGA-04-1519_demographic Alive '-- '-- '-- '-- 17671 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 24.0 '-- '-- 942ad6a8-7831-5c90-9f54-5783643971c4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1519_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1519_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cc88078d-f903-5f2e-8c76-a5404d8c8966 Adjuvant unknown '-- '-- Radiation Therapy, NOS +TCGA-OV ea605be2-6578-4e01-8ec3-bbd84c0b7f1d Informed Consent 1071 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2053 72 false '-- '-- '-- '-- -26433 '-- bb80c4c4-c773-51f5-99e1-61f3b1610405 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2053_demographic Alive '-- '-- '-- '-- 26433 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1209.0 '-- '-- 0517938d-2b87-5aae-a33c-e315635ccbe5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2053_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2053_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 436eb7e2-6c39-4450-9eed-5d5f6f2c2924 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ea605be2-6578-4e01-8ec3-bbd84c0b7f1d Informed Consent 1071 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2053 72 false '-- '-- '-- '-- -26433 '-- bb80c4c4-c773-51f5-99e1-61f3b1610405 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2053_demographic Alive '-- '-- '-- '-- 26433 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1209.0 '-- '-- 0517938d-2b87-5aae-a33c-e315635ccbe5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2053_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 138 34 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2053_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 727de4af-4e11-5739-930d-233dbc34ad1f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ea605be2-6578-4e01-8ec3-bbd84c0b7f1d Informed Consent 1071 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2053 72 false '-- '-- '-- '-- -26433 '-- bb80c4c4-c773-51f5-99e1-61f3b1610405 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-2053_demographic Alive '-- '-- '-- '-- 26433 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1209.0 '-- '-- 0517938d-2b87-5aae-a33c-e315635ccbe5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2053_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 138 34 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2053_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- cb331bbc-43e2-4be5-82ab-fc5c62265858 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ea6405c4-0fe4-4f37-bef2-275072f91e39 Informed Consent 249 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2056 62 false '-- '-- '-- '-- -22864 '-- 639a1216-bb98-5a39-8290-2bc82db55e29 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-09-2056_demographic Alive '-- '-- '-- '-- 22864 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 379.0 '-- '-- 70e65ccc-6f17-52fe-a1e7-1f828967cdaf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2056_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-2056_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 27b20fb0-2d59-4b6f-9090-999dd23150d8 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ea6405c4-0fe4-4f37-bef2-275072f91e39 Informed Consent 249 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2056 62 false '-- '-- '-- '-- -22864 '-- 639a1216-bb98-5a39-8290-2bc82db55e29 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-09-2056_demographic Alive '-- '-- '-- '-- 22864 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 379.0 '-- '-- 70e65ccc-6f17-52fe-a1e7-1f828967cdaf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2056_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 147 25 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2056_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 58e398e1-041f-5ea9-b2bc-71395883c72d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ea6405c4-0fe4-4f37-bef2-275072f91e39 Informed Consent 249 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-2056 62 false '-- '-- '-- '-- -22864 '-- 639a1216-bb98-5a39-8290-2bc82db55e29 '-- hispanic or latino female '-- '-- '-- '-- white TCGA-09-2056_demographic Alive '-- '-- '-- '-- 22864 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 379.0 '-- '-- 70e65ccc-6f17-52fe-a1e7-1f828967cdaf true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-2056_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 147 25 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-2056_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5b53e0df-2de7-48f1-83bc-8d30304dd3ad Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ead71c90-cc5e-42ce-8754-c3cf15a41134 Informed Consent 55 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1484 62 false '-- '-- '-- '-- -22698 3785 bdec91af-f3a7-5406-8e82-246379ecf70c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1484_demographic Dead '-- '-- '-- '-- 23195 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 497 '-- '-- '-- 3b1486d3-f222-45a2-88e0-a2df5917ebab false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1484_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1484_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV ead71c90-cc5e-42ce-8754-c3cf15a41134 Informed Consent 55 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1484 62 false '-- '-- '-- '-- -22698 3785 bdec91af-f3a7-5406-8e82-246379ecf70c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1484_demographic Dead '-- '-- '-- '-- 22698 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3785.0 '-- '-- 45710d2e-ed78-5663-bc62-6b02332660b5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1484_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 191 86 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1484_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1bea8848-c187-5d2e-8d7d-5642ed585667 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ead71c90-cc5e-42ce-8754-c3cf15a41134 Informed Consent 55 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1484 62 false '-- '-- '-- '-- -22698 3785 bdec91af-f3a7-5406-8e82-246379ecf70c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1484_demographic Dead '-- '-- '-- '-- 22698 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3785.0 '-- '-- 45710d2e-ed78-5663-bc62-6b02332660b5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1484_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 191 86 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1484_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a5487a8f-a036-4de2-b596-3ce61722a46a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ead71c90-cc5e-42ce-8754-c3cf15a41134 Informed Consent 55 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1484 62 false '-- '-- '-- '-- -22698 3785 bdec91af-f3a7-5406-8e82-246379ecf70c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1484_demographic Dead '-- '-- '-- '-- 22698 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3785.0 '-- '-- 45710d2e-ed78-5663-bc62-6b02332660b5 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1484_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1484_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c8257eb6-1883-4e53-ae88-ae68e5e743b3 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ead71c90-cc5e-42ce-8754-c3cf15a41134 Informed Consent 55 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1484 62 false '-- '-- '-- '-- -22698 3785 bdec91af-f3a7-5406-8e82-246379ecf70c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1484_demographic Dead '-- '-- '-- '-- 23195 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 497 '-- '-- '-- bbf122a9-2604-4448-8aa4-5c0446e183c5 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1484_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1484_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1484_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 240a6aac-0757-42ab-b0e2-38c77e3e8644 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ead71c90-cc5e-42ce-8754-c3cf15a41134 Informed Consent 55 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1484 62 false '-- '-- '-- '-- -22698 3785 bdec91af-f3a7-5406-8e82-246379ecf70c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1484_demographic Dead '-- '-- '-- '-- 23195 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 497 '-- '-- '-- bbf122a9-2604-4448-8aa4-5c0446e183c5 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1484_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1484_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1484_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c685265c-a1e2-4556-b585-967a6a4aedd3 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV eb7c3b35-7a5e-4621-b31f-9775c51f9a23 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2098 62 false '-- '-- '-- '-- -22876 '-- cf4091c2-42a1-5de2-ae37-e74fa4824373 '-- not reported female '-- '-- '-- '-- white TCGA-61-2098_demographic Alive '-- '-- '-- '-- 22876 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1993.0 '-- '-- 00f8ee1c-618f-530e-8d64-954aff8478aa true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2098_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-2098_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 07c803a9-f6fe-420c-8d6c-421e9267dd79 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV eb7c3b35-7a5e-4621-b31f-9775c51f9a23 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2098 62 false '-- '-- '-- '-- -22876 '-- cf4091c2-42a1-5de2-ae37-e74fa4824373 '-- not reported female '-- '-- '-- '-- white TCGA-61-2098_demographic Alive '-- '-- '-- '-- 22876 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1993.0 '-- '-- 00f8ee1c-618f-530e-8d64-954aff8478aa true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2098_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 145 14 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2098_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2988bc18-b975-53a3-b1b9-338cb73f5f51 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV eb7c3b35-7a5e-4621-b31f-9775c51f9a23 Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-2098 62 false '-- '-- '-- '-- -22876 '-- cf4091c2-42a1-5de2-ae37-e74fa4824373 '-- not reported female '-- '-- '-- '-- white TCGA-61-2098_demographic Alive '-- '-- '-- '-- 22876 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1993.0 '-- '-- 00f8ee1c-618f-530e-8d64-954aff8478aa true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-2098_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 145 14 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-2098_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 859b65b1-3911-417b-bf10-5e751aef53a5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ebe677e6-94b6-45be-a58d-eaae4cf63d12 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2078 66 false '-- '-- '-- '-- -24223 '-- ff617d73-37ba-5c86-9928-ca9ee553692f '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2078_demographic Alive '-- '-- '-- '-- 24223 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2661.0 '-- '-- 2d20c4d9-3e33-5e7a-90e1-7a4f1dbae09a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2078_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 149 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2078_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 3240 '-- mg '-- '-- '-- '-- 17e4fc0d-a5b6-5818-bdc4-8e2779727abd Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ebe677e6-94b6-45be-a58d-eaae4cf63d12 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2078 66 false '-- '-- '-- '-- -24223 '-- ff617d73-37ba-5c86-9928-ca9ee553692f '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2078_demographic Alive '-- '-- '-- '-- 24223 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2661.0 '-- '-- 2d20c4d9-3e33-5e7a-90e1-7a4f1dbae09a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2078_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2078_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8cc24f53-23fc-4940-9e5c-c8bb120448b3 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ebe677e6-94b6-45be-a58d-eaae4cf63d12 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2078 66 false '-- '-- '-- '-- -24223 '-- ff617d73-37ba-5c86-9928-ca9ee553692f '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-23-2078_demographic Alive '-- '-- '-- '-- 24223 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2661.0 '-- '-- 2d20c4d9-3e33-5e7a-90e1-7a4f1dbae09a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2078_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 149 35 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2078_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1980 '-- mg '-- '-- '-- '-- 94101f76-ccda-47fe-9a21-ed770e8c5da3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ed21615c-0de3-421c-9e8d-8996026c4431 Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1584 47 false '-- '-- '-- '-- -17263 '-- 7330b127-a51c-583d-a55b-d390f16ea0c2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1584_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0fa8841b-323a-44df-93f5-deb6fab06394 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-57-1584_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-57-1584_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 532 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1584_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8d324b0b-68c6-4b1c-813e-158b65799c06 '-- yes '-- '-- Surgery, NOS +TCGA-OV ed21615c-0de3-421c-9e8d-8996026c4431 Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1584 47 false '-- '-- '-- '-- -17263 '-- 7330b127-a51c-583d-a55b-d390f16ea0c2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1584_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0fa8841b-323a-44df-93f5-deb6fab06394 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-57-1584_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-57-1584_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1584_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9d6b8912-62bf-49f4-bc6e-a9b7b31b27af '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ed21615c-0de3-421c-9e8d-8996026c4431 Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1584 47 false '-- '-- '-- '-- -17263 '-- 7330b127-a51c-583d-a55b-d390f16ea0c2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1584_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0fa8841b-323a-44df-93f5-deb6fab06394 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-57-1584_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-57-1584_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1584_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f7f40dc2-3ba5-490e-af78-28a1aaa0b7e1 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV ed21615c-0de3-421c-9e8d-8996026c4431 Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1584 47 false '-- '-- '-- '-- -17263 '-- 7330b127-a51c-583d-a55b-d390f16ea0c2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1584_demographic Alive '-- '-- '-- '-- 17263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 643.0 '-- '-- 6d0c4029-6165-5461-9759-8581bfb6c538 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1584_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 573 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-57-1584_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 415882ce-7c35-4122-a330-6ab8d69b6c2d '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV ed21615c-0de3-421c-9e8d-8996026c4431 Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1584 47 false '-- '-- '-- '-- -17263 '-- 7330b127-a51c-583d-a55b-d390f16ea0c2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1584_demographic Alive '-- '-- '-- '-- 17263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 643.0 '-- '-- 6d0c4029-6165-5461-9759-8581bfb6c538 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1584_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1584_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c069213e-d9ee-4de8-a742-edb56fa4a99c Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ed21615c-0de3-421c-9e8d-8996026c4431 Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1584 47 false '-- '-- '-- '-- -17263 '-- 7330b127-a51c-583d-a55b-d390f16ea0c2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1584_demographic Alive '-- '-- '-- '-- 17263 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 643.0 '-- '-- 6d0c4029-6165-5461-9759-8581bfb6c538 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-57-1584_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- 573 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-57-1584_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- ff36a589-56d2-535a-9593-1cd26c63b156 '-- yes Treatment Ongoing '-- Chemotherapy +TCGA-OV ed21615c-0de3-421c-9e8d-8996026c4431 Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1584 47 false '-- '-- '-- '-- -17263 '-- 7330b127-a51c-583d-a55b-d390f16ea0c2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1584_demographic Alive '-- '-- '-- '-- 17793 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 530 '-- '-- '-- ab4e6ff6-1e67-46c8-9dc1-38652818d3ba false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-57-1584_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-57-1584_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1584_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 41239417-2fc5-4f74-be92-7ffa1e4cfed6 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ed21615c-0de3-421c-9e8d-8996026c4431 Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-57-1584 47 false '-- '-- '-- '-- -17263 '-- 7330b127-a51c-583d-a55b-d390f16ea0c2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-57-1584_demographic Alive '-- '-- '-- '-- 17793 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 530 '-- '-- '-- ab4e6ff6-1e67-46c8-9dc1-38652818d3ba false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-57-1584_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-57-1584_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-57-1584_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 46567458-02a2-4024-964d-b208cd3b6808 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV ee0a4a13-613e-4c5d-96c3-8083a013702d '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0890 56 false '-- '-- '-- '-- -20770 '-- 6960bb68-8fae-5be5-9d7e-982396e47b8d '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0890_demographic Alive '-- '-- '-- '-- 20770 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 4424.0 '-- '-- a88cf420-1c97-5791-903a-e746648a710e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0890_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0890_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 27d66f61-05ad-4f02-ba95-7982abf1c196 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ee0a4a13-613e-4c5d-96c3-8083a013702d '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0890 56 false '-- '-- '-- '-- -20770 '-- 6960bb68-8fae-5be5-9d7e-982396e47b8d '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0890_demographic Alive '-- '-- '-- '-- 20770 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 4424.0 '-- '-- a88cf420-1c97-5791-903a-e746648a710e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0890_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 235 15 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0890_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2ca3a348-8e6c-5023-8007-6ba8914c17bc Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ee0a4a13-613e-4c5d-96c3-8083a013702d '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0890 56 false '-- '-- '-- '-- -20770 '-- 6960bb68-8fae-5be5-9d7e-982396e47b8d '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0890_demographic Alive '-- '-- '-- '-- 20770 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 4424.0 '-- '-- a88cf420-1c97-5791-903a-e746648a710e true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0890_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 235 15 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0890_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- cc27f9c2-e3aa-42eb-8daa-f765372cb45d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV eeb9d147-608d-4692-8adf-2f601d23a8ff Informed Consent -17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1574 48 false '-- '-- '-- '-- -17847 '-- 46847140-fc89-5fa9-934e-d1c3ec70f956 '-- not reported female '-- '-- '-- '-- asian TCGA-36-1574_demographic Alive '-- '-- '-- '-- 17847 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 686.0 '-- '-- c26a3c0e-765f-5b6f-be27-9e886aeaad31 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1574_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1574_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 68db22fe-7b9b-4009-8ea8-a2bc99445a65 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV eeb9d147-608d-4692-8adf-2f601d23a8ff Informed Consent -17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1574 48 false '-- '-- '-- '-- -17847 '-- 46847140-fc89-5fa9-934e-d1c3ec70f956 '-- not reported female '-- '-- '-- '-- asian TCGA-36-1574_demographic Alive '-- '-- '-- '-- 17847 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 686.0 '-- '-- c26a3c0e-765f-5b6f-be27-9e886aeaad31 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1574_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 204 15 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1574_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cf439282-6042-4e32-9385-9a871347dca3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV eeb9d147-608d-4692-8adf-2f601d23a8ff Informed Consent -17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1574 48 false '-- '-- '-- '-- -17847 '-- 46847140-fc89-5fa9-934e-d1c3ec70f956 '-- not reported female '-- '-- '-- '-- asian TCGA-36-1574_demographic Alive '-- '-- '-- '-- 17847 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 686.0 '-- '-- c26a3c0e-765f-5b6f-be27-9e886aeaad31 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1574_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 204 15 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1574_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fa6eed8c-3187-56b6-83a7-e6424af3c8ae Adjuvant yes '-- '-- Chemotherapy +TCGA-OV eeb9d147-608d-4692-8adf-2f601d23a8ff Informed Consent -17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1574 48 false '-- '-- '-- '-- -17847 '-- 46847140-fc89-5fa9-934e-d1c3ec70f956 '-- not reported female '-- '-- '-- '-- asian TCGA-36-1574_demographic Alive '-- '-- '-- '-- 18495 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 648 '-- '-- '-- f9cc14f5-985d-4db4-a7b2-6fe6d67cb091 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-36-1574_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-36-1574_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1574_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 17ecb53e-b797-481f-a741-f99cdadbea3d '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV eeb9d147-608d-4692-8adf-2f601d23a8ff Informed Consent -17 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1574 48 false '-- '-- '-- '-- -17847 '-- 46847140-fc89-5fa9-934e-d1c3ec70f956 '-- not reported female '-- '-- '-- '-- asian TCGA-36-1574_demographic Alive '-- '-- '-- '-- 18495 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 648 '-- '-- '-- f9cc14f5-985d-4db4-a7b2-6fe6d67cb091 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-36-1574_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-36-1574_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1574_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 30baa3be-5edf-4f18-b241-e789ed03a224 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV eec69ea9-ceb8-456a-aff4-41fb8a261e36 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2261 76 false '-- '-- '-- '-- -27897 24 ff97c3b6-41e4-5f1e-a06b-1dfb04a62127 '-- not reported female '-- '-- '-- '-- white TCGA-24-2261_demographic Dead '-- '-- '-- '-- 27897 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 24.0 '-- '-- 98810cc1-7704-5e6c-8b7c-fbd3eaa7803b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2261_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2261_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6ca13c64-9d4e-436b-9258-49ce72526334 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV eec69ea9-ceb8-456a-aff4-41fb8a261e36 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2261 76 false '-- '-- '-- '-- -27897 24 ff97c3b6-41e4-5f1e-a06b-1dfb04a62127 '-- not reported female '-- '-- '-- '-- white TCGA-24-2261_demographic Dead '-- '-- '-- '-- 27897 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 24.0 '-- '-- 98810cc1-7704-5e6c-8b7c-fbd3eaa7803b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2261_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2261_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- be9eddb1-e95e-5731-90c8-be143d3f79d6 Adjuvant no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV ef57bc45-858f-4d4e-8407-b7eadfa43be5 Informed Consent 3653 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2077 45 false '-- '-- '-- '-- -16552 '-- 0710e66b-9d53-5515-b2cb-efd06694efa5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-2077_demographic Alive '-- '-- '-- '-- 16552 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3525.0 '-- '-- 11764381-ed45-5beb-b0c8-dec64df1b651 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2077_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1622 1622 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2077_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 275 '-- mg '-- '-- '-- '-- 1fc0c417-516c-472e-a684-b7880cadbe50 '-- yes '-- '-- Chemotherapy +TCGA-OV ef57bc45-858f-4d4e-8407-b7eadfa43be5 Informed Consent 3653 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2077 45 false '-- '-- '-- '-- -16552 '-- 0710e66b-9d53-5515-b2cb-efd06694efa5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-2077_demographic Alive '-- '-- '-- '-- 16552 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3525.0 '-- '-- 11764381-ed45-5beb-b0c8-dec64df1b651 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2077_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1758 1653 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2077_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2206 '-- mg '-- '-- '-- '-- 8ded9bb3-ca7f-413f-8f27-598d4b792898 '-- yes '-- '-- Chemotherapy +TCGA-OV ef57bc45-858f-4d4e-8407-b7eadfa43be5 Informed Consent 3653 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2077 45 false '-- '-- '-- '-- -16552 '-- 0710e66b-9d53-5515-b2cb-efd06694efa5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-2077_demographic Alive '-- '-- '-- '-- 16552 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3525.0 '-- '-- 11764381-ed45-5beb-b0c8-dec64df1b651 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2077_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2077_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8e36b9d2-5015-4d75-9e6c-00f64f833902 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ef57bc45-858f-4d4e-8407-b7eadfa43be5 Informed Consent 3653 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2077 45 false '-- '-- '-- '-- -16552 '-- 0710e66b-9d53-5515-b2cb-efd06694efa5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-2077_demographic Alive '-- '-- '-- '-- 16552 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3525.0 '-- '-- 11764381-ed45-5beb-b0c8-dec64df1b651 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2077_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 155 22 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2077_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 751 '-- mg '-- '-- '-- '-- b3dafbc4-eb4d-5509-9216-2626b9466861 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ef57bc45-858f-4d4e-8407-b7eadfa43be5 Informed Consent 3653 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2077 45 false '-- '-- '-- '-- -16552 '-- 0710e66b-9d53-5515-b2cb-efd06694efa5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-2077_demographic Alive '-- '-- '-- '-- 16552 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3525.0 '-- '-- 11764381-ed45-5beb-b0c8-dec64df1b651 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2077_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1622 1622 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2077_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 460 '-- mg '-- '-- '-- '-- c45adac0-26bf-4fc7-af9f-115ae721985c '-- yes '-- '-- Chemotherapy +TCGA-OV ef57bc45-858f-4d4e-8407-b7eadfa43be5 Informed Consent 3653 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2077 45 false '-- '-- '-- '-- -16552 '-- 0710e66b-9d53-5515-b2cb-efd06694efa5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-2077_demographic Alive '-- '-- '-- '-- 16552 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3525.0 '-- '-- 11764381-ed45-5beb-b0c8-dec64df1b651 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2077_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 1758 1653 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2077_treatment5 Docetaxel '-- '-- '-- '-- '-- '-- '-- 600 '-- mg '-- '-- '-- '-- dcca4279-b91b-4bf7-9313-453b52df4e10 '-- yes '-- '-- Chemotherapy +TCGA-OV ef57bc45-858f-4d4e-8407-b7eadfa43be5 Informed Consent 3653 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2077 45 false '-- '-- '-- '-- -16552 '-- 0710e66b-9d53-5515-b2cb-efd06694efa5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-2077_demographic Alive '-- '-- '-- '-- 16552 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 3525.0 '-- '-- 11764381-ed45-5beb-b0c8-dec64df1b651 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-2077_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 155 22 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-23-2077_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3300 '-- mg '-- '-- '-- '-- e98a1cf7-811b-462d-8d2e-00410e8df3d3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ef57bc45-858f-4d4e-8407-b7eadfa43be5 Informed Consent 3653 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2077 45 false '-- '-- '-- '-- -16552 '-- 0710e66b-9d53-5515-b2cb-efd06694efa5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-2077_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 67adbca3-04f6-4857-a3ae-e1b4df0b1bd0 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-2077_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-2077_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2077_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3888e50d-ff19-44bc-8657-2f1de4416313 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV ef57bc45-858f-4d4e-8407-b7eadfa43be5 Informed Consent 3653 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2077 45 false '-- '-- '-- '-- -16552 '-- 0710e66b-9d53-5515-b2cb-efd06694efa5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-2077_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 67adbca3-04f6-4857-a3ae-e1b4df0b1bd0 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-2077_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-2077_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2077_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- af2a92b8-97c1-4863-b64b-a308b377729e '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ef57bc45-858f-4d4e-8407-b7eadfa43be5 Informed Consent 3653 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2077 45 false '-- '-- '-- '-- -16552 '-- 0710e66b-9d53-5515-b2cb-efd06694efa5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-2077_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 67adbca3-04f6-4857-a3ae-e1b4df0b1bd0 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-2077_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-2077_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1345 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2077_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b4692742-e016-4919-87bb-54b2739dc1bf '-- yes '-- '-- Surgery, NOS +TCGA-OV ef57bc45-858f-4d4e-8407-b7eadfa43be5 Informed Consent 3653 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2077 45 false '-- '-- '-- '-- -16552 '-- 0710e66b-9d53-5515-b2cb-efd06694efa5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-2077_demographic Alive '-- '-- '-- '-- 17784 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1232 '-- '-- '-- cc11ab82-a810-4d00-b99a-100af23db921 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-2077_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-2077_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2077_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 191ebf99-5d88-4ec2-ac0f-23cd4db55895 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV ef57bc45-858f-4d4e-8407-b7eadfa43be5 Informed Consent 3653 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-2077 45 false '-- '-- '-- '-- -16552 '-- 0710e66b-9d53-5515-b2cb-efd06694efa5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-2077_demographic Alive '-- '-- '-- '-- 17784 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 1232 '-- '-- '-- cc11ab82-a810-4d00-b99a-100af23db921 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-23-2077_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-23-2077_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-2077_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9a4b245e-06b3-40e8-8dd3-7ee6b6f4582e '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ef5e85cf-2d82-4d52-a02c-fed5c76e4cec Informed Consent -26 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1581 63 false '-- '-- '-- '-- -23272 '-- 45b3ff78-a16c-5228-a88f-e0777a316c9f '-- not reported female '-- '-- '-- '-- white TCGA-36-1581_demographic Alive '-- '-- '-- '-- 23272 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 751.0 '-- '-- 241ae640-2769-5065-97aa-05298c7b1b9b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1581_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 141 29 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1581_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 4639 '-- mg '-- '-- '-- '-- 0adc4703-4ee1-52fa-b1ca-e461ad689029 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ef5e85cf-2d82-4d52-a02c-fed5c76e4cec Informed Consent -26 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1581 63 false '-- '-- '-- '-- -23272 '-- 45b3ff78-a16c-5228-a88f-e0777a316c9f '-- not reported female '-- '-- '-- '-- white TCGA-36-1581_demographic Alive '-- '-- '-- '-- 23272 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 751.0 '-- '-- 241ae640-2769-5065-97aa-05298c7b1b9b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1581_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1581_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 186d095c-78c0-4f35-bdb3-aea0ece8763e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ef5e85cf-2d82-4d52-a02c-fed5c76e4cec Informed Consent -26 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1581 63 false '-- '-- '-- '-- -23272 '-- 45b3ff78-a16c-5228-a88f-e0777a316c9f '-- not reported female '-- '-- '-- '-- white TCGA-36-1581_demographic Alive '-- '-- '-- '-- 23272 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 751.0 '-- '-- 241ae640-2769-5065-97aa-05298c7b1b9b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1581_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 141 29 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1581_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2313 '-- mg '-- '-- '-- '-- 72788b35-1c77-430b-b38f-deac68b164c6 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ef5e85cf-2d82-4d52-a02c-fed5c76e4cec Informed Consent -26 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1581 63 false '-- '-- '-- '-- -23272 '-- 45b3ff78-a16c-5228-a88f-e0777a316c9f '-- not reported female '-- '-- '-- '-- white TCGA-36-1581_demographic Alive '-- '-- '-- '-- 23974 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 702 '-- '-- '-- eed15e9e-9a4f-4a5f-a9ae-8d8db9ede639 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-36-1581_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-36-1581_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1581_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 746a847b-00ba-4204-80ac-62f8239d491c '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV ef5e85cf-2d82-4d52-a02c-fed5c76e4cec Informed Consent -26 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1581 63 false '-- '-- '-- '-- -23272 '-- 45b3ff78-a16c-5228-a88f-e0777a316c9f '-- not reported female '-- '-- '-- '-- white TCGA-36-1581_demographic Alive '-- '-- '-- '-- 23974 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 702 '-- '-- '-- eed15e9e-9a4f-4a5f-a9ae-8d8db9ede639 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-36-1581_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-36-1581_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1581_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 842ee8e6-968b-461d-99ed-81e3ba59bdaa '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ef653772-e5d2-46ec-8610-f81d75d7353c Informed Consent -23 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1900 51 false '-- '-- '-- '-- -18963 '-- 22cfffda-6e29-57b4-9e79-7c5e73abe719 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-61-1900_demographic Alive '-- '-- '-- '-- 18963 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 176.0 '-- '-- c6b4d84c-73bf-54db-b28c-a0e675a19216 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1900_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 76 35 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-1900_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 75 '-- mg '-- '-- '-- '-- 50d4f01f-a356-572e-8d49-b21789af5f5b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ef653772-e5d2-46ec-8610-f81d75d7353c Informed Consent -23 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1900 51 false '-- '-- '-- '-- -18963 '-- 22cfffda-6e29-57b4-9e79-7c5e73abe719 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-61-1900_demographic Alive '-- '-- '-- '-- 18963 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 176.0 '-- '-- c6b4d84c-73bf-54db-b28c-a0e675a19216 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1900_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1900_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 675fec84-a1c9-42c2-a4c4-923784df645b Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ef653772-e5d2-46ec-8610-f81d75d7353c Informed Consent -23 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1900 51 false '-- '-- '-- '-- -18963 '-- 22cfffda-6e29-57b4-9e79-7c5e73abe719 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-61-1900_demographic Alive '-- '-- '-- '-- 18963 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 176.0 '-- '-- c6b4d84c-73bf-54db-b28c-a0e675a19216 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1900_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 76 35 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-1900_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 250 '-- mg '-- '-- '-- '-- b4f25a47-e370-40c1-b662-22fae2723eec Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ef653772-e5d2-46ec-8610-f81d75d7353c Informed Consent -23 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1900 51 false '-- '-- '-- '-- -18963 '-- 22cfffda-6e29-57b4-9e79-7c5e73abe719 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-61-1900_demographic Alive '-- '-- '-- '-- 18963 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 176.0 '-- '-- c6b4d84c-73bf-54db-b28c-a0e675a19216 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1900_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 76 35 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-61-1900_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 135 '-- mg '-- '-- '-- '-- f39a623b-d142-4681-bf05-214dcd67cb7b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f007fa7a-7da9-4cb0-8aea-623af1a122c5 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1686 75 false '-- '-- '-- '-- -27588 '-- 197ab3f9-6726-5731-bfc7-6b08ced01e17 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1686_demographic Alive '-- '-- '-- '-- 27588 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 89.0 '-- '-- 1ed1ad50-2936-5821-988a-f9c6e3f2728f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1686_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 131 26 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-1686_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 216371a2-e571-542c-bb72-ee0f63f7346e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f007fa7a-7da9-4cb0-8aea-623af1a122c5 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1686 75 false '-- '-- '-- '-- -27588 '-- 197ab3f9-6726-5731-bfc7-6b08ced01e17 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1686_demographic Alive '-- '-- '-- '-- 27588 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 89.0 '-- '-- 1ed1ad50-2936-5821-988a-f9c6e3f2728f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1686_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 131 26 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-20-1686_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 726f0f27-86ba-4ca4-bc53-c607f8ce649d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f007fa7a-7da9-4cb0-8aea-623af1a122c5 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-20-1686 75 false '-- '-- '-- '-- -27588 '-- 197ab3f9-6726-5731-bfc7-6b08ced01e17 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-20-1686_demographic Alive '-- '-- '-- '-- 27588 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 89.0 '-- '-- 1ed1ad50-2936-5821-988a-f9c6e3f2728f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-20-1686_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-20-1686_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 99f01ed4-9620-4c8a-a46f-0eb787128ac6 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f0c353fd-947c-41e2-b643-3ecc0d69796c Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1347 81 false '-- '-- '-- '-- -29695 '-- cef50119-cfb0-5a18-84b4-6b9a87c26e3f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1347_demographic Alive '-- '-- '-- '-- 29695 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1919.0 '-- '-- 603b066e-4598-53b0-8ea1-c4772b8e2165 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1347_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 173 19 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1347_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2400 '-- mg '-- '-- '-- '-- 4ae6ca26-c093-4f6d-a861-b02fad2ca673 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f0c353fd-947c-41e2-b643-3ecc0d69796c Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1347 81 false '-- '-- '-- '-- -29695 '-- cef50119-cfb0-5a18-84b4-6b9a87c26e3f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1347_demographic Alive '-- '-- '-- '-- 29695 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1919.0 '-- '-- 603b066e-4598-53b0-8ea1-c4772b8e2165 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1347_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 173 19 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1347_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1764 '-- mg '-- '-- '-- '-- 767a0eff-c49f-561c-9def-532f6d7b1aeb Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f0c353fd-947c-41e2-b643-3ecc0d69796c Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1347 81 false '-- '-- '-- '-- -29695 '-- cef50119-cfb0-5a18-84b4-6b9a87c26e3f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1347_demographic Alive '-- '-- '-- '-- 29695 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1919.0 '-- '-- 603b066e-4598-53b0-8ea1-c4772b8e2165 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1347_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 173 19 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1347_treatment4 Docetaxel '-- '-- '-- '-- '-- '-- '-- 200 '-- mg '-- '-- '-- '-- 96a0affe-342c-445d-90cf-a6212780da1b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f0c353fd-947c-41e2-b643-3ecc0d69796c Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1347 81 false '-- '-- '-- '-- -29695 '-- cef50119-cfb0-5a18-84b4-6b9a87c26e3f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1347_demographic Alive '-- '-- '-- '-- 29695 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1919.0 '-- '-- 603b066e-4598-53b0-8ea1-c4772b8e2165 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1347_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1347_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d4a03c3a-8c0c-4f2b-97ff-078a9a0f98af Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f0c353fd-947c-41e2-b643-3ecc0d69796c Informed Consent 15 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1347 81 false '-- '-- '-- '-- -29695 '-- cef50119-cfb0-5a18-84b4-6b9a87c26e3f '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-04-1347_demographic Alive '-- '-- '-- '-- 29695 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1919.0 '-- '-- 603b066e-4598-53b0-8ea1-c4772b8e2165 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1347_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 173 19 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1347_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 750 '-- mg '-- '-- '-- '-- d7846e08-b0c6-4b33-b3a8-bd1c3553084a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f2ce00e4-0d4f-4faa-bee1-ddf1b306e97b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2260 74 false '-- '-- '-- '-- -27112 1100 97086652-7f26-5bb3-a755-fb74671e01bd '-- not reported female '-- '-- '-- '-- white TCGA-24-2260_demographic Dead '-- '-- '-- '-- 27779 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 667 '-- '-- '-- c08beecc-2777-4cb6-ae01-22fdbd7d9b03 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2260_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2260_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2260_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c4298639-d80c-452c-b515-3fb93892e44a '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV f2ce00e4-0d4f-4faa-bee1-ddf1b306e97b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2260 74 false '-- '-- '-- '-- -27112 1100 97086652-7f26-5bb3-a755-fb74671e01bd '-- not reported female '-- '-- '-- '-- white TCGA-24-2260_demographic Dead '-- '-- '-- '-- 27779 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 667 '-- '-- '-- c08beecc-2777-4cb6-ae01-22fdbd7d9b03 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-2260_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-2260_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2260_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dd00fc59-d94d-40a9-bcd0-f5c57a5077d3 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV f2ce00e4-0d4f-4faa-bee1-ddf1b306e97b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2260 74 false '-- '-- '-- '-- -27112 1100 97086652-7f26-5bb3-a755-fb74671e01bd '-- not reported female '-- '-- '-- '-- white TCGA-24-2260_demographic Dead '-- '-- '-- '-- 27112 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1100.0 '-- '-- d27d08af-854b-5fce-a599-ba1b58ac808a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2260_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- 135 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2260_treatment5 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1110 '-- mg '-- '-- '-- '-- 20b3b74a-bac5-4dc4-96d9-c364c716ffc3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f2ce00e4-0d4f-4faa-bee1-ddf1b306e97b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2260 74 false '-- '-- '-- '-- -27112 1100 97086652-7f26-5bb3-a755-fb74671e01bd '-- not reported female '-- '-- '-- '-- white TCGA-24-2260_demographic Dead '-- '-- '-- '-- 27112 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1100.0 '-- '-- d27d08af-854b-5fce-a599-ba1b58ac808a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2260_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- 1081 1011 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-2260_treatment3 Chlorambucil '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4889cb96-bc58-4fea-b401-a1f561b02d46 '-- yes '-- '-- Chemotherapy +TCGA-OV f2ce00e4-0d4f-4faa-bee1-ddf1b306e97b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2260 74 false '-- '-- '-- '-- -27112 1100 97086652-7f26-5bb3-a755-fb74671e01bd '-- not reported female '-- '-- '-- '-- white TCGA-24-2260_demographic Dead '-- '-- '-- '-- 27112 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1100.0 '-- '-- d27d08af-854b-5fce-a599-ba1b58ac808a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2260_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- 849 682 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2260_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2905 '-- mg '-- '-- '-- '-- 8e4f9dff-a232-497a-a0bb-e15df5fd7297 '-- yes '-- '-- Chemotherapy +TCGA-OV f2ce00e4-0d4f-4faa-bee1-ddf1b306e97b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2260 74 false '-- '-- '-- '-- -27112 1100 97086652-7f26-5bb3-a755-fb74671e01bd '-- not reported female '-- '-- '-- '-- white TCGA-24-2260_demographic Dead '-- '-- '-- '-- 27112 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1100.0 '-- '-- d27d08af-854b-5fce-a599-ba1b58ac808a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2260_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- 1009 876 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Oral TCGA-24-2260_treatment4 Altretamine '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9026bd3e-6279-43dc-ab56-298e1e2c6f31 '-- yes '-- '-- Chemotherapy +TCGA-OV f2ce00e4-0d4f-4faa-bee1-ddf1b306e97b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2260 74 false '-- '-- '-- '-- -27112 1100 97086652-7f26-5bb3-a755-fb74671e01bd '-- not reported female '-- '-- '-- '-- white TCGA-24-2260_demographic Dead '-- '-- '-- '-- 27112 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1100.0 '-- '-- d27d08af-854b-5fce-a599-ba1b58ac808a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2260_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-2260_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d5edbfd5-9b5f-4a70-b4bd-c16c5408612e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f2ce00e4-0d4f-4faa-bee1-ddf1b306e97b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2260 74 false '-- '-- '-- '-- -27112 1100 97086652-7f26-5bb3-a755-fb74671e01bd '-- not reported female '-- '-- '-- '-- white TCGA-24-2260_demographic Dead '-- '-- '-- '-- 27112 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1100.0 '-- '-- d27d08af-854b-5fce-a599-ba1b58ac808a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2260_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- 849 682 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2260_treatment2 Cyclophosphamide '-- '-- '-- '-- '-- '-- '-- 5810 '-- mg '-- '-- '-- '-- dc19bd71-3711-4766-98b7-6966c662ecda '-- yes '-- '-- Chemotherapy +TCGA-OV f2ce00e4-0d4f-4faa-bee1-ddf1b306e97b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-2260 74 false '-- '-- '-- '-- -27112 1100 97086652-7f26-5bb3-a755-fb74671e01bd '-- not reported female '-- '-- '-- '-- white TCGA-24-2260_demographic Dead '-- '-- '-- '-- 27112 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1100.0 '-- '-- d27d08af-854b-5fce-a599-ba1b58ac808a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Fine Needle Aspiration '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-2260_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1992 '-- '-- '-- 135 24 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-2260_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 727 '-- mg '-- '-- '-- '-- fbfb38e3-c480-528e-b912-34ce8f6c3568 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f2dcf4cc-609d-4532-a90d-6ae2bbb53365 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1407 51 false '-- '-- '-- '-- -18896 '-- ce1b2666-1364-5381-ae68-062a3cc7e5d5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1407_demographic Alive '-- '-- '-- '-- 18896 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2534.0 '-- '-- 3b851cf3-1472-5cb5-8f7a-4543fadcd62d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1407_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 184 42 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1407_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 4f45a2d2-8d3a-4e75-8279-2659fa84efc4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f2dcf4cc-609d-4532-a90d-6ae2bbb53365 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1407 51 false '-- '-- '-- '-- -18896 '-- ce1b2666-1364-5381-ae68-062a3cc7e5d5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1407_demographic Alive '-- '-- '-- '-- 18896 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2534.0 '-- '-- 3b851cf3-1472-5cb5-8f7a-4543fadcd62d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1407_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1407_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 816c4cf7-823c-4a1d-92c4-8b40d4b295b0 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f2dcf4cc-609d-4532-a90d-6ae2bbb53365 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1407 51 false '-- '-- '-- '-- -18896 '-- ce1b2666-1364-5381-ae68-062a3cc7e5d5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1407_demographic Alive '-- '-- '-- '-- 18896 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2534.0 '-- '-- 3b851cf3-1472-5cb5-8f7a-4543fadcd62d true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1407_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 184 42 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1407_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c01352be-2ef4-5b20-9594-a127ad0d4767 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f2dcf4cc-609d-4532-a90d-6ae2bbb53365 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1407 51 false '-- '-- '-- '-- -18896 '-- ce1b2666-1364-5381-ae68-062a3cc7e5d5 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1407_demographic Alive '-- '-- '-- '-- 20229 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 1333 '-- '-- '-- 46962aed-2782-4dc5-b9b9-2b6ca9578d71 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1407_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1407_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV f2ec64f5-a414-4c34-99c7-d59bc4e831e0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1545 69 false '-- '-- '-- '-- -25460 1746 1d9ea521-4431-55d4-8082-d86421ddebe7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1545_demographic Dead '-- '-- '-- '-- 26321 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 861 '-- '-- '-- ea41988c-1e9c-4a6f-8ac4-1e492cbd7607 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1545_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1545_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1545_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b792d936-d07a-4d06-8976-e9c2acb26f5c '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV f2ec64f5-a414-4c34-99c7-d59bc4e831e0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1545 69 false '-- '-- '-- '-- -25460 1746 1d9ea521-4431-55d4-8082-d86421ddebe7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1545_demographic Dead '-- '-- '-- '-- 26321 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 861 '-- '-- '-- ea41988c-1e9c-4a6f-8ac4-1e492cbd7607 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1545_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1545_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1545_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cb1c4334-ced3-4b64-93d5-4a216dee2729 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV f2ec64f5-a414-4c34-99c7-d59bc4e831e0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1545 69 false '-- '-- '-- '-- -25460 1746 1d9ea521-4431-55d4-8082-d86421ddebe7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1545_demographic Dead '-- '-- '-- '-- 25460 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1746.0 '-- '-- f4ff0564-e1c9-5baa-805d-e0331fd5245c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1545_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1238 1203 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1545_treatment7 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- 215 '-- mg '-- '-- '-- '-- 0d866a8f-7043-4006-84eb-ba01b47e4fbc '-- yes '-- '-- Chemotherapy +TCGA-OV f2ec64f5-a414-4c34-99c7-d59bc4e831e0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1545 69 false '-- '-- '-- '-- -25460 1746 1d9ea521-4431-55d4-8082-d86421ddebe7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1545_demographic Dead '-- '-- '-- '-- 25460 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1746.0 '-- '-- f4ff0564-e1c9-5baa-805d-e0331fd5245c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1545_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 285 14 '-- '-- '-- '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1545_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2520 '-- mg '-- '-- '-- '-- 92fe51b2-9040-5c9a-af61-f7f023ffef76 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f2ec64f5-a414-4c34-99c7-d59bc4e831e0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1545 69 false '-- '-- '-- '-- -25460 1746 1d9ea521-4431-55d4-8082-d86421ddebe7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1545_demographic Dead '-- '-- '-- '-- 25460 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1746.0 '-- '-- f4ff0564-e1c9-5baa-805d-e0331fd5245c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1545_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 285 14 '-- '-- '-- '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1545_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5750 '-- mg '-- '-- '-- '-- 96c3d17a-d6f4-4113-8ec4-0398f55cee51 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f2ec64f5-a414-4c34-99c7-d59bc4e831e0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1545 69 false '-- '-- '-- '-- -25460 1746 1d9ea521-4431-55d4-8082-d86421ddebe7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1545_demographic Dead '-- '-- '-- '-- 25460 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1746.0 '-- '-- f4ff0564-e1c9-5baa-805d-e0331fd5245c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1545_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1545_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 98f368f3-ae86-4063-832d-c1ae65ba1927 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f2ec64f5-a414-4c34-99c7-d59bc4e831e0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1545 69 false '-- '-- '-- '-- -25460 1746 1d9ea521-4431-55d4-8082-d86421ddebe7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1545_demographic Dead '-- '-- '-- '-- 25460 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1746.0 '-- '-- f4ff0564-e1c9-5baa-805d-e0331fd5245c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1545_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1169 1056 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1545_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- 3068 '-- mg '-- '-- '-- '-- d7716845-07c3-49bd-8ef3-55d844a854be '-- yes '-- '-- Chemotherapy +TCGA-OV f2ec64f5-a414-4c34-99c7-d59bc4e831e0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1545 69 false '-- '-- '-- '-- -25460 1746 1d9ea521-4431-55d4-8082-d86421ddebe7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1545_demographic Dead '-- '-- '-- '-- 25460 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1746.0 '-- '-- f4ff0564-e1c9-5baa-805d-e0331fd5245c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1545_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 951 867 '-- '-- Recurrent Disease '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1545_treatment4 Topotecan '-- '-- '-- '-- '-- '-- '-- 42 '-- mg '-- '-- '-- '-- e5fb8aed-d0f0-452f-b9a6-dc1e9998625c '-- yes '-- '-- Chemotherapy +TCGA-OV f2ec64f5-a414-4c34-99c7-d59bc4e831e0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1545 69 false '-- '-- '-- '-- -25460 1746 1d9ea521-4431-55d4-8082-d86421ddebe7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1545_demographic Dead '-- '-- '-- '-- 25460 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1746.0 '-- '-- f4ff0564-e1c9-5baa-805d-e0331fd5245c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1545_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1169 1056 '-- '-- Progressive Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1545_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1476 '-- mg '-- '-- '-- '-- edabc08b-7fdd-4a09-b759-3a992e3f8070 '-- yes '-- '-- Chemotherapy +TCGA-OV f2ec64f5-a414-4c34-99c7-d59bc4e831e0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1545 69 false '-- '-- '-- '-- -25460 1746 1d9ea521-4431-55d4-8082-d86421ddebe7 '-- not reported female '-- '-- '-- '-- white TCGA-24-1545_demographic Dead '-- '-- '-- '-- 25460 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1746.0 '-- '-- f4ff0564-e1c9-5baa-805d-e0331fd5245c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1545_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1997 '-- '-- '-- 1028 973 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1545_treatment6 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 165 '-- mg '-- '-- '-- '-- f48eaf76-f73c-43df-8449-3775b243776e '-- yes '-- '-- Chemotherapy +TCGA-OV f34aa3b6-e966-49c6-bc55-130545772c53 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1103 50 false '-- '-- '-- '-- -18583 1646 70b9fc46-3ebc-5ab0-adbb-162e6a4ea01c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1103_demographic Dead '-- '-- '-- '-- 19261 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 678 '-- '-- '-- a4629077-3ff3-41ff-8358-6170f333c4b1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1103_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1103_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1103_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 328fcd73-4ced-46d9-b38a-6d7487379303 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV f34aa3b6-e966-49c6-bc55-130545772c53 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1103 50 false '-- '-- '-- '-- -18583 1646 70b9fc46-3ebc-5ab0-adbb-162e6a4ea01c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1103_demographic Dead '-- '-- '-- '-- 19261 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 678 '-- '-- '-- a4629077-3ff3-41ff-8358-6170f333c4b1 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1103_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1103_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1103_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- adc181a0-bbd5-439c-b5d8-5902d06d0e60 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV f34aa3b6-e966-49c6-bc55-130545772c53 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1103 50 false '-- '-- '-- '-- -18583 1646 70b9fc46-3ebc-5ab0-adbb-162e6a4ea01c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1103_demographic Dead '-- '-- '-- '-- 18583 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1646.0 '-- '-- d8c22b70-6252-5c9a-ad92-ede1bb3d8804 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1103_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 127 19 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1103_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2210 '-- mg '-- '-- '-- '-- 10570db3-ed4c-45bf-8a35-b54063eb4a81 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f34aa3b6-e966-49c6-bc55-130545772c53 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1103 50 false '-- '-- '-- '-- -18583 1646 70b9fc46-3ebc-5ab0-adbb-162e6a4ea01c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1103_demographic Dead '-- '-- '-- '-- 18583 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1646.0 '-- '-- d8c22b70-6252-5c9a-ad92-ede1bb3d8804 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1103_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1127 1016 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1103_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- 756 '-- mg '-- '-- '-- '-- 1bea8dd8-0255-4e01-a63f-9719814dc8ad '-- yes '-- '-- Chemotherapy +TCGA-OV f34aa3b6-e966-49c6-bc55-130545772c53 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1103 50 false '-- '-- '-- '-- -18583 1646 70b9fc46-3ebc-5ab0-adbb-162e6a4ea01c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1103_demographic Dead '-- '-- '-- '-- 18583 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1646.0 '-- '-- d8c22b70-6252-5c9a-ad92-ede1bb3d8804 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1103_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1127 1016 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1103_treatment6 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2322 '-- mg '-- '-- '-- '-- 298387b5-b2e4-4b62-843b-d4ee3aa1f41b '-- yes '-- '-- Chemotherapy +TCGA-OV f34aa3b6-e966-49c6-bc55-130545772c53 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1103 50 false '-- '-- '-- '-- -18583 1646 70b9fc46-3ebc-5ab0-adbb-162e6a4ea01c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1103_demographic Dead '-- '-- '-- '-- 18583 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1646.0 '-- '-- d8c22b70-6252-5c9a-ad92-ede1bb3d8804 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1103_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1103_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4b8ab6df-351a-4ff4-8722-e0a3b8bfea48 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f34aa3b6-e966-49c6-bc55-130545772c53 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1103 50 false '-- '-- '-- '-- -18583 1646 70b9fc46-3ebc-5ab0-adbb-162e6a4ea01c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1103_demographic Dead '-- '-- '-- '-- 18583 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1646.0 '-- '-- d8c22b70-6252-5c9a-ad92-ede1bb3d8804 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1103_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- 1625 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-24-1103_treatment8 Docetaxel '-- '-- '-- '-- '-- '-- '-- 130 '-- mg '-- '-- '-- '-- 5b9df73c-9cc0-4fef-ac09-f07597e83311 '-- yes '-- '-- Chemotherapy +TCGA-OV f34aa3b6-e966-49c6-bc55-130545772c53 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1103 50 false '-- '-- '-- '-- -18583 1646 70b9fc46-3ebc-5ab0-adbb-162e6a4ea01c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1103_demographic Dead '-- '-- '-- '-- 18583 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1646.0 '-- '-- d8c22b70-6252-5c9a-ad92-ede1bb3d8804 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1103_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 910 694 '-- '-- Recurrent Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1103_treatment2 Vinorelbine Tartrate '-- '-- '-- '-- '-- '-- '-- 816 '-- mg '-- '-- '-- '-- 89724fd2-44aa-49b4-9041-d88d87a9e52f '-- yes '-- '-- Chemotherapy +TCGA-OV f34aa3b6-e966-49c6-bc55-130545772c53 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1103 50 false '-- '-- '-- '-- -18583 1646 70b9fc46-3ebc-5ab0-adbb-162e6a4ea01c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1103_demographic Dead '-- '-- '-- '-- 18583 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1646.0 '-- '-- d8c22b70-6252-5c9a-ad92-ede1bb3d8804 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1103_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- 1625 '-- '-- Recurrent Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-24-1103_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 347 '-- mg '-- '-- '-- '-- a56a89ae-fe6c-471e-a722-929ee69abaff '-- yes '-- '-- Chemotherapy +TCGA-OV f34aa3b6-e966-49c6-bc55-130545772c53 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1103 50 false '-- '-- '-- '-- -18583 1646 70b9fc46-3ebc-5ab0-adbb-162e6a4ea01c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1103_demographic Dead '-- '-- '-- '-- 18583 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1646.0 '-- '-- d8c22b70-6252-5c9a-ad92-ede1bb3d8804 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1103_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 127 19 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1103_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1920 '-- mg '-- '-- '-- '-- a5babda3-555d-45a7-9f3d-17157f965c7d Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f34aa3b6-e966-49c6-bc55-130545772c53 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1103 50 false '-- '-- '-- '-- -18583 1646 70b9fc46-3ebc-5ab0-adbb-162e6a4ea01c '-- not reported female '-- '-- '-- '-- black or african american TCGA-24-1103_demographic Dead '-- '-- '-- '-- 18583 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1646.0 '-- '-- d8c22b70-6252-5c9a-ad92-ede1bb3d8804 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1103_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 910 694 '-- '-- Recurrent Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1103_treatment Topotecan '-- '-- '-- '-- '-- '-- '-- 43 '-- mg '-- '-- '-- '-- bb613be8-961d-5e06-a8fd-8cf0bbb11dac '-- yes '-- '-- Chemotherapy +TCGA-OV f3618472-32dc-4c90-a407-90050f68be85 Informed Consent -20 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-13-A5FT 67 false '-- '-- '-- United States -24743 '-- 496656d8-5645-5852-b629-f8e4c3b9647e '-- not reported female '-- '-- '-- '-- black or african american TCGA-13-A5FT_demographic Alive '-- '-- '-- '-- 24743 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2143.0 '-- '-- 46512cdd-749b-5942-92b7-1bce1b8021a2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- no No '-- RX '-- '-- Ovary '-- '-- TCGA-13-A5FT_diagnosis '-- No Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- No '-- 117 48 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-A5FT_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 16eb8992-7b14-4758-894d-0df608b37e05 '-- yes Complete Response '-- Chemotherapy +TCGA-OV f3618472-32dc-4c90-a407-90050f68be85 Informed Consent -20 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-13-A5FT 67 false '-- '-- '-- United States -24743 '-- 496656d8-5645-5852-b629-f8e4c3b9647e '-- not reported female '-- '-- '-- '-- black or african american TCGA-13-A5FT_demographic Alive '-- '-- '-- '-- 24743 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2143.0 '-- '-- 46512cdd-749b-5942-92b7-1bce1b8021a2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- no No '-- RX '-- '-- Ovary '-- '-- TCGA-13-A5FT_diagnosis '-- No Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- No '-- 111 49 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-A5FT_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 762c2a4d-d8c9-5cca-bb9a-17112fcc9206 '-- yes Complete Response '-- Chemotherapy +TCGA-OV f3618472-32dc-4c90-a407-90050f68be85 Informed Consent -20 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis No Ovary TCGA-13-A5FT 67 false '-- '-- '-- United States -24743 '-- 496656d8-5645-5852-b629-f8e4c3b9647e '-- not reported female '-- '-- '-- '-- black or african american TCGA-13-A5FT_demographic Alive '-- '-- '-- '-- 24743 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2143.0 '-- '-- 46512cdd-749b-5942-92b7-1bce1b8021a2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- no No '-- RX '-- '-- Ovary '-- '-- TCGA-13-A5FT_diagnosis '-- No Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-A5FT_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8ec70f47-d30b-4348-b010-c5a2b59d67af Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f3af727e-b592-4828-94f5-22008666cf8c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1482 52 false '-- '-- '-- '-- -19178 1877 5bce3e7c-4446-514f-bcfe-66719143e11c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1482_demographic Dead '-- '-- '-- '-- 19780 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 602 '-- '-- '-- 48b4aca0-1d7e-432c-9e26-973999a36969 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1482_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1482_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1482_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4f90be16-fb8a-47ec-bd81-2a10f00cd49e '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV f3af727e-b592-4828-94f5-22008666cf8c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1482 52 false '-- '-- '-- '-- -19178 1877 5bce3e7c-4446-514f-bcfe-66719143e11c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1482_demographic Dead '-- '-- '-- '-- 19780 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 602 '-- '-- '-- 48b4aca0-1d7e-432c-9e26-973999a36969 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1482_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1482_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1482_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 54cb99cf-dc18-4d07-ac27-0795bcb6a14e '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV f3af727e-b592-4828-94f5-22008666cf8c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1482 52 false '-- '-- '-- '-- -19178 1877 5bce3e7c-4446-514f-bcfe-66719143e11c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1482_demographic Dead '-- '-- '-- '-- 19178 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1877.0 '-- '-- ca932ee8-4c96-5161-b508-2be33bc85b22 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1482_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1482_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3a79dd55-38c8-4bb2-9c81-0f634a30efa6 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f3af727e-b592-4828-94f5-22008666cf8c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1482 52 false '-- '-- '-- '-- -19178 1877 5bce3e7c-4446-514f-bcfe-66719143e11c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1482_demographic Dead '-- '-- '-- '-- 19178 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1877.0 '-- '-- ca932ee8-4c96-5161-b508-2be33bc85b22 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1482_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 152 33 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1482_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- b123e1bb-4d75-5f6b-b843-485cae1de357 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f3af727e-b592-4828-94f5-22008666cf8c Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1482 52 false '-- '-- '-- '-- -19178 1877 5bce3e7c-4446-514f-bcfe-66719143e11c '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1482_demographic Dead '-- '-- '-- '-- 19178 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1877.0 '-- '-- ca932ee8-4c96-5161-b508-2be33bc85b22 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1482_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 152 33 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1482_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d3339571-ac35-4a78-a1f6-7c2b2f3f475c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f4b56568-a74a-4a2e-89d9-11722ecf5948 Informed Consent -24 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2059 50 false '-- '-- '-- '-- -18449 '-- 0e45d297-1d32-5e6c-b3d3-be6ead56218e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-2059_demographic Alive '-- '-- '-- '-- 19454 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 1005 '-- '-- '-- b900d8b7-fdec-4959-9c79-e6db0c6e0a94 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-2059_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-2059_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV f4b56568-a74a-4a2e-89d9-11722ecf5948 Informed Consent -24 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2059 50 false '-- '-- '-- '-- -18449 '-- 0e45d297-1d32-5e6c-b3d3-be6ead56218e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-2059_demographic Alive '-- '-- '-- '-- 18449 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2387.0 '-- '-- d5a530fd-c8ad-5743-b6aa-796bf76dbcfb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2059_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-2059_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2b638628-76c9-4ff1-8aba-ffde94064147 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f4b56568-a74a-4a2e-89d9-11722ecf5948 Informed Consent -24 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2059 50 false '-- '-- '-- '-- -18449 '-- 0e45d297-1d32-5e6c-b3d3-be6ead56218e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-2059_demographic Alive '-- '-- '-- '-- 18449 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2387.0 '-- '-- d5a530fd-c8ad-5743-b6aa-796bf76dbcfb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2059_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 158 46 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-2059_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 93caa35b-efdf-4860-b694-d251e15f74f4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f4b56568-a74a-4a2e-89d9-11722ecf5948 Informed Consent -24 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2059 50 false '-- '-- '-- '-- -18449 '-- 0e45d297-1d32-5e6c-b3d3-be6ead56218e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-2059_demographic Alive '-- '-- '-- '-- 18449 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2387.0 '-- '-- d5a530fd-c8ad-5743-b6aa-796bf76dbcfb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2059_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 158 46 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-13-2059_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ab5b965d-c7a9-499c-a104-a0c6beeb6322 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f4b56568-a74a-4a2e-89d9-11722ecf5948 Informed Consent -24 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-2059 50 false '-- '-- '-- '-- -18449 '-- 0e45d297-1d32-5e6c-b3d3-be6ead56218e '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-2059_demographic Alive '-- '-- '-- '-- 18449 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2387.0 '-- '-- d5a530fd-c8ad-5743-b6aa-796bf76dbcfb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-2059_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 158 46 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-2059_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e038f7a5-4862-545c-9423-3f6f0ce2c7dd Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f4d95c8e-fb84-46ca-acc0-827015cc9d0a Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2363 40 false '-- '-- '-- '-- '-- '-- 70e5088b-a97a-527d-8705-0671fabd9fdb '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-59-2363_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 165.0 '-- '-- 219b42b0-2897-5644-adb6-0bd82706bdac true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R0 '-- '-- Ovary '-- '-- TCGA-59-2363_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-2363_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0f0a6ccf-861a-43d3-8bbd-2c92bac2b952 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f4d95c8e-fb84-46ca-acc0-827015cc9d0a Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2363 40 false '-- '-- '-- '-- '-- '-- 70e5088b-a97a-527d-8705-0671fabd9fdb '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-59-2363_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 165.0 '-- '-- 219b42b0-2897-5644-adb6-0bd82706bdac true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R0 '-- '-- Ovary '-- '-- TCGA-59-2363_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-2363_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 15958777-9f8e-50af-995d-a42f6d60595c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f4d95c8e-fb84-46ca-acc0-827015cc9d0a Informed Consent 7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-59-2363 40 false '-- '-- '-- '-- '-- '-- 70e5088b-a97a-527d-8705-0671fabd9fdb '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-59-2363_demographic Alive '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 165.0 '-- '-- 219b42b0-2897-5644-adb6-0bd82706bdac true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIA '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- R0 '-- '-- Ovary '-- '-- TCGA-59-2363_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-59-2363_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f67577e8-014a-4fc4-b59a-af125c84474e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f5033d52-ec36-4e67-88d8-b6d898b81b2f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2391 57 false '-- '-- '-- '-- -20939 1492 8b704245-4ea7-56dc-bc6e-04c1ea8b05a8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2391_demographic Dead '-- '-- '-- '-- 20939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1492.0 '-- '-- 33b6e169-a746-5ca1-ab5c-eeaa38b79c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2391_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 153 31 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2391_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0e489603-9d4e-4e3d-a436-97d44d20f02b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f5033d52-ec36-4e67-88d8-b6d898b81b2f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2391 57 false '-- '-- '-- '-- -20939 1492 8b704245-4ea7-56dc-bc6e-04c1ea8b05a8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2391_demographic Dead '-- '-- '-- '-- 20939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1492.0 '-- '-- 33b6e169-a746-5ca1-ab5c-eeaa38b79c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2391_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 153 31 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2391_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 42ae62e3-b52d-5a77-b8f1-a4b696c24efa Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f5033d52-ec36-4e67-88d8-b6d898b81b2f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2391 57 false '-- '-- '-- '-- -20939 1492 8b704245-4ea7-56dc-bc6e-04c1ea8b05a8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2391_demographic Dead '-- '-- '-- '-- 20939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1492.0 '-- '-- 33b6e169-a746-5ca1-ab5c-eeaa38b79c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2391_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2391_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 93b988af-e9a2-4600-93be-2b8ec798655f Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f5033d52-ec36-4e67-88d8-b6d898b81b2f Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2391 57 false '-- '-- '-- '-- -20939 1492 8b704245-4ea7-56dc-bc6e-04c1ea8b05a8 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2391_demographic Dead '-- '-- '-- '-- 20939 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1492.0 '-- '-- 33b6e169-a746-5ca1-ab5c-eeaa38b79c2b true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2391_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2003 '-- '-- '-- 153 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2391_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e236dda1-afdf-469f-8744-19374fd1263f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f50ee039-1da9-43d9-ac01-657ec77a7f32 Informed Consent 35 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1494 43 false '-- '-- '-- '-- -15993 2856 dbdc42d3-7547-5fb6-a769-bf676f24c387 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1494_demographic Dead '-- '-- '-- '-- 16686 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 693 '-- '-- '-- 0900310d-1f7e-435f-b5a0-7d04a506c15f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1494_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1494_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1494_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8fb58b2a-e967-4393-ae93-716cb7aefd99 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV f50ee039-1da9-43d9-ac01-657ec77a7f32 Informed Consent 35 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1494 43 false '-- '-- '-- '-- -15993 2856 dbdc42d3-7547-5fb6-a769-bf676f24c387 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1494_demographic Dead '-- '-- '-- '-- 16686 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 693 '-- '-- '-- 0900310d-1f7e-435f-b5a0-7d04a506c15f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1494_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1494_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1494_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c36431f7-af2a-4f8f-b6af-bdeaa47f0ee4 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV f50ee039-1da9-43d9-ac01-657ec77a7f32 Informed Consent 35 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1494 43 false '-- '-- '-- '-- -15993 2856 dbdc42d3-7547-5fb6-a769-bf676f24c387 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1494_demographic Dead '-- '-- '-- '-- 16686 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 693 '-- '-- '-- 13b6c16c-ab16-4039-b4bc-c8c5e8462442 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1494_diagnosis4 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1494_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV f50ee039-1da9-43d9-ac01-657ec77a7f32 Informed Consent 35 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1494 43 false '-- '-- '-- '-- -15993 2856 dbdc42d3-7547-5fb6-a769-bf676f24c387 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1494_demographic Dead '-- '-- '-- '-- 15993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2856.0 '-- '-- d036cef4-d9ed-5d24-9e24-ce0dc4312c7a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1494_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1494_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 152d7807-9436-45c9-bb25-bdbf00480f8c Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f50ee039-1da9-43d9-ac01-657ec77a7f32 Informed Consent 35 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1494 43 false '-- '-- '-- '-- -15993 2856 dbdc42d3-7547-5fb6-a769-bf676f24c387 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1494_demographic Dead '-- '-- '-- '-- 15993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2856.0 '-- '-- d036cef4-d9ed-5d24-9e24-ce0dc4312c7a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1494_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 182 '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1494_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3541116f-38fe-5489-b6db-11a8efbd25f1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f50ee039-1da9-43d9-ac01-657ec77a7f32 Informed Consent 35 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1494 43 false '-- '-- '-- '-- -15993 2856 dbdc42d3-7547-5fb6-a769-bf676f24c387 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1494_demographic Dead '-- '-- '-- '-- 15993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2856.0 '-- '-- d036cef4-d9ed-5d24-9e24-ce0dc4312c7a true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Incisional Biopsy '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1494_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 182 '-- '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1494_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6698195b-b62f-4fab-9f3a-d25aea47fe3e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f50ee039-1da9-43d9-ac01-657ec77a7f32 Informed Consent 35 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1494 43 false '-- '-- '-- '-- -15993 2856 dbdc42d3-7547-5fb6-a769-bf676f24c387 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1494_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d6870d5e-87cc-42f0-92a4-154860219270 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1494_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1494_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 767 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1494_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 675ef4c9-22c4-49e3-8083-47008151afc4 '-- yes '-- '-- Surgery, NOS +TCGA-OV f50ee039-1da9-43d9-ac01-657ec77a7f32 Informed Consent 35 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1494 43 false '-- '-- '-- '-- -15993 2856 dbdc42d3-7547-5fb6-a769-bf676f24c387 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1494_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d6870d5e-87cc-42f0-92a4-154860219270 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1494_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1494_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1494_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- a8fd3cd6-24b3-409a-a334-6faa9ed40588 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV f50ee039-1da9-43d9-ac01-657ec77a7f32 Informed Consent 35 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1494 43 false '-- '-- '-- '-- -15993 2856 dbdc42d3-7547-5fb6-a769-bf676f24c387 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-1494_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d6870d5e-87cc-42f0-92a4-154860219270 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1494_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1494_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1494_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cbe5a4c1-541b-4153-9ddd-598ed0ce5d06 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV f553e953-6464-421f-8933-26ca82cb79d3 Informed Consent 176 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1906 55 false '-- '-- '-- '-- -20378 1038 3c64fec4-426f-5a79-97ab-a99b054a5437 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1906_demographic Dead '-- '-- '-- '-- 20378 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1038.0 '-- '-- 13c4efc6-1f2b-556d-9777-f542d52a9960 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1906_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 153 27 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1906_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2076 '-- mg '-- '-- '-- '-- 37405581-1493-4d4b-ab1e-392ae5d1df97 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f553e953-6464-421f-8933-26ca82cb79d3 Informed Consent 176 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1906 55 false '-- '-- '-- '-- -20378 1038 3c64fec4-426f-5a79-97ab-a99b054a5437 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1906_demographic Dead '-- '-- '-- '-- 20378 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1038.0 '-- '-- 13c4efc6-1f2b-556d-9777-f542d52a9960 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1906_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 484 400 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1906_treatment8 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 1000 '-- mg '-- '-- '-- '-- 3b7cbf17-0536-49e9-b7a6-bcb3447d676a '-- yes '-- '-- Chemotherapy +TCGA-OV f553e953-6464-421f-8933-26ca82cb79d3 Informed Consent 176 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1906 55 false '-- '-- '-- '-- -20378 1038 3c64fec4-426f-5a79-97ab-a99b054a5437 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1906_demographic Dead '-- '-- '-- '-- 20378 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1038.0 '-- '-- 13c4efc6-1f2b-556d-9777-f542d52a9960 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1906_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 153 27 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1906_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 6 '-- AUC '-- '-- '-- '-- 6c0a2877-665a-4f02-b594-6775491cf4c7 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f553e953-6464-421f-8933-26ca82cb79d3 Informed Consent 176 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1906 55 false '-- '-- '-- '-- -20378 1038 3c64fec4-426f-5a79-97ab-a99b054a5437 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1906_demographic Dead '-- '-- '-- '-- 20378 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1038.0 '-- '-- 13c4efc6-1f2b-556d-9777-f542d52a9960 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1906_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 321 279 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1906_treatment5 Topotecan '-- '-- '-- '-- '-- '-- '-- 8 '-- mg '-- '-- '-- '-- 6f306052-f250-4ce8-8219-d2833e562b6b '-- yes '-- '-- Chemotherapy +TCGA-OV f553e953-6464-421f-8933-26ca82cb79d3 Informed Consent 176 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1906 55 false '-- '-- '-- '-- -20378 1038 3c64fec4-426f-5a79-97ab-a99b054a5437 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1906_demographic Dead '-- '-- '-- '-- 20378 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1038.0 '-- '-- 13c4efc6-1f2b-556d-9777-f542d52a9960 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1906_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 1038 489 '-- '-- Recurrent Disease '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1906_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 84c378cb-dc4c-5a42-a2dc-200999e271f3 '-- yes '-- '-- Chemotherapy +TCGA-OV f553e953-6464-421f-8933-26ca82cb79d3 Informed Consent 176 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1906 55 false '-- '-- '-- '-- -20378 1038 3c64fec4-426f-5a79-97ab-a99b054a5437 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1906_demographic Dead '-- '-- '-- '-- 20378 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1038.0 '-- '-- 13c4efc6-1f2b-556d-9777-f542d52a9960 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1906_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 391 335 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1906_treatment7 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 234 '-- mg '-- '-- '-- '-- 8673980a-16d1-4980-864d-6c9b0e37f8ca '-- yes '-- '-- Chemotherapy +TCGA-OV f553e953-6464-421f-8933-26ca82cb79d3 Informed Consent 176 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1906 55 false '-- '-- '-- '-- -20378 1038 3c64fec4-426f-5a79-97ab-a99b054a5437 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1906_demographic Dead '-- '-- '-- '-- 20378 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1038.0 '-- '-- 13c4efc6-1f2b-556d-9777-f542d52a9960 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1906_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 1038 489 '-- '-- Recurrent Disease '-- '-- '-- '-- 10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1906_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1500 '-- mg '-- '-- '-- '-- b6373a92-cc00-481f-a30f-0eb26defd539 '-- yes '-- '-- Chemotherapy +TCGA-OV f553e953-6464-421f-8933-26ca82cb79d3 Informed Consent 176 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1906 55 false '-- '-- '-- '-- -20378 1038 3c64fec4-426f-5a79-97ab-a99b054a5437 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1906_demographic Dead '-- '-- '-- '-- 20378 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1038.0 '-- '-- 13c4efc6-1f2b-556d-9777-f542d52a9960 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1906_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 484 400 '-- '-- Recurrent Disease '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-61-1906_treatment6 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- 1600 '-- mg '-- '-- '-- '-- bd6332c6-7526-4196-9678-eb41fb455e40 '-- yes '-- '-- Chemotherapy +TCGA-OV f553e953-6464-421f-8933-26ca82cb79d3 Informed Consent 176 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1906 55 false '-- '-- '-- '-- -20378 1038 3c64fec4-426f-5a79-97ab-a99b054a5437 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1906_demographic Dead '-- '-- '-- '-- 20378 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1038.0 '-- '-- 13c4efc6-1f2b-556d-9777-f542d52a9960 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-61-1906_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1906_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- db6f6c55-16ea-4f68-bddf-eedcfed91b62 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f553e953-6464-421f-8933-26ca82cb79d3 Informed Consent 176 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1906 55 false '-- '-- '-- '-- -20378 1038 3c64fec4-426f-5a79-97ab-a99b054a5437 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1906_demographic Dead '-- '-- '-- '-- 20614 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 236 '-- '-- '-- ca89a856-2c51-4ed5-bd05-6618ed7c1082 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1906_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1906_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1906_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 40a51189-39f3-40b1-9d26-c84885ac6999 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV f553e953-6464-421f-8933-26ca82cb79d3 Informed Consent 176 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-61-1906 55 false '-- '-- '-- '-- -20378 1038 3c64fec4-426f-5a79-97ab-a99b054a5437 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-61-1906_demographic Dead '-- '-- '-- '-- 20614 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 236 '-- '-- '-- ca89a856-2c51-4ed5-bd05-6618ed7c1082 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-61-1906_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-61-1906_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-61-1906_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d333c264-d5fe-4af1-9f3d-82760a30cbb6 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV f58e49fc-9641-4b46-be4c-766445ec70a3 Informed Consent 877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1711 45 false '-- '-- '-- '-- -16485 '-- 8281281b-4e5e-598a-b5f4-68ff6e315138 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1711_demographic Alive '-- '-- '-- '-- 16485 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1053.0 '-- '-- eda2964c-ca2e-5949-a47e-bde81da98557 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1711_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1711_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 039b1e9f-245c-445e-88cd-25ba82934dfc Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f58e49fc-9641-4b46-be4c-766445ec70a3 Informed Consent 877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1711 45 false '-- '-- '-- '-- -16485 '-- 8281281b-4e5e-598a-b5f4-68ff6e315138 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1711_demographic Alive '-- '-- '-- '-- 16485 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1053.0 '-- '-- eda2964c-ca2e-5949-a47e-bde81da98557 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1711_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 234 30 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1711_treatment Bevacizumab '-- '-- '-- '-- '-- '-- '-- 1863 '-- mg '-- '-- '-- '-- 440d246c-0fd0-58e7-be8a-18e0015a9589 Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV f58e49fc-9641-4b46-be4c-766445ec70a3 Informed Consent 877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1711 45 false '-- '-- '-- '-- -16485 '-- 8281281b-4e5e-598a-b5f4-68ff6e315138 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1711_demographic Alive '-- '-- '-- '-- 16485 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1053.0 '-- '-- eda2964c-ca2e-5949-a47e-bde81da98557 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1711_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 136 30 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1711_treatment3 Docetaxel '-- '-- '-- '-- '-- '-- '-- 150 '-- mg '-- '-- '-- '-- c3899088-1e6c-4d14-8f8c-6b07aaa0a052 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f58e49fc-9641-4b46-be4c-766445ec70a3 Informed Consent 877 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1711 45 false '-- '-- '-- '-- -16485 '-- 8281281b-4e5e-598a-b5f4-68ff6e315138 '-- not reported female '-- '-- '-- '-- black or african american TCGA-29-1711_demographic Alive '-- '-- '-- '-- 16485 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1053.0 '-- '-- eda2964c-ca2e-5949-a47e-bde81da98557 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1711_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2006 '-- '-- '-- 136 30 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1711_treatment2 Oxaliplatin '-- '-- '-- '-- '-- '-- '-- 170 '-- mg '-- '-- '-- '-- f387fd70-16f3-4dd5-b0bb-54eb257fdd01 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f64ebc7f-0e5a-42b4-af57-6cdb90d24f90 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1423 61 false '-- '-- '-- '-- -22281 '-- a4ae248f-d90b-5ced-a3c7-bf5619b4bffd '-- not reported female '-- '-- '-- '-- white TCGA-24-1423_demographic Alive '-- '-- '-- '-- 22281 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 190.0 '-- '-- 4b898782-211b-5014-b4fc-29731d9e4489 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1423_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1423_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1b8f7954-3135-441b-bad3-64223712c36e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f64ebc7f-0e5a-42b4-af57-6cdb90d24f90 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1423 61 false '-- '-- '-- '-- -22281 '-- a4ae248f-d90b-5ced-a3c7-bf5619b4bffd '-- not reported female '-- '-- '-- '-- white TCGA-24-1423_demographic Alive '-- '-- '-- '-- 22281 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 190.0 '-- '-- 4b898782-211b-5014-b4fc-29731d9e4489 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1423_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 151 21 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1423_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 532 '-- mg '-- '-- '-- '-- 4c58edb9-2eb9-4477-8d86-89464d0da3bd Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f64ebc7f-0e5a-42b4-af57-6cdb90d24f90 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1423 61 false '-- '-- '-- '-- -22281 '-- a4ae248f-d90b-5ced-a3c7-bf5619b4bffd '-- not reported female '-- '-- '-- '-- white TCGA-24-1423_demographic Alive '-- '-- '-- '-- 22281 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 190.0 '-- '-- 4b898782-211b-5014-b4fc-29731d9e4489 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1423_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 151 21 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1423_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1703 '-- mg '-- '-- '-- '-- daf9c3a2-fdd8-55fa-aeed-0b37b8fd4d57 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f64ebc7f-0e5a-42b4-af57-6cdb90d24f90 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1423 61 false '-- '-- '-- '-- -22281 '-- a4ae248f-d90b-5ced-a3c7-bf5619b4bffd '-- not reported female '-- '-- '-- '-- white TCGA-24-1423_demographic Alive '-- '-- '-- '-- 22281 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 190.0 '-- '-- 4b898782-211b-5014-b4fc-29731d9e4489 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1423_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 151 21 '-- '-- '-- '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1423_treatment2 Doxorubicin '-- '-- '-- '-- '-- '-- '-- 477 '-- mg '-- '-- '-- '-- ef12c30b-8bb0-4b39-826a-307687066c02 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f65f2e78-c001-4ef3-ae88-3e4f83c7aceb Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1578 63 false '-- '-- '-- '-- -23329 '-- 753ed5fb-e73a-5641-941d-45f244e4c82e '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-36-1578_demographic Alive '-- '-- '-- '-- 23639 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 310 '-- '-- '-- c6993902-a6e8-4742-b549-5e7cfc22a72f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-36-1578_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-36-1578_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1578_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 616147d4-ed52-4658-85a8-2d9e14ff138e '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV f65f2e78-c001-4ef3-ae88-3e4f83c7aceb Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1578 63 false '-- '-- '-- '-- -23329 '-- 753ed5fb-e73a-5641-941d-45f244e4c82e '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-36-1578_demographic Alive '-- '-- '-- '-- 23639 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 310 '-- '-- '-- c6993902-a6e8-4742-b549-5e7cfc22a72f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-36-1578_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-36-1578_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1578_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b100c3e7-e85e-47d4-b548-fa3a8cc447e6 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV f65f2e78-c001-4ef3-ae88-3e4f83c7aceb Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1578 63 false '-- '-- '-- '-- -23329 '-- 753ed5fb-e73a-5641-941d-45f244e4c82e '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-36-1578_demographic Alive '-- '-- '-- '-- 23329 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 847.0 '-- '-- d74b9bf5-e84c-53ac-84a4-1a646a896e4f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1578_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 212 15 '-- '-- '-- '-- '-- '-- '-- 11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1578_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4830 '-- mg '-- '-- '-- '-- 17fa792f-1966-4417-aff3-2220e2544484 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f65f2e78-c001-4ef3-ae88-3e4f83c7aceb Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1578 63 false '-- '-- '-- '-- -23329 '-- 753ed5fb-e73a-5641-941d-45f244e4c82e '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-36-1578_demographic Alive '-- '-- '-- '-- 23329 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 847.0 '-- '-- d74b9bf5-e84c-53ac-84a4-1a646a896e4f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1578_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 212 15 '-- '-- '-- '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1578_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2013 '-- mg '-- '-- '-- '-- 2bd17957-04de-40ce-ab0b-ab72a79614fb Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f65f2e78-c001-4ef3-ae88-3e4f83c7aceb Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1578 63 false '-- '-- '-- '-- -23329 '-- 753ed5fb-e73a-5641-941d-45f244e4c82e '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-36-1578_demographic Alive '-- '-- '-- '-- 23329 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 847.0 '-- '-- d74b9bf5-e84c-53ac-84a4-1a646a896e4f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1578_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- 345 321 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-36-1578_treatment Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 136 '-- mg '-- '-- '-- '-- 3b2f7435-8ce2-5f3a-aad9-c4fb3a9696e4 '-- yes '-- '-- Chemotherapy +TCGA-OV f65f2e78-c001-4ef3-ae88-3e4f83c7aceb Informed Consent -7 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-36-1578 63 false '-- '-- '-- '-- -23329 '-- 753ed5fb-e73a-5641-941d-45f244e4c82e '-- not hispanic or latino female '-- '-- '-- '-- asian TCGA-36-1578_demographic Alive '-- '-- '-- '-- 23329 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 847.0 '-- '-- d74b9bf5-e84c-53ac-84a4-1a646a896e4f true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-36-1578_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2007 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-36-1578_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6a928fec-2ae2-4334-a43e-28bbbb440a9e Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f6ebf3a7-31c6-4f4c-9a0b-74cf35bfedf6 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1781 69 false '-- '-- '-- '-- -25404 '-- 34cdc2c3-656e-598f-98cd-ba99fa210ff2 '-- not reported female '-- '-- '-- '-- white TCGA-29-1781_demographic Alive '-- '-- '-- '-- 25404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 255.0 '-- '-- d76e4af6-34c3-5b30-9645-83c9a06479ea true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1781_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1781_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 140465ac-f47c-4869-b318-9c16fe9bd10c Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f6ebf3a7-31c6-4f4c-9a0b-74cf35bfedf6 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1781 69 false '-- '-- '-- '-- -25404 '-- 34cdc2c3-656e-598f-98cd-ba99fa210ff2 '-- not reported female '-- '-- '-- '-- white TCGA-29-1781_demographic Alive '-- '-- '-- '-- 25404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 255.0 '-- '-- d76e4af6-34c3-5b30-9645-83c9a06479ea true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1781_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 255 52 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1781_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 2970 '-- mg '-- '-- '-- '-- 32792d93-6714-57b9-a3dc-5bc59a18a6f1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f6ebf3a7-31c6-4f4c-9a0b-74cf35bfedf6 Informed Consent -8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1781 69 false '-- '-- '-- '-- -25404 '-- 34cdc2c3-656e-598f-98cd-ba99fa210ff2 '-- not reported female '-- '-- '-- '-- white TCGA-29-1781_demographic Alive '-- '-- '-- '-- 25404 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 255.0 '-- '-- d76e4af6-34c3-5b30-9645-83c9a06479ea true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1781_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2009 '-- '-- '-- 255 52 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1781_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2322 '-- mg '-- '-- '-- '-- 65a5ee47-84fd-4688-b691-434b3daf00c5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f7752d6e-f9cd-4dc9-ab01-3ab87acb21e4 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1348 44 false '-- '-- '-- '-- -16236 1483 6c0da9cf-4281-50f8-8be6-cdae39813f3b '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1348_demographic Dead '-- '-- '-- '-- 16811 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 575 '-- '-- '-- 40655e62-6371-44b4-884f-db83ec4e47f9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1348_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1348_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1348_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 5665f199-e877-49d1-84ee-c6e4e05e509e '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV f7752d6e-f9cd-4dc9-ab01-3ab87acb21e4 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1348 44 false '-- '-- '-- '-- -16236 1483 6c0da9cf-4281-50f8-8be6-cdae39813f3b '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1348_demographic Dead '-- '-- '-- '-- 16811 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 575 '-- '-- '-- 40655e62-6371-44b4-884f-db83ec4e47f9 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1348_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1348_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1348_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- afb9566a-60a3-4e0d-97de-50feb52cecf7 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV f7752d6e-f9cd-4dc9-ab01-3ab87acb21e4 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1348 44 false '-- '-- '-- '-- -16236 1483 6c0da9cf-4281-50f8-8be6-cdae39813f3b '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1348_demographic Dead '-- '-- '-- '-- 16236 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1483.0 '-- '-- 97f080aa-d9d0-5451-b6d1-71fab2c5a759 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1348_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1157 1006 '-- '-- Recurrent Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1348_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0c865d84-cae7-4eb7-8bb1-846206467d5a '-- yes '-- '-- Chemotherapy +TCGA-OV f7752d6e-f9cd-4dc9-ab01-3ab87acb21e4 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1348 44 false '-- '-- '-- '-- -16236 1483 6c0da9cf-4281-50f8-8be6-cdae39813f3b '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1348_demographic Dead '-- '-- '-- '-- 16236 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1483.0 '-- '-- 97f080aa-d9d0-5451-b6d1-71fab2c5a759 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1348_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1348_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3986ec29-9fe8-4ab6-ae53-c8b7d4ee4848 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f7752d6e-f9cd-4dc9-ab01-3ab87acb21e4 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1348 44 false '-- '-- '-- '-- -16236 1483 6c0da9cf-4281-50f8-8be6-cdae39813f3b '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1348_demographic Dead '-- '-- '-- '-- 16236 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1483.0 '-- '-- 97f080aa-d9d0-5451-b6d1-71fab2c5a759 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1348_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1157 1006 '-- '-- Recurrent Disease '-- '-- '-- '-- 9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1348_treatment4 Gemcitabine Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3d32e77a-0000-41de-b3c3-153f4786a26e '-- yes '-- '-- Chemotherapy +TCGA-OV f7752d6e-f9cd-4dc9-ab01-3ab87acb21e4 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1348 44 false '-- '-- '-- '-- -16236 1483 6c0da9cf-4281-50f8-8be6-cdae39813f3b '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1348_demographic Dead '-- '-- '-- '-- 16236 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1483.0 '-- '-- 97f080aa-d9d0-5451-b6d1-71fab2c5a759 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1348_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1249 1218 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1348_treatment7 Docetaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 503c46a7-d74e-4a74-9a1f-aa113c638782 '-- yes '-- '-- Chemotherapy +TCGA-OV f7752d6e-f9cd-4dc9-ab01-3ab87acb21e4 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1348 44 false '-- '-- '-- '-- -16236 1483 6c0da9cf-4281-50f8-8be6-cdae39813f3b '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1348_demographic Dead '-- '-- '-- '-- 16236 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1483.0 '-- '-- 97f080aa-d9d0-5451-b6d1-71fab2c5a759 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1348_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 976 884 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1348_treatment Topotecan '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 723636c3-1416-5ecd-adf8-fe85c73c12f6 '-- yes '-- '-- Chemotherapy +TCGA-OV f7752d6e-f9cd-4dc9-ab01-3ab87acb21e4 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1348 44 false '-- '-- '-- '-- -16236 1483 6c0da9cf-4281-50f8-8be6-cdae39813f3b '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1348_demographic Dead '-- '-- '-- '-- 16236 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1483.0 '-- '-- 97f080aa-d9d0-5451-b6d1-71fab2c5a759 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1348_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 184 2 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1348_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9664a283-5d6b-4a7b-9ef0-d7a71a0ee5a3 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f7752d6e-f9cd-4dc9-ab01-3ab87acb21e4 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1348 44 false '-- '-- '-- '-- -16236 1483 6c0da9cf-4281-50f8-8be6-cdae39813f3b '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1348_demographic Dead '-- '-- '-- '-- 16236 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1483.0 '-- '-- 97f080aa-d9d0-5451-b6d1-71fab2c5a759 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1348_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 184 2 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1348_treatment8 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cae60ade-792b-4a6a-80cf-18a1906c7971 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f7752d6e-f9cd-4dc9-ab01-3ab87acb21e4 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1348 44 false '-- '-- '-- '-- -16236 1483 6c0da9cf-4281-50f8-8be6-cdae39813f3b '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1348_demographic Dead '-- '-- '-- '-- 16236 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1483.0 '-- '-- 97f080aa-d9d0-5451-b6d1-71fab2c5a759 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1348_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 853 672 '-- '-- Recurrent Disease '-- '-- '-- '-- 7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1348_treatment5 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cc926d29-da18-4d07-a379-eee347ac391a '-- yes '-- '-- Chemotherapy +TCGA-OV f7752d6e-f9cd-4dc9-ab01-3ab87acb21e4 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1348 44 false '-- '-- '-- '-- -16236 1483 6c0da9cf-4281-50f8-8be6-cdae39813f3b '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1348_demographic Dead '-- '-- '-- '-- 16236 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1483.0 '-- '-- 97f080aa-d9d0-5451-b6d1-71fab2c5a759 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1348_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 1432 1279 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1348_treatment6 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- fa271f27-9266-4db5-9bd4-8a0320037262 '-- yes '-- '-- Chemotherapy +TCGA-OV f7752d6e-f9cd-4dc9-ab01-3ab87acb21e4 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1348 44 false '-- '-- '-- '-- -16236 1483 6c0da9cf-4281-50f8-8be6-cdae39813f3b '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1348_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b4f9c9ec-32b0-4f10-80d7-fdca1c3df9a7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1348_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1348_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1463 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1348_treatment14 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 082672d8-dd45-41ec-876b-44bed9da182c '-- yes '-- '-- Surgery, NOS +TCGA-OV f7752d6e-f9cd-4dc9-ab01-3ab87acb21e4 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1348 44 false '-- '-- '-- '-- -16236 1483 6c0da9cf-4281-50f8-8be6-cdae39813f3b '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1348_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b4f9c9ec-32b0-4f10-80d7-fdca1c3df9a7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1348_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1348_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1348_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 78075864-3c4f-48ec-a5b5-91f9fa5f5112 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV f7752d6e-f9cd-4dc9-ab01-3ab87acb21e4 Informed Consent 8 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1348 44 false '-- '-- '-- '-- -16236 1483 6c0da9cf-4281-50f8-8be6-cdae39813f3b '-- hispanic or latino female '-- '-- '-- '-- white TCGA-04-1348_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b4f9c9ec-32b0-4f10-80d7-fdca1c3df9a7 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1348_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1348_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1348_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7b29c5c9-4682-415d-9886-791d68a9c112 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV f7e01929-733b-420a-ab2b-051dd4a992e5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1887 67 false '-- '-- '-- '-- -24495 738 4e143b89-d0e4-5f1e-94d8-3c1e43328145 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1887_demographic Dead '-- '-- '-- '-- 24495 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 738.0 '-- '-- 2e20df60-62a5-5141-acf5-21b498b9ff4c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1887_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 134 27 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1887_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 5 '-- AUC '-- '-- '-- '-- 1629298c-24fb-4a7a-b4d2-cda15ae13d2e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f7e01929-733b-420a-ab2b-051dd4a992e5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1887 67 false '-- '-- '-- '-- -24495 738 4e143b89-d0e4-5f1e-94d8-3c1e43328145 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1887_demographic Dead '-- '-- '-- '-- 24495 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 738.0 '-- '-- 2e20df60-62a5-5141-acf5-21b498b9ff4c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1887_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 134 27 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1887_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 44a02f3d-7ceb-46f5-9bb0-bb9ff2e6625e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f7e01929-733b-420a-ab2b-051dd4a992e5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1887 67 false '-- '-- '-- '-- -24495 738 4e143b89-d0e4-5f1e-94d8-3c1e43328145 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1887_demographic Dead '-- '-- '-- '-- 24495 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 738.0 '-- '-- 2e20df60-62a5-5141-acf5-21b498b9ff4c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1887_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 482 454 '-- '-- Progressive Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1887_treatment4 Topotecan '-- '-- '-- '-- '-- '-- '-- 3 '-- mg/m2 '-- '-- '-- '-- 5987426b-cdbf-4125-b814-a08ac675cb37 '-- yes '-- '-- Chemotherapy +TCGA-OV f7e01929-733b-420a-ab2b-051dd4a992e5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1887 67 false '-- '-- '-- '-- -24495 738 4e143b89-d0e4-5f1e-94d8-3c1e43328145 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1887_demographic Dead '-- '-- '-- '-- 24495 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 738.0 '-- '-- 2e20df60-62a5-5141-acf5-21b498b9ff4c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1887_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 433 328 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1887_treatment Gemcitabine '-- '-- '-- '-- '-- '-- '-- 800 '-- mg/m2 '-- '-- '-- '-- 7370a6e6-1c2a-5531-a556-abaefbeb8284 '-- yes '-- '-- Chemotherapy +TCGA-OV f7e01929-733b-420a-ab2b-051dd4a992e5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1887 67 false '-- '-- '-- '-- -24495 738 4e143b89-d0e4-5f1e-94d8-3c1e43328145 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1887_demographic Dead '-- '-- '-- '-- 24495 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 738.0 '-- '-- 2e20df60-62a5-5141-acf5-21b498b9ff4c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1887_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 671 503 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-30-1887_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 64 '-- mg/m2 '-- '-- '-- '-- 8c765169-a082-431f-a0a7-7e7b1afb2a55 '-- yes '-- '-- Chemotherapy +TCGA-OV f7e01929-733b-420a-ab2b-051dd4a992e5 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1887 67 false '-- '-- '-- '-- -24495 738 4e143b89-d0e4-5f1e-94d8-3c1e43328145 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-30-1887_demographic Dead '-- '-- '-- '-- 24495 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 738.0 '-- '-- 2e20df60-62a5-5141-acf5-21b498b9ff4c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1887_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1887_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- e6642ca4-5443-42f0-9226-939853783780 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f8a5547f-f1bc-4c01-8b68-25b5ee0caeab Consent by Death 1380 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1655 49 false '-- '-- '-- '-- -17988 1380 f5f5b470-d479-571a-9747-9f299b78084b '-- not reported female '-- '-- '-- '-- white TCGA-04-1655_demographic Dead '-- '-- '-- '-- 18807 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 819 '-- '-- '-- 751fa9ad-d1b7-4963-ad79-e260badb795d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1655_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1655_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1655_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 03e6dcdf-19cc-4849-9dd4-82ab5aa75878 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV f8a5547f-f1bc-4c01-8b68-25b5ee0caeab Consent by Death 1380 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1655 49 false '-- '-- '-- '-- -17988 1380 f5f5b470-d479-571a-9747-9f299b78084b '-- not reported female '-- '-- '-- '-- white TCGA-04-1655_demographic Dead '-- '-- '-- '-- 18807 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 819 '-- '-- '-- 751fa9ad-d1b7-4963-ad79-e260badb795d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1655_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1655_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1655_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 60afafb6-a148-483b-b041-8c3454f0e188 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV f8a5547f-f1bc-4c01-8b68-25b5ee0caeab Consent by Death 1380 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1655 49 false '-- '-- '-- '-- -17988 1380 f5f5b470-d479-571a-9747-9f299b78084b '-- not reported female '-- '-- '-- '-- white TCGA-04-1655_demographic Dead '-- '-- '-- '-- 17988 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1380.0 '-- '-- 776c7f23-897d-51d4-8cf1-95e17ae2cf79 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1655_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1655_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 0d78c24d-9b48-4d5e-be53-da820288450c Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f8a5547f-f1bc-4c01-8b68-25b5ee0caeab Consent by Death 1380 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1655 49 false '-- '-- '-- '-- -17988 1380 f5f5b470-d479-571a-9747-9f299b78084b '-- not reported female '-- '-- '-- '-- white TCGA-04-1655_demographic Dead '-- '-- '-- '-- 17988 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1380.0 '-- '-- 776c7f23-897d-51d4-8cf1-95e17ae2cf79 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1655_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 184 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1655_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1d3188cd-a323-450d-9680-9af7b22d023c '-- yes '-- '-- Chemotherapy +TCGA-OV f8a5547f-f1bc-4c01-8b68-25b5ee0caeab Consent by Death 1380 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1655 49 false '-- '-- '-- '-- -17988 1380 f5f5b470-d479-571a-9747-9f299b78084b '-- not reported female '-- '-- '-- '-- white TCGA-04-1655_demographic Dead '-- '-- '-- '-- 17988 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1380.0 '-- '-- 776c7f23-897d-51d4-8cf1-95e17ae2cf79 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1655_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 839 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1655_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3114df13-f8c0-4e65-9676-a45fec69b63a '-- yes '-- '-- Chemotherapy +TCGA-OV f8a5547f-f1bc-4c01-8b68-25b5ee0caeab Consent by Death 1380 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1655 49 false '-- '-- '-- '-- -17988 1380 f5f5b470-d479-571a-9747-9f299b78084b '-- not reported female '-- '-- '-- '-- white TCGA-04-1655_demographic Dead '-- '-- '-- '-- 17988 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1380.0 '-- '-- 776c7f23-897d-51d4-8cf1-95e17ae2cf79 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1655_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 139 34 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-04-1655_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 574 '-- mg '-- '-- '-- '-- 8bd2df47-a05d-47a8-b40c-4905aae66ced Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f8a5547f-f1bc-4c01-8b68-25b5ee0caeab Consent by Death 1380 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1655 49 false '-- '-- '-- '-- -17988 1380 f5f5b470-d479-571a-9747-9f299b78084b '-- not reported female '-- '-- '-- '-- white TCGA-04-1655_demographic Dead '-- '-- '-- '-- 17988 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1380.0 '-- '-- 776c7f23-897d-51d4-8cf1-95e17ae2cf79 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1655_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 139 34 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-04-1655_treatment5 Cisplatin '-- '-- '-- '-- '-- '-- '-- 953 '-- mg '-- '-- '-- '-- e176ecba-6f4c-4457-9db8-0850d69d2e8a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f8a5547f-f1bc-4c01-8b68-25b5ee0caeab Consent by Death 1380 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1655 49 false '-- '-- '-- '-- -17988 1380 f5f5b470-d479-571a-9747-9f299b78084b '-- not reported female '-- '-- '-- '-- white TCGA-04-1655_demographic Dead '-- '-- '-- '-- 17988 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1380.0 '-- '-- 776c7f23-897d-51d4-8cf1-95e17ae2cf79 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1655_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 139 34 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-04-1655_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1288 '-- mg '-- '-- '-- '-- ea73130c-0d24-5dbd-bb73-eb3208584a6f Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f8e9d538-7291-4fe7-b3f2-d01676a027f9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1661 75 false '-- '-- '-- '-- -27486 1169 7d5dcebc-ff09-52ee-aedc-34d4ec8683e2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1661_demographic Dead '-- '-- '-- '-- 27486 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1169.0 '-- '-- 28f74326-0db8-5d53-bab2-b64acfa0aa64 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1661_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 940 828 '-- '-- '-- '-- '-- '-- '-- 17 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1661_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 70 '-- mg/m2 '-- '-- '-- '-- 1d474cd7-e665-48cf-b123-d3533280e587 '-- yes '-- '-- Chemotherapy +TCGA-OV f8e9d538-7291-4fe7-b3f2-d01676a027f9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1661 75 false '-- '-- '-- '-- -27486 1169 7d5dcebc-ff09-52ee-aedc-34d4ec8683e2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1661_demographic Dead '-- '-- '-- '-- 27486 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1169.0 '-- '-- 28f74326-0db8-5d53-bab2-b64acfa0aa64 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1661_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 165 58 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1661_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 135 '-- mg '-- '-- '-- '-- 3b4c753c-2b7c-5f2d-8b7d-751e0bc8d35e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f8e9d538-7291-4fe7-b3f2-d01676a027f9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1661 75 false '-- '-- '-- '-- -27486 1169 7d5dcebc-ff09-52ee-aedc-34d4ec8683e2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1661_demographic Dead '-- '-- '-- '-- 27486 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1169.0 '-- '-- 28f74326-0db8-5d53-bab2-b64acfa0aa64 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1661_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 332 213 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1661_treatment7 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 40 '-- mg/m2 '-- '-- '-- '-- 4b8e0ef8-443b-4f9d-b68a-d31488563ce7 '-- yes '-- '-- Chemotherapy +TCGA-OV f8e9d538-7291-4fe7-b3f2-d01676a027f9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1661 75 false '-- '-- '-- '-- -27486 1169 7d5dcebc-ff09-52ee-aedc-34d4ec8683e2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1661_demographic Dead '-- '-- '-- '-- 27486 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1169.0 '-- '-- 28f74326-0db8-5d53-bab2-b64acfa0aa64 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1661_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 165 58 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1661_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 192 '-- mg '-- '-- '-- '-- 7a641015-f525-455e-85a1-c9cf32636532 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f8e9d538-7291-4fe7-b3f2-d01676a027f9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1661 75 false '-- '-- '-- '-- -27486 1169 7d5dcebc-ff09-52ee-aedc-34d4ec8683e2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1661_demographic Dead '-- '-- '-- '-- 27486 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1169.0 '-- '-- 28f74326-0db8-5d53-bab2-b64acfa0aa64 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1661_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 641 498 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1661_treatment8 Tamoxifen '-- '-- '-- '-- '-- '-- '-- 20 '-- mg '-- '-- '-- '-- 7bebb859-d3b3-4885-bb05-860a4aa4a0c4 '-- yes '-- '-- Hormone Therapy +TCGA-OV f8e9d538-7291-4fe7-b3f2-d01676a027f9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1661 75 false '-- '-- '-- '-- -27486 1169 7d5dcebc-ff09-52ee-aedc-34d4ec8683e2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1661_demographic Dead '-- '-- '-- '-- 27486 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1169.0 '-- '-- 28f74326-0db8-5d53-bab2-b64acfa0aa64 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1661_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 766 758 '-- '-- '-- '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1661_treatment2 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 800 '-- mg/m2 '-- '-- '-- '-- 8911f2be-7326-41ba-8e5b-bbb363a96a07 '-- yes '-- '-- Chemotherapy +TCGA-OV f8e9d538-7291-4fe7-b3f2-d01676a027f9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1661 75 false '-- '-- '-- '-- -27486 1169 7d5dcebc-ff09-52ee-aedc-34d4ec8683e2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1661_demographic Dead '-- '-- '-- '-- 27486 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1169.0 '-- '-- 28f74326-0db8-5d53-bab2-b64acfa0aa64 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1661_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 1052 1017 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1661_treatment6 Docetaxel '-- '-- '-- '-- '-- '-- '-- 30 '-- mg/m2 '-- '-- '-- '-- aed3a0df-8a3e-4f4a-ac5a-19ae36357ecf '-- yes '-- '-- Chemotherapy +TCGA-OV f8e9d538-7291-4fe7-b3f2-d01676a027f9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1661 75 false '-- '-- '-- '-- -27486 1169 7d5dcebc-ff09-52ee-aedc-34d4ec8683e2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1661_demographic Dead '-- '-- '-- '-- 27486 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1169.0 '-- '-- 28f74326-0db8-5d53-bab2-b64acfa0aa64 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1661_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-09-1661_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cd501125-82b2-4e46-8c95-103d89e3ef02 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f8e9d538-7291-4fe7-b3f2-d01676a027f9 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-09-1661 75 false '-- '-- '-- '-- -27486 1169 7d5dcebc-ff09-52ee-aedc-34d4ec8683e2 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-09-1661_demographic Dead '-- '-- '-- '-- 27486 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1169.0 '-- '-- 28f74326-0db8-5d53-bab2-b64acfa0aa64 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-09-1661_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2000 '-- '-- '-- 709 641 '-- '-- '-- '-- '-- '-- '-- 4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-09-1661_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d9fd26e3-4729-4cce-af9d-8bc8dd985f14 '-- yes '-- '-- Chemotherapy +TCGA-OV f9793a4b-c0e7-4475-bf80-69543b7ee2f6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1416 34 false '-- '-- '-- '-- -12772 '-- 37d34efc-4522-5f67-89af-6ad888895583 '-- not reported female '-- '-- '-- '-- white TCGA-24-1416_demographic Alive '-- '-- '-- '-- 12772 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 194.0 '-- '-- 3bef7a6b-f7be-543c-a896-f3126e11480c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1416_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 170 16 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1416_treatment4 Docetaxel '-- '-- '-- '-- '-- '-- '-- 934 '-- mg '-- '-- '-- '-- 07056a2b-c1b3-441a-ac0c-23f4d3093223 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f9793a4b-c0e7-4475-bf80-69543b7ee2f6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1416 34 false '-- '-- '-- '-- -12772 '-- 37d34efc-4522-5f67-89af-6ad888895583 '-- not reported female '-- '-- '-- '-- white TCGA-24-1416_demographic Alive '-- '-- '-- '-- 12772 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 194.0 '-- '-- 3bef7a6b-f7be-543c-a896-f3126e11480c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1416_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 170 16 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1416_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 647 '-- mg '-- '-- '-- '-- 17efca41-1fce-439d-8745-9e3e824638f7 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f9793a4b-c0e7-4475-bf80-69543b7ee2f6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1416 34 false '-- '-- '-- '-- -12772 '-- 37d34efc-4522-5f67-89af-6ad888895583 '-- not reported female '-- '-- '-- '-- white TCGA-24-1416_demographic Alive '-- '-- '-- '-- 12772 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 194.0 '-- '-- 3bef7a6b-f7be-543c-a896-f3126e11480c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1416_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1416_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3306f9c6-9b1c-4bdb-8628-f3dc44fae9c4 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f9793a4b-c0e7-4475-bf80-69543b7ee2f6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1416 34 false '-- '-- '-- '-- -12772 '-- 37d34efc-4522-5f67-89af-6ad888895583 '-- not reported female '-- '-- '-- '-- white TCGA-24-1416_demographic Alive '-- '-- '-- '-- 12772 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 194.0 '-- '-- 3bef7a6b-f7be-543c-a896-f3126e11480c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1416_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 170 16 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1416_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- 946 '-- mg '-- '-- '-- '-- b6c3d59a-b00d-5004-b272-f08a9ae2aee4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f9793a4b-c0e7-4475-bf80-69543b7ee2f6 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1416 34 false '-- '-- '-- '-- -12772 '-- 37d34efc-4522-5f67-89af-6ad888895583 '-- not reported female '-- '-- '-- '-- white TCGA-24-1416_demographic Alive '-- '-- '-- '-- 12772 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 194.0 '-- '-- 3bef7a6b-f7be-543c-a896-f3126e11480c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1416_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 170 16 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-24-1416_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 422 '-- mg '-- '-- '-- '-- eec655d9-88e0-4bd8-915b-e5d27f2fdd30 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f9824a6e-7a97-445c-8846-df8d8cddedaa Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1867 46 false '-- '-- '-- '-- -17159 37 5d7e8cfa-ef05-5d3c-9eca-e08c10ce6b43 '-- not reported female '-- '-- '-- '-- not reported TCGA-30-1867_demographic Dead '-- '-- '-- '-- 17159 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 37.0 '-- '-- 5d5bee02-0ded-5212-86e3-ebad3858b584 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1867_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1867_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4f09d9b5-d067-54a1-8458-abba19dde229 Adjuvant no '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV f9824a6e-7a97-445c-8846-df8d8cddedaa Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-30-1867 46 false '-- '-- '-- '-- -17159 37 5d7e8cfa-ef05-5d3c-9eca-e08c10ce6b43 '-- not reported female '-- '-- '-- '-- not reported TCGA-30-1867_demographic Dead '-- '-- '-- '-- 17159 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 37.0 '-- '-- 5d5bee02-0ded-5212-86e3-ebad3858b584 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-30-1867_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- GX '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-30-1867_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 912b0e0a-2a61-4342-a6f2-1d47c96a52e5 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f9c835db-2ab6-4bf5-826f-48723493c0ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1705 47 false '-- '-- '-- '-- -17530 555 3d81138a-577c-5983-a1ce-b5d08a9a5faa '-- not reported female '-- '-- '-- '-- white TCGA-29-1705_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 615ac7f3-d11f-45e7-8888-d1cfae3e1a95 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1705_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1705_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1705_treatment12 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6075c3d5-72ff-4c45-8bce-36e51d8b325b '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV f9c835db-2ab6-4bf5-826f-48723493c0ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1705 47 false '-- '-- '-- '-- -17530 555 3d81138a-577c-5983-a1ce-b5d08a9a5faa '-- not reported female '-- '-- '-- '-- white TCGA-29-1705_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 615ac7f3-d11f-45e7-8888-d1cfae3e1a95 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1705_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1705_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1705_treatment11 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ab593490-c14a-4f92-8e8d-c0182cc4c341 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV f9c835db-2ab6-4bf5-826f-48723493c0ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1705 47 false '-- '-- '-- '-- -17530 555 3d81138a-577c-5983-a1ce-b5d08a9a5faa '-- not reported female '-- '-- '-- '-- white TCGA-29-1705_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 615ac7f3-d11f-45e7-8888-d1cfae3e1a95 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1705_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1705_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 434 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1705_treatment13 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- dbb1ab80-2d73-427e-bc48-c34784986d76 '-- yes '-- '-- Surgery, NOS +TCGA-OV f9c835db-2ab6-4bf5-826f-48723493c0ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1705 47 false '-- '-- '-- '-- -17530 555 3d81138a-577c-5983-a1ce-b5d08a9a5faa '-- not reported female '-- '-- '-- '-- white TCGA-29-1705_demographic Dead '-- '-- '-- '-- 17530 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 555.0 '-- '-- cdcf923e-15c6-5ee7-9cac-bda5bcaad9b7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1705_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 356 287 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1705_treatment5 Gemcitabine '-- '-- '-- '-- '-- '-- '-- 2000 '-- mg '-- '-- '-- '-- 3c611fc9-808b-4a1d-84f3-7e1292294a5f '-- yes '-- '-- Chemotherapy +TCGA-OV f9c835db-2ab6-4bf5-826f-48723493c0ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1705 47 false '-- '-- '-- '-- -17530 555 3d81138a-577c-5983-a1ce-b5d08a9a5faa '-- not reported female '-- '-- '-- '-- white TCGA-29-1705_demographic Dead '-- '-- '-- '-- 17530 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 555.0 '-- '-- cdcf923e-15c6-5ee7-9cac-bda5bcaad9b7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1705_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 118 76 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1705_treatment Docetaxel '-- '-- '-- '-- '-- '-- '-- 450 '-- mg '-- '-- '-- '-- 41aa04ab-c1bc-57e4-99c3-5de2f16cf42a Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f9c835db-2ab6-4bf5-826f-48723493c0ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1705 47 false '-- '-- '-- '-- -17530 555 3d81138a-577c-5983-a1ce-b5d08a9a5faa '-- not reported female '-- '-- '-- '-- white TCGA-29-1705_demographic Dead '-- '-- '-- '-- 17530 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 555.0 '-- '-- cdcf923e-15c6-5ee7-9cac-bda5bcaad9b7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1705_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 356 287 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1705_treatment6 Bevacizumab '-- '-- '-- '-- '-- '-- '-- 990 '-- mg '-- '-- '-- '-- 5863e1ad-604d-4f57-95fd-a5eeb4ea5ce9 '-- yes '-- '-- Targeted Molecular Therapy +TCGA-OV f9c835db-2ab6-4bf5-826f-48723493c0ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1705 47 false '-- '-- '-- '-- -17530 555 3d81138a-577c-5983-a1ce-b5d08a9a5faa '-- not reported female '-- '-- '-- '-- white TCGA-29-1705_demographic Dead '-- '-- '-- '-- 17530 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 555.0 '-- '-- cdcf923e-15c6-5ee7-9cac-bda5bcaad9b7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1705_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 55 13 '-- '-- '-- '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1705_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1050 '-- mg '-- '-- '-- '-- 8b99fcf4-26e1-44c1-80b5-3e6bf6b4c49c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f9c835db-2ab6-4bf5-826f-48723493c0ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1705 47 false '-- '-- '-- '-- -17530 555 3d81138a-577c-5983-a1ce-b5d08a9a5faa '-- not reported female '-- '-- '-- '-- white TCGA-29-1705_demographic Dead '-- '-- '-- '-- 17530 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 555.0 '-- '-- cdcf923e-15c6-5ee7-9cac-bda5bcaad9b7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1705_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 167 13 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1705_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- 4905 '-- mg '-- '-- '-- '-- 916a93e4-adaf-4d7a-9bae-88aad535b1c1 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f9c835db-2ab6-4bf5-826f-48723493c0ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1705 47 false '-- '-- '-- '-- -17530 555 3d81138a-577c-5983-a1ce-b5d08a9a5faa '-- not reported female '-- '-- '-- '-- white TCGA-29-1705_demographic Dead '-- '-- '-- '-- 17530 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 555.0 '-- '-- cdcf923e-15c6-5ee7-9cac-bda5bcaad9b7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1705_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 489 416 '-- '-- Progressive Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1705_treatment7 Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 80 '-- mg '-- '-- '-- '-- be820e69-1471-4b28-9c6d-6b367057c955 '-- yes '-- '-- Chemotherapy +TCGA-OV f9c835db-2ab6-4bf5-826f-48723493c0ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1705 47 false '-- '-- '-- '-- -17530 555 3d81138a-577c-5983-a1ce-b5d08a9a5faa '-- not reported female '-- '-- '-- '-- white TCGA-29-1705_demographic Dead '-- '-- '-- '-- 17530 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 555.0 '-- '-- cdcf923e-15c6-5ee7-9cac-bda5bcaad9b7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1705_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1705_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- beb43fed-46ae-456f-94f1-0ec1b114e1d2 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV f9c835db-2ab6-4bf5-826f-48723493c0ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1705 47 false '-- '-- '-- '-- -17530 555 3d81138a-577c-5983-a1ce-b5d08a9a5faa '-- not reported female '-- '-- '-- '-- white TCGA-29-1705_demographic Dead '-- '-- '-- '-- 17530 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 555.0 '-- '-- cdcf923e-15c6-5ee7-9cac-bda5bcaad9b7 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1705_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- 524 524 '-- '-- Progressive Disease '-- '-- '-- '-- 1 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-29-1705_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- 725 '-- mg '-- '-- '-- '-- fa704f49-2b3d-47ed-8e8c-e9d1bc8e7fd0 '-- yes '-- '-- Chemotherapy +TCGA-OV f9c835db-2ab6-4bf5-826f-48723493c0ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1705 47 false '-- '-- '-- '-- -17530 555 3d81138a-577c-5983-a1ce-b5d08a9a5faa '-- not reported female '-- '-- '-- '-- white TCGA-29-1705_demographic Dead '-- '-- '-- '-- 17813 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 283 '-- '-- '-- dc23bc77-8f34-4f98-8154-67e5df9436ca false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1705_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1705_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1705_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 22c7d0c2-1a66-4fba-aa37-f4fd8ecdab15 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV f9c835db-2ab6-4bf5-826f-48723493c0ec Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1705 47 false '-- '-- '-- '-- -17530 555 3d81138a-577c-5983-a1ce-b5d08a9a5faa '-- not reported female '-- '-- '-- '-- white TCGA-29-1705_demographic Dead '-- '-- '-- '-- 17813 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 283 '-- '-- '-- dc23bc77-8f34-4f98-8154-67e5df9436ca false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-29-1705_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-29-1705_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-29-1705_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7b69e406-09ef-494c-848c-13971d0590f6 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV f9f44f86-10c7-4473-b156-5afbfa9a2ad0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1104 56 false '-- '-- '-- '-- -20527 1933 2ab1be5c-ffea-5f82-b277-6ac057112641 '-- not reported female '-- '-- '-- '-- white TCGA-24-1104_demographic Dead '-- '-- '-- '-- 21486 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 959 '-- '-- '-- 0873cccd-2a97-4273-853e-70877183474b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1104_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1104_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1104_treatment10 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6a4aa787-279c-41ca-bc7e-06a39efa9ce1 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV f9f44f86-10c7-4473-b156-5afbfa9a2ad0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1104 56 false '-- '-- '-- '-- -20527 1933 2ab1be5c-ffea-5f82-b277-6ac057112641 '-- not reported female '-- '-- '-- '-- white TCGA-24-1104_demographic Dead '-- '-- '-- '-- 21486 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 959 '-- '-- '-- 0873cccd-2a97-4273-853e-70877183474b false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-24-1104_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-24-1104_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1104_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- aee42219-aa22-4f9f-8344-ff29a4f1268d '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV f9f44f86-10c7-4473-b156-5afbfa9a2ad0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1104 56 false '-- '-- '-- '-- -20527 1933 2ab1be5c-ffea-5f82-b277-6ac057112641 '-- not reported female '-- '-- '-- '-- white TCGA-24-1104_demographic Dead '-- '-- '-- '-- 20527 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1933.0 '-- '-- ac7b7a1d-8dbb-502b-bd62-6f2ca7f711c4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1104_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1113 1001 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1104_treatment7 Carboplatin '-- '-- '-- '-- '-- '-- '-- 402 '-- mg '-- '-- '-- '-- 296fa800-601e-4606-ab08-d88101cf3005 '-- yes '-- '-- Chemotherapy +TCGA-OV f9f44f86-10c7-4473-b156-5afbfa9a2ad0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1104 56 false '-- '-- '-- '-- -20527 1933 2ab1be5c-ffea-5f82-b277-6ac057112641 '-- not reported female '-- '-- '-- '-- white TCGA-24-1104_demographic Dead '-- '-- '-- '-- 20527 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1933.0 '-- '-- ac7b7a1d-8dbb-502b-bd62-6f2ca7f711c4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1104_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1113 1001 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1104_treatment6 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1800 '-- mg '-- '-- '-- '-- 3be90a53-45fa-411e-bc9e-f0fc95f9e5d1 '-- yes '-- '-- Chemotherapy +TCGA-OV f9f44f86-10c7-4473-b156-5afbfa9a2ad0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1104 56 false '-- '-- '-- '-- -20527 1933 2ab1be5c-ffea-5f82-b277-6ac057112641 '-- not reported female '-- '-- '-- '-- white TCGA-24-1104_demographic Dead '-- '-- '-- '-- 20527 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1933.0 '-- '-- ac7b7a1d-8dbb-502b-bd62-6f2ca7f711c4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1104_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- '-- 969 '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-1104_treatment '-- '-- '-- '-- '-- '-- Distant Site '-- '-- '-- '-- '-- '-- '-- '-- 4b77d291-8bc5-5c6b-8245-beef617493f5 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV f9f44f86-10c7-4473-b156-5afbfa9a2ad0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1104 56 false '-- '-- '-- '-- -20527 1933 2ab1be5c-ffea-5f82-b277-6ac057112641 '-- not reported female '-- '-- '-- '-- white TCGA-24-1104_demographic Dead '-- '-- '-- '-- 20527 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1933.0 '-- '-- ac7b7a1d-8dbb-502b-bd62-6f2ca7f711c4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1104_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1589 1526 '-- '-- Recurrent Disease '-- '-- '-- '-- 3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1104_treatment2 Pegylated Liposomal Doxorubicin Hydrochloride '-- '-- '-- '-- '-- '-- '-- 190 '-- mg '-- '-- '-- '-- 7dc75866-8764-4a58-a404-02dc51103fda '-- yes '-- '-- Chemotherapy +TCGA-OV f9f44f86-10c7-4473-b156-5afbfa9a2ad0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1104 56 false '-- '-- '-- '-- -20527 1933 2ab1be5c-ffea-5f82-b277-6ac057112641 '-- not reported female '-- '-- '-- '-- white TCGA-24-1104_demographic Dead '-- '-- '-- '-- 20527 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1933.0 '-- '-- ac7b7a1d-8dbb-502b-bd62-6f2ca7f711c4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1104_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 175 30 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1104_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1518 '-- mg '-- '-- '-- '-- b7c6bcf5-45f4-4e56-af71-bdb4fee14f54 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f9f44f86-10c7-4473-b156-5afbfa9a2ad0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1104 56 false '-- '-- '-- '-- -20527 1933 2ab1be5c-ffea-5f82-b277-6ac057112641 '-- not reported female '-- '-- '-- '-- white TCGA-24-1104_demographic Dead '-- '-- '-- '-- 20527 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1933.0 '-- '-- ac7b7a1d-8dbb-502b-bd62-6f2ca7f711c4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1104_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 175 30 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1104_treatment3 Cisplatin '-- '-- '-- '-- '-- '-- '-- 250 '-- mg '-- '-- '-- '-- c7b292a4-cf27-4eee-aa40-edde2e410d7b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV f9f44f86-10c7-4473-b156-5afbfa9a2ad0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1104 56 false '-- '-- '-- '-- -20527 1933 2ab1be5c-ffea-5f82-b277-6ac057112641 '-- not reported female '-- '-- '-- '-- white TCGA-24-1104_demographic Dead '-- '-- '-- '-- 20527 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1933.0 '-- '-- ac7b7a1d-8dbb-502b-bd62-6f2ca7f711c4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1104_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 1876 1858 '-- '-- Recurrent Disease '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1104_treatment8 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 438 '-- mg '-- '-- '-- '-- efaddf61-43e7-45b5-be68-3fe3ca7049a9 '-- yes '-- '-- Chemotherapy +TCGA-OV f9f44f86-10c7-4473-b156-5afbfa9a2ad0 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-1104 56 false '-- '-- '-- '-- -20527 1933 2ab1be5c-ffea-5f82-b277-6ac057112641 '-- not reported female '-- '-- '-- '-- white TCGA-24-1104_demographic Dead '-- '-- '-- '-- 20527 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1933.0 '-- '-- ac7b7a1d-8dbb-502b-bd62-6f2ca7f711c4 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Left '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-1104_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2001 '-- '-- '-- 175 30 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-1104_treatment5 Carboplatin '-- '-- '-- '-- '-- '-- '-- 2007 '-- mg '-- '-- '-- '-- f5929fd6-cbf4-4798-9318-49e4dbcd0b6e Adjuvant yes '-- '-- Chemotherapy +TCGA-OV fbb45305-de8d-4baf-8bd0-047b29c2e9d9 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0924 45 false '-- '-- '-- '-- -16670 '-- 2bf5429c-69b5-528e-ba15-0b4626f97010 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0924_demographic Alive '-- '-- '-- '-- 16670 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2614.0 '-- '-- 5fece8ec-73b8-509c-8a0c-0f513822d210 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0924_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0924_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1c2a9638-4ab5-4cf9-9d22-fe9987229d06 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV fbb45305-de8d-4baf-8bd0-047b29c2e9d9 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0924 45 false '-- '-- '-- '-- -16670 '-- 2bf5429c-69b5-528e-ba15-0b4626f97010 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0924_demographic Alive '-- '-- '-- '-- 16670 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2614.0 '-- '-- 5fece8ec-73b8-509c-8a0c-0f513822d210 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0924_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 143 60 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0924_treatment Clinical Trial '-- '-- '-- '-- '-- '-- '-- 920 '-- mg '-- '-- '-- '-- 2faff6a9-9bea-53eb-9127-0273d6838332 Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV fbb45305-de8d-4baf-8bd0-047b29c2e9d9 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0924 45 false '-- '-- '-- '-- -16670 '-- 2bf5429c-69b5-528e-ba15-0b4626f97010 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0924_demographic Alive '-- '-- '-- '-- 16670 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2614.0 '-- '-- 5fece8ec-73b8-509c-8a0c-0f513822d210 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0924_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 143 38 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0924_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 3474d606-293a-4fa9-b71b-4777f36bdedd Adjuvant yes '-- '-- Chemotherapy +TCGA-OV fbb45305-de8d-4baf-8bd0-047b29c2e9d9 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0924 45 false '-- '-- '-- '-- -16670 '-- 2bf5429c-69b5-528e-ba15-0b4626f97010 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0924_demographic Alive '-- '-- '-- '-- 16670 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2614.0 '-- '-- 5fece8ec-73b8-509c-8a0c-0f513822d210 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0924_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 143 38 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0924_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- c4f7b9e7-5c58-4e3b-aa1d-d8b100c51126 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV fbb45305-de8d-4baf-8bd0-047b29c2e9d9 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0924 45 false '-- '-- '-- '-- -16670 '-- 2bf5429c-69b5-528e-ba15-0b4626f97010 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0924_demographic Alive '-- '-- '-- '-- 16670 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2614.0 '-- '-- 5fece8ec-73b8-509c-8a0c-0f513822d210 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0924_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 213 164 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0924_treatment4 Clinical Trial '-- '-- '-- '-- '-- '-- '-- 15 '-- mg/kg '-- '-- '-- '-- d2949494-eeb4-437a-bf83-d9be85c8d223 Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV fbb45305-de8d-4baf-8bd0-047b29c2e9d9 '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0924 45 false '-- '-- '-- '-- -16670 '-- 2bf5429c-69b5-528e-ba15-0b4626f97010 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-0924_demographic Alive '-- '-- '-- '-- 17632 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 962 '-- '-- '-- ea5ebba5-b3ae-4336-bfd9-92da3a601159 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0924_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0924_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV fd4740db-76a8-4362-be71-7b609479bb67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2398 71 false '-- '-- '-- '-- -26267 1369 f3608d2c-1467-5436-8977-622ae51edd70 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2398_demographic Dead '-- '-- '-- '-- 26844 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 577 '-- '-- '-- 3dcb35de-69ee-4f99-9f32-038132c3e383 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-2398_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-2398_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2398_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 008f743b-1fcf-4a1b-84c7-0a49b29ae784 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV fd4740db-76a8-4362-be71-7b609479bb67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2398 71 false '-- '-- '-- '-- -26267 1369 f3608d2c-1467-5436-8977-622ae51edd70 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2398_demographic Dead '-- '-- '-- '-- 26844 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 577 '-- '-- '-- 3dcb35de-69ee-4f99-9f32-038132c3e383 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-2398_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-2398_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2398_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 771ed1df-5ba6-484e-a768-6d8dd3e380d3 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV fd4740db-76a8-4362-be71-7b609479bb67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2398 71 false '-- '-- '-- '-- -26267 1369 f3608d2c-1467-5436-8977-622ae51edd70 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2398_demographic Dead '-- '-- '-- '-- 26267 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1369.0 '-- '-- b83acbb5-bdc4-5596-ae26-e11bf4b79790 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2398_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 638 603 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2398_treatment3 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 545fec3a-d48e-437f-9d81-840f1f9be7ad '-- yes '-- '-- Chemotherapy +TCGA-OV fd4740db-76a8-4362-be71-7b609479bb67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2398 71 false '-- '-- '-- '-- -26267 1369 f3608d2c-1467-5436-8977-622ae51edd70 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2398_demographic Dead '-- '-- '-- '-- 26267 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1369.0 '-- '-- b83acbb5-bdc4-5596-ae26-e11bf4b79790 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2398_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 151 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2398_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 7001d3c4-a429-4f6a-a50e-984375dc7363 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV fd4740db-76a8-4362-be71-7b609479bb67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2398 71 false '-- '-- '-- '-- -26267 1369 f3608d2c-1467-5436-8977-622ae51edd70 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2398_demographic Dead '-- '-- '-- '-- 26267 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1369.0 '-- '-- b83acbb5-bdc4-5596-ae26-e11bf4b79790 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2398_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2398_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ac0f159b-3ac5-4b0f-a8f0-04ebdcc8de75 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV fd4740db-76a8-4362-be71-7b609479bb67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2398 71 false '-- '-- '-- '-- -26267 1369 f3608d2c-1467-5436-8977-622ae51edd70 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2398_demographic Dead '-- '-- '-- '-- 26267 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1369.0 '-- '-- b83acbb5-bdc4-5596-ae26-e11bf4b79790 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2398_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 151 31 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2398_treatment4 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c11261eb-5820-4638-9745-62da5eeb72cb Adjuvant yes '-- '-- Chemotherapy +TCGA-OV fd4740db-76a8-4362-be71-7b609479bb67 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2398 71 false '-- '-- '-- '-- -26267 1369 f3608d2c-1467-5436-8977-622ae51edd70 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2398_demographic Dead '-- '-- '-- '-- 26267 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1369.0 '-- '-- b83acbb5-bdc4-5596-ae26-e11bf4b79790 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2398_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- 638 608 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2398_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d4a15da1-ef9a-5d35-804f-0da34e4d7b6b '-- yes '-- '-- Chemotherapy +TCGA-OV fdd4adb8-9295-480a-9352-305b5eb51187 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2408 37 false '-- '-- '-- '-- -13606 943 7687b49e-9d2e-5eb4-b53d-337b28666282 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2408_demographic Dead '-- '-- '-- '-- 13606 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 943.0 '-- '-- 7551c576-4d23-517b-898b-a5bce8c252c9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2408_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- 61 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2408_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4900cbba-60fb-4ad6-97ac-a8f25a0640e8 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV fdd4adb8-9295-480a-9352-305b5eb51187 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2408 37 false '-- '-- '-- '-- -13606 943 7687b49e-9d2e-5eb4-b53d-337b28666282 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2408_demographic Dead '-- '-- '-- '-- 13606 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 943.0 '-- '-- 7551c576-4d23-517b-898b-a5bce8c252c9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2408_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2408_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8b13bd29-5314-456f-b620-b8052c05b960 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV fdd4adb8-9295-480a-9352-305b5eb51187 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2408 37 false '-- '-- '-- '-- -13606 943 7687b49e-9d2e-5eb4-b53d-337b28666282 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2408_demographic Dead '-- '-- '-- '-- 13606 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 943.0 '-- '-- 7551c576-4d23-517b-898b-a5bce8c252c9 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-2408_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- 61 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-2408_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- be1532fb-5c5a-5054-b250-43f4b8126e46 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV fdd4adb8-9295-480a-9352-305b5eb51187 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2408 37 false '-- '-- '-- '-- -13606 943 7687b49e-9d2e-5eb4-b53d-337b28666282 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2408_demographic Dead '-- '-- '-- '-- 13940 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 334 '-- '-- '-- 77c657d3-9633-420f-ba41-2c84071d9365 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-2408_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-2408_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2408_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2d41d643-632a-40e8-a4d4-878c1387bc92 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV fdd4adb8-9295-480a-9352-305b5eb51187 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2408 37 false '-- '-- '-- '-- -13606 943 7687b49e-9d2e-5eb4-b53d-337b28666282 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2408_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- de6dd283-ad44-46ab-81b8-33a6854e3b4d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-2408_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-2408_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2408_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 9c72a0d3-0542-47fd-80ed-cd8af9ca95a0 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV fdd4adb8-9295-480a-9352-305b5eb51187 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-2408 37 false '-- '-- '-- '-- -13606 943 7687b49e-9d2e-5eb4-b53d-337b28666282 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-2408_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- metastasis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- de6dd283-ad44-46ab-81b8-33a6854e3b4d false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-2408_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-2408_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 334 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-2408_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f3b50c03-3867-4a1b-bef6-fcc5cd2d7b94 '-- yes '-- '-- Surgery, NOS +TCGA-OV fdf83fdf-dfbb-4306-9a1b-b4487d18b402 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1120 60 false '-- '-- '-- '-- -22148 '-- 46d2a0a9-20fb-5a03-b80b-113e9217d392 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1120_demographic Alive '-- '-- '-- '-- 22148 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 130.0 '-- '-- efacf32e-acbf-5aa1-bc08-b71cd624aea2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1120_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-23-1120_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 00993f0c-e31e-4e16-a6c8-dc730268d924 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV fdf83fdf-dfbb-4306-9a1b-b4487d18b402 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1120 60 false '-- '-- '-- '-- -22148 '-- 46d2a0a9-20fb-5a03-b80b-113e9217d392 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1120_demographic Alive '-- '-- '-- '-- 22148 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 130.0 '-- '-- efacf32e-acbf-5aa1-bc08-b71cd624aea2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1120_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 146 63 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-23-1120_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 700 '-- mg '-- '-- '-- '-- 0c6ffdd4-bb6f-404d-99a9-215713236262 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV fdf83fdf-dfbb-4306-9a1b-b4487d18b402 Informed Consent 0 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-23-1120 60 false '-- '-- '-- '-- -22148 '-- 46d2a0a9-20fb-5a03-b80b-113e9217d392 '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-23-1120_demographic Alive '-- '-- '-- '-- 22148 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 130.0 '-- '-- efacf32e-acbf-5aa1-bc08-b71cd624aea2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Right '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-23-1120_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 146 63 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal TCGA-23-1120_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 2090 '-- mg '-- '-- '-- '-- b15fe942-b529-546b-a2da-c3bc718654e9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV fe0e3851-d8cb-4533-9536-b4826cd25f87 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-29-1699 57 false '-- '-- '-- '-- -21130 1106 5ee5fdf5-f33a-5bd5-81e5-568f5772b628 '-- not reported female '-- '-- '-- '-- white TCGA-29-1699_demographic Dead '-- '-- '-- '-- 21130 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1106.0 '-- '-- 1bd094f3-6920-5234-b706-e5a90b2cdf6c true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-29-1699_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2004 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV fe402983-70da-44db-b7b1-c32702ddde26 Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1509 64 false '-- '-- '-- '-- -23481 '-- 1c90a4f4-86be-5c63-81d0-0a48ef654c51 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1509_demographic Alive '-- '-- '-- '-- 24059 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- 578 '-- '-- '-- 306eeedd-1dfc-4655-9336-6a54dd578e5f false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-1509_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-1509_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- +TCGA-OV fe402983-70da-44db-b7b1-c32702ddde26 Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1509 64 false '-- '-- '-- '-- -23481 '-- 1c90a4f4-86be-5c63-81d0-0a48ef654c51 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1509_demographic Alive '-- '-- '-- '-- 23481 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2438.0 '-- '-- 67fe78ea-3168-5753-80bf-85495328d780 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1509_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-1509_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 827ca0a6-8be5-44a1-ab5d-041102f50bc1 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV fe402983-70da-44db-b7b1-c32702ddde26 Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1509 64 false '-- '-- '-- '-- -23481 '-- 1c90a4f4-86be-5c63-81d0-0a48ef654c51 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1509_demographic Alive '-- '-- '-- '-- 23481 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2438.0 '-- '-- 67fe78ea-3168-5753-80bf-85495328d780 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1509_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 127 21 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1509_treatment Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- 87c1a7a8-25cc-545d-977d-350a3fdf0993 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV fe402983-70da-44db-b7b1-c32702ddde26 Informed Consent -6 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-1509 64 false '-- '-- '-- '-- -23481 '-- 1c90a4f4-86be-5c63-81d0-0a48ef654c51 '-- not hispanic or latino female '-- '-- Ashkenazi Jew '-- white TCGA-13-1509_demographic Alive '-- '-- '-- '-- 23481 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 2438.0 '-- '-- 67fe78ea-3168-5753-80bf-85495328d780 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IV '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-1509_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 127 21 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-1509_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b047d2c0-19f6-4fad-97bf-8f7797e9a05c Adjuvant yes '-- '-- Chemotherapy +TCGA-OV feda41d8-ca56-425d-b149-4d5485328107 Informed Consent 75 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1357 52 false '-- '-- '-- '-- -18999 '-- d7683fcc-e135-5577-a315-c40ebae61ab8 '-- not reported female '-- '-- '-- '-- not reported TCGA-04-1357_demographic Alive '-- '-- '-- '-- 18999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8c7d9620-74be-55aa-a89c-500df4e535a1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1357_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1357_treatment2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8cb06eb9-9055-4e88-95c8-0246feec2116 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV feda41d8-ca56-425d-b149-4d5485328107 Informed Consent 75 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1357 52 false '-- '-- '-- '-- -18999 '-- d7683fcc-e135-5577-a315-c40ebae61ab8 '-- not reported female '-- '-- '-- '-- not reported TCGA-04-1357_demographic Alive '-- '-- '-- '-- 18999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 '-- '-- '-- 8c7d9620-74be-55aa-a89c-500df4e535a1 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIB '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1357_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2005 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1357_treatment '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ad9e2c2c-271c-5716-a98c-7fd282c7ccfd Adjuvant yes Not Reported '-- Pharmaceutical Therapy, NOS +TCGA-OV fef1696c-a8f4-4db6-8615-e486522baaaa Informed Consent 110 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0966 78 false '-- '-- '-- '-- -28529 '-- 385531c7-4f02-5ce6-97f6-56ec690678d5 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-24-0966_demographic Alive '-- '-- '-- '-- 28529 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 232.0 '-- '-- 6068ff26-e91d-597d-ae69-4436a0c104bb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0966_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 120 21 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0966_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 1390 '-- mg '-- '-- '-- '-- 4fab6540-16a7-4932-9250-e19a266325bf Adjuvant yes '-- '-- Chemotherapy +TCGA-OV fef1696c-a8f4-4db6-8615-e486522baaaa Informed Consent 110 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0966 78 false '-- '-- '-- '-- -28529 '-- 385531c7-4f02-5ce6-97f6-56ec690678d5 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-24-0966_demographic Alive '-- '-- '-- '-- 28529 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 232.0 '-- '-- 6068ff26-e91d-597d-ae69-4436a0c104bb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0966_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 120 71 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-0966_treatment3 Clinical Trial '-- '-- '-- '-- '-- '-- '-- 2457 '-- mg '-- '-- '-- '-- 5bee2a4e-1181-4b5f-aea1-9d59f47cddf1 Adjuvant yes '-- '-- Targeted Molecular Therapy +TCGA-OV fef1696c-a8f4-4db6-8615-e486522baaaa Informed Consent 110 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0966 78 false '-- '-- '-- '-- -28529 '-- 385531c7-4f02-5ce6-97f6-56ec690678d5 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-24-0966_demographic Alive '-- '-- '-- '-- 28529 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 232.0 '-- '-- 6068ff26-e91d-597d-ae69-4436a0c104bb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0966_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- 120 21 '-- '-- '-- '-- '-- '-- '-- 5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-24-0966_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- 2456 '-- mg '-- '-- '-- '-- ce67b43c-ed64-51ef-999f-c4ee5733ecb5 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV fef1696c-a8f4-4db6-8615-e486522baaaa Informed Consent 110 '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-24-0966 78 false '-- '-- '-- '-- -28529 '-- 385531c7-4f02-5ce6-97f6-56ec690678d5 '-- not hispanic or latino female '-- '-- '-- '-- black or african american TCGA-24-0966_demographic Alive '-- '-- '-- '-- 28529 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 232.0 '-- '-- 6068ff26-e91d-597d-ae69-4436a0c104bb true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-24-0966_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2008 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-24-0966_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f674f495-d0fb-4ea3-a40e-3a2ba11c54be Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ff33db70-91d4-4dbb-a4fc-d81a128d0f32 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1654 69 false '-- '-- '-- '-- -25387 1451 8f1707af-662b-59b6-8914-194b648bc30d '-- not reported female '-- '-- '-- '-- white TCGA-04-1654_demographic Dead '-- '-- '-- '-- 25387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1451.0 '-- '-- 41d29e21-e764-5714-9a6b-6def61e2cb55 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1654_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 52 31 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-04-1654_treatment4 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 380 '-- mg '-- '-- '-- '-- 41fa6f84-2536-49da-a0ca-6b0e25e75940 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ff33db70-91d4-4dbb-a4fc-d81a128d0f32 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1654 69 false '-- '-- '-- '-- -25387 1451 8f1707af-662b-59b6-8914-194b648bc30d '-- not reported female '-- '-- '-- '-- white TCGA-04-1654_demographic Dead '-- '-- '-- '-- 25387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1451.0 '-- '-- 41d29e21-e764-5714-9a6b-6def61e2cb55 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1654_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- 52 31 '-- '-- '-- '-- '-- '-- '-- 2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intraperitoneal|Intravenous TCGA-04-1654_treatment2 Cisplatin '-- '-- '-- '-- '-- '-- '-- 280 '-- mg '-- '-- '-- '-- a4f31f2a-d63d-48f9-aee2-a5abf11f8b2b Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ff33db70-91d4-4dbb-a4fc-d81a128d0f32 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1654 69 false '-- '-- '-- '-- -25387 1451 8f1707af-662b-59b6-8914-194b648bc30d '-- not reported female '-- '-- '-- '-- white TCGA-04-1654_demographic Dead '-- '-- '-- '-- 25387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1451.0 '-- '-- 41d29e21-e764-5714-9a6b-6def61e2cb55 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1654_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 877 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1654_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- b75a7328-c1fd-4914-9697-b19b6462cc8b '-- yes '-- '-- Chemotherapy +TCGA-OV ff33db70-91d4-4dbb-a4fc-d81a128d0f32 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1654 69 false '-- '-- '-- '-- -25387 1451 8f1707af-662b-59b6-8914-194b648bc30d '-- not reported female '-- '-- '-- '-- white TCGA-04-1654_demographic Dead '-- '-- '-- '-- 25387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1451.0 '-- '-- 41d29e21-e764-5714-9a6b-6def61e2cb55 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1654_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- 877 '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1654_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cb32b719-76d2-5d35-9853-3ccead14f28a '-- yes '-- '-- Chemotherapy +TCGA-OV ff33db70-91d4-4dbb-a4fc-d81a128d0f32 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1654 69 false '-- '-- '-- '-- -25387 1451 8f1707af-662b-59b6-8914-194b648bc30d '-- not reported female '-- '-- '-- '-- white TCGA-04-1654_demographic Dead '-- '-- '-- '-- 25387 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1451.0 '-- '-- 41d29e21-e764-5714-9a6b-6def61e2cb55 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Cytology '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-04-1654_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G2 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1999 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1654_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- f74db9de-2f9a-41fe-9f5a-18785b7e5bf6 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ff33db70-91d4-4dbb-a4fc-d81a128d0f32 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1654 69 false '-- '-- '-- '-- -25387 1451 8f1707af-662b-59b6-8914-194b648bc30d '-- not reported female '-- '-- '-- '-- white TCGA-04-1654_demographic Dead '-- '-- '-- '-- 26195 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 808 '-- '-- '-- fdaa3e16-bd9f-4904-90cc-bc369b365db6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1654_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1654_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1654_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c4a5ac29-521a-4dc5-b298-4d8990a4c653 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ff33db70-91d4-4dbb-a4fc-d81a128d0f32 Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-04-1654 69 false '-- '-- '-- '-- -25387 1451 8f1707af-662b-59b6-8914-194b648bc30d '-- not reported female '-- '-- '-- '-- white TCGA-04-1654_demographic Dead '-- '-- '-- '-- 26195 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 808 '-- '-- '-- fdaa3e16-bd9f-4904-90cc-bc369b365db6 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-04-1654_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-04-1654_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-04-1654_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c5d09a62-3e96-471a-800b-266f202d2ffa '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV ff530f28-0ec0-4494-bb54-44bb055bae1c '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0723 63 false '-- '-- '-- '-- -23094 1204 0ce548b3-1063-5cb1-aa30-01d03ce6908a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0723_demographic Dead '-- '-- '-- '-- 23304 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 210 '-- '-- '-- 72bd77b4-182f-4aac-ad6f-27445db3c99a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0723_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0723_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0723_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 99b13d3d-a93d-49b0-9f11-5ba3bba4b822 '-- yes '-- '-- Radiation Therapy, NOS +TCGA-OV ff530f28-0ec0-4494-bb54-44bb055bae1c '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0723 63 false '-- '-- '-- '-- -23094 1204 0ce548b3-1063-5cb1-aa30-01d03ce6908a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0723_demographic Dead '-- '-- '-- '-- 23304 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progression '-- '-- '-- '-- '-- '-- 210 '-- '-- '-- 72bd77b4-182f-4aac-ad6f-27445db3c99a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-13-0723_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-13-0723_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Progressive Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0723_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- ad210ede-5c26-4cc8-9bd9-c93a28ece836 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV ff530f28-0ec0-4494-bb54-44bb055bae1c '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0723 63 false '-- '-- '-- '-- -23094 1204 0ce548b3-1063-5cb1-aa30-01d03ce6908a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0723_demographic Dead '-- '-- '-- '-- 23094 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1204.0 '-- '-- a5ddd94a-6f56-505c-ac84-8558f3cf51c2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0723_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-13-0723_treatment3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 4003678f-44a5-431c-8a45-971b6ce6b412 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ff530f28-0ec0-4494-bb54-44bb055bae1c '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0723 63 false '-- '-- '-- '-- -23094 1204 0ce548b3-1063-5cb1-aa30-01d03ce6908a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0723_demographic Dead '-- '-- '-- '-- 23094 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1204.0 '-- '-- a5ddd94a-6f56-505c-ac84-8558f3cf51c2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0723_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 200 28 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0723_treatment Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 702462f8-2228-5fb2-bf54-9896920776b4 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ff530f28-0ec0-4494-bb54-44bb055bae1c '-- '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-13-0723 63 false '-- '-- '-- '-- -23094 1204 0ce548b3-1063-5cb1-aa30-01d03ce6908a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-13-0723_demographic Dead '-- '-- '-- '-- 23094 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 1204.0 '-- '-- a5ddd94a-6f56-505c-ac84-8558f3cf51c2 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-13-0723_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 2002 '-- '-- '-- 200 28 '-- '-- '-- '-- '-- '-- '-- 8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-13-0723_treatment2 Paclitaxel '-- '-- '-- '-- '-- '-- '-- 175 '-- mg/m2 '-- '-- '-- '-- df343b37-b369-4a8a-a600-149e4dc14128 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ff844242-7559-4b07-b09e-69ea40e5ac6b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1871 70 false '-- '-- '-- '-- -25627 760 11b4e5ef-b402-56df-93fc-234b9948ff8a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1871_demographic Dead '-- '-- '-- '-- 25857 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 230 '-- '-- '-- 37eccca5-4beb-49c7-84b5-5129d14e6849 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1871_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1871_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1871_treatment5 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 56d06c30-3b07-44ef-a483-4152623bf442 '-- yes '-- '-- Pharmaceutical Therapy, NOS +TCGA-OV ff844242-7559-4b07-b09e-69ea40e5ac6b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1871 70 false '-- '-- '-- '-- -25627 760 11b4e5ef-b402-56df-93fc-234b9948ff8a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1871_demographic Dead '-- '-- '-- '-- 25857 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- recurrence '-- '-- '-- '-- '-- '-- 230 '-- '-- '-- 37eccca5-4beb-49c7-84b5-5129d14e6849 false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1871_diagnosis2 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1871_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Recurrent Disease '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1871_treatment6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 6dab0372-aa5c-4ccd-9faf-ff4d7449d634 '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ff844242-7559-4b07-b09e-69ea40e5ac6b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1871 70 false '-- '-- '-- '-- -25627 760 11b4e5ef-b402-56df-93fc-234b9948ff8a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1871_demographic Dead '-- '-- '-- '-- 25627 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 760.0 '-- '-- 3ad77def-4237-50a7-8713-aced286f9033 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1871_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- 233 '-- '-- Recurrent Disease '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1871_treatment3 Paclitaxel '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 62d764a9-0294-43d6-9664-196dc6ed387e '-- yes '-- '-- Chemotherapy +TCGA-OV ff844242-7559-4b07-b09e-69ea40e5ac6b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1871 70 false '-- '-- '-- '-- -25627 760 11b4e5ef-b402-56df-93fc-234b9948ff8a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1871_demographic Dead '-- '-- '-- '-- 25627 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 760.0 '-- '-- 3ad77def-4237-50a7-8713-aced286f9033 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1871_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- 47 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1871_treatment2 Carboplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- c49b41bb-35a6-4c68-99bc-4ea808db78f9 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ff844242-7559-4b07-b09e-69ea40e5ac6b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1871 70 false '-- '-- '-- '-- -25627 760 11b4e5ef-b402-56df-93fc-234b9948ff8a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1871_demographic Dead '-- '-- '-- '-- 25627 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 760.0 '-- '-- 3ad77def-4237-50a7-8713-aced286f9033 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1871_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- 47 '-- '-- '-- '-- '-- '-- '-- 6 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Intravenous TCGA-25-1871_treatment Cisplatin '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- cc5e28af-74cd-5bc1-90fe-341af0a76949 Adjuvant yes '-- '-- Chemotherapy +TCGA-OV ff844242-7559-4b07-b09e-69ea40e5ac6b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1871 70 false '-- '-- '-- '-- -25627 760 11b4e5ef-b402-56df-93fc-234b9948ff8a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1871_demographic Dead '-- '-- '-- '-- 25627 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- primary '-- '-- '-- '-- '-- '-- 0 760.0 '-- '-- 3ad77def-4237-50a7-8713-aced286f9033 true '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Stage IIIC '-- '-- '-- '-- '-- '-- '-- '-- '-- C56.9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Bilateral '-- '-- '-- '-- '-- '-- '-- '-- Surgical Resection '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- not reported No '-- '-- '-- '-- Ovary '-- '-- TCGA-25-1871_diagnosis '-- Not Reported Ovary '-- '-- '-- '-- G3 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1993 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1871_treatment4 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d71645e1-797c-479f-ac2d-4797991b2377 Adjuvant no '-- '-- Radiation Therapy, NOS +TCGA-OV ff844242-7559-4b07-b09e-69ea40e5ac6b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1871 70 false '-- '-- '-- '-- -25627 760 11b4e5ef-b402-56df-93fc-234b9948ff8a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1871_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d3ba9a3b-20d8-4e8a-8b6f-315377fd8c3a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1871_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1871_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 334 '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1871_treatment9 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 1761cea5-8221-4b91-b9f2-00fdd40f9a74 '-- yes '-- '-- Surgery, NOS +TCGA-OV ff844242-7559-4b07-b09e-69ea40e5ac6b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1871 70 false '-- '-- '-- '-- -25627 760 11b4e5ef-b402-56df-93fc-234b9948ff8a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1871_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d3ba9a3b-20d8-4e8a-8b6f-315377fd8c3a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1871_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1871_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1871_treatment8 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 26023094-7eee-4a87-8c5b-3c007007cccb '-- no '-- '-- Radiation Therapy, NOS +TCGA-OV ff844242-7559-4b07-b09e-69ea40e5ac6b Consent by Death '-- '-- Cystic, Mucinous and Serous Neoplasms Diagnosis '-- Ovary TCGA-25-1871 70 false '-- '-- '-- '-- -25627 760 11b4e5ef-b402-56df-93fc-234b9948ff8a '-- not hispanic or latino female '-- '-- '-- '-- white TCGA-25-1871_demographic Dead '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- d3ba9a3b-20d8-4e8a-8b6f-315377fd8c3a false '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 8441/3 '-- '-- '-- '-- '-- '-- Serous cystadenocarcinoma, NOS '-- '-- '-- Yes '-- '-- '-- '-- Not Reported '-- '-- TCGA-25-1871_diagnosis3 '-- '-- Not Reported '-- '-- '-- '-- '-- '-- TCGA-25-1871_diagnosis '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- Unknown '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- TCGA-25-1871_treatment7 '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- '-- 90a35a6e-d07f-4e6d-845a-e5f2510068c5 '-- yes '-- '-- Pharmaceutical Therapy, NOS diff --git a/mirna_metadata.repository.2025-06-23.json b/mirna_metadata.repository.2025-06-23.json new file mode 100644 index 0000000..2a2370b --- /dev/null +++ b/mirna_metadata.repository.2025-06-23.json @@ -0,0 +1,77343 @@ +[{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0639-C56-85A-01R-A88J-41", + "entity_type": "aliquot", + "case_id": "4a10c499-7f11-49dc-b865-b6cbaf5b1df7", + "entity_id": "daa617e1-f3ce-487d-abab-c17d7c2bac1c" + } + ], + "file_name": "f8456da0-a9f1-42d8-ab76-3d3a5e6b2287.mirnaseq.mirnas.quantification.txt", + "submitter_id": "e8a29ff1-b4d7-46fc-8e3c-d9fa729b0415", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9828300996856202, + "total_reads": 15038177, + "access": "controlled", + "file_name": "daa617e1-f3ce-487d-abab-c17d7c2bac1c_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.006398812, + "proportion_reads_duplicated": 0, + "submitter_id": "8937d55a-a4bb-4baf-a6a5-a23e002448b3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 262545790, + "created_datetime": "2024-04-02T12:12:19.876382-05:00", + "average_base_quality": 36, + "md5sum": "ca2fa5ecc492038d9f284e1e7a4e04c5", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "99ebafc7-c044-479f-8b9a-000d4c3a826a", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 23, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "f8456da0-a9f1-42d8-ab76-3d3a5e6b2287_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f8891c4f-d12d-49e0-9106-f434804d3c36", + "created_datetime": "2024-04-02T13:52:24.469208-05:00" + }, + "platform": "Illumina", + "file_size": 50613, + "md5sum": "177836a96e21a3bc7d2f279c95f99f40", + "file_id": "2c3e23cf-5503-4841-a893-1d789498aad2", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0853-C56-07A-11R-A885-41", + "entity_type": "aliquot", + "case_id": "a7364c7c-cc66-468d-8a6e-11cc58adf3d6", + "entity_id": "72bd450c-a2f9-49ba-8ff6-d94cb21e0959" + } + ], + "file_name": "4f065202-1678-436b-9236-6bd407b3b12d.mirnaseq.mirnas.quantification.txt", + "submitter_id": "a3299e54-8629-4184-b050-60838d8cec0c", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9866537529471392, + "total_reads": 85283975, + "access": "controlled", + "file_name": "72bd450c-a2f9-49ba-8ff6-d94cb21e0959_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004902771, + "proportion_reads_duplicated": 0, + "submitter_id": "b9b4e8a1-a4c7-4b6d-971f-8a2b65443453", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 1552009560, + "created_datetime": "2024-04-02T12:14:49.784829-05:00", + "average_base_quality": 36, + "md5sum": "5e8d07ee90a7ae60e81d2964a8f395a5", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "b63d7c30-7db8-4378-9117-a7fd7ae6353e", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 24, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "4f065202-1678-436b-9236-6bd407b3b12d_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d2ea1ba3-38a7-47aa-a57f-9e75edbe6e1a", + "created_datetime": "2024-04-02T12:52:13.219474-05:00" + }, + "platform": "Illumina", + "file_size": 51442, + "md5sum": "16e045dd8801ad295b65e5e0197c900f", + "file_id": "66a94a90-637c-41d2-b160-950b62f9d464", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0853-C56-85F-01R-A885-41", + "entity_type": "aliquot", + "case_id": "a7364c7c-cc66-468d-8a6e-11cc58adf3d6", + "entity_id": "1e782a7f-2a78-422f-8db1-d2fe99055c35" + } + ], + "file_name": "e9248621-af9b-46b2-882f-284e20ed69c2.mirnaseq.isoforms.quantification.txt", + "submitter_id": "77fc58ab-559c-4e25-9956-38e2c79c6aeb", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9819431016624626, + "total_reads": 14499334, + "access": "controlled", + "file_name": "1e782a7f-2a78-422f-8db1-d2fe99055c35_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005979728, + "proportion_reads_duplicated": 0, + "submitter_id": "3566113f-1527-4915-ac92-9c1f9e047b8c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 277051511, + "created_datetime": "2024-04-02T12:06:45.859973-05:00", + "average_base_quality": 36, + "md5sum": "0abe46341f0babd857e9daeb1f6bb99a", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "538a703a-6d54-41f6-ba97-e6ac67456a88", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 27, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "e9248621-af9b-46b2-882f-284e20ed69c2_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "fa06c82d-1fa6-44f1-b768-4c2893c60c4f", + "created_datetime": "2024-04-02T13:54:00.744063-05:00" + }, + "platform": "Illumina", + "file_size": 669242, + "md5sum": "59ed30d0e0f4e484f1e5867d418a9e56", + "file_id": "b6d6bba7-95ab-4ffc-9fe6-32c17ad2d274", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0853-C56-85G-01R-A885-41", + "entity_type": "aliquot", + "case_id": "a7364c7c-cc66-468d-8a6e-11cc58adf3d6", + "entity_id": "cfd1a187-e334-46c3-8fc5-60922ac9e9d3" + } + ], + "file_name": "fa6cd1b7-37d1-4e42-9207-f25a082e320d.mirnaseq.mirnas.quantification.txt", + "submitter_id": "e4940aec-c6b5-4974-8fdb-43ec4908eb67", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9749795540137287, + "total_reads": 13269108, + "access": "controlled", + "file_name": "cfd1a187-e334-46c3-8fc5-60922ac9e9d3_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007950971, + "proportion_reads_duplicated": 0, + "submitter_id": "b5111e09-48d1-4501-9a13-e9ff9bdd9259", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 237002987, + "created_datetime": "2024-04-02T12:15:50.322253-05:00", + "average_base_quality": 36, + "md5sum": "faa0d2a0c7cd7ff068684323004549ec", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "681b2192-d1c1-456a-9127-18deb31c3b33", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 27, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "fa6cd1b7-37d1-4e42-9207-f25a082e320d_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "11bdc052-bb27-491b-8c4d-eab374888b49", + "created_datetime": "2024-04-02T12:49:24.207460-05:00" + }, + "platform": "Illumina", + "file_size": 50755, + "md5sum": "30e13a835c97249621ec7c5b6add6edc", + "file_id": "8b1df08e-9fca-4546-9e81-95998768012b", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0853-C56-85G-01R-A885-41", + "entity_type": "aliquot", + "case_id": "a7364c7c-cc66-468d-8a6e-11cc58adf3d6", + "entity_id": "cfd1a187-e334-46c3-8fc5-60922ac9e9d3" + } + ], + "file_name": "fa6cd1b7-37d1-4e42-9207-f25a082e320d.mirnaseq.isoforms.quantification.txt", + "submitter_id": "edacb580-558d-4444-abb6-3f045a0d0367", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9749795540137287, + "total_reads": 13269108, + "access": "controlled", + "file_name": "cfd1a187-e334-46c3-8fc5-60922ac9e9d3_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007950971, + "proportion_reads_duplicated": 0, + "submitter_id": "b5111e09-48d1-4501-9a13-e9ff9bdd9259", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 237002987, + "created_datetime": "2024-04-02T12:15:50.322253-05:00", + "average_base_quality": 36, + "md5sum": "faa0d2a0c7cd7ff068684323004549ec", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "681b2192-d1c1-456a-9127-18deb31c3b33", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 27, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "fa6cd1b7-37d1-4e42-9207-f25a082e320d_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "11bdc052-bb27-491b-8c4d-eab374888b49", + "created_datetime": "2024-04-02T12:49:24.207460-05:00" + }, + "platform": "Illumina", + "file_size": 573712, + "md5sum": "17bd1fc3c7c67d1630ac8a19c4e8da45", + "file_id": "ca0e9f63-d3b0-4c20-a523-d7112d301ed0", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0853-C56-85F-01R-A885-41", + "entity_type": "aliquot", + "case_id": "a7364c7c-cc66-468d-8a6e-11cc58adf3d6", + "entity_id": "1e782a7f-2a78-422f-8db1-d2fe99055c35" + } + ], + "file_name": "e9248621-af9b-46b2-882f-284e20ed69c2.mirnaseq.mirnas.quantification.txt", + "submitter_id": "0dbd4236-21d0-4b02-9533-24fd4f3d820c", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9819431016624626, + "total_reads": 14499334, + "access": "controlled", + "file_name": "1e782a7f-2a78-422f-8db1-d2fe99055c35_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005979728, + "proportion_reads_duplicated": 0, + "submitter_id": "3566113f-1527-4915-ac92-9c1f9e047b8c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 277051511, + "created_datetime": "2024-04-02T12:06:45.859973-05:00", + "average_base_quality": 36, + "md5sum": "0abe46341f0babd857e9daeb1f6bb99a", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "538a703a-6d54-41f6-ba97-e6ac67456a88", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 27, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "e9248621-af9b-46b2-882f-284e20ed69c2_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "fa06c82d-1fa6-44f1-b768-4c2893c60c4f", + "created_datetime": "2024-04-02T13:54:00.744063-05:00" + }, + "platform": "Illumina", + "file_size": 50779, + "md5sum": "7dca5acc54eb2ea06668939415f81610", + "file_id": "1fd333e5-0241-4f37-b0cf-4adf1c753dec", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0765-C56-85P-01R-A88J-41", + "entity_type": "aliquot", + "case_id": "d2d0522a-bad8-4282-b67d-bed52e7efab4", + "entity_id": "7cde7280-5f39-4491-869d-b375dc2e9ccc" + } + ], + "file_name": "110de312-1030-4a49-bfe3-30908efc35d0.mirnaseq.mirnas.quantification.txt", + "submitter_id": "f96c86e2-b9b4-40fa-9bad-226247157a0d", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9700019304041242, + "total_reads": 18514258, + "access": "controlled", + "file_name": "7cde7280-5f39-4491-869d-b375dc2e9ccc_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007074196, + "proportion_reads_duplicated": 0, + "submitter_id": "9bc7d7ac-ca33-4fdc-bfb0-204a97232bb0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 311989882, + "created_datetime": "2024-04-02T12:16:44.367057-05:00", + "average_base_quality": 36, + "md5sum": "9a14e7ffc9d77e2ac641a4aa2e913608", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "dbca52d3-a8c4-4343-949f-595917fcde1f", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 25, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "110de312-1030-4a49-bfe3-30908efc35d0_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5106868e-08a4-46d5-8785-373b5fce0d6a", + "created_datetime": "2024-04-02T13:51:17.665089-05:00" + }, + "platform": "Illumina", + "file_size": 50771, + "md5sum": "6a26e0bd34540f4190471c6f03fd2e35", + "file_id": "823d4fd7-e651-4f1a-b9e9-c6b422c8c2d8", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0768-C56-85N-01R-A88J-41", + "entity_type": "aliquot", + "case_id": "d341953c-f4a1-4c6b-ac1a-50f1b956c696", + "entity_id": "e0a1903c-48d2-48e6-8476-8740521ee4e0" + } + ], + "file_name": "c1574073-aa1e-4a6f-89d5-567031a63940.mirnaseq.isoforms.quantification.txt", + "submitter_id": "1490d652-f496-4e00-8c4d-40e3f9925d48", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9856997667262131, + "total_reads": 15832469, + "access": "controlled", + "file_name": "e0a1903c-48d2-48e6-8476-8740521ee4e0_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005485239, + "proportion_reads_duplicated": 0, + "submitter_id": "fbb007ee-e71a-49cf-99ca-0fa4c8e9522c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 271319722, + "created_datetime": "2024-04-02T12:15:48.813557-05:00", + "average_base_quality": 36, + "md5sum": "ba70466bdacbebc58f1b736605de7dba", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "84c58d93-a1f8-4ebe-9b0c-907911169edf", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 26, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "c1574073-aa1e-4a6f-89d5-567031a63940_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e3d3f797-2fba-4147-a38e-c692340be54f", + "created_datetime": "2024-04-02T13:55:19.642972-05:00" + }, + "platform": "Illumina", + "file_size": 568643, + "md5sum": "873c79fcabc3aebf4cf530613b5c890e", + "file_id": "eb0028ab-45b5-48f6-a21d-28d27a72340a", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-HM-A6W2-06A-22R-A342-13", + "entity_type": "aliquot", + "case_id": "929505f7-0270-475e-a9d6-00bf38dc78ba", + "entity_id": "28cdb229-18ff-41ce-97b8-3cdcd5bda206" + } + ], + "file_name": "cfbddfd6-113d-45fe-a0e0-e8745fcfadd4.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_131_MirnaExpression995c9981-00ac-4723-ac05-a8e0b584ee55_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-HM-A6W2-06A-22R-A342-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_131_AlignedReads995c9981-00ac-4723-ac05-a8e0b584ee55", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 98768395, + "created_datetime": "2018-03-20T13:06:42.166421-05:00", + "md5sum": "08a2bee3465d77a3cd1e47c14d6db15a", + "updated_datetime": "2023-07-12T10:30:58.242159-05:00", + "file_id": "c2931178-7d1d-4212-92dd-abfe68b854ba", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-06T11:07:45.510627-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_131_MirnaExpressionWorkflowc0f9a44f-73fd-48d7-b58f-177914c2bad9_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7aa3f930-222c-4c1d-8cec-4f330ef48321", + "created_datetime": "2018-03-20T13:06:42.166421-05:00" + }, + "platform": "Illumina", + "file_size": 50403, + "md5sum": "bf123532e72fbcd2d9f8f0e99770ebef", + "file_id": "3b687aa2-96b5-4caa-ba89-db716eb4acfe", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-HM-A6W2-06A-22R-A342-13", + "entity_type": "aliquot", + "case_id": "929505f7-0270-475e-a9d6-00bf38dc78ba", + "entity_id": "28cdb229-18ff-41ce-97b8-3cdcd5bda206" + } + ], + "file_name": "cfbddfd6-113d-45fe-a0e0-e8745fcfadd4.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_131_MirnaExpression995c9981-00ac-4723-ac05-a8e0b584ee55_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-HM-A6W2-06A-22R-A342-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_131_AlignedReads995c9981-00ac-4723-ac05-a8e0b584ee55", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 98768395, + "created_datetime": "2018-03-20T13:06:42.166421-05:00", + "md5sum": "08a2bee3465d77a3cd1e47c14d6db15a", + "updated_datetime": "2023-07-12T10:30:58.242159-05:00", + "file_id": "c2931178-7d1d-4212-92dd-abfe68b854ba", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-06T11:07:45.510627-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_131_MirnaExpressionWorkflowc0f9a44f-73fd-48d7-b58f-177914c2bad9_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7aa3f930-222c-4c1d-8cec-4f330ef48321", + "created_datetime": "2018-03-20T13:06:42.166421-05:00" + }, + "platform": "Illumina", + "file_size": 350417, + "md5sum": "03a2458761b95740c9ebdb09c773da2c", + "file_id": "933b8f77-9bb1-465a-b55c-9ea99871cd63", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-HM-A6W2-01A-21R-A342-13", + "entity_type": "aliquot", + "case_id": "929505f7-0270-475e-a9d6-00bf38dc78ba", + "entity_id": "7776f73b-e9f3-4604-b1f8-9b523608c0c8" + } + ], + "file_name": "84d4b868-2ddb-4081-b0fe-ebe35464a898.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_111_MirnaExpressionf2be7e10-b99c-47b2-aafa-4e09a22cf5c8_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-HM-A6W2-01A-21R-A342-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_111_AlignedReadsf2be7e10-b99c-47b2-aafa-4e09a22cf5c8", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 125173169, + "created_datetime": "2018-03-20T13:06:42.166421-05:00", + "md5sum": "853f2ab8d5f889d823081731026d27a0", + "updated_datetime": "2023-07-12T10:13:14.787491-05:00", + "file_id": "0a3c6c94-6a92-4bcd-a311-e2f3f415364e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-06T11:07:45.510627-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_111_MirnaExpressionWorkflow2e6ef115-ca38-442f-8fc7-82777dcc41a3_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0c60dbea-cfa8-4458-ae34-241c2b7bbac9", + "created_datetime": "2018-03-20T13:06:42.166421-05:00" + }, + "platform": "Illumina", + "file_size": 388982, + "md5sum": "d97d7dfef3e543eb942ea36e592846d0", + "file_id": "4a3ad76e-8a37-4b0f-8bf3-640dcf1aefe4", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-HM-A6W2-01A-21R-A342-13", + "entity_type": "aliquot", + "case_id": "929505f7-0270-475e-a9d6-00bf38dc78ba", + "entity_id": "7776f73b-e9f3-4604-b1f8-9b523608c0c8" + } + ], + "file_name": "84d4b868-2ddb-4081-b0fe-ebe35464a898.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_111_MirnaExpressionf2be7e10-b99c-47b2-aafa-4e09a22cf5c8_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-HM-A6W2-01A-21R-A342-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_111_AlignedReadsf2be7e10-b99c-47b2-aafa-4e09a22cf5c8", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 125173169, + "created_datetime": "2018-03-20T13:06:42.166421-05:00", + "md5sum": "853f2ab8d5f889d823081731026d27a0", + "updated_datetime": "2023-07-12T10:13:14.787491-05:00", + "file_id": "0a3c6c94-6a92-4bcd-a311-e2f3f415364e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-06T11:07:45.510627-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_111_MirnaExpressionWorkflow2e6ef115-ca38-442f-8fc7-82777dcc41a3_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0c60dbea-cfa8-4458-ae34-241c2b7bbac9", + "created_datetime": "2018-03-20T13:06:42.166421-05:00" + }, + "platform": "Illumina", + "file_size": 50434, + "md5sum": "0e53de78cd3335281190ff914edb6ebb", + "file_id": "23a0e495-05c7-4d89-8f72-0ae4f3633007", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1705-02A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "f9c835db-2ab6-4bf5-826f-48723493c0ec", + "entity_id": "cc3afd8c-3639-437f-a22b-aadc9f6c5aaa" + } + ], + "file_name": "26e7326d-6c1e-4af5-ab54-78be4526d569.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_317_MirnaExpression5f0a140f-13ed-4270-b0d4-f2bd73276237_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "b4321f59-d41f-54f8-a812-c906398f86fd", + "entity_submitter_id": "TCGA-29-1705-02A-01R", + "notes": "Ovary Triplet", + "entity_type": "analyte", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "2084", + "state": "released", + "category": "Item is noncanonical", + "classification": "Notification", + "entity_id": "656f95dd-960a-46c9-88d9-060adfc1de0b", + "created_datetime": "2011-03-14T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "5a88f39e-f348-586e-a598-873bfa8775e2", + "entity_submitter_id": "TCGA-29-1705-02A-01R-1567-13", + "notes": "RNA-seq:HIGH rRNA CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8846", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "cc3afd8c-3639-437f-a22b-aadc9f6c5aaa", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "c6fdc09d-b4a4-5c09-9be2-5a5bb28e1aa1", + "entity_submitter_id": "TCGA-29-1705-02A-01R-1567-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29792", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "cc3afd8c-3639-437f-a22b-aadc9f6c5aaa", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "entity_submitter_id": "TCGA-29-1705", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1242", + "classification": "Notification", + "entity_id": "f9c835db-2ab6-4bf5-826f-48723493c0ec", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "21f06af2-c9eb-5fef-b7a5-cda0d6339354", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "f9c835db-2ab6-4bf5-826f-48723493c0ec", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-29-1705" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1705-02A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_317_AlignedReads5f0a140f-13ed-4270-b0d4-f2bd73276237", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 89087058, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "f2d9bdc02fb8a0d3aa8edefaf9f457b3", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "d863eed0-6d30-41d8-8b87-69b815d0bfe3", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_317_MirnaExpressionWorkflowde6453ca-db1a-4592-8df9-b0e26755cd80_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "05be6181-fb76-4ab0-bdf6-0c0bff3628be", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 221641, + "md5sum": "b82891829d368aec4b180676f9a07cf2", + "file_id": "ca357223-fcbf-4cbb-b254-9bc3f7707a91", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1705-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "f9c835db-2ab6-4bf5-826f-48723493c0ec", + "entity_id": "d1603029-2b45-4c5c-b313-8846d0ebdbdb" + } + ], + "file_name": "4015424e-d713-461f-b5c7-ad244b910901.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_426_MirnaExpressionaeeb0307-ae51-4988-969a-a285f43a84b7_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-29-1705", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1242", + "classification": "Notification", + "entity_id": "f9c835db-2ab6-4bf5-826f-48723493c0ec", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "21f06af2-c9eb-5fef-b7a5-cda0d6339354", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "f9c835db-2ab6-4bf5-826f-48723493c0ec", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-29-1705" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1705-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_426_AlignedReadsaeeb0307-ae51-4988-969a-a285f43a84b7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 243884466, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "1584e6ae27c33d8dad109c83078c4d98", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "dc767efb-df9d-4ec1-83b7-8a9f2e7b8192", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_426_MirnaExpressionWorkflowb123b04c-764d-42df-a06f-135c342b7bf5_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c5381f1d-50e6-4c08-89d9-2bd622c50926", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50272, + "md5sum": "27eb68b17b2968d9c663bfdfa0087a0b", + "file_id": "957646b5-62bf-4563-a741-efcd07ad3e6f", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2280-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "97ad0360-3be4-401a-a94c-7f2800a1b519", + "entity_id": "e39a23c8-1bc3-4bfb-9b1e-3075f98782fa" + } + ], + "file_name": "201e24bd-7ad4-48e2-8a12-7af9ab368822.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_414_MirnaExpression1fc5178a-0d66-4161-948d-789610f44884_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "79cb642a-a378-52b2-8e39-48010697ed6e", + "entity_submitter_id": "TCGA-24-2280-01A-01R-1568-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:32:20.747393-05:00", + "submitter_id": "8819", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "e39a23c8-1bc3-4bfb-9b1e-3075f98782fa", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "dbf23030-1f46-500c-94e1-3650048797e0", + "entity_submitter_id": "TCGA-24-2280-01A-01R-1568-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29790", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "e39a23c8-1bc3-4bfb-9b1e-3075f98782fa", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "entity_submitter_id": "TCGA-24-2280", + "notes": "[intgen.org]: Prior Malignancy", + "submitter_id": "657", + "classification": "Notification", + "entity_id": "97ad0360-3be4-401a-a94c-7f2800a1b519", + "created_datetime": "2010-09-02T00:00:00", + "annotation_id": "2369b3ac-dfdb-5023-ac45-a7e70a9fff01", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "97ad0360-3be4-401a-a94c-7f2800a1b519", + "state": "released", + "category": "Prior malignancy", + "status": "Approved", + "case_submitter_id": "TCGA-24-2280" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2280-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_414_AlignedReads1fc5178a-0d66-4161-948d-789610f44884", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 220244198, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "aafab74505b7b141e5a1ce8c078c69ed", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "98e3af19-9877-4101-a66d-99fa37989175", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_414_MirnaExpressionWorkflowd6131a5e-9c84-40b0-935b-7fc5a4c40998_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b99e6be0-9052-4b3d-81e7-5957e0d8876d", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50377, + "md5sum": "d2d41d2f0510d2c810f97b26b9028352", + "file_id": "a2e648f1-c2ac-4aea-ae7f-5cb1bfb99fd5", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2280-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "97ad0360-3be4-401a-a94c-7f2800a1b519", + "entity_id": "e39a23c8-1bc3-4bfb-9b1e-3075f98782fa" + } + ], + "file_name": "201e24bd-7ad4-48e2-8a12-7af9ab368822.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_414_MirnaExpression1fc5178a-0d66-4161-948d-789610f44884_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "79cb642a-a378-52b2-8e39-48010697ed6e", + "entity_submitter_id": "TCGA-24-2280-01A-01R-1568-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:32:20.747393-05:00", + "submitter_id": "8819", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "e39a23c8-1bc3-4bfb-9b1e-3075f98782fa", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "dbf23030-1f46-500c-94e1-3650048797e0", + "entity_submitter_id": "TCGA-24-2280-01A-01R-1568-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29790", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "e39a23c8-1bc3-4bfb-9b1e-3075f98782fa", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "entity_submitter_id": "TCGA-24-2280", + "notes": "[intgen.org]: Prior Malignancy", + "submitter_id": "657", + "classification": "Notification", + "entity_id": "97ad0360-3be4-401a-a94c-7f2800a1b519", + "created_datetime": "2010-09-02T00:00:00", + "annotation_id": "2369b3ac-dfdb-5023-ac45-a7e70a9fff01", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "97ad0360-3be4-401a-a94c-7f2800a1b519", + "state": "released", + "category": "Prior malignancy", + "status": "Approved", + "case_submitter_id": "TCGA-24-2280" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2280-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_414_AlignedReads1fc5178a-0d66-4161-948d-789610f44884", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 220244198, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "aafab74505b7b141e5a1ce8c078c69ed", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "98e3af19-9877-4101-a66d-99fa37989175", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_414_MirnaExpressionWorkflowd6131a5e-9c84-40b0-935b-7fc5a4c40998_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b99e6be0-9052-4b3d-81e7-5957e0d8876d", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 410179, + "md5sum": "da0150c51c9cdbfa5539a1298cadfb3a", + "file_id": "41b4be60-8757-4474-a8ba-619916f72b1e", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1710-01A-02R-1567-13", + "entity_type": "aliquot", + "case_id": "4261267c-7042-4c6e-83ed-12fb401003fc", + "entity_id": "3bf24456-4b70-4313-a04d-19aba239108d" + } + ], + "file_name": "7daa1443-4ed1-420a-bcca-98e60b42f59d.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_79_MirnaExpression765413ff-770f-4ed8-bf81-0d76590a2234_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-29-1710", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1239", + "classification": "Notification", + "entity_id": "4261267c-7042-4c6e-83ed-12fb401003fc", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "251587ba-d249-5cf0-9891-3edffe4870e2", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "4261267c-7042-4c6e-83ed-12fb401003fc", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-29-1710" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1710-01A-02R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_79_AlignedReads765413ff-770f-4ed8-bf81-0d76590a2234", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 164495434, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "214969afe9ed1b72b8f54a58782844c9", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "fbf42d9c-6a34-4117-9475-0616e85cfc29", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_79_MirnaExpressionWorkflow4c1535a4-4982-43ba-8785-b5d59f73ff9d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ad2abf26-681d-40c4-ab09-3d41c35f110f", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 367980, + "md5sum": "4110bf523e825a46ec2cf0f46ed6a3d1", + "file_id": "1c5984df-9783-4f08-a9e6-263e9d7b1754", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1710-01A-02R-1567-13", + "entity_type": "aliquot", + "case_id": "4261267c-7042-4c6e-83ed-12fb401003fc", + "entity_id": "3bf24456-4b70-4313-a04d-19aba239108d" + } + ], + "file_name": "7daa1443-4ed1-420a-bcca-98e60b42f59d.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_79_MirnaExpression765413ff-770f-4ed8-bf81-0d76590a2234_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-29-1710", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1239", + "classification": "Notification", + "entity_id": "4261267c-7042-4c6e-83ed-12fb401003fc", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "251587ba-d249-5cf0-9891-3edffe4870e2", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "4261267c-7042-4c6e-83ed-12fb401003fc", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-29-1710" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1710-01A-02R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_79_AlignedReads765413ff-770f-4ed8-bf81-0d76590a2234", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 164495434, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "214969afe9ed1b72b8f54a58782844c9", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "fbf42d9c-6a34-4117-9475-0616e85cfc29", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_79_MirnaExpressionWorkflow4c1535a4-4982-43ba-8785-b5d59f73ff9d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ad2abf26-681d-40c4-ab09-3d41c35f110f", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50364, + "md5sum": "4848cbb490f5a85b5442b6b22bb24457", + "file_id": "1ba7b9de-8b91-46f8-b67b-7d9fc6374510", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1360-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "e0502c47-3234-4609-a8d5-730a9e6eb5b8", + "entity_id": "22ed7877-46b7-4579-9e2d-203331e182e8" + } + ], + "file_name": "66a1a1f5-8439-4d7b-b1e2-09492a19f24a.mirnaseq.isoforms.quantification.txt", + "submitter_id": "59e98f2d-735d-4d51-9409-3fe90fe43ed4", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-04-1360", + "notes": "[schaefc]: Pathology indicates Stage I disease", + "submitter_id": "681", + "classification": "Observation", + "entity_id": "e0502c47-3234-4609-a8d5-730a9e6eb5b8", + "created_datetime": "2010-07-30T00:00:00", + "annotation_id": "2b584f07-941c-585f-b5fa-419b5ee8008e", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "e0502c47-3234-4609-a8d5-730a9e6eb5b8", + "state": "released", + "category": "Item may not meet study protocol", + "status": "Approved", + "case_submitter_id": "TCGA-04-1360" + } + ], + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9863431368411891, + "total_reads": 39503581, + "access": "controlled", + "file_name": "22ed7877-46b7-4579-9e2d-203331e182e8_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003928749, + "proportion_reads_duplicated": 0, + "submitter_id": "d4e2eeae-8d05-4873-a112-04f063fd644b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 682788264, + "created_datetime": "2024-09-20T11:14:06.523839-05:00", + "average_base_quality": 36, + "md5sum": "bd8c8b64b7c20efd3363e5fdae1811a5", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "a4927330-519d-413a-9ae8-ba2a2511ae6d", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 35, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "66a1a1f5-8439-4d7b-b1e2-09492a19f24a_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d1422f39-18df-4aab-9c92-ff69a31c0127", + "created_datetime": "2024-09-20T11:16:47.742575-05:00" + }, + "file_size": 521449, + "md5sum": "63c39fc752ef8ebd1b94eeb2a48d1392", + "file_id": "8750b613-4b44-4e61-ad51-3f1caaf210d5", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1360-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "e0502c47-3234-4609-a8d5-730a9e6eb5b8", + "entity_id": "22ed7877-46b7-4579-9e2d-203331e182e8" + } + ], + "file_name": "66a1a1f5-8439-4d7b-b1e2-09492a19f24a.mirnaseq.mirnas.quantification.txt", + "submitter_id": "468e07f0-5fa0-4437-b7e7-827c9abd27d1", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-04-1360", + "notes": "[schaefc]: Pathology indicates Stage I disease", + "submitter_id": "681", + "classification": "Observation", + "entity_id": "e0502c47-3234-4609-a8d5-730a9e6eb5b8", + "created_datetime": "2010-07-30T00:00:00", + "annotation_id": "2b584f07-941c-585f-b5fa-419b5ee8008e", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "e0502c47-3234-4609-a8d5-730a9e6eb5b8", + "state": "released", + "category": "Item may not meet study protocol", + "status": "Approved", + "case_submitter_id": "TCGA-04-1360" + } + ], + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9863431368411891, + "total_reads": 39503581, + "access": "controlled", + "file_name": "22ed7877-46b7-4579-9e2d-203331e182e8_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003928749, + "proportion_reads_duplicated": 0, + "submitter_id": "d4e2eeae-8d05-4873-a112-04f063fd644b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 682788264, + "created_datetime": "2024-09-20T11:14:06.523839-05:00", + "average_base_quality": 36, + "md5sum": "bd8c8b64b7c20efd3363e5fdae1811a5", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "a4927330-519d-413a-9ae8-ba2a2511ae6d", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 35, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "66a1a1f5-8439-4d7b-b1e2-09492a19f24a_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d1422f39-18df-4aab-9c92-ff69a31c0127", + "created_datetime": "2024-09-20T11:16:47.742575-05:00" + }, + "file_size": 51028, + "md5sum": "20235ac958688bcea80b545d452dba86", + "file_id": "d5a28456-63d4-4513-9ddb-5c88253bb8d3", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-1675-01B-01R-A96S-41", + "entity_type": "aliquot", + "case_id": "0fc8777c-8f12-472f-a0ea-085139b35d1f", + "entity_id": "98f53932-4303-41a2-a4a1-9fc54d011e97" + } + ], + "file_name": "990ea311-990d-4c0c-9f02-f745307d013e.mirnaseq.isoforms.quantification.txt", + "submitter_id": "90e0b479-46cf-4bac-b88d-de9fbd159c11", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-09-1675", + "notes": "[schaefc]: Pathology indicates Stage I disease", + "submitter_id": "682", + "classification": "Observation", + "entity_id": "0fc8777c-8f12-472f-a0ea-085139b35d1f", + "created_datetime": "2010-07-30T00:00:00", + "annotation_id": "2cda17a6-f948-5e8c-a580-8af167d55a3e", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "0fc8777c-8f12-472f-a0ea-085139b35d1f", + "state": "released", + "category": "Item may not meet study protocol", + "status": "Approved", + "case_submitter_id": "TCGA-09-1675" + }, + { + "entity_submitter_id": "TCGA-09-1675", + "notes": "Prior malignancy of metastatic breast cancer", + "submitter_id": "3386", + "classification": "Notification", + "entity_id": "0fc8777c-8f12-472f-a0ea-085139b35d1f", + "created_datetime": "2011-09-18T00:00:00", + "annotation_id": "3aa7521d-e468-54ab-bf86-df395fd72479", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "0fc8777c-8f12-472f-a0ea-085139b35d1f", + "state": "released", + "category": "Prior malignancy", + "status": "Approved", + "case_submitter_id": "TCGA-09-1675" + } + ], + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9910827159943352, + "total_reads": 21193785, + "access": "controlled", + "file_name": "98f53932-4303-41a2-a4a1-9fc54d011e97_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003726976, + "proportion_reads_duplicated": 0, + "submitter_id": "523a2a39-1ccf-4097-9b94-62c651d5a25c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 341214396, + "created_datetime": "2024-09-20T11:12:53.915939-05:00", + "average_base_quality": 36, + "md5sum": "e4b88d84d25c597cad4778c0d18adff6", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "7b1d8686-26f6-4db3-887e-806df1fad242", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 37, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "990ea311-990d-4c0c-9f02-f745307d013e_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "af51f0dd-9e38-4aad-bae5-c2bcbbdaf269", + "created_datetime": "2024-09-20T11:17:17.140819-05:00" + }, + "file_size": 495125, + "md5sum": "da6b01665e5b10aa761088059a9c346f", + "file_id": "70e00801-8d95-4530-a358-215b9592d18c", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-1675-01B-01R-A96S-41", + "entity_type": "aliquot", + "case_id": "0fc8777c-8f12-472f-a0ea-085139b35d1f", + "entity_id": "98f53932-4303-41a2-a4a1-9fc54d011e97" + } + ], + "file_name": "990ea311-990d-4c0c-9f02-f745307d013e.mirnaseq.mirnas.quantification.txt", + "submitter_id": "968646dc-5c59-4fbe-84be-a83ca34b11a8", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-09-1675", + "notes": "[schaefc]: Pathology indicates Stage I disease", + "submitter_id": "682", + "classification": "Observation", + "entity_id": "0fc8777c-8f12-472f-a0ea-085139b35d1f", + "created_datetime": "2010-07-30T00:00:00", + "annotation_id": "2cda17a6-f948-5e8c-a580-8af167d55a3e", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "0fc8777c-8f12-472f-a0ea-085139b35d1f", + "state": "released", + "category": "Item may not meet study protocol", + "status": "Approved", + "case_submitter_id": "TCGA-09-1675" + }, + { + "entity_submitter_id": "TCGA-09-1675", + "notes": "Prior malignancy of metastatic breast cancer", + "submitter_id": "3386", + "classification": "Notification", + "entity_id": "0fc8777c-8f12-472f-a0ea-085139b35d1f", + "created_datetime": "2011-09-18T00:00:00", + "annotation_id": "3aa7521d-e468-54ab-bf86-df395fd72479", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "0fc8777c-8f12-472f-a0ea-085139b35d1f", + "state": "released", + "category": "Prior malignancy", + "status": "Approved", + "case_submitter_id": "TCGA-09-1675" + } + ], + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9910827159943352, + "total_reads": 21193785, + "access": "controlled", + "file_name": "98f53932-4303-41a2-a4a1-9fc54d011e97_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003726976, + "proportion_reads_duplicated": 0, + "submitter_id": "523a2a39-1ccf-4097-9b94-62c651d5a25c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 341214396, + "created_datetime": "2024-09-20T11:12:53.915939-05:00", + "average_base_quality": 36, + "md5sum": "e4b88d84d25c597cad4778c0d18adff6", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "7b1d8686-26f6-4db3-887e-806df1fad242", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 37, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "990ea311-990d-4c0c-9f02-f745307d013e_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "af51f0dd-9e38-4aad-bae5-c2bcbbdaf269", + "created_datetime": "2024-09-20T11:17:17.140819-05:00" + }, + "file_size": 50624, + "md5sum": "88e677a1af241c1e1ebfd745416e5582", + "file_id": "e4896155-cbca-4115-8277-800b02172147", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2095-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "778ce436-a825-4689-81c1-b7c965404163", + "entity_id": "15a11ef0-5e18-44d0-ba50-73cf356b8408" + } + ], + "file_name": "dde71bf7-8c91-4a6f-aa6f-615a6a2f8fda.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_351_MirnaExpression041b8a5f-a9df-42ea-b334-1d500d1bd139_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-61-2095", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1243", + "classification": "Notification", + "entity_id": "778ce436-a825-4689-81c1-b7c965404163", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "344e420e-c277-583f-a1a5-cc92915ef9a8", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "778ce436-a825-4689-81c1-b7c965404163", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-61-2095" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2095-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_351_AlignedReads041b8a5f-a9df-42ea-b334-1d500d1bd139", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 377633250, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "b72a9ca2c912a29574f557b412d1c4c7", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "251c7268-42f8-4f25-8efb-4ce9838cd488", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_351_MirnaExpressionWorkflowe5740131-fe2c-4bd1-bb35-e6fe6d81d581_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8d320017-b3b5-4767-a81e-8b64ee57c86e", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50451, + "md5sum": "ea5566c101a0794afea63e504d50404e", + "file_id": "af9ec356-9301-47b1-b6b8-8baf776aeedb", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2095-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "778ce436-a825-4689-81c1-b7c965404163", + "entity_id": "15a11ef0-5e18-44d0-ba50-73cf356b8408" + } + ], + "file_name": "dde71bf7-8c91-4a6f-aa6f-615a6a2f8fda.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_351_MirnaExpression041b8a5f-a9df-42ea-b334-1d500d1bd139_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-61-2095", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1243", + "classification": "Notification", + "entity_id": "778ce436-a825-4689-81c1-b7c965404163", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "344e420e-c277-583f-a1a5-cc92915ef9a8", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "778ce436-a825-4689-81c1-b7c965404163", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-61-2095" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2095-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_351_AlignedReads041b8a5f-a9df-42ea-b334-1d500d1bd139", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 377633250, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "b72a9ca2c912a29574f557b412d1c4c7", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "251c7268-42f8-4f25-8efb-4ce9838cd488", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_351_MirnaExpressionWorkflowe5740131-fe2c-4bd1-bb35-e6fe6d81d581_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8d320017-b3b5-4767-a81e-8b64ee57c86e", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 456103, + "md5sum": "f66601ffc85a34311bd312db04965cb5", + "file_id": "43c68b48-27e0-42d3-836e-f13567ae1791", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1023-01A-02R-1564-13", + "entity_type": "aliquot", + "case_id": "9e18238f-ae85-4b75-ae87-d92da9731a40", + "entity_id": "69bec2db-02c3-46ca-b17b-60eae9a1e0bf" + } + ], + "file_name": "895e0ae3-9618-4668-8562-8031984fa460.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_197_MirnaExpression821be294-60c3-43de-bcb8-a220a2aa35da_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-23-1023", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1244", + "classification": "Notification", + "entity_id": "9e18238f-ae85-4b75-ae87-d92da9731a40", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "48ddd5c2-532f-5bf4-a605-d87f54006442", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "9e18238f-ae85-4b75-ae87-d92da9731a40", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-23-1023" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1023-01A-02R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_197_AlignedReads821be294-60c3-43de-bcb8-a220a2aa35da", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 137601692, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "ea67f66be321585cd31071766752cc67", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "ed8bd013-d5a2-4d7f-851e-3f07191c22e2", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_197_MirnaExpressionWorkflow5d93c19e-5afa-47f8-81a7-c8ded9215e67_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0dc77e9e-2971-4149-81f9-8441d32b4de7", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50329, + "md5sum": "397fb9d705fd437e938bd0eec037dcc3", + "file_id": "b42e5562-d17a-4b3d-a676-1a18ccd4b884", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-2425-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "40635bf3-d8ba-4833-b623-547e55e5d07e", + "entity_id": "3ce6b8c4-7020-447a-8eb8-5370eef05344" + } + ], + "file_name": "a4e47184-7dc6-4f4b-a41c-42b6185f9db5.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_113_MirnaExpression73d3d9c2-6bf8-446b-878b-0396a728829a_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-29-2425", + "notes": "Prior malignancy of breast cancer", + "submitter_id": "3393", + "classification": "Notification", + "entity_id": "40635bf3-d8ba-4833-b623-547e55e5d07e", + "created_datetime": "2011-09-18T00:00:00", + "annotation_id": "4e6b5074-7264-55b0-be73-333f9b5893be", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "40635bf3-d8ba-4833-b623-547e55e5d07e", + "state": "released", + "category": "Prior malignancy", + "status": "Approved", + "case_submitter_id": "TCGA-29-2425" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-2425-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_113_AlignedReads73d3d9c2-6bf8-446b-878b-0396a728829a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 311761946, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "f3927862741765c2bab5cfbe34dcef6a", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4d468876-7c86-436c-92ea-1fa4ebfbb02e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_113_MirnaExpressionWorkflowfc08a70e-4d9c-4ec7-a2b6-6b55eb5ffc78_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "26d6599d-57d5-4ed9-a206-f125d0e80a6d", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50330, + "md5sum": "ff2e9eb0e3b285b2c93f399ab996c23b", + "file_id": "bd203703-c17e-4ba8-baf0-ce903700d341", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1023-01R-01R-1564-13", + "entity_type": "aliquot", + "case_id": "9e18238f-ae85-4b75-ae87-d92da9731a40", + "entity_id": "1c88dde8-4fe6-49e9-8d76-40668ed783ff" + } + ], + "file_name": "b59ff5ba-775a-4fc3-8a39-1e6f3da99d1b.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_369_MirnaExpression6bdb12db-d4c2-45d6-98ab-7c1ccf76d1a9_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-23-1023", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1244", + "classification": "Notification", + "entity_id": "9e18238f-ae85-4b75-ae87-d92da9731a40", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "48ddd5c2-532f-5bf4-a605-d87f54006442", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "9e18238f-ae85-4b75-ae87-d92da9731a40", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-23-1023" + }, + { + "annotation_id": "28ba580a-8d0f-51a2-b64c-bbdf2c1fe71a", + "entity_submitter_id": "TCGA-23-1023-01R", + "notes": "Ovarian Triplet Sample TCGA-23-1023-01R is a recurrent sample that for historical reasons has retained the -01R designation rather than the conventional -02R designation used elsewhere in TCGA.", + "entity_type": "sample", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "20470", + "state": "released", + "category": "Item is noncanonical", + "classification": "Notification", + "entity_id": "8a53cd24-5041-418b-811b-33b72c165798", + "created_datetime": "2014-04-07T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1023-01R-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_369_AlignedReads6bdb12db-d4c2-45d6-98ab-7c1ccf76d1a9", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 132118346, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "cfbbe62cc5e19ebc91a97808e33ae7c7", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "69816230-9200-4201-acca-e8f61ee3e442", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_369_MirnaExpressionWorkflowd1dff82c-880e-4658-a0fd-ba5be65e3430_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0eece441-3817-4806-bb82-6d4235b688bb", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 284982, + "md5sum": "226c5a300c2fbdfb98f981bbbce9d381", + "file_id": "ecd489f9-5df1-4244-aa64-27088024bf69", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0913-02A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "3e8a51bf-7e1f-4eab-af83-3c60d04db1bf", + "entity_id": "733f0607-6c6b-4385-9868-fa6f155a9a2e" + } + ], + "file_name": "827219c7-837c-44e5-9ac6-6530112ca91f.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_313_MirnaExpressionf02b19ee-3250-4154-b94f-703f506e677a_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-0913-02A-01R-1564-13", + "notes": "RNA-seq:INSUFFICIENT INPUT MATERIAL,LOW SEQUENCE YIELD/DIVERSITY;LOW 5/3 COVERAGE RATIO", + "submitter_id": "8764", + "classification": "CenterNotification", + "entity_id": "733f0607-6c6b-4385-9868-fa6f155a9a2e", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "5cf05f41-ce70-58a3-8ecb-6bfaf6264437", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "3e8a51bf-7e1f-4eab-af83-3c60d04db1bf", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-13-0913" + }, + { + "entity_submitter_id": "TCGA-13-0913-02A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29739", + "classification": "CenterNotification", + "entity_id": "733f0607-6c6b-4385-9868-fa6f155a9a2e", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "62d89b7a-5c5d-5f0f-84e4-825d88c666c8", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "3e8a51bf-7e1f-4eab-af83-3c60d04db1bf", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-13-0913" + }, + { + "entity_submitter_id": "TCGA-13-0913-02A-01R", + "notes": "Ovary Triplet", + "submitter_id": "1437", + "classification": "Notification", + "entity_id": "194a6538-dd75-4ba9-8682-0fb6c5cc552e", + "created_datetime": "2011-03-14T00:00:00", + "annotation_id": "75179a5a-0ffe-5602-9f4e-996f9f2ed9b8", + "entity_type": "analyte", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "3e8a51bf-7e1f-4eab-af83-3c60d04db1bf", + "state": "released", + "category": "Item is noncanonical", + "status": "Approved", + "case_submitter_id": "TCGA-13-0913" + }, + { + "entity_submitter_id": "TCGA-13-0913", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1253", + "classification": "Notification", + "entity_id": "3e8a51bf-7e1f-4eab-af83-3c60d04db1bf", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "6d23646b-68b6-5a7a-9180-6a7c912f0830", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "case_id": "3e8a51bf-7e1f-4eab-af83-3c60d04db1bf", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-13-0913" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0913-02A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_313_AlignedReadsf02b19ee-3250-4154-b94f-703f506e677a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 334011033, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "6105d91a38355ab1c87653179c33efc4", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5e5263e4-7d68-4d96-a76a-5d4bd1ab8088", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_313_MirnaExpressionWorkflow856be821-5908-498b-a8e0-4ce2ec467656_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1294296c-5ac8-4ee4-bdc2-9c11e4d3f916", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 49989, + "md5sum": "c4ea054fac6f0abdb7dd6a4a4787a463", + "file_id": "9f8cd1ab-2a7c-4701-813d-b22f302fa670", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-2059-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "f4b56568-a74a-4a2e-89d9-11722ecf5948", + "entity_id": "44de533e-53ff-42d9-a777-0aff5884af71" + } + ], + "file_name": "5ce230b0-d8b8-4718-aea5-83e3083a9dbe.mirnaseq.mirnas.quantification.txt", + "submitter_id": "15e11c11-e67c-494c-9d42-0ee2d1a6f789", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-2059", + "notes": "[intgen.org]: Molecular Results off Spec", + "submitter_id": "619", + "classification": "Notification", + "entity_id": "f4b56568-a74a-4a2e-89d9-11722ecf5948", + "created_datetime": "2010-09-02T00:00:00", + "annotation_id": "a144a0e5-68e1-5bcf-87b7-d712013e5586", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "f4b56568-a74a-4a2e-89d9-11722ecf5948", + "state": "released", + "category": "Molecular analysis outside specification", + "status": "Approved", + "case_submitter_id": "TCGA-13-2059" + } + ], + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9921718943201966, + "total_reads": 18579974, + "access": "controlled", + "file_name": "44de533e-53ff-42d9-a777-0aff5884af71_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003786388, + "proportion_reads_duplicated": 0, + "submitter_id": "3771e3f6-bcb2-45da-bf48-71387fa4cf07", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 294279308, + "created_datetime": "2024-09-20T11:14:26.321240-05:00", + "average_base_quality": 36, + "md5sum": "f8dfcc02e923dd4885853878e3008dd3", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "91362cde-58fc-4941-ab5f-10fb74af3745", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 33, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "5ce230b0-d8b8-4718-aea5-83e3083a9dbe_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "6b549e60-b28f-4ab1-8498-09dc2a15758a", + "created_datetime": "2024-09-20T11:16:38.136177-05:00" + }, + "file_size": 50706, + "md5sum": "6b6a8146b9911f9f147702a46b2bb8c7", + "file_id": "73fe40ee-5824-4f43-ab8c-5b7d8126d396", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-2049-01D-01R-A96S-41", + "entity_type": "aliquot", + "case_id": "05eb8bd5-d31b-4595-921a-366e53ea5a8b", + "entity_id": "12b4954d-8281-4caa-bdaf-cad789e6836a" + } + ], + "file_name": "7d8f9433-da28-46c7-b06a-d5cbb4c67041.mirnaseq.mirnas.quantification.txt", + "submitter_id": "caea3c05-8900-47a9-ba7a-8ee875252cc2", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-09-2049", + "notes": "[intgen.org]:Molecular analysis outside specification", + "submitter_id": "1043", + "classification": "Notification", + "entity_id": "05eb8bd5-d31b-4595-921a-366e53ea5a8b", + "created_datetime": "2010-12-08T00:00:00", + "annotation_id": "6fc32e6c-8b1a-56bd-bde1-3f7a8a27cb35", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:32:20.747393-05:00", + "case_id": "05eb8bd5-d31b-4595-921a-366e53ea5a8b", + "state": "released", + "category": "Molecular analysis outside specification", + "status": "Approved", + "case_submitter_id": "TCGA-09-2049" + } + ], + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9894478838518158, + "total_reads": 31319026, + "access": "controlled", + "file_name": "12b4954d-8281-4caa-bdaf-cad789e6836a_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003926258, + "proportion_reads_duplicated": 0, + "submitter_id": "82444c95-f28c-4fc5-9531-cd69daf2a918", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 487487391, + "created_datetime": "2024-09-20T11:14:04.766788-05:00", + "average_base_quality": 36, + "md5sum": "41584c272e8294e6c824e1791712085b", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "f9774d47-c61c-4e03-b1eb-9e8185dceb1d", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 36, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "7d8f9433-da28-46c7-b06a-d5cbb4c67041_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "727c2b00-2a36-4540-8bdd-54d733113b39", + "created_datetime": "2024-09-20T11:17:03.104369-05:00" + }, + "file_size": 50821, + "md5sum": "2def930358391bdba2738642d0ddafa7", + "file_id": "c246946a-2dc2-4cd9-950b-8a118805d0c6", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-2049-01D-01R-A96S-41", + "entity_type": "aliquot", + "case_id": "05eb8bd5-d31b-4595-921a-366e53ea5a8b", + "entity_id": "12b4954d-8281-4caa-bdaf-cad789e6836a" + } + ], + "file_name": "7d8f9433-da28-46c7-b06a-d5cbb4c67041.mirnaseq.isoforms.quantification.txt", + "submitter_id": "2f737030-2d96-458d-9727-3c4c21c93729", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-09-2049", + "notes": "[intgen.org]:Molecular analysis outside specification", + "submitter_id": "1043", + "classification": "Notification", + "entity_id": "05eb8bd5-d31b-4595-921a-366e53ea5a8b", + "created_datetime": "2010-12-08T00:00:00", + "annotation_id": "6fc32e6c-8b1a-56bd-bde1-3f7a8a27cb35", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:32:20.747393-05:00", + "case_id": "05eb8bd5-d31b-4595-921a-366e53ea5a8b", + "state": "released", + "category": "Molecular analysis outside specification", + "status": "Approved", + "case_submitter_id": "TCGA-09-2049" + } + ], + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9894478838518158, + "total_reads": 31319026, + "access": "controlled", + "file_name": "12b4954d-8281-4caa-bdaf-cad789e6836a_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003926258, + "proportion_reads_duplicated": 0, + "submitter_id": "82444c95-f28c-4fc5-9531-cd69daf2a918", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 487487391, + "created_datetime": "2024-09-20T11:14:04.766788-05:00", + "average_base_quality": 36, + "md5sum": "41584c272e8294e6c824e1791712085b", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "f9774d47-c61c-4e03-b1eb-9e8185dceb1d", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 36, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "7d8f9433-da28-46c7-b06a-d5cbb4c67041_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "727c2b00-2a36-4540-8bdd-54d733113b39", + "created_datetime": "2024-09-20T11:17:03.104369-05:00" + }, + "file_size": 593331, + "md5sum": "2f5d87058cc33629033d5916bfff2787", + "file_id": "f7e83e16-cb60-4488-9af3-82db3a4266a2", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2298-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "7e4e7914-ec23-4c55-98d6-3c5eecffa8e4", + "entity_id": "7b39cb0a-7152-4037-9989-57545a1df980" + } + ], + "file_name": "c5580440-b191-46c0-baae-cf00393ab3fa.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_322_MirnaExpression2238bbf1-394f-4483-8ce1-a51d268768a5_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-24-2298", + "notes": "Prior malignancy of breast carcinoma", + "submitter_id": "3392", + "classification": "Notification", + "entity_id": "7e4e7914-ec23-4c55-98d6-3c5eecffa8e4", + "created_datetime": "2011-09-18T00:00:00", + "annotation_id": "a6acafcb-f687-5695-be6c-d17b2ab0c909", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "7e4e7914-ec23-4c55-98d6-3c5eecffa8e4", + "state": "released", + "category": "Prior malignancy", + "status": "Approved", + "case_submitter_id": "TCGA-24-2298" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2298-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_322_AlignedReads2238bbf1-394f-4483-8ce1-a51d268768a5", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 253873528, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "061657f0fc8116607ec7ff71f7d0ff93", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "f0ebf642-bc62-4734-b706-a2b450641cea", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_322_MirnaExpressionWorkflow3aa06957-ee79-4a88-88de-559be991fa08_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b1428a0c-11b6-4159-88f2-59c76ebd0cbb", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50371, + "md5sum": "df545783ecdaeb8683396d9e6c4fe4df", + "file_id": "cc55f096-7de6-4dd0-bdef-030c1c98084e", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1770-02A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "5abb6d80-fc39-49a4-8db5-3db24543feb6", + "entity_id": "ea119111-5217-4b8a-88e0-36dc77782241" + } + ], + "file_name": "3cf91aaa-a006-42af-9547-a227a7e21f75.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_468_MirnaExpressione9916064-a8fc-4d2d-91cf-b396abea3fa9_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "20e264ce-a10d-5da1-b7f5-2295d3815abf", + "entity_submitter_id": "TCGA-29-1770-02A-01R", + "notes": "Ovary Triplet", + "entity_type": "analyte", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "2087", + "state": "released", + "category": "Item is noncanonical", + "classification": "Notification", + "entity_id": "f13c7818-cb57-4775-8f05-2defd481f8a2", + "created_datetime": "2011-03-14T00:00:00", + "status": "Approved" + }, + { + "entity_submitter_id": "TCGA-29-1770", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1241", + "classification": "Notification", + "entity_id": "5abb6d80-fc39-49a4-8db5-3db24543feb6", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "75f708f5-fc14-570c-8ee1-c5cfb5c950e8", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "5abb6d80-fc39-49a4-8db5-3db24543feb6", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-29-1770" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1770-02A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_468_AlignedReadse9916064-a8fc-4d2d-91cf-b396abea3fa9", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 334592313, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "3d074982fb756182c6eb63d0a588b593", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "daff5570-e543-4529-906d-6f1fc7b244d1", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_468_MirnaExpressionWorkflow1740e989-c9c8-404b-a32b-532027df4406_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5302945e-058e-4fbc-83df-b8aaafc4c051", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 445381, + "md5sum": "0fcacbd9d25a8ae1f6995b7243bf2f22", + "file_id": "85f0d159-a737-4f27-8556-b554f74b98ad", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2298-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "7e4e7914-ec23-4c55-98d6-3c5eecffa8e4", + "entity_id": "7b39cb0a-7152-4037-9989-57545a1df980" + } + ], + "file_name": "c5580440-b191-46c0-baae-cf00393ab3fa.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_322_MirnaExpression2238bbf1-394f-4483-8ce1-a51d268768a5_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-24-2298", + "notes": "Prior malignancy of breast carcinoma", + "submitter_id": "3392", + "classification": "Notification", + "entity_id": "7e4e7914-ec23-4c55-98d6-3c5eecffa8e4", + "created_datetime": "2011-09-18T00:00:00", + "annotation_id": "a6acafcb-f687-5695-be6c-d17b2ab0c909", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "7e4e7914-ec23-4c55-98d6-3c5eecffa8e4", + "state": "released", + "category": "Prior malignancy", + "status": "Approved", + "case_submitter_id": "TCGA-24-2298" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2298-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_322_AlignedReads2238bbf1-394f-4483-8ce1-a51d268768a5", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 253873528, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "061657f0fc8116607ec7ff71f7d0ff93", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "f0ebf642-bc62-4734-b706-a2b450641cea", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_322_MirnaExpressionWorkflow3aa06957-ee79-4a88-88de-559be991fa08_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b1428a0c-11b6-4159-88f2-59c76ebd0cbb", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 436886, + "md5sum": "c1aaa5141d284072974e45bf678bd106", + "file_id": "5dd38294-a856-49f6-8576-c2b7c44bd81f", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2008-01A-02R-1568-13", + "entity_type": "aliquot", + "case_id": "3ac45a71-c463-4f0f-b030-58c475a34418", + "entity_id": "10271f7f-cce6-44fd-8754-7a4beabfb394" + } + ], + "file_name": "68208daf-fbb4-4fde-ab16-33670694a00e.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_314_MirnaExpression44ad2b6f-7482-4ecb-890a-657f354a5464_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-61-2008", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1240", + "classification": "Notification", + "entity_id": "3ac45a71-c463-4f0f-b030-58c475a34418", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "af8333d7-1e5f-5f01-97c2-f0f6f4fb8601", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "case_id": "3ac45a71-c463-4f0f-b030-58c475a34418", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-61-2008" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2008-01A-02R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_314_AlignedReads44ad2b6f-7482-4ecb-890a-657f354a5464", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 106973161, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "44077496fe461c4e5dab287b08cac668", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4115f4ac-db9c-4163-bc78-c8ab0990e93c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_314_MirnaExpressionWorkflow0968068c-92d0-404b-9db6-57ccdf02f7ee_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e6c9e384-a2b9-4087-9199-a4fde7099902", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50129, + "md5sum": "e186ec264287b6be295f9901e9fb3467", + "file_id": "c441b2f4-fc62-4e39-922d-b4a087ca235a", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1364-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "80f85c54-e12f-4afa-8fa5-5f3e083b6f95", + "entity_id": "2fadaf5a-402b-483d-bc26-08feb3dc162d" + } + ], + "file_name": "afc4a9bb-0dd1-42f1-8c4f-3cc912441a44.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_357_MirnaExpression16e22d12-6b41-4fc8-b418-eee75e76e8fd_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-04-1364", + "notes": "This subject was duplicated by TCGA-24-0981; 0981 was redacted and this one retained", + "submitter_id": "823", + "classification": "Observation", + "entity_id": "80f85c54-e12f-4afa-8fa5-5f3e083b6f95", + "created_datetime": "2010-10-28T00:00:00", + "annotation_id": "d86a2f83-303f-58e8-b24d-0c8d6c8cde39", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "80f85c54-e12f-4afa-8fa5-5f3e083b6f95", + "state": "released", + "category": "General", + "status": "Approved", + "case_submitter_id": "TCGA-04-1364" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1364-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_357_AlignedReads16e22d12-6b41-4fc8-b418-eee75e76e8fd", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 210783961, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "25ffe67e245625ca738fb6bf61bc6964", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b3ff2f1f-061c-4b65-a79a-64f99dd2e706", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_357_MirnaExpressionWorkflow8f9d7e24-ec76-437d-a26e-3281ae8c8c6d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "52c43164-4b60-464d-99cc-9377028a9c5b", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50500, + "md5sum": "10e521256cee77c65889558169d2966a", + "file_id": "a1002e85-1c89-4ffd-bd2e-3cc4be1c4982", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-2414-02A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "a2319490-b85d-4219-a1b0-fa1ec432d5c8", + "entity_id": "1558c0c4-6bd2-482d-9c4e-2430a402dacc" + } + ], + "file_name": "b56790d6-3678-40bf-9e05-d5956086ae0d.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_119_MirnaExpressionc1da0982-1da6-4a06-aad5-ba4ede027b58_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-29-2414", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1251", + "classification": "Notification", + "entity_id": "a2319490-b85d-4219-a1b0-fa1ec432d5c8", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "db1fe169-120b-5592-9027-6e99810057d4", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:32:20.747393-05:00", + "case_id": "a2319490-b85d-4219-a1b0-fa1ec432d5c8", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-29-2414" + }, + { + "annotation_id": "1a979e56-9569-596c-9fb1-f4bc8f3bab52", + "entity_submitter_id": "TCGA-29-2414-02A-01R", + "notes": "Ovary Triplet", + "entity_type": "analyte", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "1489", + "state": "released", + "category": "Item is noncanonical", + "classification": "Notification", + "entity_id": "4db51ece-d641-4e3d-a214-ec7728b6397d", + "created_datetime": "2011-03-14T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-2414-02A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_119_AlignedReadsc1da0982-1da6-4a06-aad5-ba4ede027b58", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 159022826, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "580128d127008a5d90edba55628061f9", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5bfea89f-f792-4949-bde2-c0fa8fa88a34", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_119_MirnaExpressionWorkflow2eb204b5-4f17-46b6-91bd-cfa40fb0b223_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "60c4349d-eb03-464f-aae2-806c81ba1cfe", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 375280, + "md5sum": "e0a6d8be55fd4417740ea0b41c4634a9", + "file_id": "0be5ed0b-55ed-49b2-aada-fe1e3c0d2f36", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1928-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "b45c543a-40d9-423a-a7fa-98e4b325b487", + "entity_id": "433d642a-06fe-454f-a2bf-3e0afb3dd23b" + } + ], + "file_name": "2faf0039-d422-46ea-8bea-fcd4d1d6a46b.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_80_MirnaExpression46249e1e-bceb-42b8-a775-14422798ab88_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-24-1928", + "notes": "[intgen.org]: Prior Malignancy", + "submitter_id": "654", + "classification": "Notification", + "entity_id": "b45c543a-40d9-423a-a7fa-98e4b325b487", + "created_datetime": "2010-09-02T00:00:00", + "annotation_id": "c8edabad-ef15-5f93-899b-770d397b7bca", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "b45c543a-40d9-423a-a7fa-98e4b325b487", + "state": "released", + "category": "Prior malignancy", + "status": "Approved", + "case_submitter_id": "TCGA-24-1928" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1928-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_80_AlignedReads46249e1e-bceb-42b8-a775-14422798ab88", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 373043447, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "96329e64068dcc5052931aa5db877046", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "19ea94c3-cc0f-4c4a-a407-09d94e43578f", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_80_MirnaExpressionWorkflow12777054-c98c-48a6-b2ac-143c160dbe44_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8ebbce05-9eb6-4d48-b77f-b63842354e7a", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 458881, + "md5sum": "47749b8401cfeefe72a2a26a8b3f569f", + "file_id": "93cecbbb-ac2f-48e5-8394-3608975e3503", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-2414-02A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "a2319490-b85d-4219-a1b0-fa1ec432d5c8", + "entity_id": "1558c0c4-6bd2-482d-9c4e-2430a402dacc" + } + ], + "file_name": "b56790d6-3678-40bf-9e05-d5956086ae0d.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_119_MirnaExpressionc1da0982-1da6-4a06-aad5-ba4ede027b58_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-29-2414", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1251", + "classification": "Notification", + "entity_id": "a2319490-b85d-4219-a1b0-fa1ec432d5c8", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "db1fe169-120b-5592-9027-6e99810057d4", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:32:20.747393-05:00", + "case_id": "a2319490-b85d-4219-a1b0-fa1ec432d5c8", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-29-2414" + }, + { + "annotation_id": "1a979e56-9569-596c-9fb1-f4bc8f3bab52", + "entity_submitter_id": "TCGA-29-2414-02A-01R", + "notes": "Ovary Triplet", + "entity_type": "analyte", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "1489", + "state": "released", + "category": "Item is noncanonical", + "classification": "Notification", + "entity_id": "4db51ece-d641-4e3d-a214-ec7728b6397d", + "created_datetime": "2011-03-14T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-2414-02A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_119_AlignedReadsc1da0982-1da6-4a06-aad5-ba4ede027b58", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 159022826, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "580128d127008a5d90edba55628061f9", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5bfea89f-f792-4949-bde2-c0fa8fa88a34", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_119_MirnaExpressionWorkflow2eb204b5-4f17-46b6-91bd-cfa40fb0b223_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "60c4349d-eb03-464f-aae2-806c81ba1cfe", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50267, + "md5sum": "c1f4f23d89fdf288783e360ac556bd9f", + "file_id": "11b1bb3b-5c4c-43dd-ac68-7d4d7fa466b1", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1116-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "70fe08bd-a0b4-4a88-b82e-813b176f8e40", + "entity_id": "ab28a926-0266-4602-8e90-529934cf43ab" + } + ], + "file_name": "ad304861-0a5c-4225-9a9a-445f306c40ac.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_497_MirnaExpressiona7a02df7-7047-4f3f-a009-d3c43471463f_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-23-1116", + "notes": "Prior malignancy of breast cancer", + "submitter_id": "3385", + "classification": "Notification", + "entity_id": "70fe08bd-a0b4-4a88-b82e-813b176f8e40", + "created_datetime": "2011-09-18T00:00:00", + "annotation_id": "c908140f-6424-5e33-bf58-59a4d2c5515f", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "70fe08bd-a0b4-4a88-b82e-813b176f8e40", + "state": "released", + "category": "Prior malignancy", + "status": "Approved", + "case_submitter_id": "TCGA-23-1116" + }, + { + "annotation_id": "1c2843fe-896c-57a5-b6f9-68a85c20481c", + "entity_submitter_id": "TCGA-23-1116-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8771", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "ab28a926-0266-4602-8e90-529934cf43ab", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "ec5a438d-75c5-5930-bb2b-f03dff5446fe", + "entity_submitter_id": "TCGA-23-1116-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29772", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "ab28a926-0266-4602-8e90-529934cf43ab", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1116-01A-01R-1564-13_GRCh37-lite_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_497_AlignedReadsa7a02df7-7047-4f3f-a009-d3c43471463f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 55652166, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "c16769d61bab86deeffd298b578dba42", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "8fe2d9f9-83e2-4c64-8224-163d0e08bdbb", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_497_MirnaExpressionWorkflow4f69a999-b6c2-439f-b5e9-ca634cc2279e_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "bd9b4b74-f15d-40dd-9556-5e2effe4b7fa", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 188470, + "md5sum": "0c916d273176f04b91489d4146a2a6f7", + "file_id": "3c50e862-4d74-4162-8eb2-18a6bc9b166a", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1781-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "f6ebf3a7-31c6-4f4c-9a0b-74cf35bfedf6", + "entity_id": "5fd66773-ed5a-438c-a7c1-d029f05798e5" + } + ], + "file_name": "4c1e41e7-725e-477d-95e5-17befad245a5.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_477_MirnaExpression6889539b-6729-41ec-829e-98dc029d129d_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-29-1781", + "notes": "Prior malignancy of breast cancer", + "submitter_id": "3389", + "classification": "Notification", + "entity_id": "f6ebf3a7-31c6-4f4c-9a0b-74cf35bfedf6", + "created_datetime": "2011-09-18T00:00:00", + "annotation_id": "c9e3dafe-0a2e-522f-9367-2cea938a5fb7", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "f6ebf3a7-31c6-4f4c-9a0b-74cf35bfedf6", + "state": "released", + "category": "Prior malignancy", + "status": "Approved", + "case_submitter_id": "TCGA-29-1781" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1781-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_477_AlignedReads6889539b-6729-41ec-829e-98dc029d129d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 178755354, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "1e844affdf743d99386203882d883d81", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "64cb0109-b4fd-436a-94ac-1981c71c5bf8", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_477_MirnaExpressionWorkflowe051f949-aab9-4ca3-9ef2-65a596f860ba_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "02cb333b-1da2-44bb-9a53-6d694c46c23c", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 355923, + "md5sum": "b9f6b6f8a55884db103fca9c38d64cd5", + "file_id": "03f72444-d095-4615-a516-1b7e6222bdb3", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1781-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "f6ebf3a7-31c6-4f4c-9a0b-74cf35bfedf6", + "entity_id": "5fd66773-ed5a-438c-a7c1-d029f05798e5" + } + ], + "file_name": "4c1e41e7-725e-477d-95e5-17befad245a5.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_477_MirnaExpression6889539b-6729-41ec-829e-98dc029d129d_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-29-1781", + "notes": "Prior malignancy of breast cancer", + "submitter_id": "3389", + "classification": "Notification", + "entity_id": "f6ebf3a7-31c6-4f4c-9a0b-74cf35bfedf6", + "created_datetime": "2011-09-18T00:00:00", + "annotation_id": "c9e3dafe-0a2e-522f-9367-2cea938a5fb7", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "f6ebf3a7-31c6-4f4c-9a0b-74cf35bfedf6", + "state": "released", + "category": "Prior malignancy", + "status": "Approved", + "case_submitter_id": "TCGA-29-1781" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1781-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_477_AlignedReads6889539b-6729-41ec-829e-98dc029d129d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 178755354, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "1e844affdf743d99386203882d883d81", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "64cb0109-b4fd-436a-94ac-1981c71c5bf8", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_477_MirnaExpressionWorkflowe051f949-aab9-4ca3-9ef2-65a596f860ba_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "02cb333b-1da2-44bb-9a53-6d694c46c23c", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50272, + "md5sum": "284ecfdc42282e24ed02016419263e0f", + "file_id": "1a4121a4-48b3-4524-8f7e-ce162ca89af4", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-2428-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "b0585c7a-7205-4dac-9d54-6da89674accb", + "entity_id": "9e4a4bc1-39cf-46dc-b7d3-c7d852cc033b" + } + ], + "file_name": "5e859806-0cf7-456b-a50b-92e574142dbd.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_237_MirnaExpression5f2ca23e-8991-47a6-988d-1b3578656d13_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-29-2428", + "notes": "Prior malignancy of high grade endometrial carcinoma", + "submitter_id": "3394", + "classification": "Notification", + "entity_id": "b0585c7a-7205-4dac-9d54-6da89674accb", + "created_datetime": "2011-09-18T00:00:00", + "annotation_id": "ca462474-5d6f-574f-9fab-66a308c40ee4", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "b0585c7a-7205-4dac-9d54-6da89674accb", + "state": "released", + "category": "Prior malignancy", + "status": "Approved", + "case_submitter_id": "TCGA-29-2428" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-2428-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_237_AlignedReads5f2ca23e-8991-47a6-988d-1b3578656d13", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 195529057, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "5a194c5c1a3937ab97a45ff32d253f84", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c07e6e5e-463f-4654-8af4-b144be76a437", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_237_MirnaExpressionWorkflow8264820f-7664-4c32-a204-2ea1811de486_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "82cc33d0-5126-419f-8a45-a18939e0f853", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 384487, + "md5sum": "13a16bd45ce72ba251dac3625a9d01e3", + "file_id": "97607f3f-e016-4b4d-9476-bce9223f6cd3", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-2065-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "8d1dcf21-efd3-4fbe-ad44-f43a19239383", + "entity_id": "6264c1bd-d074-4ef9-bbb9-ed5681bb9978" + } + ], + "file_name": "3acb3de6-45b2-4bf6-bbdd-4fee94bbe9bb.mirnaseq.isoforms.quantification.txt", + "submitter_id": "f1165165-b080-419a-bec9-27f422f7b63b", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-2065", + "notes": "[intgen.org]: Molecular Results off Spec", + "submitter_id": "620", + "classification": "Notification", + "entity_id": "8d1dcf21-efd3-4fbe-ad44-f43a19239383", + "created_datetime": "2010-09-02T00:00:00", + "annotation_id": "d3aecb31-99a4-5951-9631-16d3cd3fb71f", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "case_id": "8d1dcf21-efd3-4fbe-ad44-f43a19239383", + "state": "released", + "category": "Molecular analysis outside specification", + "status": "Approved", + "case_submitter_id": "TCGA-13-2065" + } + ], + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9883536137060372, + "total_reads": 25770483, + "access": "controlled", + "file_name": "6264c1bd-d074-4ef9-bbb9-ed5681bb9978_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004977162, + "proportion_reads_duplicated": 0, + "submitter_id": "aa419225-efda-415f-b899-eaadde5fb7ce", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 431676438, + "created_datetime": "2024-09-20T11:13:41.066414-05:00", + "average_base_quality": 36, + "md5sum": "98c1bb6ebf07d650b910418f6a00d2a5", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "4ffe7d22-8271-4913-9e5e-47a81a9d8c12", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "3acb3de6-45b2-4bf6-bbdd-4fee94bbe9bb_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "77cebbf6-e5c3-402b-ad05-be04969d77a4", + "created_datetime": "2024-09-20T11:17:14.265486-05:00" + }, + "file_size": 557943, + "md5sum": "c903f8a4fda14dce99123595ab9e9063", + "file_id": "08a17f2f-717b-47a7-a293-0fa197f20e3d", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1699-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "fe0e3851-d8cb-4533-9536-b4826cd25f87", + "entity_id": "6d1d8c8a-fea0-4a47-bd2a-124270561406" + } + ], + "file_name": "a476e22c-6fa4-4a78-a525-9338cdda214c.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_352_MirnaExpressiona8b77118-ebbf-4d97-b46a-1a92c5cfd8de_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1699-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_352_AlignedReadsa8b77118-ebbf-4d97-b46a-1a92c5cfd8de", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 96411174, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "3751025532827c66f3d8281ef3ec3fc9", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "ee18fe54-4a6c-4f49-8b0b-ca41e19db8ba", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_352_MirnaExpressionWorkflowe0498b1e-3121-4a62-b913-889b32e4c374_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "6578d6f7-e9f0-4bda-984b-9748ef146c46", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 298693, + "md5sum": "50d2245e5b85fb48c56f34aa5cf4ec6a", + "file_id": "8e36b6af-d56a-44ae-bfa5-30c722523523", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-59-2363-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "f4d95c8e-fb84-46ca-acc0-827015cc9d0a", + "entity_id": "1d3f29ac-5f19-452d-99b6-72c0abf1ce32" + } + ], + "file_name": "a5ace577-a313-4622-9151-3154a21c46ba.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_308_MirnaExpression967187b6-cedd-4347-b0fa-311c04da570c_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-59-2363-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_308_AlignedReads967187b6-cedd-4347-b0fa-311c04da570c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 437338897, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "ac57ea13b9c788050f42d3a260c5317a", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "db123b10-b891-4819-910e-23b165b9792b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_308_MirnaExpressionWorkflow02b1fd7f-630f-4176-9e6a-7192ca622406_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "553c9934-f929-413c-9ce8-47b4a12b67a9", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50667, + "md5sum": "239f8911df9ef87f03065207c08a9ef8", + "file_id": "d43fb380-ef52-46c3-9141-fa66985f79f9", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-59-2363-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "f4d95c8e-fb84-46ca-acc0-827015cc9d0a", + "entity_id": "1d3f29ac-5f19-452d-99b6-72c0abf1ce32" + } + ], + "file_name": "a5ace577-a313-4622-9151-3154a21c46ba.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_308_MirnaExpression967187b6-cedd-4347-b0fa-311c04da570c_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-59-2363-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_308_AlignedReads967187b6-cedd-4347-b0fa-311c04da570c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 437338897, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "ac57ea13b9c788050f42d3a260c5317a", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "db123b10-b891-4819-910e-23b165b9792b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_308_MirnaExpressionWorkflow02b1fd7f-630f-4176-9e6a-7192ca622406_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "553c9934-f929-413c-9ce8-47b4a12b67a9", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 545989, + "md5sum": "3be68850d91a813fd26952b4307ec790", + "file_id": "fa149c66-7aab-485f-b21e-00ae2090282c", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-2072-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "1592af8e-8d11-4325-8a2b-e0c690b15b58", + "entity_id": "2d99a8f5-c707-4402-9bfb-cf46c5207eda" + } + ], + "file_name": "8c6b3fc8-d4d9-49c8-9bc3-915c4b99ff87.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_417_MirnaExpression7abd744a-96f4-47d4-a51f-7ad8bdddd81d_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-2072-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_417_AlignedReads7abd744a-96f4-47d4-a51f-7ad8bdddd81d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 180625524, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "29a0239060b6ba585c88a241971f6dcd", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6b25150e-f87d-4b22-ac4b-ca88dd7035b6", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_417_MirnaExpressionWorkflowa93990af-f549-4247-b07e-7052ddb68f04_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "3203d886-8303-405e-b0aa-c3e0886b65b4", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 385780, + "md5sum": "1e206534162400e166f9db822f744bd3", + "file_id": "7fe549bf-7a5c-4779-9392-35a408e6973b", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1411-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "a9d3a7b0-faf8-4e56-8600-d9e6882a4f23", + "entity_id": "0069c63d-f699-41d4-9798-9a109d1c09df" + } + ], + "file_name": "fd24d2f0-999d-44c5-a62e-141888de2c6d.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_420_MirnaExpressiondec97669-6658-4c56-a56f-da8c646b23a9_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1411-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_420_AlignedReadsdec97669-6658-4c56-a56f-da8c646b23a9", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 132319358, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "b90480516f5b15d995fd0ef3e2237a28", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "06084800-31dd-4b57-8d7b-983c18639a15", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_420_MirnaExpressionWorkflow6f8194f9-a431-45a0-aa37-8826095b957f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1fb9d946-4ea8-433d-b467-1b6bcd8bf07b", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50255, + "md5sum": "ebd0a228880327f81cbaffe700c3ac9b", + "file_id": "9c4734f6-e7b3-4ee2-a421-a5e374d2ce74", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-2072-01A-01R-A96U-41", + "entity_type": "aliquot", + "case_id": "1592af8e-8d11-4325-8a2b-e0c690b15b58", + "entity_id": "b497d0f1-0124-476f-8980-cc9222d16d1f" + } + ], + "file_name": "627d040c-9a26-4ece-9a1b-f17bdac45a87.mirnaseq.mirnas.quantification.txt", + "submitter_id": "589e1468-6847-405b-8208-0806d39d226b", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9924611397540095, + "total_reads": 25112682, + "access": "controlled", + "file_name": "b497d0f1-0124-476f-8980-cc9222d16d1f_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004497281, + "proportion_reads_duplicated": 0, + "submitter_id": "079882de-1a22-49c0-ae46-6a7e0dab68af", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 399263167, + "created_datetime": "2024-09-20T11:13:58.228658-05:00", + "average_base_quality": 36, + "md5sum": "69ab4bf7844f2dafdadda2d293f47076", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "ec09bd2b-1fa6-46f4-ace6-5c46f30eb8af", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 35, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "627d040c-9a26-4ece-9a1b-f17bdac45a87_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b7791c0a-a478-4b41-b348-d35771c77ece", + "created_datetime": "2024-09-20T11:17:21.450876-05:00" + }, + "file_size": 50703, + "md5sum": "0fd498ad213abb61d35f0481983515d7", + "file_id": "bd3bc699-df53-41f1-b17e-382e66970294", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-57-1586-01A-02R-1567-13", + "entity_type": "aliquot", + "case_id": "48e66676-dbed-48a4-9a7f-a6d247b15c17", + "entity_id": "2dcac69e-7167-4979-8327-be74d2c1202b" + } + ], + "file_name": "b11f9bbf-5c77-43aa-8c58-17edc9f181a5.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_301_MirnaExpressione67d0056-9bdd-4e1c-8242-7eb4a9559606_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "55473a74-6d9e-5d6c-b729-37cd9ac95a56", + "entity_submitter_id": "TCGA-57-1586-01A-02R-1567-13", + "notes": "RNA-seq:HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8818", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "2dcac69e-7167-4979-8327-be74d2c1202b", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "e0cb9265-3b4a-5e09-99db-37ea1f5d0b41", + "entity_submitter_id": "TCGA-57-1586-01A-02R-1567-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29804", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "2dcac69e-7167-4979-8327-be74d2c1202b", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-57-1586-01A-02R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_301_AlignedReadse67d0056-9bdd-4e1c-8242-7eb4a9559606", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 214064809, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "effbbc7d6eea163960705dc556eb51ea", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "2bc98b5d-f8ba-419d-b305-e6323591f08f", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_301_MirnaExpressionWorkflow8129ee3d-27df-4b79-8734-41968a637b02_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "9eb2295d-4b67-4729-bb1a-494ebfa9fcb3", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50449, + "md5sum": "c553072d1b6740447ac0814edfe966a4", + "file_id": "132d842d-b7d9-42d8-811a-85cf9580d8e5", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-31-1959-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "186d40cd-624c-4016-a497-b30c892d393c", + "entity_id": "25b1eb9f-7b97-4da2-96a9-a4a3aaaca192" + } + ], + "file_name": "0b1a587e-17cc-4553-bb7c-2ad09cf1c657.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_64_MirnaExpressionfd7a7f79-6cd7-4840-81a9-c370882fe4c0_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-31-1959-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_64_AlignedReadsfd7a7f79-6cd7-4840-81a9-c370882fe4c0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 238573112, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "73fa364060130bcc3c11c4162fae2201", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "dd9d46ad-9ac3-4064-be2a-edb0c15ddc87", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_64_MirnaExpressionWorkflow53e56a82-7215-4dfd-b2f5-34d102b82f2b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "4a20cddc-181c-4fd1-874e-f9075d63fc2c", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50509, + "md5sum": "e3c21dd82e987e4ebcaca941c42440f2", + "file_id": "6f8e3e33-1309-4de6-8b41-d989ba538b67", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-31-1959-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "186d40cd-624c-4016-a497-b30c892d393c", + "entity_id": "25b1eb9f-7b97-4da2-96a9-a4a3aaaca192" + } + ], + "file_name": "0b1a587e-17cc-4553-bb7c-2ad09cf1c657.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_64_MirnaExpressionfd7a7f79-6cd7-4840-81a9-c370882fe4c0_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-31-1959-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_64_AlignedReadsfd7a7f79-6cd7-4840-81a9-c370882fe4c0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 238573112, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "73fa364060130bcc3c11c4162fae2201", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "dd9d46ad-9ac3-4064-be2a-edb0c15ddc87", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_64_MirnaExpressionWorkflow53e56a82-7215-4dfd-b2f5-34d102b82f2b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "4a20cddc-181c-4fd1-874e-f9075d63fc2c", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 453293, + "md5sum": "1e0dd30e01141e39083f6cb498d9b71c", + "file_id": "1a8fce69-d941-46a9-93ca-2ec52945ca36", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-2396-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "6264e699-d40b-4ebc-b443-0a0edcb220dc", + "entity_id": "43352a4d-f866-4ed7-81f5-5dc478c10992" + } + ], + "file_name": "a28f9f92-05d0-4e51-aba7-bdfbd6e5430d.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_273_MirnaExpression4dfc4256-f60c-4ce7-8f28-113a812f5f19_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-2396-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_273_AlignedReads4dfc4256-f60c-4ce7-8f28-113a812f5f19", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 184219746, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "590bbf0e69bedffe79f6742d264dd71d", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b783e82f-ae53-4778-8907-badc628fd834", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_273_MirnaExpressionWorkflow78b8f070-0bc0-4f50-be28-4e4cb26a09cf_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ed8801bb-d0fb-40ce-bd61-354d07cf7545", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50349, + "md5sum": "c8fe3e75f41c746bba2e7a5e891c28a9", + "file_id": "9395e22f-965b-4f1b-a83c-d48c98301777", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1416-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "f9793a4b-c0e7-4475-bf80-69543b7ee2f6", + "entity_id": "67fcea16-d5bc-4edd-b66d-bfc5d56d976d" + } + ], + "file_name": "b6315f3a-b332-4b8a-8f32-682a5153eb3d.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_75_MirnaExpressiond1080745-ed0c-4a44-ba3d-3a2045c963fc_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1416-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_75_AlignedReadsd1080745-ed0c-4a44-ba3d-3a2045c963fc", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 153020440, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "1c9c3e6d7dff5d235c0a39d12f927415", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5e85308e-e22b-40a7-b775-aa2aa121c5e0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_75_MirnaExpressionWorkflowc16d354d-b31c-46e2-b0ef-31fd1ce83f96_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "701f5b05-3a8e-4620-aef4-e7839bdc098a", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 356233, + "md5sum": "bdf1eccbd3b0931785427656f5b2c25c", + "file_id": "81b864a4-2c3a-4e8e-acc6-36b8ef972d99", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1697-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "42ebd30b-175e-4ece-a806-e55cb7e40e96", + "entity_id": "75435634-4311-49d8-8e42-ae1069c1e2ef" + } + ], + "file_name": "e179cb5a-fec4-4633-a063-98a8360de051.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_35_MirnaExpression000f4932-84b2-47da-aece-67470e2a58f4_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1697-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_35_AlignedReads000f4932-84b2-47da-aece-67470e2a58f4", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 216181377, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "201ec94092465ad7aaaa0a95309865d5", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "66bdce03-4e59-43de-bda0-e407f7a8f762", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_35_MirnaExpressionWorkflow038a9661-7b9c-4716-82ff-6b0a82c6c4c5_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c56b1522-faac-438b-81bc-f6135ad2eb39", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50354, + "md5sum": "4aa4ad5c3b7a38a750c8e6bc92c8c822", + "file_id": "c0c08c65-e27c-49be-b958-602a73a32cf2", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1697-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "42ebd30b-175e-4ece-a806-e55cb7e40e96", + "entity_id": "75435634-4311-49d8-8e42-ae1069c1e2ef" + } + ], + "file_name": "e179cb5a-fec4-4633-a063-98a8360de051.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_35_MirnaExpression000f4932-84b2-47da-aece-67470e2a58f4_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1697-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_35_AlignedReads000f4932-84b2-47da-aece-67470e2a58f4", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 216181377, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "201ec94092465ad7aaaa0a95309865d5", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "66bdce03-4e59-43de-bda0-e407f7a8f762", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_35_MirnaExpressionWorkflow038a9661-7b9c-4716-82ff-6b0a82c6c4c5_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c56b1522-faac-438b-81bc-f6135ad2eb39", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 370856, + "md5sum": "2e75c8cd710fe24060a98666eb55cb26", + "file_id": "6c93fadd-0796-43aa-a531-1ab2be7f2648", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1506-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "1cc02c64-a34e-46ae-9bc7-5d50f2fefb31", + "entity_id": "927c7b6d-3997-453b-81b1-b947341d5819" + } + ], + "file_name": "1c37ce94-fb8b-45b4-b93e-ee66cc4d58fe.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_274_MirnaExpression896634a6-7323-4e62-af17-b3c61aeab71a_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1506-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_274_AlignedReads896634a6-7323-4e62-af17-b3c61aeab71a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 189710404, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "44d66823bc22247daf35db77c763601f", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "bf865bb5-adba-47b7-9328-1a50e12fbef7", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_274_MirnaExpressionWorkflow83fe1020-afb1-4e68-8a24-0db60737f7b2_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7eebc940-4bbd-463a-8bf3-74f22c41de78", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50182, + "md5sum": "9dbf75321d014bbe9058080f391d3628", + "file_id": "739b154f-a457-4241-8b0d-819098d491b7", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1506-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "1cc02c64-a34e-46ae-9bc7-5d50f2fefb31", + "entity_id": "927c7b6d-3997-453b-81b1-b947341d5819" + } + ], + "file_name": "1c37ce94-fb8b-45b4-b93e-ee66cc4d58fe.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_274_MirnaExpression896634a6-7323-4e62-af17-b3c61aeab71a_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1506-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_274_AlignedReads896634a6-7323-4e62-af17-b3c61aeab71a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 189710404, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "44d66823bc22247daf35db77c763601f", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "bf865bb5-adba-47b7-9328-1a50e12fbef7", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_274_MirnaExpressionWorkflow83fe1020-afb1-4e68-8a24-0db60737f7b2_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7eebc940-4bbd-463a-8bf3-74f22c41de78", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 298552, + "md5sum": "aceed767f2000dccd2db90979921e702", + "file_id": "3fcf9a75-c34f-44cc-8ee3-03d8416ac06c", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1603-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "19427350-619b-4b9c-a3ba-37f667bb2843", + "entity_id": "f4187f4f-9c52-4065-818b-c884183a5a70" + } + ], + "file_name": "b69419cc-f6e0-4d44-bd54-1342f70a7a85.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_249_MirnaExpression54851eff-2777-4e55-a318-52a554dad30f_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1603-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_249_AlignedReads54851eff-2777-4e55-a318-52a554dad30f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 171706637, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "00895a75fb45a6e7d90c63fb5ca56dff", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "ef16655a-63ea-4483-839a-1bf28ad35e62", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_249_MirnaExpressionWorkflow037b24cb-1de4-4d44-bedc-4d964c6b4669_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7a9c6208-3d33-4e5b-b3e3-48f0001eda42", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50335, + "md5sum": "830b5db932fc0ccb0eec14a8e7d6bf1d", + "file_id": "801e17be-92a0-4919-9916-772698483e0b", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1495-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "74dcdfb4-a637-4111-9a22-4b4bc7bbc8f7", + "entity_id": "845d11ec-7fc7-4498-a0f4-1187413c5914" + } + ], + "file_name": "db912961-b914-487b-b71c-d66b572273f0.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_140_MirnaExpression6d9e355f-77ab-44b3-be0a-61ccf1734825_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "3258d1b6-be3c-54ca-b3d8-22612b85efb1", + "entity_submitter_id": "TCGA-13-1495-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29754", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "845d11ec-7fc7-4498-a0f4-1187413c5914", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "e4d75445-d7cd-547a-a0db-e5b964d42ae6", + "entity_submitter_id": "TCGA-13-1495-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8806", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "845d11ec-7fc7-4498-a0f4-1187413c5914", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1495-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_140_AlignedReads6d9e355f-77ab-44b3-be0a-61ccf1734825", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 116761410, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "70b62f89f58bec73460f07024a0a762b", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4cf48056-b505-420a-a1c9-8fcb3f12ec7d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_140_MirnaExpressionWorkflow907520fc-9ce0-4b56-9e38-13807fde1a5a_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5be0e8c6-2d1d-4ca7-823a-5103e1006c4b", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 293919, + "md5sum": "17b977616e78c5324645dfbdfac84a78", + "file_id": "6ea2175c-4fde-44aa-899e-fe7aaec0d874", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1495-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "74dcdfb4-a637-4111-9a22-4b4bc7bbc8f7", + "entity_id": "845d11ec-7fc7-4498-a0f4-1187413c5914" + } + ], + "file_name": "db912961-b914-487b-b71c-d66b572273f0.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_140_MirnaExpression6d9e355f-77ab-44b3-be0a-61ccf1734825_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "3258d1b6-be3c-54ca-b3d8-22612b85efb1", + "entity_submitter_id": "TCGA-13-1495-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29754", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "845d11ec-7fc7-4498-a0f4-1187413c5914", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "e4d75445-d7cd-547a-a0db-e5b964d42ae6", + "entity_submitter_id": "TCGA-13-1495-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8806", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "845d11ec-7fc7-4498-a0f4-1187413c5914", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1495-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_140_AlignedReads6d9e355f-77ab-44b3-be0a-61ccf1734825", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 116761410, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "70b62f89f58bec73460f07024a0a762b", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4cf48056-b505-420a-a1c9-8fcb3f12ec7d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_140_MirnaExpressionWorkflow907520fc-9ce0-4b56-9e38-13807fde1a5a_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5be0e8c6-2d1d-4ca7-823a-5103e1006c4b", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50186, + "md5sum": "2d7745bafb925959335ea7489f16f491", + "file_id": "4e5b8999-66ab-4b2c-9eeb-4baf6c59b021", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1906-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "f553e953-6464-421f-8933-26ca82cb79d3", + "entity_id": "02de2e69-5b91-487a-be7a-93108ea18c5a" + } + ], + "file_name": "238a6bce-4789-4165-af73-63cb2d6cd888.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_151_MirnaExpressiona365ceb2-9343-4b58-b04b-a564b3883ea4_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1906-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_151_AlignedReadsa365ceb2-9343-4b58-b04b-a564b3883ea4", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 93021548, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "12320b49d384cbc1e811d728bf8628e5", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "846cb6a2-2889-4de3-bae0-83b78fdd77f9", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_151_MirnaExpressionWorkflowb5c763bb-98db-4ab5-a2d5-50cd6c617d59_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f6d9360d-8526-4be0-877a-698afb53f6ef", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50157, + "md5sum": "53f38f5a4788fa2c124c9c4a476a0786", + "file_id": "6d2498c3-bf71-45c1-aeaf-60aec414cc6a", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1906-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "f553e953-6464-421f-8933-26ca82cb79d3", + "entity_id": "02de2e69-5b91-487a-be7a-93108ea18c5a" + } + ], + "file_name": "238a6bce-4789-4165-af73-63cb2d6cd888.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_151_MirnaExpressiona365ceb2-9343-4b58-b04b-a564b3883ea4_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1906-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_151_AlignedReadsa365ceb2-9343-4b58-b04b-a564b3883ea4", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 93021548, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "12320b49d384cbc1e811d728bf8628e5", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "846cb6a2-2889-4de3-bae0-83b78fdd77f9", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_151_MirnaExpressionWorkflowb5c763bb-98db-4ab5-a2d5-50cd6c617d59_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f6d9360d-8526-4be0-877a-698afb53f6ef", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 271952, + "md5sum": "a85723d7c836a45afb961250220ee5f6", + "file_id": "fc2846cf-f814-4304-9dac-4a6d73993fec", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-30-1714-01A-02R-1567-13", + "entity_type": "aliquot", + "case_id": "09820a33-80b1-42d0-8366-a0ddaf94b122", + "entity_id": "c990f93e-c4e1-4192-b948-31a5bda0ff72" + } + ], + "file_name": "f422d7b9-4f8f-4f7d-a6fd-2d0565afb8ef.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_266_MirnaExpression594d4ee3-2509-4ece-a420-0655dd6d02d7_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "349055b4-704a-51cf-8f76-2aeaaf922e55", + "entity_submitter_id": "TCGA-30-1714-01A-02R-1567-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8847", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "c990f93e-c4e1-4192-b948-31a5bda0ff72", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "c2722fa7-bd51-59f1-b070-e8b6adaebf6d", + "entity_submitter_id": "TCGA-30-1714-01A-02R-1567-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29799", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "c990f93e-c4e1-4192-b948-31a5bda0ff72", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-30-1714-01A-02R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_266_AlignedReads594d4ee3-2509-4ece-a420-0655dd6d02d7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 146830240, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "b6c0ddd7caf5555eb4aa32854bc675c6", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b990e9a1-0ee8-4924-8df2-bf2988185336", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_266_MirnaExpressionWorkflow29665790-5ac4-4c59-af37-bd87fa61c8f3_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c540d09e-9b8b-4684-815b-f1f6f9e31dbf", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50286, + "md5sum": "b01e9c9fb1367c92cf1d49a1a096ba23", + "file_id": "66e5ff50-a921-4667-ba1f-f12267198f65", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0766-01A-02R-1564-13", + "entity_type": "aliquot", + "case_id": "8fe44099-b313-4bfd-a94a-27e72f2a818c", + "entity_id": "30be1179-7922-4af7-b234-270fd88a2965" + } + ], + "file_name": "989b0cf1-2efd-4d8b-9d87-fd2ad199f8d7.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_44_MirnaExpressione0d41f69-ec80-4a88-97b4-0d4b1650cbab_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "3028620d-b236-5007-95a6-f3d7f57eaf88", + "entity_submitter_id": "TCGA-13-0766-01A-02R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29722", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "30be1179-7922-4af7-b234-270fd88a2965", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "6dcee333-abe1-590c-b006-ecbfa6f6ae5e", + "entity_submitter_id": "TCGA-13-0766-01A-02R-1564-13", + "notes": "RNA-seq:INSUFFICIENT INPUT MATERIAL,LOW SEQUENCE YIELD/DIVERSITY;LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8832", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "30be1179-7922-4af7-b234-270fd88a2965", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0766-01A-02R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_44_AlignedReadse0d41f69-ec80-4a88-97b4-0d4b1650cbab", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 126353214, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "b2b0175c6c9b3c4eadc0f82146db8f6c", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "1b7ec7d0-51c1-4639-b756-11a19f316537", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_44_MirnaExpressionWorkflow4b92b3a1-1667-4c3c-99f3-c755f57cb746_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c02fd0e1-5b1c-4330-b62d-97845e6b28bd", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 49975, + "md5sum": "165c540e4d18796c45970e03279310d8", + "file_id": "0ed8db01-fc31-4f6b-9181-f4d9f0f7c064", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0766-01A-02R-1564-13", + "entity_type": "aliquot", + "case_id": "8fe44099-b313-4bfd-a94a-27e72f2a818c", + "entity_id": "30be1179-7922-4af7-b234-270fd88a2965" + } + ], + "file_name": "989b0cf1-2efd-4d8b-9d87-fd2ad199f8d7.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_44_MirnaExpressione0d41f69-ec80-4a88-97b4-0d4b1650cbab_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "3028620d-b236-5007-95a6-f3d7f57eaf88", + "entity_submitter_id": "TCGA-13-0766-01A-02R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29722", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "30be1179-7922-4af7-b234-270fd88a2965", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "6dcee333-abe1-590c-b006-ecbfa6f6ae5e", + "entity_submitter_id": "TCGA-13-0766-01A-02R-1564-13", + "notes": "RNA-seq:INSUFFICIENT INPUT MATERIAL,LOW SEQUENCE YIELD/DIVERSITY;LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8832", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "30be1179-7922-4af7-b234-270fd88a2965", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0766-01A-02R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_44_AlignedReadse0d41f69-ec80-4a88-97b4-0d4b1650cbab", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 126353214, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "b2b0175c6c9b3c4eadc0f82146db8f6c", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "1b7ec7d0-51c1-4639-b756-11a19f316537", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_44_MirnaExpressionWorkflow4b92b3a1-1667-4c3c-99f3-c755f57cb746_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c02fd0e1-5b1c-4330-b62d-97845e6b28bd", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 230578, + "md5sum": "0e5a6d7175ee60fdc4f4c8ab263cec22", + "file_id": "96ee0718-e3fc-4a76-ac66-6b6ccfc78ed1", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-31-1951-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "b0839f46-8c82-4619-be3d-c857a1759463", + "entity_id": "197ea6b5-5716-4e5c-9c7f-92ed4521682a" + } + ], + "file_name": "336bdf94-2c7c-4f4e-a046-09421240e273.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_21_MirnaExpressionfeeb11d0-346b-486b-92b3-563a6e59d630_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-31-1951-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_21_AlignedReadsfeeb11d0-346b-486b-92b3-563a6e59d630", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 200562093, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "df2d1e8c14f93e6533782a0f8b11cb14", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a3e01732-1b07-43c9-9570-3327e0aad768", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_21_MirnaExpressionWorkflowdba86a16-0ca9-4431-a0b8-7f0c9bfee2f9_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ad48becb-1a39-4b9a-b56b-3b10d7d556e7", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 366387, + "md5sum": "58ac082bacb0929d9f9bdd8e30dfb481", + "file_id": "a289b7b7-ff73-4edf-9369-4436cddb6b23", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-OY-A56P-01A-12R-A407-13", + "entity_type": "aliquot", + "case_id": "260723bf-9620-450d-bf31-f3a45543f9db", + "entity_id": "f8bfd2bc-95b9-4f53-b7a8-0e23c1c14711" + } + ], + "file_name": "38d3a4c2-6ccb-48f3-b672-1d61a7fc4d25.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_8_MirnaExpressiond7534d3d-d0b6-4b01-b0df-77a388c9bf1a_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-OY-A56P-01A-12R-A407-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_8_AlignedReadsd7534d3d-d0b6-4b01-b0df-77a388c9bf1a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 162633230, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "7fe3d869ae03917b5c0929ef8012edab", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5c9d1e2b-1991-4893-bb67-fa18d8f58174", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_8_MirnaExpressionWorkflow54e6a851-789d-4d83-890d-0203a84a9499_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d9b19229-ba4d-4c69-91b7-8e52cf83387e", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50356, + "md5sum": "e4e7c93cff9901fe61b9ee3bc5af0a27", + "file_id": "9b1f40a0-da2c-4b21-b6d4-c22f391f38ab", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1371-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "bff84539-7862-45b2-b5fc-e77291fcca8b", + "entity_id": "d958df44-330b-4cb3-be86-a77d51046771" + } + ], + "file_name": "80f7de09-642a-40b2-8175-8bcd3f25ed5c.mirnaseq.mirnas.quantification.txt", + "submitter_id": "eddf7c01-d8a9-461d-9eed-349aaf4837b5", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9874316384511022, + "total_reads": 34387935, + "access": "controlled", + "file_name": "d958df44-330b-4cb3-be86-a77d51046771_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.00406706, + "proportion_reads_duplicated": 0, + "submitter_id": "4069b19e-3122-4575-8298-30557c077f5f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 613065524, + "created_datetime": "2024-09-20T11:12:35.592126-05:00", + "average_base_quality": 36, + "md5sum": "7830a627968f014b5fef7190f85f41de", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "5571c249-bcc1-4aab-9c89-490cbbb9ac51", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "80f7de09-642a-40b2-8175-8bcd3f25ed5c_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "42480f5a-e13f-407f-98c6-771c636116fd", + "created_datetime": "2024-09-20T11:16:58.317047-05:00" + }, + "file_size": 50957, + "md5sum": "f8581a7722b74e7c8bca06506bd9180f", + "file_id": "6aa6a356-a793-4eb4-ac97-5f35a17977cc", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1371-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "bff84539-7862-45b2-b5fc-e77291fcca8b", + "entity_id": "d958df44-330b-4cb3-be86-a77d51046771" + } + ], + "file_name": "80f7de09-642a-40b2-8175-8bcd3f25ed5c.mirnaseq.isoforms.quantification.txt", + "submitter_id": "6b6e85e5-c2f8-4532-b585-64c441f2424c", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9874316384511022, + "total_reads": 34387935, + "access": "controlled", + "file_name": "d958df44-330b-4cb3-be86-a77d51046771_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.00406706, + "proportion_reads_duplicated": 0, + "submitter_id": "4069b19e-3122-4575-8298-30557c077f5f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 613065524, + "created_datetime": "2024-09-20T11:12:35.592126-05:00", + "average_base_quality": 36, + "md5sum": "7830a627968f014b5fef7190f85f41de", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "5571c249-bcc1-4aab-9c89-490cbbb9ac51", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "80f7de09-642a-40b2-8175-8bcd3f25ed5c_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "42480f5a-e13f-407f-98c6-771c636116fd", + "created_datetime": "2024-09-20T11:16:58.317047-05:00" + }, + "file_size": 602384, + "md5sum": "3f1c164169662841df1022f1a7e8a33f", + "file_id": "1e08bb1b-8568-481c-88c5-685d9f754194", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1652-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "d86adfac-56be-4a69-9315-5a90b4113e65", + "entity_id": "da29de91-fb96-4f2f-9e45-f305e03fcfea" + } + ], + "file_name": "017c892f-c964-4bb1-966b-959b87194658.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_437_MirnaExpressiond98ef41d-36e7-46c3-8e17-22e387b55210_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1652-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_437_AlignedReadsd98ef41d-36e7-46c3-8e17-22e387b55210", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 537882152, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "dfa6ab659d0a331dd39e62a87d95da67", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "8ad6040e-5a66-4e51-b097-47432895d674", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_437_MirnaExpressionWorkflowdf782079-f268-4cc4-8cda-d71d11bb0c88_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c6e80ce3-1f4f-4509-b19c-ffa8a7b42768", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50517, + "md5sum": "7a67bd2ada4ce22af117d906a76ec1bb", + "file_id": "dcd54044-55e7-4dbb-9d69-7a38ed4ee094", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-2055-01B-01R-A96S-41", + "entity_type": "aliquot", + "case_id": "838778c3-0b33-4fc5-97fc-5da163475485", + "entity_id": "df656f15-10e8-46f0-b769-e6dd3be2ee90" + } + ], + "file_name": "32970028-8168-47b4-bf46-7e7658246b98.mirnaseq.isoforms.quantification.txt", + "submitter_id": "dc52a356-694c-46a1-ad51-75eab782a587", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9862252290365656, + "total_reads": 29376532, + "access": "controlled", + "file_name": "df656f15-10e8-46f0-b769-e6dd3be2ee90_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005200573, + "proportion_reads_duplicated": 0, + "submitter_id": "db24d684-47bb-4d48-a72b-56cb9b13289b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 499528384, + "created_datetime": "2024-09-20T11:12:55.383112-05:00", + "average_base_quality": 36, + "md5sum": "115407f5e34fce9904604c0f06807000", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "ef37db3f-2b48-498e-8990-7ff9d088b12e", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "32970028-8168-47b4-bf46-7e7658246b98_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "15a0fbed-324d-4f45-b889-bd835d7971c3", + "created_datetime": "2024-09-20T11:17:22.770158-05:00" + }, + "file_size": 776120, + "md5sum": "8dcec79256f915534fef753e19ab0467", + "file_id": "8d5c3b9d-8b05-4798-921d-d4135c02bf21", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-2055-01B-01R-A96S-41", + "entity_type": "aliquot", + "case_id": "838778c3-0b33-4fc5-97fc-5da163475485", + "entity_id": "df656f15-10e8-46f0-b769-e6dd3be2ee90" + } + ], + "file_name": "32970028-8168-47b4-bf46-7e7658246b98.mirnaseq.mirnas.quantification.txt", + "submitter_id": "d0d280c6-6bdd-45e4-acda-69b486edfa74", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9862252290365656, + "total_reads": 29376532, + "access": "controlled", + "file_name": "df656f15-10e8-46f0-b769-e6dd3be2ee90_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005200573, + "proportion_reads_duplicated": 0, + "submitter_id": "db24d684-47bb-4d48-a72b-56cb9b13289b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 499528384, + "created_datetime": "2024-09-20T11:12:55.383112-05:00", + "average_base_quality": 36, + "md5sum": "115407f5e34fce9904604c0f06807000", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "ef37db3f-2b48-498e-8990-7ff9d088b12e", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "32970028-8168-47b4-bf46-7e7658246b98_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "15a0fbed-324d-4f45-b889-bd835d7971c3", + "created_datetime": "2024-09-20T11:17:22.770158-05:00" + }, + "file_size": 51080, + "md5sum": "f78f9b90fb930a62b56724a3bf6b5f29", + "file_id": "00d8eb33-1a1d-4c25-9ed4-f55f80edd7f3", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1491-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "c8febeef-8e7e-459e-88cb-8086692dc559", + "entity_id": "450bac48-836e-467e-92b4-f0b5f6a82757" + } + ], + "file_name": "bdd98975-906f-4a9d-9add-d77bf82509be.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_175_MirnaExpressiona01a91f0-11a1-4719-9207-2ccca8105af2_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1491-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_175_AlignedReadsa01a91f0-11a1-4719-9207-2ccca8105af2", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 138497496, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "cff4d07489e9ad30a3b4b7fc10243b1c", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "77f02f16-62ed-4433-8eb2-7c8ff16ce41f", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_175_MirnaExpressionWorkflowa7cf54d2-6b5a-417c-bb9f-b9bead03f3c6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f0b25be9-9d88-49e4-bb72-2d78d35b27e0", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50223, + "md5sum": "88c4a17e1dedfb1afd20eca3e059aa03", + "file_id": "6f0acc1c-adda-431d-b6d9-77d5ca076d27", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1870-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "15f1a992-0724-4d76-a71a-702ac7753a41", + "entity_id": "c446d667-ea88-40fe-ad97-fd3fcceb7dd1" + } + ], + "file_name": "0e5a354f-02fb-4dfc-8680-293e3cad57c3.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_486_MirnaExpression47046911-d173-4417-8091-394abd036809_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1870-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_486_AlignedReads47046911-d173-4417-8091-394abd036809", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 241836426, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "6765ecff4a24a956cc74449f845eaf7e", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "02c45283-d917-47e8-b18c-6892c8f17d6a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_486_MirnaExpressionWorkflow13829fc5-892e-4b9c-b43c-95f9078f529c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2e93edaa-4d96-40c0-84ec-c8d82e00d070", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50326, + "md5sum": "92ae89cd8f28bc01f713a0162ab8b0c2", + "file_id": "8771d62e-48a9-4c9b-af65-5bea2d8e12f9", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1525-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "2bb96e1e-6992-434d-83e5-2f03713b3911", + "entity_id": "efc8d6be-7a3c-4555-92db-3c0dde9a2982" + } + ], + "file_name": "cebb6715-88e3-4c25-bff6-15a7fc44d183.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_460_MirnaExpressiond544c844-4c06-458d-956d-99c7b63127d9_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1525-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_460_AlignedReadsd544c844-4c06-458d-956d-99c7b63127d9", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 160327031, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "2d39f214a63f69d5891cbd38c376a133", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "7335ce04-f58e-4ed9-855c-794bb0019d97", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_460_MirnaExpressionWorkflowd544b057-4e6a-4418-9721-872832ca38b5_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0383a1fb-5d0e-44c5-bc10-ca31fe0a42bd", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 369030, + "md5sum": "8bc388536eca507ace8498fa5684639a", + "file_id": "bc61479e-3e57-4032-87e2-740153554a4a", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1320-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "46395c3d-5e51-477f-946e-e58b87cc7baa", + "entity_id": "52697815-ede2-4ce3-a6d0-2680f6b9bb73" + } + ], + "file_name": "5441d128-830d-4d59-bf51-d72960e424bf.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_203_MirnaExpression60ad2e35-4cbb-4311-b062-acbc860d6231_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1320-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_203_AlignedReads60ad2e35-4cbb-4311-b062-acbc860d6231", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 179277838, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "f1d8f8441e75a28174c7a876c39d693c", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "122e0cc4-fa3a-402a-b93e-bcc423805744", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_203_MirnaExpressionWorkflowc3c0574e-54aa-42a4-ae8a-85c287a38984_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "65b2b561-f60b-43a0-8f66-2f86591135c8", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50321, + "md5sum": "3aa242ede425ffada3f2b995b37418bf", + "file_id": "665c6a4b-ac00-4054-a994-0502ddcecf34", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1769-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "94769f2c-b6fd-48ec-af34-b41165340b7c", + "entity_id": "f2ac7109-1071-47f7-af2a-2d655c475427" + } + ], + "file_name": "7ce526cd-59d2-4e95-ba31-43480c795985.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_84_MirnaExpression492042a1-2338-476c-ae1e-7cfd1d1b0091_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "3390b336-d64c-5c4c-9a5b-6d404f6d7ac9", + "entity_submitter_id": "TCGA-29-1769-01A-01R-1567-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8856", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "f2ac7109-1071-47f7-af2a-2d655c475427", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "86411ff0-b0aa-503b-979c-e7986b931628", + "entity_submitter_id": "TCGA-29-1769-01A-01R-1567-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29796", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "f2ac7109-1071-47f7-af2a-2d655c475427", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1769-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_84_AlignedReads492042a1-2338-476c-ae1e-7cfd1d1b0091", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 244480253, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "23ed881d33ff84d469866b7570dcd50e", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "e27add1d-dbbb-4919-881e-b5453872b3af", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_84_MirnaExpressionWorkflowe2571a78-2a70-4d5b-91ab-71f82d9df78c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8df319d4-4e38-4745-bb8e-b3d264c47c69", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50307, + "md5sum": "58e499d0a2e9ec57af32bb4b5890566c", + "file_id": "46784a04-4439-476f-ad77-2649e8da4a53", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1431-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "384170fc-e8be-426a-a54e-bf1ca61f2986", + "entity_id": "0e968ed4-9fbd-482b-b91d-ce7190dc91ed" + } + ], + "file_name": "36f2b200-3e96-475e-8cdf-5df3a85cb2ca.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_114_MirnaExpression9cfbbecb-da51-4961-b044-c25177858dbc_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "145d32ec-e12e-56e3-98a7-dd64b3a19687", + "entity_submitter_id": "TCGA-24-1431-01A-01R-1566-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29783", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "0e968ed4-9fbd-482b-b91d-ce7190dc91ed", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "d7cb38ff-0ca2-5496-896b-92c5a76b6109", + "entity_submitter_id": "TCGA-24-1431-01A-01R-1566-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8807", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "0e968ed4-9fbd-482b-b91d-ce7190dc91ed", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1431-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_114_AlignedReads9cfbbecb-da51-4961-b044-c25177858dbc", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 199976801, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "cc0dd5cd5c967cc48a5ca6b9023f18d3", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4830445e-fff8-4199-8b66-110805a03654", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_114_MirnaExpressionWorkflowd3867f91-cb53-4bd5-bc9c-db6c56f46d67_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "295a3314-8b41-48fc-9977-498465bd5255", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50162, + "md5sum": "d2c0bcd617729b8bc6eb4abbe0dd7d54", + "file_id": "8c5ecd8f-f39a-4583-a7ef-e7bce8343d33", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-30-1892-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "a09f0626-002a-48fd-8b2d-c66b8285cf23", + "entity_id": "bb8dc795-80ff-4b42-8cf8-9f9716c13967" + } + ], + "file_name": "735a2b61-3da0-4fe1-9eac-9bcb468c750c.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_382_MirnaExpression594db3f7-b960-48fd-81e2-e3b6eea1e055_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "18f73180-50f4-5781-a9c1-18930346068f", + "entity_submitter_id": "TCGA-30-1892-01A-01R-1568-13", + "notes": "RNA-seq:INSUFFICIENT INPUT MATERIAL,LOW SEQUENCE YIELD/DIVERSITY", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8863", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "bb8dc795-80ff-4b42-8cf8-9f9716c13967", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "d6a34fea-69e8-57b6-933f-b77ab834dbf8", + "entity_submitter_id": "TCGA-30-1892-01A-01R-1568-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29803", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "bb8dc795-80ff-4b42-8cf8-9f9716c13967", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-30-1892-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_382_AlignedReads594db3f7-b960-48fd-81e2-e3b6eea1e055", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 183170131, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "bb0703e1e42f57515bd54089c3f5051f", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4e669016-33c4-4f17-9f97-28d72bca38cb", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_382_MirnaExpressionWorkflow2ad5b123-4dcb-4399-bc2b-85b20d1dee81_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "fd1eec2f-446b-4b2f-aabc-bee3b70b0092", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50197, + "md5sum": "e3586d1d48c78ff7f4d048f77aaac7ad", + "file_id": "7a57d284-8c8e-41d7-9e12-579575393c5e", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0803-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "54cf3bfe-51c0-4cca-9054-bf76b05a9371", + "entity_id": "085a2e2a-3902-46c4-8a84-80690ce84ad5" + } + ], + "file_name": "261caf5a-43ec-4c1f-9627-781b234ff451.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_94_MirnaExpression252619f1-f696-4eac-913a-01738c6d5b56_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0803-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_94_AlignedReads252619f1-f696-4eac-913a-01738c6d5b56", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 132346665, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "6ec8ce926e3b4b967f873759eeabf075", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "fa8917df-5b6c-4e0e-a268-7ed107d7a097", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_94_MirnaExpressionWorkflow96912a4a-432e-434e-9a3f-cdbd0ad9214e_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "3a341043-c344-4266-aa7c-9bab98cd7260", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 49989, + "md5sum": "7fb3938b7abe54c4c695a06a64d1558d", + "file_id": "f22a6795-c9fb-469b-899c-589411bf90b3", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0794-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "b63cad1b-b4c7-4e50-8acb-5cee4e9ce4a9", + "entity_id": "e62ef002-f571-4f79-9b22-66f3908e1e0d" + } + ], + "file_name": "e172d14b-489d-449d-9dfd-2874eb4b377c.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_268_MirnaExpression3d846432-46d2-4331-94ff-23e5af8b3e77_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0794-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_268_AlignedReads3d846432-46d2-4331-94ff-23e5af8b3e77", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 93986871, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "1a5d20b69506c2bd76594c3fa7a4ba4d", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4936ec5d-aedd-4bef-9643-aee83fce5b2c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_268_MirnaExpressionWorkflowb26b20a3-a774-4bac-93fb-71d3d126ab72_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "259fffff-0c2a-46b4-8b9a-d45f84fccdfb", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 253262, + "md5sum": "a36da9beb8f8ebce09e017eb043bc4f0", + "file_id": "461e9f22-05bf-4c59-bed1-6724ba9191a9", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0794-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "b63cad1b-b4c7-4e50-8acb-5cee4e9ce4a9", + "entity_id": "bc29b239-13a3-4d29-860b-fa1204c15e52" + } + ], + "file_name": "0777e813-fd55-4951-989d-df0005926d79.mirnaseq.isoforms.quantification.txt", + "submitter_id": "0d025c79-b5f3-4268-8c45-034310d14415", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9884280833807287, + "total_reads": 24840656, + "access": "controlled", + "file_name": "bc29b239-13a3-4d29-860b-fa1204c15e52_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003407144, + "proportion_reads_duplicated": 0, + "submitter_id": "bdeb9c38-b1f7-426b-8e7e-a05d9f254c4f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 464793711, + "created_datetime": "2024-09-20T11:13:59.856852-05:00", + "average_base_quality": 36, + "md5sum": "9ff187b09e215c62f929fc8afb7f965a", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "20e735f8-6d66-4433-96fe-46a626460056", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 33, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "0777e813-fd55-4951-989d-df0005926d79_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "253ff05f-5efa-477b-a4d4-55293477a097", + "created_datetime": "2024-09-20T11:18:08.881706-05:00" + }, + "file_size": 455972, + "md5sum": "9172c2c09958e7d9a2cefccfa31fc2ba", + "file_id": "5a98f0bb-579e-46cd-9833-e1627859b6ea", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1111-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "6b2a9f9a-fe96-4311-a330-925c4ad36fe7", + "entity_id": "f38e46dc-67b9-448a-8d24-507291e55bca" + } + ], + "file_name": "e04fc9ad-f44a-49e4-b019-71fe06c85a44.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_125_MirnaExpressionc28d1e33-4697-4e60-8b63-bedf8f25a448_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1111-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_125_AlignedReadsc28d1e33-4697-4e60-8b63-bedf8f25a448", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 214601499, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "52af70ea4cfa76eaa8893f5cb3ac4b11", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "feda4001-5194-47eb-a0b3-ace95831cec4", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_125_MirnaExpressionWorkflow9983bb2d-c3f9-4658-83a6-868fb6a25545_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c8dac45f-4691-4951-b37b-179e705c0d7d", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50397, + "md5sum": "ea2b3b3e8deb4613042cb55d6197e0c9", + "file_id": "5814fee7-2dde-4e59-aa17-56377dff36d0", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1404-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "8e107f4b-1912-4d3e-814a-b863e2d65ed7", + "entity_id": "5a24a912-7e38-4d60-a1b9-56023d2a321a" + } + ], + "file_name": "3606aeab-e636-441d-89b0-d4d9454ea665.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_461_MirnaExpression794b97fa-061e-4321-b244-a28a70bdaa7a_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "48cf8a32-bb8b-567b-9fe3-f6bdccc634df", + "entity_submitter_id": "TCGA-13-1404-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8780", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "5a24a912-7e38-4d60-a1b9-56023d2a321a", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "fdc85185-1355-518c-9a9e-628cc5ef25d7", + "entity_submitter_id": "TCGA-13-1404-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29742", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "5a24a912-7e38-4d60-a1b9-56023d2a321a", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1404-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_461_AlignedReads794b97fa-061e-4321-b244-a28a70bdaa7a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 220017522, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "89959bd2fc70bc9a6eff99de9871a39c", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c52b22ff-6194-4fc2-b6ad-2b8227c2cf69", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_461_MirnaExpressionWorkflow053fe9cc-dbab-42f3-96fa-9eb3f10bf926_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "de5421bc-c298-4197-92bd-afb6b447cef8", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50268, + "md5sum": "6ec20c0382faae01259f7e8275489fc5", + "file_id": "23f116ef-bc50-4901-8626-0781f84014a2", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-2079-01A-01R-A96U-41", + "entity_type": "aliquot", + "case_id": "e3ea5137-76b8-4afc-9b80-ed74714e7172", + "entity_id": "8e214b70-6117-4008-8c76-14d161f88a94" + } + ], + "file_name": "406bd343-0d59-403d-b5d8-2e2176da2e39.mirnaseq.mirnas.quantification.txt", + "submitter_id": "122ce3ed-3411-48dc-b4a4-0261156d7e97", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9920670494770177, + "total_reads": 20803861, + "access": "controlled", + "file_name": "8e214b70-6117-4008-8c76-14d161f88a94_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004695148, + "proportion_reads_duplicated": 0, + "submitter_id": "899985a8-6853-4efa-9123-0491a125f8c6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 352753917, + "created_datetime": "2024-09-20T11:13:42.596707-05:00", + "average_base_quality": 36, + "md5sum": "5d283b534fb778a885b33051faa5c5a8", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "cbd5d99b-5eee-4467-8a5f-bba97c591418", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 32, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "406bd343-0d59-403d-b5d8-2e2176da2e39_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "3b9a952e-6b99-44d0-b110-6d4d53f74445", + "created_datetime": "2024-09-20T11:16:54.878144-05:00" + }, + "file_size": 50576, + "md5sum": "c2f7cf9587c630b688556766a68a2f7d", + "file_id": "66d50e42-c84f-4b4e-9669-8d78c3a83af1", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-2079-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "e3ea5137-76b8-4afc-9b80-ed74714e7172", + "entity_id": "ffc3dce7-236b-481c-87e4-0f2316f10306" + } + ], + "file_name": "4f9c89b8-8395-41f1-ad03-5efb9c1a3bf8.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_287_MirnaExpressioncb420006-4e8f-4587-b646-097affd60322_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-2079-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_287_AlignedReadscb420006-4e8f-4587-b646-097affd60322", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 205005638, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "30d2859b730af999ba643a7f12a5ed73", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "cdb5731f-24a5-43c4-b6c4-f7b1933147e5", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_287_MirnaExpressionWorkflowceb0b699-b0ac-4d5f-aefd-9824515903ce_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a7fb43d3-2923-4ef6-83b3-8142e82b813e", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50239, + "md5sum": "0a1f7e3c54e20a8f6cf23c8dada804f8", + "file_id": "70c15617-2509-4334-8806-dc858212de36", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2027-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "219f54ef-4235-482d-b799-f2fa9930105c", + "entity_id": "fc1f34ba-12e1-46d8-85ef-15b9486b37c2" + } + ], + "file_name": "e83ec329-a390-464e-b760-28de78fd1532.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_163_MirnaExpression3b574184-ad50-4351-a748-a2d7f0124b40_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2027-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_163_AlignedReads3b574184-ad50-4351-a748-a2d7f0124b40", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 122061008, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "82fbc2435d85a6a0980dc16c3c46d5cd", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "70ca9198-5c12-4440-a9ed-0fb307af20d9", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_163_MirnaExpressionWorkflow1f25bfb0-21cc-42da-99e7-adce64d72c9f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "30e7555d-865b-4ed5-a18f-ce6a7d60b4ec", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 385424, + "md5sum": "92b59e473e8515796bdd3ddafce3cab1", + "file_id": "586aedeb-5cc2-4ed1-aed5-f2f2d43740a7", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-2400-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "5c127332-5ca0-45f1-a5ac-4876ad94e491", + "entity_id": "5c98c2c5-806f-4562-ad57-e152ea8388ab" + } + ], + "file_name": "8fc5d76c-59f4-498d-9646-17b4f8320180.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_57_MirnaExpressiond48f809a-0f38-4ba7-b20f-d5c003fd67cd_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-2400-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_57_AlignedReadsd48f809a-0f38-4ba7-b20f-d5c003fd67cd", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 319792191, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "fb8bd42064f4bc35615d30be54947d83", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "d3609691-974f-4d3a-989a-cc48c6f8a0bc", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_57_MirnaExpressionWorkflowe7a36194-979e-496c-a59e-d59d98875b11_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2ec7e98a-7607-4ff6-9f4d-4cead081ebc9", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50696, + "md5sum": "9ab5f973f60a8ea36023c3eed656f223", + "file_id": "c1cf3470-d631-4d6d-9be9-90f5cdd36de4", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1338-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "31872f6a-d225-4f91-b38d-4505d19e406c", + "entity_id": "d248cbe1-f6e1-4456-920e-2e1c29441c87" + } + ], + "file_name": "e9dcc282-3fcd-4f6c-b33d-70380cbf3201.mirnaseq.isoforms.quantification.txt", + "submitter_id": "55085edc-5cdc-43c8-aa40-423fe0027c08", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9889687420486523, + "total_reads": 25730701, + "access": "controlled", + "file_name": "d248cbe1-f6e1-4456-920e-2e1c29441c87_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004558, + "proportion_reads_duplicated": 0, + "submitter_id": "1faab853-5b9e-4210-bd7c-226423063563", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 435952391, + "created_datetime": "2024-09-20T11:13:17.399339-05:00", + "average_base_quality": 36, + "md5sum": "16f76d2f68287b04a7eb9dd0cb3ddc78", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "7eaf5fc0-e688-43d6-954a-62249daab40f", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 32, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "e9dcc282-3fcd-4f6c-b33d-70380cbf3201_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "6e00ea3f-9a2d-4d71-9903-75b0416049a8", + "created_datetime": "2024-09-20T11:17:11.095760-05:00" + }, + "file_size": 582157, + "md5sum": "0cbff1dbf2d5d0cb65e69dcbaab68185", + "file_id": "e73ff8cf-2a87-49cf-bdf2-47438dce621a", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1536-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "1fe19c6b-71d0-4b07-923b-74ea32210db0", + "entity_id": "6d6a042c-5d29-410a-bbe0-d03d78f9cee9" + } + ], + "file_name": "2cb11f1f-8746-45a1-ac30-abae78f071ca.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_285_MirnaExpression1f7db287-b7db-4ed6-afc9-ef2d0ddc41f0_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "242160b4-8f23-58cc-8285-bae5535c07d7", + "entity_submitter_id": "TCGA-04-1536-01A-01R-1566-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29698", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "6d6a042c-5d29-410a-bbe0-d03d78f9cee9", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "3a85bcfc-58ee-5301-997e-9055eee42fcc", + "entity_submitter_id": "TCGA-04-1536-01A-01R-1566-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8809", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "6d6a042c-5d29-410a-bbe0-d03d78f9cee9", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1536-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_285_AlignedReads1f7db287-b7db-4ed6-afc9-ef2d0ddc41f0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 143509942, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "f6b3766fba633266ced45587671d3322", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "dafa276e-9b31-48d1-9b54-a052ed2782d6", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_285_MirnaExpressionWorkflow7885e271-3642-40b3-988a-16e197fc7334_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2f105440-7c29-43bf-945f-b84e1e9c26cb", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 303947, + "md5sum": "63b8671f2f6e196ff27496dc4216f8fe", + "file_id": "512daff6-41ee-4a3a-901f-93998f62aea5", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1725-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "a6eb0cd0-fe57-41b0-8593-776208684293", + "entity_id": "748ff969-cb49-4f22-994f-6debe734c38f" + } + ], + "file_name": "b420b0bf-ed7e-4299-8ee1-b344b971231b.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_180_MirnaExpressionabd41116-4a7e-4030-b7b6-76b30d6f93c8_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1725-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_180_AlignedReadsabd41116-4a7e-4030-b7b6-76b30d6f93c8", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 187164150, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "69ecb3ed4d5dacddda0f0b664aae3227", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a75e626e-496e-42e7-816c-28844ac2809b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_180_MirnaExpressionWorkflowfb6c56f6-21ff-49d9-b7a6-cde1a78de154_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c3d6dcb6-9ee6-4d86-ba25-d973c08e0eca", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50350, + "md5sum": "e6d37a7ca30adf639e0482cc30c332e0", + "file_id": "4b6fb2ec-b7ff-48cf-9925-3ea227853ce6", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1536-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "1fe19c6b-71d0-4b07-923b-74ea32210db0", + "entity_id": "6d6a042c-5d29-410a-bbe0-d03d78f9cee9" + } + ], + "file_name": "2cb11f1f-8746-45a1-ac30-abae78f071ca.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_285_MirnaExpression1f7db287-b7db-4ed6-afc9-ef2d0ddc41f0_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "242160b4-8f23-58cc-8285-bae5535c07d7", + "entity_submitter_id": "TCGA-04-1536-01A-01R-1566-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29698", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "6d6a042c-5d29-410a-bbe0-d03d78f9cee9", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "3a85bcfc-58ee-5301-997e-9055eee42fcc", + "entity_submitter_id": "TCGA-04-1536-01A-01R-1566-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8809", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "6d6a042c-5d29-410a-bbe0-d03d78f9cee9", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1536-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_285_AlignedReads1f7db287-b7db-4ed6-afc9-ef2d0ddc41f0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 143509942, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "f6b3766fba633266ced45587671d3322", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "dafa276e-9b31-48d1-9b54-a052ed2782d6", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_285_MirnaExpressionWorkflow7885e271-3642-40b3-988a-16e197fc7334_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2f105440-7c29-43bf-945f-b84e1e9c26cb", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50214, + "md5sum": "c2593b7325104d67a882895d0cdbc924", + "file_id": "3422eec9-e2b3-4cb1-9edc-3b004c68d5af", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-2427-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "6f25001a-f890-4fd0-a994-e62a9ea5c6f3", + "entity_id": "f1579d6e-6efd-47b5-b2b4-a97e1480ce0a" + } + ], + "file_name": "2120ff7c-af0d-439f-97a2-4cc0fe3c095e.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_202_MirnaExpressionc6ec353a-c08e-4141-9bdd-23a639c5cd00_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-2427-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_202_AlignedReadsc6ec353a-c08e-4141-9bdd-23a639c5cd00", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 175673163, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "62ba3548888c61227b9909651d887f95", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "f80788a1-d168-4caa-bfd9-2ab31e156a3b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_202_MirnaExpressionWorkflow21747c4f-cd9e-4201-ab48-a92030ef1304_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "cc91170a-d98b-4f64-b0de-ca07d4b5fe65", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50271, + "md5sum": "52a9433b04262c8fd95811b8c48fc27d", + "file_id": "7c4f1e23-3a42-4cc8-b167-44f60e716364", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1435-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "49d2c0cf-a3f3-4519-a755-0a5f769df2ea", + "entity_id": "c20ba763-e310-448a-9c85-0b4f680e6196" + } + ], + "file_name": "4796bcd9-5010-4e94-b2be-904bf925d9fd.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_291_MirnaExpressionf8625663-1402-40c3-821f-1a31f3536c45_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1435-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_291_AlignedReadsf8625663-1402-40c3-821f-1a31f3536c45", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 144509501, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "9fa340008b45439239b83904db589a11", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "974e442c-bf29-4943-981b-6327c3327ec8", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_291_MirnaExpressionWorkflowa8038c38-7bc7-490b-81e1-509a38fdce85_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a9dcbc2c-87bc-4dc9-bb64-83a95e407bd3", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50299, + "md5sum": "a22317d7946de7b4608795364dc8b3b2", + "file_id": "82e76884-d0ca-4223-be9c-54e6b82f3fe7", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1435-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "49d2c0cf-a3f3-4519-a755-0a5f769df2ea", + "entity_id": "c20ba763-e310-448a-9c85-0b4f680e6196" + } + ], + "file_name": "4796bcd9-5010-4e94-b2be-904bf925d9fd.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_291_MirnaExpressionf8625663-1402-40c3-821f-1a31f3536c45_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1435-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_291_AlignedReadsf8625663-1402-40c3-821f-1a31f3536c45", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 144509501, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "9fa340008b45439239b83904db589a11", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "974e442c-bf29-4943-981b-6327c3327ec8", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_291_MirnaExpressionWorkflowa8038c38-7bc7-490b-81e1-509a38fdce85_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a9dcbc2c-87bc-4dc9-bb64-83a95e407bd3", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 348932, + "md5sum": "cc667189d5ea6619bb59593d88a76060", + "file_id": "528b8b01-cc6e-4a05-9f87-35cb4a8b4fca", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1737-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "0aa020cb-69d2-4235-a609-c279a133d8bb", + "entity_id": "b442230a-d330-45da-adf7-76873d18645c" + } + ], + "file_name": "9eb52286-e11c-4c30-b950-c464ce3effc7.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_72_MirnaExpressionb5df88e8-8df7-49fe-ac4a-24fe796b7e6a_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1737-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_72_AlignedReadsb5df88e8-8df7-49fe-ac4a-24fe796b7e6a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 168051185, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "87e3d929c31e4d5b800009ffbdf444ed", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "aaca0d8d-2b68-4f1f-872e-d281dc25effe", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_72_MirnaExpressionWorkflowc8fa776b-10da-4684-b788-2d078ebf44dd_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0f91bcda-30ae-4052-976f-506d399e65d9", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 385311, + "md5sum": "3ce66872a5f14c766503abf707794783", + "file_id": "3600cff6-b63b-4779-a64d-2e6867615f51", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-2427-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "6f25001a-f890-4fd0-a994-e62a9ea5c6f3", + "entity_id": "f1579d6e-6efd-47b5-b2b4-a97e1480ce0a" + } + ], + "file_name": "2120ff7c-af0d-439f-97a2-4cc0fe3c095e.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_202_MirnaExpressionc6ec353a-c08e-4141-9bdd-23a639c5cd00_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-2427-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_202_AlignedReadsc6ec353a-c08e-4141-9bdd-23a639c5cd00", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 175673163, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "62ba3548888c61227b9909651d887f95", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "f80788a1-d168-4caa-bfd9-2ab31e156a3b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_202_MirnaExpressionWorkflow21747c4f-cd9e-4201-ab48-a92030ef1304_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "cc91170a-d98b-4f64-b0de-ca07d4b5fe65", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 358180, + "md5sum": "ace3a1a4ac8073211193333252e8cc59", + "file_id": "11fcb695-10f7-40ae-ba83-ffc1825b5a7b", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-2641-01A-01R-A96U-41", + "entity_type": "aliquot", + "case_id": "49e5ee61-a1c9-4038-84ac-92683e573a65", + "entity_id": "94d33085-20ba-4b47-b9cd-bdb8b4c61a5f" + } + ], + "file_name": "17476252-748e-4652-9edc-b436467bd0f5.mirnaseq.isoforms.quantification.txt", + "submitter_id": "988fb338-f055-4375-94a7-180c9ce50f51", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9922124119944219, + "total_reads": 28301189, + "access": "controlled", + "file_name": "94d33085-20ba-4b47-b9cd-bdb8b4c61a5f_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004865963, + "proportion_reads_duplicated": 0, + "submitter_id": "d738d727-61bb-432c-afcd-a96041a07e53", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 438220545, + "created_datetime": "2024-09-20T11:13:37.827839-05:00", + "average_base_quality": 36, + "md5sum": "2bec13a1481a14461fc5040631199ec7", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "82255e5d-8577-4c6c-8c12-c38eb0ebedc9", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 29, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "17476252-748e-4652-9edc-b436467bd0f5_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "030d4c21-60c5-42ea-ae7b-a53b9bb7aad3", + "created_datetime": "2024-09-20T11:17:48.438421-05:00" + }, + "file_size": 605221, + "md5sum": "d66ad12033ecca3d4fef5cde053b1585", + "file_id": "7448ad9d-52d5-4537-a4a5-804e2f5c876f", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2002-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "85bb4987-51e7-40fe-ad59-2aa56754eca9", + "entity_id": "14cd154a-6ea5-4ad9-92e4-72f53ee5d60b" + } + ], + "file_name": "33ec3a0b-ff6a-44b1-aeb8-c72e3e50336c.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_25_MirnaExpression8bcab26b-5f07-4caf-a8d7-92518284be7d_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2002-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_25_AlignedReads8bcab26b-5f07-4caf-a8d7-92518284be7d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 178061834, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "0ee3be36733903359e4f82f038bfa77a", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "21490770-f590-4181-a11c-6f6383040d61", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_25_MirnaExpressionWorkflow12ae1357-532f-4f51-bc52-fbe52001e491_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "94f0a62e-bc1e-49f4-bd91-b2d5ac5b913b", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50357, + "md5sum": "7ccc10315f108da19a5eb3b2440da224", + "file_id": "2882d0b0-ca47-4625-ba49-6a40409f9237", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1514-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "e9483296-cb91-497a-b955-39a3c3289dac", + "entity_id": "cc5e2498-a9e6-48be-bbda-9aa101546ca4" + } + ], + "file_name": "5637de49-a56c-45e0-8671-e953d66bcb1d.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_238_MirnaExpression1f8c6dfa-7b09-45d7-b23a-7755b2c6af9a_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1514-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_238_AlignedReads1f8c6dfa-7b09-45d7-b23a-7755b2c6af9a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 240586808, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "c01be115980114f8ad7b685a402b6a8e", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "8f7bd634-8fed-43d4-bb20-02f860fdf6ac", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_238_MirnaExpressionWorkflow057a64de-1c78-4732-9263-2a2c77b90a77_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "29948285-56ae-4141-bc1a-7971977d57b7", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 471893, + "md5sum": "7326439c7b2d24308e99ccb2fbe53c34", + "file_id": "ef79fc7e-54cb-4bd6-bdf3-cf76f5124428", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-VG-A8LO-01A-11R-A407-13", + "entity_type": "aliquot", + "case_id": "8628f1b2-3763-4ba9-a375-083874bb18f2", + "entity_id": "24031beb-ee98-488a-aa73-97bfaa45fae7" + } + ], + "file_name": "10374faa-0c3c-4b94-89f3-9dab21b222e3.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_3_MirnaExpression0437a02a-0aa6-4c35-bc71-5cf913a3aa77_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-VG-A8LO-01A-11R-A407-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_3_AlignedReads0437a02a-0aa6-4c35-bc71-5cf913a3aa77", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 137271233, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "aa53781071717dbc950ce84462977892", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c6e9f09a-0a9a-4d11-ab95-07b0f42b2f53", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_3_MirnaExpressionWorkflow0247334d-9af5-47c5-9cd2-a0e685434a73_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "850556ac-482a-4dde-8174-233588ef1d18", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 361609, + "md5sum": "0f8808c38f8e5ae6cca0e08cb32a2446", + "file_id": "a6291b46-0cd7-4d85-b972-5e7fb14f8413", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-VG-A8LO-01A-11R-A407-13", + "entity_type": "aliquot", + "case_id": "8628f1b2-3763-4ba9-a375-083874bb18f2", + "entity_id": "24031beb-ee98-488a-aa73-97bfaa45fae7" + } + ], + "file_name": "10374faa-0c3c-4b94-89f3-9dab21b222e3.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_3_MirnaExpression0437a02a-0aa6-4c35-bc71-5cf913a3aa77_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-VG-A8LO-01A-11R-A407-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_3_AlignedReads0437a02a-0aa6-4c35-bc71-5cf913a3aa77", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 137271233, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "aa53781071717dbc950ce84462977892", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c6e9f09a-0a9a-4d11-ab95-07b0f42b2f53", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_3_MirnaExpressionWorkflow0247334d-9af5-47c5-9cd2-a0e685434a73_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "850556ac-482a-4dde-8174-233588ef1d18", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50278, + "md5sum": "74443c7903d7d45938e34b5325c6ba77", + "file_id": "64b88bdd-c814-4736-9d64-e7578549860c", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1711-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "f58e49fc-9641-4b46-be4c-766445ec70a3", + "entity_id": "c512a6e3-8bc8-4188-b264-89b2fe02baa8" + } + ], + "file_name": "1c5eed72-c7f8-4320-baaf-1338cddd6618.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_399_MirnaExpression2368734f-757e-4999-ba87-5588f97d087c_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1711-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_399_AlignedReads2368734f-757e-4999-ba87-5588f97d087c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 195519116, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "927d09e3b491e25855e435ef2dbdafdf", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "2ee1bddd-0970-4807-a318-95bf5468daea", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_399_MirnaExpressionWorkflow3bd2f6af-d257-4ba1-bcba-e4a52f0892cb_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "355eca1d-7262-4cc5-8bc0-97c7c23c9d93", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50296, + "md5sum": "9e4e06416a5456fed4744b22d20c14fd", + "file_id": "93f18080-ede6-49bb-94bf-74d626c1b589", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1711-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "f58e49fc-9641-4b46-be4c-766445ec70a3", + "entity_id": "c512a6e3-8bc8-4188-b264-89b2fe02baa8" + } + ], + "file_name": "1c5eed72-c7f8-4320-baaf-1338cddd6618.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_399_MirnaExpression2368734f-757e-4999-ba87-5588f97d087c_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1711-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_399_AlignedReads2368734f-757e-4999-ba87-5588f97d087c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 195519116, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "927d09e3b491e25855e435ef2dbdafdf", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "2ee1bddd-0970-4807-a318-95bf5468daea", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_399_MirnaExpressionWorkflow3bd2f6af-d257-4ba1-bcba-e4a52f0892cb_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "355eca1d-7262-4cc5-8bc0-97c7c23c9d93", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 349579, + "md5sum": "21d01d48cd67cd9ccaca0cd56b53efc5", + "file_id": "24989ea6-0dd2-47eb-8f02-47c3a7ce0ca2", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-57-1993-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "15fc17cd-d073-4f81-a4a2-2db3cb9d7069", + "entity_id": "55f9061c-54e7-465c-af61-21d8bc8ecbe0" + } + ], + "file_name": "598539fc-0c4d-41ec-998a-853094b4c7ce.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_424_MirnaExpression7688426a-8298-498a-aabc-89726989d70e_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-57-1993-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_424_AlignedReads7688426a-8298-498a-aabc-89726989d70e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 176832943, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "ce71aa30c1211c51066126db9eddc688", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c55ae8d5-2435-45ca-91d9-606a10401522", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_424_MirnaExpressionWorkflow68d5834a-edf2-4cf7-8253-94189d29852c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "857529df-80c7-41b4-844a-3110eac2c58f", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50390, + "md5sum": "fd33bc8fe6fe6bf225b6dcb79fe6b341", + "file_id": "9383f1be-6abc-499d-b962-4236887a9a25", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1917-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "87cdf9a8-0579-4d3e-b4df-0f8eef63d7f4", + "entity_id": "519aea8b-5e08-47b2-bb98-b311f2dba540" + } + ], + "file_name": "161fc178-9a31-41fb-84ac-47d1ac5d5bea.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_234_MirnaExpressionc10f26ca-fa89-4d91-a35c-4f0d09a139fd_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1917-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_234_AlignedReadsc10f26ca-fa89-4d91-a35c-4f0d09a139fd", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 218698024, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "75b2c5355f59c1daaac6547c3ad291d3", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "0f91e0c8-efdf-4483-ae12-e3b6e575018c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_234_MirnaExpressionWorkflow09eb5aeb-ca66-404a-bd6b-4a4bb3e91563_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a888202f-4520-453f-a17d-2705c1f6cd96", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 389990, + "md5sum": "5ff6d5d2f027060910ac1bc16ed4ff9a", + "file_id": "a49594ce-8964-4376-8051-5f7a1755471f", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-57-1993-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "15fc17cd-d073-4f81-a4a2-2db3cb9d7069", + "entity_id": "55f9061c-54e7-465c-af61-21d8bc8ecbe0" + } + ], + "file_name": "598539fc-0c4d-41ec-998a-853094b4c7ce.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_424_MirnaExpression7688426a-8298-498a-aabc-89726989d70e_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-57-1993-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_424_AlignedReads7688426a-8298-498a-aabc-89726989d70e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 176832943, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "ce71aa30c1211c51066126db9eddc688", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c55ae8d5-2435-45ca-91d9-606a10401522", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_424_MirnaExpressionWorkflow68d5834a-edf2-4cf7-8253-94189d29852c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "857529df-80c7-41b4-844a-3110eac2c58f", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 377190, + "md5sum": "9ee58cb48921ec58843f91df2b22fcb6", + "file_id": "4ac5536a-7399-435a-90b0-e377ef4eb119", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-2399-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "ad2b1a0a-153f-483d-b228-5763eba3f6cc", + "entity_id": "28a681dc-3e0f-4a9c-ad0c-f2bb10aab0e1" + } + ], + "file_name": "df348536-bdd8-4747-8d10-bd23cb16709b.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_396_MirnaExpression7f99a332-f4a0-46ac-a842-fad07501a8fe_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-2399-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_396_AlignedReads7f99a332-f4a0-46ac-a842-fad07501a8fe", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 334878551, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "7ce7af5cf0ae8e9604cee601f1190237", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "041e55e4-71c0-4a65-8b9d-95079024ed3b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_396_MirnaExpressionWorkflow5f8b4ef3-17d4-420c-89e6-4d8c6fad4e46_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "fe264370-5916-4651-93dd-e18d7d331356", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 532055, + "md5sum": "a6bf71e5da54e4ed0c601a093d326160", + "file_id": "5d98cf9d-b031-44e8-a033-6cfe7eaa1851", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1842-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "09c77947-a333-4392-b18d-a6c1f08764a1", + "entity_id": "6cb78602-e09f-4dbc-b3e5-684ebe77bddc" + } + ], + "file_name": "5b3bd1e9-bde7-4821-8694-53bffd484b15.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_281_MirnaExpression8d482c93-9eb9-4668-9c13-afd2f8778f66_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1842-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_281_AlignedReads8d482c93-9eb9-4668-9c13-afd2f8778f66", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 144133683, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "63c8a060b3963439bac3f06c97a9c53e", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "d81be9be-5eb5-4b29-8c09-70def79945a9", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_281_MirnaExpressionWorkflow710a15f3-00f0-4d1f-b6ae-a7cd1b285edb_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "6b51e6c0-4362-44fe-87c3-5deca86e59f1", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 377371, + "md5sum": "902382396175eee5a2fe1bdfad7f34a2", + "file_id": "2ebc6a36-49ae-4528-ad51-74b27fe07abf", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1023-01A-02R-1564-13", + "entity_type": "aliquot", + "case_id": "9e18238f-ae85-4b75-ae87-d92da9731a40", + "entity_id": "69bec2db-02c3-46ca-b17b-60eae9a1e0bf" + } + ], + "file_name": "895e0ae3-9618-4668-8562-8031984fa460.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_197_MirnaExpression821be294-60c3-43de-bcb8-a220a2aa35da_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-23-1023", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1244", + "classification": "Notification", + "entity_id": "9e18238f-ae85-4b75-ae87-d92da9731a40", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "48ddd5c2-532f-5bf4-a605-d87f54006442", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "9e18238f-ae85-4b75-ae87-d92da9731a40", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-23-1023" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1023-01A-02R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_197_AlignedReads821be294-60c3-43de-bcb8-a220a2aa35da", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 137601692, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "ea67f66be321585cd31071766752cc67", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "ed8bd013-d5a2-4d7f-851e-3f07191c22e2", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_197_MirnaExpressionWorkflow5d93c19e-5afa-47f8-81a7-c8ded9215e67_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0dc77e9e-2971-4149-81f9-8441d32b4de7", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 335924, + "md5sum": "660d698dae699a88705958707daeb4c6", + "file_id": "075d3156-c8c1-4f0b-8276-dc08160c0d67", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-2425-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "40635bf3-d8ba-4833-b623-547e55e5d07e", + "entity_id": "3ce6b8c4-7020-447a-8eb8-5370eef05344" + } + ], + "file_name": "a4e47184-7dc6-4f4b-a41c-42b6185f9db5.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_113_MirnaExpression73d3d9c2-6bf8-446b-878b-0396a728829a_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-29-2425", + "notes": "Prior malignancy of breast cancer", + "submitter_id": "3393", + "classification": "Notification", + "entity_id": "40635bf3-d8ba-4833-b623-547e55e5d07e", + "created_datetime": "2011-09-18T00:00:00", + "annotation_id": "4e6b5074-7264-55b0-be73-333f9b5893be", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "40635bf3-d8ba-4833-b623-547e55e5d07e", + "state": "released", + "category": "Prior malignancy", + "status": "Approved", + "case_submitter_id": "TCGA-29-2425" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-2425-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_113_AlignedReads73d3d9c2-6bf8-446b-878b-0396a728829a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 311761946, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "f3927862741765c2bab5cfbe34dcef6a", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4d468876-7c86-436c-92ea-1fa4ebfbb02e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_113_MirnaExpressionWorkflowfc08a70e-4d9c-4ec7-a2b6-6b55eb5ffc78_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "26d6599d-57d5-4ed9-a206-f125d0e80a6d", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 427669, + "md5sum": "9df07442a707804aea8dfa9b2eca5782", + "file_id": "1f3d6d22-3721-4709-9528-5d4998ea233b", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-2056-01B-01R-1568-13", + "entity_type": "aliquot", + "case_id": "ea6405c4-0fe4-4f37-bef2-275072f91e39", + "entity_id": "67670628-ad07-41ef-8977-890080616900" + } + ], + "file_name": "0a07b199-d93d-4202-a63a-b38e39dc5ca4.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_10_MirnaExpressiond98f57a4-a795-4811-8781-6003faa4368d_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-09-2056", + "notes": "Prior malignancy right breast cancer treated with chemo and radiation per path report.", + "submitter_id": "11916", + "classification": "Notification", + "entity_id": "ea6405c4-0fe4-4f37-bef2-275072f91e39", + "created_datetime": "2012-11-10T00:00:00", + "annotation_id": "5c84079d-cc64-510a-801a-22f3ee70bdb1", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "ea6405c4-0fe4-4f37-bef2-275072f91e39", + "state": "released", + "category": "History of unacceptable prior treatment related to a prior/other malignancy", + "status": "Approved", + "case_submitter_id": "TCGA-09-2056" + }, + { + "entity_submitter_id": "TCGA-09-2056", + "notes": null, + "submitter_id": "5487", + "classification": "Notification", + "entity_id": "ea6405c4-0fe4-4f37-bef2-275072f91e39", + "created_datetime": "2012-03-20T00:00:00", + "annotation_id": "6eb57ffc-dc1c-5591-a3ed-ea216ec5f5b6", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "ea6405c4-0fe4-4f37-bef2-275072f91e39", + "state": "released", + "category": "Prior malignancy", + "status": "Approved", + "case_submitter_id": "TCGA-09-2056" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-2056-01B-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_10_AlignedReadsd98f57a4-a795-4811-8781-6003faa4368d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 132175121, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "a654493fd368d50731a65e43c6faebd5", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "df0eb7d2-6490-43f7-92b9-a67c4da87647", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_10_MirnaExpressionWorkflow9fec88e8-ab9c-4406-a26b-ed207967be27_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d977c217-abf5-40ba-8f87-b05b5dcc4a71", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50178, + "md5sum": "ed15e80ab71ff424270400257932d01e", + "file_id": "57189b44-c62b-4182-800e-e41f6322edc1", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-2056-01B-01R-1568-13", + "entity_type": "aliquot", + "case_id": "ea6405c4-0fe4-4f37-bef2-275072f91e39", + "entity_id": "67670628-ad07-41ef-8977-890080616900" + } + ], + "file_name": "0a07b199-d93d-4202-a63a-b38e39dc5ca4.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_10_MirnaExpressiond98f57a4-a795-4811-8781-6003faa4368d_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-09-2056", + "notes": "Prior malignancy right breast cancer treated with chemo and radiation per path report.", + "submitter_id": "11916", + "classification": "Notification", + "entity_id": "ea6405c4-0fe4-4f37-bef2-275072f91e39", + "created_datetime": "2012-11-10T00:00:00", + "annotation_id": "5c84079d-cc64-510a-801a-22f3ee70bdb1", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "ea6405c4-0fe4-4f37-bef2-275072f91e39", + "state": "released", + "category": "History of unacceptable prior treatment related to a prior/other malignancy", + "status": "Approved", + "case_submitter_id": "TCGA-09-2056" + }, + { + "entity_submitter_id": "TCGA-09-2056", + "notes": null, + "submitter_id": "5487", + "classification": "Notification", + "entity_id": "ea6405c4-0fe4-4f37-bef2-275072f91e39", + "created_datetime": "2012-03-20T00:00:00", + "annotation_id": "6eb57ffc-dc1c-5591-a3ed-ea216ec5f5b6", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "ea6405c4-0fe4-4f37-bef2-275072f91e39", + "state": "released", + "category": "Prior malignancy", + "status": "Approved", + "case_submitter_id": "TCGA-09-2056" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-2056-01B-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_10_AlignedReadsd98f57a4-a795-4811-8781-6003faa4368d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 132175121, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "a654493fd368d50731a65e43c6faebd5", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "df0eb7d2-6490-43f7-92b9-a67c4da87647", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_10_MirnaExpressionWorkflow9fec88e8-ab9c-4406-a26b-ed207967be27_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d977c217-abf5-40ba-8f87-b05b5dcc4a71", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 295531, + "md5sum": "f616f8705d3cf045291ba0eb66bbef68", + "file_id": "d6919406-6b75-42dc-9715-f9798156e9f5", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1489-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "7248cd60-be22-44bc-bc58-f644db0940a2", + "entity_id": "dcb03592-9f67-49bf-bc78-d89d69de14a8" + } + ], + "file_name": "6a7d6268-43fe-4116-bf2d-ed887897ce23.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_335_MirnaExpression859f71fa-5a1b-4abb-adbc-b1143b5f28f0_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "5c9f967e-5a4b-5722-b0b2-07be5354965a", + "entity_submitter_id": "TCGA-13-1489-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29752", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "dcb03592-9f67-49bf-bc78-d89d69de14a8", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "c47302f3-ef4a-52dc-9c9f-5d6783f9ee76", + "entity_submitter_id": "TCGA-13-1489-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8787", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "dcb03592-9f67-49bf-bc78-d89d69de14a8", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "entity_submitter_id": "TCGA-13-1489", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1252", + "classification": "Notification", + "entity_id": "7248cd60-be22-44bc-bc58-f644db0940a2", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "6b415596-3ae3-50a9-b69b-5163f32b2027", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "7248cd60-be22-44bc-bc58-f644db0940a2", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-13-1489" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1489-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_335_AlignedReads859f71fa-5a1b-4abb-adbc-b1143b5f28f0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 173746632, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "1d14c404d7b7887e9c626940b2570799", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5ffd74f9-9502-435a-a358-09b6be778bd5", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_335_MirnaExpressionWorkflowe8033820-de8d-4ae3-9b70-724930ec4a3b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "818e5e4c-7eed-4ce2-981c-92cc1b07489f", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 360168, + "md5sum": "2ee4aa4c5a09488dacb76cfec83bae9e", + "file_id": "0866b33c-2efc-4ddb-944a-2d2b25ee0424", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1489-02A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "7248cd60-be22-44bc-bc58-f644db0940a2", + "entity_id": "d8cd1ca1-dc00-4a48-ab81-5d23daed6fce" + } + ], + "file_name": "2974afc9-7021-45f3-9c04-3ad77d15ab75.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_474_MirnaExpression74050860-3f9e-4d8d-95be-ddc8b940140e_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "fde944b3-9581-5dc9-8d43-5e215f39b7bb", + "entity_submitter_id": "TCGA-13-1489-02A-01R", + "notes": "Ovary Triplet", + "entity_type": "analyte", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "1434", + "state": "released", + "category": "Item is noncanonical", + "classification": "Notification", + "entity_id": "58ffa935-a8c9-43b2-85bf-5b2227dea9b8", + "created_datetime": "2011-03-14T00:00:00", + "status": "Approved" + }, + { + "entity_submitter_id": "TCGA-13-1489", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1252", + "classification": "Notification", + "entity_id": "7248cd60-be22-44bc-bc58-f644db0940a2", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "6b415596-3ae3-50a9-b69b-5163f32b2027", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "7248cd60-be22-44bc-bc58-f644db0940a2", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-13-1489" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1489-02A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_474_AlignedReads74050860-3f9e-4d8d-95be-ddc8b940140e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 363823020, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "27db94058e9dc6abbdb513ce53056a0a", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "21a30239-4003-4e13-be84-a3db6c948a3d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_474_MirnaExpressionWorkflow0cb0828d-fb39-4314-baa6-fda81d69b2dd_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "93a69b52-0cf9-4202-b920-96a64dcfc5c3", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50311, + "md5sum": "489feb271afc257a34b7797c8177ddef", + "file_id": "09d1176d-2b04-41cd-93f9-93ea01102912", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1489-02A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "7248cd60-be22-44bc-bc58-f644db0940a2", + "entity_id": "d8cd1ca1-dc00-4a48-ab81-5d23daed6fce" + } + ], + "file_name": "2974afc9-7021-45f3-9c04-3ad77d15ab75.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_474_MirnaExpression74050860-3f9e-4d8d-95be-ddc8b940140e_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "fde944b3-9581-5dc9-8d43-5e215f39b7bb", + "entity_submitter_id": "TCGA-13-1489-02A-01R", + "notes": "Ovary Triplet", + "entity_type": "analyte", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "1434", + "state": "released", + "category": "Item is noncanonical", + "classification": "Notification", + "entity_id": "58ffa935-a8c9-43b2-85bf-5b2227dea9b8", + "created_datetime": "2011-03-14T00:00:00", + "status": "Approved" + }, + { + "entity_submitter_id": "TCGA-13-1489", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1252", + "classification": "Notification", + "entity_id": "7248cd60-be22-44bc-bc58-f644db0940a2", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "6b415596-3ae3-50a9-b69b-5163f32b2027", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "7248cd60-be22-44bc-bc58-f644db0940a2", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-13-1489" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1489-02A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_474_AlignedReads74050860-3f9e-4d8d-95be-ddc8b940140e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 363823020, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "27db94058e9dc6abbdb513ce53056a0a", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "21a30239-4003-4e13-be84-a3db6c948a3d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_474_MirnaExpressionWorkflow0cb0828d-fb39-4314-baa6-fda81d69b2dd_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "93a69b52-0cf9-4202-b920-96a64dcfc5c3", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 406658, + "md5sum": "419bd0c9e3933c7f4bf8d46ab8eea09b", + "file_id": "927786c6-c3ba-4184-9610-56bf27f2f55b", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1770-02A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "5abb6d80-fc39-49a4-8db5-3db24543feb6", + "entity_id": "ea119111-5217-4b8a-88e0-36dc77782241" + } + ], + "file_name": "3cf91aaa-a006-42af-9547-a227a7e21f75.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_468_MirnaExpressione9916064-a8fc-4d2d-91cf-b396abea3fa9_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "20e264ce-a10d-5da1-b7f5-2295d3815abf", + "entity_submitter_id": "TCGA-29-1770-02A-01R", + "notes": "Ovary Triplet", + "entity_type": "analyte", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "2087", + "state": "released", + "category": "Item is noncanonical", + "classification": "Notification", + "entity_id": "f13c7818-cb57-4775-8f05-2defd481f8a2", + "created_datetime": "2011-03-14T00:00:00", + "status": "Approved" + }, + { + "entity_submitter_id": "TCGA-29-1770", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1241", + "classification": "Notification", + "entity_id": "5abb6d80-fc39-49a4-8db5-3db24543feb6", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "75f708f5-fc14-570c-8ee1-c5cfb5c950e8", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "5abb6d80-fc39-49a4-8db5-3db24543feb6", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-29-1770" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1770-02A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_468_AlignedReadse9916064-a8fc-4d2d-91cf-b396abea3fa9", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 334592313, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "3d074982fb756182c6eb63d0a588b593", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "daff5570-e543-4529-906d-6f1fc7b244d1", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_468_MirnaExpressionWorkflow1740e989-c9c8-404b-a32b-532027df4406_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5302945e-058e-4fbc-83df-b8aaafc4c051", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50403, + "md5sum": "8b789f08d40048656c6795eb5de2cbe4", + "file_id": "91a11236-396b-4e8d-985f-e092aae2de69", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1721-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "1c0318d9-0472-4840-add4-46bb9f914a30", + "entity_id": "226f9774-e22b-4b8b-8259-934edb649fc3" + } + ], + "file_name": "18d4a739-9caf-450c-84ae-1b0c319eb182.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_56_MirnaExpression6dd1f4c4-2501-4380-9bb1-a8e9c5b9d5ea_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "ae965981-0597-5c57-a2dd-d53432eadf67", + "entity_submitter_id": "TCGA-61-1721-01A", + "notes": "[schaefc]: Genomic data resembles normal data", + "entity_type": "sample", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "692", + "state": "released", + "category": "Tumor class but appears normal", + "classification": "Observation", + "entity_id": "a65361d0-e9ae-4d90-bbf7-70bc213d263e", + "created_datetime": "2010-07-30T00:00:00", + "status": "Approved" + }, + { + "entity_submitter_id": "TCGA-61-1721", + "notes": "[intgen.org]: Subject Positive for Neo-Adjuvant Therapy", + "submitter_id": "642", + "classification": "Notification", + "entity_id": "1c0318d9-0472-4840-add4-46bb9f914a30", + "created_datetime": "2010-09-02T00:00:00", + "annotation_id": "aeeabe5b-408f-50ba-bee9-411a77cc312b", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "1c0318d9-0472-4840-add4-46bb9f914a30", + "state": "released", + "category": "Neoadjuvant therapy", + "status": "Approved", + "case_submitter_id": "TCGA-61-1721" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1721-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_56_AlignedReads6dd1f4c4-2501-4380-9bb1-a8e9c5b9d5ea", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 357843697, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "381774807013996c623ed1a4dc2b686a", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5004892e-7fdd-4753-bf97-a9eb6a9f46ca", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_56_MirnaExpressionWorkflowcc417e1e-eb82-45b7-a876-024576a03116_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8c0ad805-598d-4bbb-97cd-2348a4ee85e5", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50201, + "md5sum": "0d187b2c45ed4cee8a17875a40db5d20", + "file_id": "df6485ff-5f8f-41fd-bf70-8ba151f56cbe", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1721-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "1c0318d9-0472-4840-add4-46bb9f914a30", + "entity_id": "226f9774-e22b-4b8b-8259-934edb649fc3" + } + ], + "file_name": "18d4a739-9caf-450c-84ae-1b0c319eb182.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_56_MirnaExpression6dd1f4c4-2501-4380-9bb1-a8e9c5b9d5ea_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "ae965981-0597-5c57-a2dd-d53432eadf67", + "entity_submitter_id": "TCGA-61-1721-01A", + "notes": "[schaefc]: Genomic data resembles normal data", + "entity_type": "sample", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "692", + "state": "released", + "category": "Tumor class but appears normal", + "classification": "Observation", + "entity_id": "a65361d0-e9ae-4d90-bbf7-70bc213d263e", + "created_datetime": "2010-07-30T00:00:00", + "status": "Approved" + }, + { + "entity_submitter_id": "TCGA-61-1721", + "notes": "[intgen.org]: Subject Positive for Neo-Adjuvant Therapy", + "submitter_id": "642", + "classification": "Notification", + "entity_id": "1c0318d9-0472-4840-add4-46bb9f914a30", + "created_datetime": "2010-09-02T00:00:00", + "annotation_id": "aeeabe5b-408f-50ba-bee9-411a77cc312b", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "1c0318d9-0472-4840-add4-46bb9f914a30", + "state": "released", + "category": "Neoadjuvant therapy", + "status": "Approved", + "case_submitter_id": "TCGA-61-1721" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1721-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_56_AlignedReads6dd1f4c4-2501-4380-9bb1-a8e9c5b9d5ea", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 357843697, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "381774807013996c623ed1a4dc2b686a", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5004892e-7fdd-4753-bf97-a9eb6a9f46ca", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_56_MirnaExpressionWorkflowcc417e1e-eb82-45b7-a876-024576a03116_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8c0ad805-598d-4bbb-97cd-2348a4ee85e5", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 327697, + "md5sum": "f745c4c5e904fe447f4ebcbc83abe4b1", + "file_id": "f86cd088-de94-498f-9dd3-0de999026874", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2008-02A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "3ac45a71-c463-4f0f-b030-58c475a34418", + "entity_id": "b90a4b33-cb6f-4c75-bc26-ff316ea81cce" + } + ], + "file_name": "a177947e-4ac4-431d-a431-54c756eaabd2.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_316_MirnaExpression1cb1fb99-303d-4d37-b7dc-d1c510dbe534_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "63a066da-9d2d-5af6-8bf5-8cc6a446ed9f", + "entity_submitter_id": "TCGA-61-2008-02A-01R", + "notes": "Ovary Triplet", + "entity_type": "analyte", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "1480", + "state": "released", + "category": "Item is noncanonical", + "classification": "Notification", + "entity_id": "1f57d960-8019-4aa5-a498-11c034287817", + "created_datetime": "2011-03-14T00:00:00", + "status": "Approved" + }, + { + "entity_submitter_id": "TCGA-61-2008", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1240", + "classification": "Notification", + "entity_id": "3ac45a71-c463-4f0f-b030-58c475a34418", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "af8333d7-1e5f-5f01-97c2-f0f6f4fb8601", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "case_id": "3ac45a71-c463-4f0f-b030-58c475a34418", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-61-2008" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2008-02A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_316_AlignedReads1cb1fb99-303d-4d37-b7dc-d1c510dbe534", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 256647145, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "8185dea28c561eb77b593539c7ac0635", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "8f50895e-aeed-4cb5-ac88-47266f747a2d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_316_MirnaExpressionWorkflowf2e3d410-28b1-4966-8cc3-76b167b0ca83_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c5755806-929a-430e-9327-11533b45f148", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50447, + "md5sum": "d792e1f5392e85e9d4ba72bfd3935ad8", + "file_id": "175bf112-2708-4824-ae07-ed711bac260b", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1707-02A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "7fd6ab8a-201e-431d-a886-6ab553b6ca36", + "entity_id": "5a1abe99-6d9f-4534-a32c-30672353ee04" + } + ], + "file_name": "8b9e4554-691f-4e50-a80e-0f5c2d2a8c95.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_145_MirnaExpression0ca0584c-48ab-42f2-8fde-fa5be8d7234a_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "104f8d21-3467-5bae-9f37-9c59678e3570", + "entity_submitter_id": "TCGA-29-1707-02A-01R-1567-13", + "notes": "RNA-seq:HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8816", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "5a1abe99-6d9f-4534-a32c-30672353ee04", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "5b755e98-eab5-5540-b7c9-c3a14c7bcf94", + "entity_submitter_id": "TCGA-29-1707-02A-01R-1567-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29793", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "5a1abe99-6d9f-4534-a32c-30672353ee04", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "64484ddc-cb51-5c0d-8e31-43c02c47481d", + "entity_submitter_id": "TCGA-29-1707-02A-01R", + "notes": "Ovary Triplet", + "entity_type": "analyte", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "2085", + "state": "released", + "category": "Item is noncanonical", + "classification": "Notification", + "entity_id": "65b5f9e2-4887-4358-a9bf-4aa3bcaf363a", + "created_datetime": "2011-03-14T00:00:00", + "status": "Approved" + }, + { + "entity_submitter_id": "TCGA-29-1707", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1247", + "classification": "Notification", + "entity_id": "7fd6ab8a-201e-431d-a886-6ab553b6ca36", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "bb413d44-c130-5fcc-a7f6-ccc0de597a30", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "7fd6ab8a-201e-431d-a886-6ab553b6ca36", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-29-1707" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1707-02A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_145_AlignedReads0ca0584c-48ab-42f2-8fde-fa5be8d7234a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 162577554, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "24e0f5446c5d49fbbfec8b4da0453d90", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "27b1f1ef-0569-46fd-94b8-67bb183d45d0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_145_MirnaExpressionWorkflow9ac4ef69-8fc5-45aa-91d7-c1178f7cfb3d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d5dbb257-e332-4c40-97cc-724f00f8c3f3", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 278612, + "md5sum": "f7ab356c0d7b8ad28b3efef8f082ac2e", + "file_id": "c3d72739-430f-48a5-8bfa-e31be4821e94", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2008-01A-02R-1568-13", + "entity_type": "aliquot", + "case_id": "3ac45a71-c463-4f0f-b030-58c475a34418", + "entity_id": "10271f7f-cce6-44fd-8754-7a4beabfb394" + } + ], + "file_name": "68208daf-fbb4-4fde-ab16-33670694a00e.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_314_MirnaExpression44ad2b6f-7482-4ecb-890a-657f354a5464_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-61-2008", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1240", + "classification": "Notification", + "entity_id": "3ac45a71-c463-4f0f-b030-58c475a34418", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "af8333d7-1e5f-5f01-97c2-f0f6f4fb8601", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "case_id": "3ac45a71-c463-4f0f-b030-58c475a34418", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-61-2008" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2008-01A-02R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_314_AlignedReads44ad2b6f-7482-4ecb-890a-657f354a5464", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 106973161, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "44077496fe461c4e5dab287b08cac668", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4115f4ac-db9c-4163-bc78-c8ab0990e93c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_314_MirnaExpressionWorkflow0968068c-92d0-404b-9db6-57ccdf02f7ee_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e6c9e384-a2b9-4087-9199-a4fde7099902", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 262291, + "md5sum": "6d2c886c893d2a4d2d27b15d20814caf", + "file_id": "5e3a58e8-ef5c-48b2-81e2-0e61307c59c0", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1707-02A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "7fd6ab8a-201e-431d-a886-6ab553b6ca36", + "entity_id": "5a1abe99-6d9f-4534-a32c-30672353ee04" + } + ], + "file_name": "8b9e4554-691f-4e50-a80e-0f5c2d2a8c95.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_145_MirnaExpression0ca0584c-48ab-42f2-8fde-fa5be8d7234a_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "104f8d21-3467-5bae-9f37-9c59678e3570", + "entity_submitter_id": "TCGA-29-1707-02A-01R-1567-13", + "notes": "RNA-seq:HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8816", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "5a1abe99-6d9f-4534-a32c-30672353ee04", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "5b755e98-eab5-5540-b7c9-c3a14c7bcf94", + "entity_submitter_id": "TCGA-29-1707-02A-01R-1567-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29793", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "5a1abe99-6d9f-4534-a32c-30672353ee04", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "64484ddc-cb51-5c0d-8e31-43c02c47481d", + "entity_submitter_id": "TCGA-29-1707-02A-01R", + "notes": "Ovary Triplet", + "entity_type": "analyte", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "2085", + "state": "released", + "category": "Item is noncanonical", + "classification": "Notification", + "entity_id": "65b5f9e2-4887-4358-a9bf-4aa3bcaf363a", + "created_datetime": "2011-03-14T00:00:00", + "status": "Approved" + }, + { + "entity_submitter_id": "TCGA-29-1707", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1247", + "classification": "Notification", + "entity_id": "7fd6ab8a-201e-431d-a886-6ab553b6ca36", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "bb413d44-c130-5fcc-a7f6-ccc0de597a30", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "7fd6ab8a-201e-431d-a886-6ab553b6ca36", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-29-1707" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1707-02A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_145_AlignedReads0ca0584c-48ab-42f2-8fde-fa5be8d7234a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 162577554, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "24e0f5446c5d49fbbfec8b4da0453d90", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "27b1f1ef-0569-46fd-94b8-67bb183d45d0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_145_MirnaExpressionWorkflow9ac4ef69-8fc5-45aa-91d7-c1178f7cfb3d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d5dbb257-e332-4c40-97cc-724f00f8c3f3", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50166, + "md5sum": "892d481f29e0be740be56bf789bd6019", + "file_id": "e61f3200-3132-46af-99ab-418a8cbe89b4", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0791-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "90118207-8f11-4784-ac1b-0deec2e7af3a", + "entity_id": "54b4cbce-18fd-4cdd-819b-9becbd4c1e29" + } + ], + "file_name": "d3a67ee5-83cc-44a4-bb3f-8d7eb755ccf4.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_45_MirnaExpressioncfc1ceba-61ee-4659-8aec-722c746eaf3a_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-0791", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1238", + "classification": "Notification", + "entity_id": "90118207-8f11-4784-ac1b-0deec2e7af3a", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "b713b5b5-ecc3-5732-a334-4de313844399", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "90118207-8f11-4784-ac1b-0deec2e7af3a", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-13-0791" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0791-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_45_AlignedReadscfc1ceba-61ee-4659-8aec-722c746eaf3a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 196135003, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "8d034909b6833b060937b543c6eea8d8", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "74d930d3-7e27-42df-bfdb-eb15472388ea", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_45_MirnaExpressionWorkflow1bdafae9-cb23-4e0d-a109-4027a3ad2fad_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "84655afd-3679-45ce-8566-9ef8f9b00ec3", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50268, + "md5sum": "320bd4f4fc767f169694887a4c0c8673", + "file_id": "55bb83d2-de6f-489d-9b6e-d455065f5463", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1707-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "7fd6ab8a-201e-431d-a886-6ab553b6ca36", + "entity_id": "6cb867d8-f4fa-4802-a947-6820e8309213" + } + ], + "file_name": "cc6332c0-893e-4b1d-8248-f2f87b1cc933.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_294_MirnaExpression1019b848-e425-46a0-b9fb-441dacb7100a_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-29-1707", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1247", + "classification": "Notification", + "entity_id": "7fd6ab8a-201e-431d-a886-6ab553b6ca36", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "bb413d44-c130-5fcc-a7f6-ccc0de597a30", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "7fd6ab8a-201e-431d-a886-6ab553b6ca36", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-29-1707" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1707-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_294_AlignedReads1019b848-e425-46a0-b9fb-441dacb7100a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 162895520, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "9abe24e9564ae6ed6357b652628aa88b", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "cb0f478f-bae3-470b-9ce7-f5c8963cc2d4", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_294_MirnaExpressionWorkflow75039612-13d4-4bd4-bd80-a6d8cb67704c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f0f8916d-1e37-4b9a-9c98-b41457fd8cac", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50210, + "md5sum": "745d350321533b15b4bd48e4daf0904f", + "file_id": "ecc79dac-f4f2-4911-b190-34d46c34739c", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1928-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "b45c543a-40d9-423a-a7fa-98e4b325b487", + "entity_id": "433d642a-06fe-454f-a2bf-3e0afb3dd23b" + } + ], + "file_name": "2faf0039-d422-46ea-8bea-fcd4d1d6a46b.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_80_MirnaExpression46249e1e-bceb-42b8-a775-14422798ab88_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-24-1928", + "notes": "[intgen.org]: Prior Malignancy", + "submitter_id": "654", + "classification": "Notification", + "entity_id": "b45c543a-40d9-423a-a7fa-98e4b325b487", + "created_datetime": "2010-09-02T00:00:00", + "annotation_id": "c8edabad-ef15-5f93-899b-770d397b7bca", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "b45c543a-40d9-423a-a7fa-98e4b325b487", + "state": "released", + "category": "Prior malignancy", + "status": "Approved", + "case_submitter_id": "TCGA-24-1928" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1928-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_80_AlignedReads46249e1e-bceb-42b8-a775-14422798ab88", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 373043447, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "96329e64068dcc5052931aa5db877046", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "19ea94c3-cc0f-4c4a-a407-09d94e43578f", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_80_MirnaExpressionWorkflow12777054-c98c-48a6-b2ac-143c160dbe44_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8ebbce05-9eb6-4d48-b77f-b63842354e7a", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50468, + "md5sum": "efe94caeb735b0ba06919f191b71e11b", + "file_id": "dcbcea5d-da1f-46c5-99b1-29ab90cf1b1d", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-2414-01A-02R-1569-13", + "entity_type": "aliquot", + "case_id": "a2319490-b85d-4219-a1b0-fa1ec432d5c8", + "entity_id": "ecbadb01-01ec-4d9f-877c-75709d6f5914" + } + ], + "file_name": "263589cd-6469-447a-a1a1-04df3080df27.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_406_MirnaExpressiona1a3ddc2-dc01-41a5-b19e-0a25496f3fc9_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-29-2414", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1251", + "classification": "Notification", + "entity_id": "a2319490-b85d-4219-a1b0-fa1ec432d5c8", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "db1fe169-120b-5592-9027-6e99810057d4", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:32:20.747393-05:00", + "case_id": "a2319490-b85d-4219-a1b0-fa1ec432d5c8", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-29-2414" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-2414-01A-02R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_406_AlignedReadsa1a3ddc2-dc01-41a5-b19e-0a25496f3fc9", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 184138927, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "61563a90244314abf0de13b99d144918", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "43a0d3bc-49bd-4dd2-9c9c-54dfd75ed91e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_406_MirnaExpressionWorkflow38598927-d5e7-4e28-9cee-6837c7f86243_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d8cc0b84-0fcb-4225-998c-4e9cc9ed6b06", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50264, + "md5sum": "08e37bac1609eadf3b0f7f36648791bf", + "file_id": "746364e5-99d3-46a2-ac22-6bc9fd0c2c1b", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-2414-01A-02R-1569-13", + "entity_type": "aliquot", + "case_id": "a2319490-b85d-4219-a1b0-fa1ec432d5c8", + "entity_id": "ecbadb01-01ec-4d9f-877c-75709d6f5914" + } + ], + "file_name": "263589cd-6469-447a-a1a1-04df3080df27.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_406_MirnaExpressiona1a3ddc2-dc01-41a5-b19e-0a25496f3fc9_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-29-2414", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1251", + "classification": "Notification", + "entity_id": "a2319490-b85d-4219-a1b0-fa1ec432d5c8", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "db1fe169-120b-5592-9027-6e99810057d4", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:32:20.747393-05:00", + "case_id": "a2319490-b85d-4219-a1b0-fa1ec432d5c8", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-29-2414" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-2414-01A-02R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_406_AlignedReadsa1a3ddc2-dc01-41a5-b19e-0a25496f3fc9", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 184138927, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "61563a90244314abf0de13b99d144918", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "43a0d3bc-49bd-4dd2-9c9c-54dfd75ed91e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_406_MirnaExpressionWorkflow38598927-d5e7-4e28-9cee-6837c7f86243_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d8cc0b84-0fcb-4225-998c-4e9cc9ed6b06", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 366780, + "md5sum": "d9c28b30ec8bb5ed9307d74047b58a17", + "file_id": "97b2a9b1-3d01-41f8-9481-30e4d7f9de8f", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1116-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "70fe08bd-a0b4-4a88-b82e-813b176f8e40", + "entity_id": "ab28a926-0266-4602-8e90-529934cf43ab" + } + ], + "file_name": "ad304861-0a5c-4225-9a9a-445f306c40ac.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_497_MirnaExpressiona7a02df7-7047-4f3f-a009-d3c43471463f_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-23-1116", + "notes": "Prior malignancy of breast cancer", + "submitter_id": "3385", + "classification": "Notification", + "entity_id": "70fe08bd-a0b4-4a88-b82e-813b176f8e40", + "created_datetime": "2011-09-18T00:00:00", + "annotation_id": "c908140f-6424-5e33-bf58-59a4d2c5515f", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "70fe08bd-a0b4-4a88-b82e-813b176f8e40", + "state": "released", + "category": "Prior malignancy", + "status": "Approved", + "case_submitter_id": "TCGA-23-1116" + }, + { + "annotation_id": "1c2843fe-896c-57a5-b6f9-68a85c20481c", + "entity_submitter_id": "TCGA-23-1116-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8771", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "ab28a926-0266-4602-8e90-529934cf43ab", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "ec5a438d-75c5-5930-bb2b-f03dff5446fe", + "entity_submitter_id": "TCGA-23-1116-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29772", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "ab28a926-0266-4602-8e90-529934cf43ab", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1116-01A-01R-1564-13_GRCh37-lite_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_497_AlignedReadsa7a02df7-7047-4f3f-a009-d3c43471463f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 55652166, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "c16769d61bab86deeffd298b578dba42", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "8fe2d9f9-83e2-4c64-8224-163d0e08bdbb", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_497_MirnaExpressionWorkflow4f69a999-b6c2-439f-b5e9-ca634cc2279e_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "bd9b4b74-f15d-40dd-9556-5e2effe4b7fa", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50182, + "md5sum": "4bfbf55ab84957d2bff0c4175d0c4011", + "file_id": "48b3948c-c610-4afe-a857-d4b932c523f5", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-2428-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "b0585c7a-7205-4dac-9d54-6da89674accb", + "entity_id": "9e4a4bc1-39cf-46dc-b7d3-c7d852cc033b" + } + ], + "file_name": "5e859806-0cf7-456b-a50b-92e574142dbd.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_237_MirnaExpression5f2ca23e-8991-47a6-988d-1b3578656d13_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-29-2428", + "notes": "Prior malignancy of high grade endometrial carcinoma", + "submitter_id": "3394", + "classification": "Notification", + "entity_id": "b0585c7a-7205-4dac-9d54-6da89674accb", + "created_datetime": "2011-09-18T00:00:00", + "annotation_id": "ca462474-5d6f-574f-9fab-66a308c40ee4", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "b0585c7a-7205-4dac-9d54-6da89674accb", + "state": "released", + "category": "Prior malignancy", + "status": "Approved", + "case_submitter_id": "TCGA-29-2428" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-2428-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_237_AlignedReads5f2ca23e-8991-47a6-988d-1b3578656d13", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 195529057, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "5a194c5c1a3937ab97a45ff32d253f84", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c07e6e5e-463f-4654-8af4-b144be76a437", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_237_MirnaExpressionWorkflow8264820f-7664-4c32-a204-2ea1811de486_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "82cc33d0-5126-419f-8a45-a18939e0f853", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50250, + "md5sum": "42d0698b510550acc55b0b24ea5ea1b4", + "file_id": "c80b58cf-321b-45da-b819-9ac2674305d9", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-20-1687-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "9bf16a89-2fc7-4c08-93bc-3105eec5c3cc", + "entity_id": "ad7529aa-47f7-4207-b0a9-8684ff1e6e80" + } + ], + "file_name": "862a677b-94b4-47eb-8d81-340de9ca1784.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_456_MirnaExpressione5b3c26c-7ecd-4a70-b2fa-4f7c72173b3a_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-20-1687", + "notes": "Prior malignancy of breast cancer", + "submitter_id": "3387", + "classification": "Notification", + "entity_id": "9bf16a89-2fc7-4c08-93bc-3105eec5c3cc", + "created_datetime": "2011-09-18T00:00:00", + "annotation_id": "d0efc252-3ae0-5e34-ae46-cb9203e14ec8", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "case_id": "9bf16a89-2fc7-4c08-93bc-3105eec5c3cc", + "state": "released", + "category": "Prior malignancy", + "status": "Approved", + "case_submitter_id": "TCGA-20-1687" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-20-1687-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_456_AlignedReadse5b3c26c-7ecd-4a70-b2fa-4f7c72173b3a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 153138605, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "b7cd1cd9f775b6261b90bb5058373783", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "bff37d11-1795-424b-9be9-c66d5b12ad0d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_456_MirnaExpressionWorkflow5bbde352-257a-4d3e-bb5e-baec7e96137a_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "fd0017c8-2de7-4cde-a9ad-867a7bf1c846", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50148, + "md5sum": "92a13a9754ebde55195558b57fa1594d", + "file_id": "34cccb22-5ade-4c67-a635-bab6bab28928", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-20-1687-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "9bf16a89-2fc7-4c08-93bc-3105eec5c3cc", + "entity_id": "ad7529aa-47f7-4207-b0a9-8684ff1e6e80" + } + ], + "file_name": "862a677b-94b4-47eb-8d81-340de9ca1784.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_456_MirnaExpressione5b3c26c-7ecd-4a70-b2fa-4f7c72173b3a_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-20-1687", + "notes": "Prior malignancy of breast cancer", + "submitter_id": "3387", + "classification": "Notification", + "entity_id": "9bf16a89-2fc7-4c08-93bc-3105eec5c3cc", + "created_datetime": "2011-09-18T00:00:00", + "annotation_id": "d0efc252-3ae0-5e34-ae46-cb9203e14ec8", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "case_id": "9bf16a89-2fc7-4c08-93bc-3105eec5c3cc", + "state": "released", + "category": "Prior malignancy", + "status": "Approved", + "case_submitter_id": "TCGA-20-1687" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-20-1687-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_456_AlignedReadse5b3c26c-7ecd-4a70-b2fa-4f7c72173b3a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 153138605, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "b7cd1cd9f775b6261b90bb5058373783", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "bff37d11-1795-424b-9be9-c66d5b12ad0d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_456_MirnaExpressionWorkflow5bbde352-257a-4d3e-bb5e-baec7e96137a_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "fd0017c8-2de7-4cde-a9ad-867a7bf1c846", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 287532, + "md5sum": "170e797c7481136927605a5cf61d7b92", + "file_id": "20e3c72d-b315-4230-99ee-007373bea47e", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-2065-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "8d1dcf21-efd3-4fbe-ad44-f43a19239383", + "entity_id": "6264c1bd-d074-4ef9-bbb9-ed5681bb9978" + } + ], + "file_name": "3acb3de6-45b2-4bf6-bbdd-4fee94bbe9bb.mirnaseq.mirnas.quantification.txt", + "submitter_id": "2ce4f19a-b47f-47d9-aecb-4619afa2dcc1", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-2065", + "notes": "[intgen.org]: Molecular Results off Spec", + "submitter_id": "620", + "classification": "Notification", + "entity_id": "8d1dcf21-efd3-4fbe-ad44-f43a19239383", + "created_datetime": "2010-09-02T00:00:00", + "annotation_id": "d3aecb31-99a4-5951-9631-16d3cd3fb71f", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "case_id": "8d1dcf21-efd3-4fbe-ad44-f43a19239383", + "state": "released", + "category": "Molecular analysis outside specification", + "status": "Approved", + "case_submitter_id": "TCGA-13-2065" + } + ], + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9883536137060372, + "total_reads": 25770483, + "access": "controlled", + "file_name": "6264c1bd-d074-4ef9-bbb9-ed5681bb9978_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004977162, + "proportion_reads_duplicated": 0, + "submitter_id": "aa419225-efda-415f-b899-eaadde5fb7ce", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 431676438, + "created_datetime": "2024-09-20T11:13:41.066414-05:00", + "average_base_quality": 36, + "md5sum": "98c1bb6ebf07d650b910418f6a00d2a5", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "4ffe7d22-8271-4913-9e5e-47a81a9d8c12", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "3acb3de6-45b2-4bf6-bbdd-4fee94bbe9bb_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "77cebbf6-e5c3-402b-ad05-be04969d77a4", + "created_datetime": "2024-09-20T11:17:14.265486-05:00" + }, + "file_size": 50617, + "md5sum": "5ca9865f0630039a25cf7c79290ef0fa", + "file_id": "ec1abb13-1d3d-4341-8016-65e067fb349d", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2098-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "eb7c3b35-7a5e-4621-b31f-9775c51f9a23", + "entity_id": "d855f86a-f302-47fb-aa9f-5977632c695a" + } + ], + "file_name": "d21fe1b2-b8e2-42b7-8326-3659d4bf1736.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_65_MirnaExpression13b26bb3-bae6-4a10-90b9-bbcdd07a3e5e_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2098-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_65_AlignedReads13b26bb3-bae6-4a10-90b9-bbcdd07a3e5e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 328802376, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "49cfd69282155f46cce5b2e6fbc53b34", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "423e76cc-1efa-4ad2-a350-1bf6548ad9db", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_65_MirnaExpressionWorkflow91e06a99-2af9-487d-9215-d7bb3c78d8ce_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "757c392d-61d6-4704-8207-c08ab436e0a2", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 506072, + "md5sum": "1c300d900009a59839e7e3183dd5212c", + "file_id": "88f20417-f5b8-4876-997a-d7f55b38c5ad", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1635-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "bc2591b0-65d7-48c3-a5cc-783f67b65869", + "entity_id": "877d96a2-6e5c-472c-b190-59fcfd1febb4" + } + ], + "file_name": "6ab6b5fa-0704-4636-8a23-4916811be004.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_99_MirnaExpressionf715404b-653b-4fe7-9d2e-5aaf76af0c90_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1635-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_99_AlignedReadsf715404b-653b-4fe7-9d2e-5aaf76af0c90", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 136930444, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "dfffb48d9442cc9fc5e92a1a22aa55d7", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "d99cc8da-48a0-4a44-8220-51b3bb9b3a28", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_99_MirnaExpressionWorkflow19647358-49ff-4294-a05d-fd7f11161258_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8c443b75-2fc8-4b33-93af-8e68c777a7d6", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50267, + "md5sum": "36715437e59db7ed84c46610984420d2", + "file_id": "574e455f-c91b-4b33-b01d-eb18f9a904a2", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-20-1686-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "f007fa7a-7da9-4cb0-8aea-623af1a122c5", + "entity_id": "efabaf9d-2e46-4d4e-9b1b-763ec4d8d537" + } + ], + "file_name": "77a724bd-49ef-4cee-a6b7-0ea370194ed0.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_161_MirnaExpressiondeeaab81-9449-4566-a64c-dcb5a3c24f53_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "67e75bb5-1cff-5de2-8df2-e486acd6b31b", + "entity_submitter_id": "TCGA-20-1686-01A-01R-1566-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8746", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "efabaf9d-2e46-4d4e-9b1b-763ec4d8d537", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "8119c8c8-0cac-5318-80a2-a40755c8f4b8", + "entity_submitter_id": "TCGA-20-1686-01A-01R-1566-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29762", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "efabaf9d-2e46-4d4e-9b1b-763ec4d8d537", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-20-1686-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_161_AlignedReadsdeeaab81-9449-4566-a64c-dcb5a3c24f53", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 137449904, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "7b0c6642e9d51e7fb35d3a08775de0be", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a94bc668-eddd-448d-b6e3-c65114406058", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_161_MirnaExpressionWorkflow9c97cbf7-419f-403d-b0f9-107c92669a78_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "32ce9d42-7052-480f-b3aa-6d32893a540d", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 329740, + "md5sum": "6b38c240622df2c5cf1d62e025f20846", + "file_id": "13223125-7524-434a-a530-5af47084186f", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1699-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "fe0e3851-d8cb-4533-9536-b4826cd25f87", + "entity_id": "6d1d8c8a-fea0-4a47-bd2a-124270561406" + } + ], + "file_name": "a476e22c-6fa4-4a78-a525-9338cdda214c.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_352_MirnaExpressiona8b77118-ebbf-4d97-b46a-1a92c5cfd8de_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1699-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_352_AlignedReadsa8b77118-ebbf-4d97-b46a-1a92c5cfd8de", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 96411174, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "3751025532827c66f3d8281ef3ec3fc9", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "ee18fe54-4a6c-4f49-8b0b-ca41e19db8ba", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_352_MirnaExpressionWorkflowe0498b1e-3121-4a62-b913-889b32e4c374_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "6578d6f7-e9f0-4bda-984b-9748ef146c46", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50276, + "md5sum": "b00349cc68cb4f57e9b162d3264d01d9", + "file_id": "222df5b5-fb9a-407c-ad25-0f19a61768c0", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-20-1686-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "f007fa7a-7da9-4cb0-8aea-623af1a122c5", + "entity_id": "efabaf9d-2e46-4d4e-9b1b-763ec4d8d537" + } + ], + "file_name": "77a724bd-49ef-4cee-a6b7-0ea370194ed0.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_161_MirnaExpressiondeeaab81-9449-4566-a64c-dcb5a3c24f53_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "67e75bb5-1cff-5de2-8df2-e486acd6b31b", + "entity_submitter_id": "TCGA-20-1686-01A-01R-1566-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8746", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "efabaf9d-2e46-4d4e-9b1b-763ec4d8d537", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "8119c8c8-0cac-5318-80a2-a40755c8f4b8", + "entity_submitter_id": "TCGA-20-1686-01A-01R-1566-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29762", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "efabaf9d-2e46-4d4e-9b1b-763ec4d8d537", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-20-1686-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_161_AlignedReadsdeeaab81-9449-4566-a64c-dcb5a3c24f53", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 137449904, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "7b0c6642e9d51e7fb35d3a08775de0be", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a94bc668-eddd-448d-b6e3-c65114406058", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_161_MirnaExpressionWorkflow9c97cbf7-419f-403d-b0f9-107c92669a78_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "32ce9d42-7052-480f-b3aa-6d32893a540d", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50216, + "md5sum": "8ca8b5ed49107433ae8b2cb80b7ef9d6", + "file_id": "76d750ed-7a37-4537-88ff-af88a68d6092", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-2072-01A-01R-A96U-41", + "entity_type": "aliquot", + "case_id": "1592af8e-8d11-4325-8a2b-e0c690b15b58", + "entity_id": "b497d0f1-0124-476f-8980-cc9222d16d1f" + } + ], + "file_name": "627d040c-9a26-4ece-9a1b-f17bdac45a87.mirnaseq.isoforms.quantification.txt", + "submitter_id": "4c914d49-62ef-40ab-a77c-4bc783717ab0", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9924611397540095, + "total_reads": 25112682, + "access": "controlled", + "file_name": "b497d0f1-0124-476f-8980-cc9222d16d1f_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004497281, + "proportion_reads_duplicated": 0, + "submitter_id": "079882de-1a22-49c0-ae46-6a7e0dab68af", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 399263167, + "created_datetime": "2024-09-20T11:13:58.228658-05:00", + "average_base_quality": 36, + "md5sum": "69ab4bf7844f2dafdadda2d293f47076", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "ec09bd2b-1fa6-46f4-ace6-5c46f30eb8af", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 35, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "627d040c-9a26-4ece-9a1b-f17bdac45a87_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b7791c0a-a478-4b41-b348-d35771c77ece", + "created_datetime": "2024-09-20T11:17:21.450876-05:00" + }, + "file_size": 504344, + "md5sum": "272b14be5273c7f7d07b725cbace2e39", + "file_id": "fe1f4714-e4c1-4a0c-97c9-6bd8a8b33526", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-2409-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "dce71741-ccbe-40b7-a0b8-2048d07187a4", + "entity_id": "4e5f3a15-68fd-4be0-b368-e0bd04eaf872" + } + ], + "file_name": "d8d3c671-32b1-482f-a880-e076d3d30828.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_173_MirnaExpressionbe0fc632-530d-42d8-9de2-9ca6d6e8d5ae_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-2409-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_173_AlignedReadsbe0fc632-530d-42d8-9de2-9ca6d6e8d5ae", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 201027265, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "53ceb0f1336eb43147d0b1979fcb3d96", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "8c2a0418-612b-4110-8693-18cf95011ab0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_173_MirnaExpressionWorkflow33e67c99-d3b3-4a9e-a9f8-e7a83c2c2202_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "722a1f65-d236-4277-b171-e47c0d92aead", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50311, + "md5sum": "42712dd1f574fdc971f9d06c817b217e", + "file_id": "c70f35a8-45aa-4521-95d2-089067e75d47", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-2409-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "dce71741-ccbe-40b7-a0b8-2048d07187a4", + "entity_id": "4e5f3a15-68fd-4be0-b368-e0bd04eaf872" + } + ], + "file_name": "d8d3c671-32b1-482f-a880-e076d3d30828.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_173_MirnaExpressionbe0fc632-530d-42d8-9de2-9ca6d6e8d5ae_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-2409-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_173_AlignedReadsbe0fc632-530d-42d8-9de2-9ca6d6e8d5ae", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 201027265, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "53ceb0f1336eb43147d0b1979fcb3d96", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "8c2a0418-612b-4110-8693-18cf95011ab0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_173_MirnaExpressionWorkflow33e67c99-d3b3-4a9e-a9f8-e7a83c2c2202_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "722a1f65-d236-4277-b171-e47c0d92aead", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 405523, + "md5sum": "24a3efdb9254cf228b544eca126ab9c9", + "file_id": "cffb822a-0080-458d-9b21-929e6571a153", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-2396-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "6264e699-d40b-4ebc-b443-0a0edcb220dc", + "entity_id": "43352a4d-f866-4ed7-81f5-5dc478c10992" + } + ], + "file_name": "a28f9f92-05d0-4e51-aba7-bdfbd6e5430d.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_273_MirnaExpression4dfc4256-f60c-4ce7-8f28-113a812f5f19_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-2396-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_273_AlignedReads4dfc4256-f60c-4ce7-8f28-113a812f5f19", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 184219746, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "590bbf0e69bedffe79f6742d264dd71d", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b783e82f-ae53-4778-8907-badc628fd834", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_273_MirnaExpressionWorkflow78b8f070-0bc0-4f50-be28-4e4cb26a09cf_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ed8801bb-d0fb-40ce-bd61-354d07cf7545", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 397197, + "md5sum": "06844411d9c73f93a136b7bddd81235b", + "file_id": "c80fd476-ed24-46f7-96bd-c07661c2f56b", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-WR-A838-01A-12R-A407-13", + "entity_type": "aliquot", + "case_id": "b8023162-5e82-40e6-ad8c-8acf81821f01", + "entity_id": "13972c92-cbe7-47bc-b379-838da504ebaa" + } + ], + "file_name": "fe0c108c-7565-4139-b0c7-f90e8a0f2a04.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_1_MirnaExpression4c25f0ed-6222-41a3-9dae-c72362a5c1db_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-WR-A838-01A-12R-A407-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_1_AlignedReads4c25f0ed-6222-41a3-9dae-c72362a5c1db", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 123873028, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "7a6753cce533bf4e249169dbb5e18d59", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "c9eda544-9b86-47e6-b719-e270d607359e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_1_MirnaExpressionWorkflow1f3578e1-2d2d-40d4-821c-e6b5749ff8c0_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c3bfffba-6f4c-4300-81f5-eb22c03adf96", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50342, + "md5sum": "b1df058b7d7eee05f931cfdd67c5ae66", + "file_id": "6d8ed1c3-dddf-40c1-8993-afe57eecf0f3", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-WR-A838-01A-12R-A407-13", + "entity_type": "aliquot", + "case_id": "b8023162-5e82-40e6-ad8c-8acf81821f01", + "entity_id": "13972c92-cbe7-47bc-b379-838da504ebaa" + } + ], + "file_name": "fe0c108c-7565-4139-b0c7-f90e8a0f2a04.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_1_MirnaExpression4c25f0ed-6222-41a3-9dae-c72362a5c1db_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-WR-A838-01A-12R-A407-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_1_AlignedReads4c25f0ed-6222-41a3-9dae-c72362a5c1db", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 123873028, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "7a6753cce533bf4e249169dbb5e18d59", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "c9eda544-9b86-47e6-b719-e270d607359e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_1_MirnaExpressionWorkflow1f3578e1-2d2d-40d4-821c-e6b5749ff8c0_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c3bfffba-6f4c-4300-81f5-eb22c03adf96", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 352149, + "md5sum": "54647d340a9083e65cad4f82b5a0a6b9", + "file_id": "561151e6-f1b3-47ff-ae43-7df960d0d91d", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-31-1953-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "61feee94-3ac9-42fe-aaa3-dc6a3efe563c", + "entity_id": "7b31fc47-0299-4449-aa5b-622ba549371f" + } + ], + "file_name": "cd83442c-a9dc-4f4a-99e4-b1e1cae19623.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_329_MirnaExpression8c0b0dfc-5bd1-486c-b311-85d746cfcc31_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-31-1953-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_329_AlignedReads8c0b0dfc-5bd1-486c-b311-85d746cfcc31", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 186042199, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "4026e2a61d0e3a2895933ceeecde2bf4", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "383f5359-131e-428e-9b69-5dbd55a9f339", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_329_MirnaExpressionWorkflow935087a6-73b0-4475-aaa3-0e9e03a516fa_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c75acd43-286b-43a3-99cb-604b16265fdb", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 421301, + "md5sum": "c869ba013a323c9bf10c2a78a17bb973", + "file_id": "54ed8d55-1a62-4a77-a927-7eb30e0bc149", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-31-1953-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "61feee94-3ac9-42fe-aaa3-dc6a3efe563c", + "entity_id": "7b31fc47-0299-4449-aa5b-622ba549371f" + } + ], + "file_name": "cd83442c-a9dc-4f4a-99e4-b1e1cae19623.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_329_MirnaExpression8c0b0dfc-5bd1-486c-b311-85d746cfcc31_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-31-1953-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_329_AlignedReads8c0b0dfc-5bd1-486c-b311-85d746cfcc31", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 186042199, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "4026e2a61d0e3a2895933ceeecde2bf4", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "383f5359-131e-428e-9b69-5dbd55a9f339", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_329_MirnaExpressionWorkflow935087a6-73b0-4475-aaa3-0e9e03a516fa_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c75acd43-286b-43a3-99cb-604b16265fdb", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50389, + "md5sum": "0db2fcd028751ee2837a03dbc2ce407c", + "file_id": "e66f04ed-0dca-4e85-a76f-9307c7a05977", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1878-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "9bdbaccf-b43b-4ec3-8b9b-dff65215eb00", + "entity_id": "877d694b-3768-4b19-8064-ddeef56c5ad3" + } + ], + "file_name": "2e4b6448-f67e-47f7-bc7e-1274b719b612.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_52_MirnaExpression53992be5-2437-4cf7-88d2-95500289d782_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1878-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_52_AlignedReads53992be5-2437-4cf7-88d2-95500289d782", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 129260731, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "69b6c92a04620dd6007bbe3dc2eea3e7", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "03ec26ef-170a-4cfb-8a5f-b1f20291fa9a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_52_MirnaExpressionWorkflow4a0b59b3-86f2-4c09-a81d-033882edbb34_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "aa687245-1730-4d56-ae2a-5a1bc9279015", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50344, + "md5sum": "921e3c406e6ec443b45cafad39ac29cb", + "file_id": "0d8166a0-52be-4c02-976e-34e503c90a77", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1878-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "9bdbaccf-b43b-4ec3-8b9b-dff65215eb00", + "entity_id": "877d694b-3768-4b19-8064-ddeef56c5ad3" + } + ], + "file_name": "2e4b6448-f67e-47f7-bc7e-1274b719b612.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_52_MirnaExpression53992be5-2437-4cf7-88d2-95500289d782_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1878-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_52_AlignedReads53992be5-2437-4cf7-88d2-95500289d782", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 129260731, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "69b6c92a04620dd6007bbe3dc2eea3e7", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "03ec26ef-170a-4cfb-8a5f-b1f20291fa9a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_52_MirnaExpressionWorkflow4a0b59b3-86f2-4c09-a81d-033882edbb34_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "aa687245-1730-4d56-ae2a-5a1bc9279015", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 344767, + "md5sum": "7178eeb8cbc9c9ab091c15dba43d6989", + "file_id": "425b3fef-f433-4801-8ddd-2eb40ef488d5", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-OY-A56P-01A-12R-A407-13", + "entity_type": "aliquot", + "case_id": "260723bf-9620-450d-bf31-f3a45543f9db", + "entity_id": "f8bfd2bc-95b9-4f53-b7a8-0e23c1c14711" + } + ], + "file_name": "38d3a4c2-6ccb-48f3-b672-1d61a7fc4d25.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_8_MirnaExpressiond7534d3d-d0b6-4b01-b0df-77a388c9bf1a_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-OY-A56P-01A-12R-A407-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_8_AlignedReadsd7534d3d-d0b6-4b01-b0df-77a388c9bf1a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 162633230, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "7fe3d869ae03917b5c0929ef8012edab", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5c9d1e2b-1991-4893-bb67-fa18d8f58174", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_8_MirnaExpressionWorkflow54e6a851-789d-4d83-890d-0203a84a9499_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d9b19229-ba4d-4c69-91b7-8e52cf83387e", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 385261, + "md5sum": "26e5647617798ae62aa30aae1fda5073", + "file_id": "24416565-3620-43ff-9fa5-7d36845408f5", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1347-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "f0c353fd-947c-41e2-b643-3ecc0d69796c", + "entity_id": "1a59f822-d8fc-4c7a-ad7b-b1b84078e09d" + } + ], + "file_name": "35ab51e3-aa59-4b00-9554-068064c5fbea.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_198_MirnaExpression648d3dc8-0c08-4a17-bc7e-ae466efc3077_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "36ca9240-0615-524f-bb68-96c3e3c636d8", + "entity_submitter_id": "TCGA-04-1347-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8761", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "1a59f822-d8fc-4c7a-ad7b-b1b84078e09d", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "50402917-7958-5cb4-824f-855c2af5b98f", + "entity_submitter_id": "TCGA-04-1347-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29692", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "1a59f822-d8fc-4c7a-ad7b-b1b84078e09d", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1347-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_198_AlignedReads648d3dc8-0c08-4a17-bc7e-ae466efc3077", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 132205333, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "c7b2b4903509e38503f9cc4bcbceb2df", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "ec35757e-9190-41c1-a5ce-71a0aa470bd7", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_198_MirnaExpressionWorkflowc2a9255a-e015-4d1b-a64a-dcd3472c37dd_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "53db8a70-30a9-4bd6-a9a3-a155028d3c03", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 264126, + "md5sum": "fc04e15bc260e1b5b45f9dce91591e4a", + "file_id": "65e4ca80-3e3c-4d6d-a5b6-be612898dfba", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1347-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "f0c353fd-947c-41e2-b643-3ecc0d69796c", + "entity_id": "1a59f822-d8fc-4c7a-ad7b-b1b84078e09d" + } + ], + "file_name": "35ab51e3-aa59-4b00-9554-068064c5fbea.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_198_MirnaExpression648d3dc8-0c08-4a17-bc7e-ae466efc3077_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "36ca9240-0615-524f-bb68-96c3e3c636d8", + "entity_submitter_id": "TCGA-04-1347-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8761", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "1a59f822-d8fc-4c7a-ad7b-b1b84078e09d", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "50402917-7958-5cb4-824f-855c2af5b98f", + "entity_submitter_id": "TCGA-04-1347-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29692", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "1a59f822-d8fc-4c7a-ad7b-b1b84078e09d", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1347-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_198_AlignedReads648d3dc8-0c08-4a17-bc7e-ae466efc3077", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 132205333, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "c7b2b4903509e38503f9cc4bcbceb2df", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "ec35757e-9190-41c1-a5ce-71a0aa470bd7", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_198_MirnaExpressionWorkflowc2a9255a-e015-4d1b-a64a-dcd3472c37dd_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "53db8a70-30a9-4bd6-a9a3-a155028d3c03", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50048, + "md5sum": "39d7c2e569eb03cc3a878733298e58ae", + "file_id": "30325d3a-4563-48ff-87a9-2645d222b469", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-59-2351-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "16829472-5666-4fba-9bf9-360ec1689aa0", + "entity_id": "7e58cfd1-07eb-44e2-a563-fa7a00b338a3" + } + ], + "file_name": "f77ca65d-5775-44d9-b4d3-07256c35153a.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_100_MirnaExpression318dba58-f1fd-4ff7-ad0a-ad34a89ef8cd_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-59-2351-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_100_AlignedReads318dba58-f1fd-4ff7-ad0a-ad34a89ef8cd", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 117959410, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "88d680d859ff045eba5b8944fad78412", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b01c007c-78e0-482b-8c19-912db2889221", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_100_MirnaExpressionWorkflowd44d0542-cba8-414c-b733-316cff345c47_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a2b90d12-05fb-429e-af33-550d55349aca", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 317126, + "md5sum": "2372b38ffdea9fcea206fce60ae133c5", + "file_id": "aff04f34-fee4-4cca-97af-c763c2e3df4a", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1491-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "c8febeef-8e7e-459e-88cb-8086692dc559", + "entity_id": "450bac48-836e-467e-92b4-f0b5f6a82757" + } + ], + "file_name": "bdd98975-906f-4a9d-9add-d77bf82509be.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_175_MirnaExpressiona01a91f0-11a1-4719-9207-2ccca8105af2_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1491-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_175_AlignedReadsa01a91f0-11a1-4719-9207-2ccca8105af2", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 138497496, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "cff4d07489e9ad30a3b4b7fc10243b1c", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "77f02f16-62ed-4433-8eb2-7c8ff16ce41f", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_175_MirnaExpressionWorkflowa7cf54d2-6b5a-417c-bb9f-b9bead03f3c6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f0b25be9-9d88-49e4-bb72-2d78d35b27e0", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 313892, + "md5sum": "cede929f49d52653447dc8c24bdad8b3", + "file_id": "77f303f6-6d35-479a-944f-9488c2317b5b", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1491-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "c8febeef-8e7e-459e-88cb-8086692dc559", + "entity_id": "23af3387-f7a5-4217-b7f4-83937e7253f2" + } + ], + "file_name": "4cb6de9b-6a8f-49c5-913a-e951d2a78edb.mirnaseq.isoforms.quantification.txt", + "submitter_id": "200bac9d-8c81-4d6a-8099-77cdadaf660f", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9924564606571002, + "total_reads": 19267746, + "access": "controlled", + "file_name": "23af3387-f7a5-4217-b7f4-83937e7253f2_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003569341, + "proportion_reads_duplicated": 0, + "submitter_id": "1427d592-0d3b-415b-8b43-741df73b6573", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 313736727, + "created_datetime": "2024-09-20T11:13:55.241641-05:00", + "average_base_quality": 36, + "md5sum": "8e2f2e6a28e8c127a23bf6d0c8d5634d", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "16bb662b-7fa7-464e-9668-e027f4dbc244", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 35, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "4cb6de9b-6a8f-49c5-913a-e951d2a78edb_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "334d18eb-4a25-47f7-995d-d4452fc3e8e0", + "created_datetime": "2024-09-20T11:17:40.646666-05:00" + }, + "file_size": 444930, + "md5sum": "e9081de8044c984d06db61b089690a8e", + "file_id": "3e0f0173-24d2-44e7-983b-4cb84c4be405", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1320-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "46395c3d-5e51-477f-946e-e58b87cc7baa", + "entity_id": "52697815-ede2-4ce3-a6d0-2680f6b9bb73" + } + ], + "file_name": "5441d128-830d-4d59-bf51-d72960e424bf.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_203_MirnaExpression60ad2e35-4cbb-4311-b062-acbc860d6231_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1320-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_203_AlignedReads60ad2e35-4cbb-4311-b062-acbc860d6231", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 179277838, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "f1d8f8441e75a28174c7a876c39d693c", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "122e0cc4-fa3a-402a-b93e-bcc423805744", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_203_MirnaExpressionWorkflowc3c0574e-54aa-42a4-ae8a-85c287a38984_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "65b2b561-f60b-43a0-8f66-2f86591135c8", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 375394, + "md5sum": "3ede15b974f96c1b01b31e5aebb28079", + "file_id": "4ea52ef0-437a-4436-be1f-ec35818df90d", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1743-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "a3e26259-732b-49fb-bc95-2f0ec7a0494e", + "entity_id": "f3277084-b0a8-43df-946e-dc792bbb8cdb" + } + ], + "file_name": "0ede0d69-1aaf-4777-b03e-cc4a106b07d6.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_366_MirnaExpressiond063c020-aa36-4b8b-9deb-b4332f3c65a3_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1743-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_366_AlignedReadsd063c020-aa36-4b8b-9deb-b4332f3c65a3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 237114875, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "e4e8040a4b1cfed42516ad95489bc198", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "35f30392-4cf7-4215-8411-75b8005ee4e0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_366_MirnaExpressionWorkflow647b294b-050d-4dbd-80af-6dc00aa213b3_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "daee62b9-205c-485c-88de-8f9fd0991650", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 482510, + "md5sum": "ec1e60b8a1173fe5dcc66fa836b1e1e1", + "file_id": "7d424d76-db8d-438f-938f-205e5c013b64", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0794-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "b63cad1b-b4c7-4e50-8acb-5cee4e9ce4a9", + "entity_id": "bc29b239-13a3-4d29-860b-fa1204c15e52" + } + ], + "file_name": "0777e813-fd55-4951-989d-df0005926d79.mirnaseq.mirnas.quantification.txt", + "submitter_id": "91908ad0-f8ae-4831-9cc1-6f75b9fc0055", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9884280833807287, + "total_reads": 24840656, + "access": "controlled", + "file_name": "bc29b239-13a3-4d29-860b-fa1204c15e52_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003407144, + "proportion_reads_duplicated": 0, + "submitter_id": "bdeb9c38-b1f7-426b-8e7e-a05d9f254c4f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 464793711, + "created_datetime": "2024-09-20T11:13:59.856852-05:00", + "average_base_quality": 36, + "md5sum": "9ff187b09e215c62f929fc8afb7f965a", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "20e735f8-6d66-4433-96fe-46a626460056", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 33, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "0777e813-fd55-4951-989d-df0005926d79_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "253ff05f-5efa-477b-a4d4-55293477a097", + "created_datetime": "2024-09-20T11:18:08.881706-05:00" + }, + "file_size": 50842, + "md5sum": "c41251e165dbe271d5e2dcd2bc8a7701", + "file_id": "07cd3ccb-c072-4d59-b419-c1f13546cb4e", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1736-01B-01R-1568-13", + "entity_type": "aliquot", + "case_id": "0a2d29de-869a-4dc8-ad11-6ee0d0a3a895", + "entity_id": "89f1ae39-c387-4dff-be38-e3b7265222bb" + } + ], + "file_name": "e2659515-39da-4e65-b7b0-af85f76fc3c9.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_305_MirnaExpressiond6c3c29e-c69e-4083-ba06-a564dd129043_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1736-01B-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_305_AlignedReadsd6c3c29e-c69e-4083-ba06-a564dd129043", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 174899399, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "31ca2f9459c465b74e974af9f3c2f87f", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "82d4c67d-2427-44f8-af72-d48ba529055d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_305_MirnaExpressionWorkflow38552632-ebd5-43dc-ad4a-1775a98f7fc6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ba9db1f3-e21d-467c-aa37-36f5fc166eb9", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50410, + "md5sum": "268c4c2f0630a8c1587dcacdfe4b10c0", + "file_id": "4a976c0a-d3d1-4655-bd1e-ca4f4ec94b1c", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1736-01B-01R-1568-13", + "entity_type": "aliquot", + "case_id": "0a2d29de-869a-4dc8-ad11-6ee0d0a3a895", + "entity_id": "89f1ae39-c387-4dff-be38-e3b7265222bb" + } + ], + "file_name": "e2659515-39da-4e65-b7b0-af85f76fc3c9.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_305_MirnaExpressiond6c3c29e-c69e-4083-ba06-a564dd129043_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1736-01B-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_305_AlignedReadsd6c3c29e-c69e-4083-ba06-a564dd129043", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 174899399, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "31ca2f9459c465b74e974af9f3c2f87f", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "82d4c67d-2427-44f8-af72-d48ba529055d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_305_MirnaExpressionWorkflow38552632-ebd5-43dc-ad4a-1775a98f7fc6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ba9db1f3-e21d-467c-aa37-36f5fc166eb9", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 407828, + "md5sum": "bf9431b3ecc9a0a8887619f3bd1558f7", + "file_id": "cdfb66dd-7afe-4202-a30b-fb3801d663ef", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1516-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "1c86e4e5-ecc9-4f6d-a557-77bf396a653b", + "entity_id": "7e1333f4-c67b-404d-9f7c-94417965895d" + } + ], + "file_name": "d50573c9-d6a4-49d3-8b70-afbd3f39425b.mirnaseq.mirnas.quantification.txt", + "submitter_id": "af59b971-5220-4243-9c2a-dbcbb3b65358", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9884344465036851, + "total_reads": 23578811, + "access": "controlled", + "file_name": "7e1333f4-c67b-404d-9f7c-94417965895d_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004902055, + "proportion_reads_duplicated": 0, + "submitter_id": "275e966e-29e1-435c-b1b2-3d802e8ad618", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 369800064, + "created_datetime": "2024-09-20T11:12:40.841431-05:00", + "average_base_quality": 36, + "md5sum": "2433dbacaf65d436dad909056b511f73", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "a923d0ef-f8e9-4274-97e4-1ce17fb96f3e", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "d50573c9-d6a4-49d3-8b70-afbd3f39425b_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "deff746a-6d91-4ba3-8fb4-b2e9af1e5450", + "created_datetime": "2024-09-20T11:18:07.347499-05:00" + }, + "file_size": 50751, + "md5sum": "aba07ac7754d99389741bc56da2eb3a2", + "file_id": "1d0ec5c4-7db8-4d30-a49a-f2fff222ae2b", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1920-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "97efb80d-4f46-4aef-b95e-20d260de01b2", + "entity_id": "e16c2693-f4f2-4d10-99ca-03d1b5ab9018" + } + ], + "file_name": "ff410495-335f-42d8-8654-b7610dd42f74.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_189_MirnaExpressiona21298c6-010d-4637-bb10-114483fc2bef_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1920-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_189_AlignedReadsa21298c6-010d-4637-bb10-114483fc2bef", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 185172590, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "e24c18bce070585c65dbccbf3aafa10b", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "3735c2e8-c759-479b-b444-7c7ad31051db", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_189_MirnaExpressionWorkflow2d93dce6-0263-417f-a673-6ac617cb498d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a3aa5f4c-b706-498a-ae1a-1cb1a9546624", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 354847, + "md5sum": "22eecfb90b3d088b9ece80a882b2d540", + "file_id": "907e92e4-9734-4242-9a5f-8ccf12d354d2", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1516-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "1c86e4e5-ecc9-4f6d-a557-77bf396a653b", + "entity_id": "7e1333f4-c67b-404d-9f7c-94417965895d" + } + ], + "file_name": "d50573c9-d6a4-49d3-8b70-afbd3f39425b.mirnaseq.isoforms.quantification.txt", + "submitter_id": "7a07efc3-6f3e-4f98-aa53-c5e454732340", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9884344465036851, + "total_reads": 23578811, + "access": "controlled", + "file_name": "7e1333f4-c67b-404d-9f7c-94417965895d_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004902055, + "proportion_reads_duplicated": 0, + "submitter_id": "275e966e-29e1-435c-b1b2-3d802e8ad618", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 369800064, + "created_datetime": "2024-09-20T11:12:40.841431-05:00", + "average_base_quality": 36, + "md5sum": "2433dbacaf65d436dad909056b511f73", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "a923d0ef-f8e9-4274-97e4-1ce17fb96f3e", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "d50573c9-d6a4-49d3-8b70-afbd3f39425b_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "deff746a-6d91-4ba3-8fb4-b2e9af1e5450", + "created_datetime": "2024-09-20T11:18:07.347499-05:00" + }, + "file_size": 536886, + "md5sum": "efdeb46fe4a23d809f8309b8be769850", + "file_id": "e1ea97c5-f54f-4aaa-81c5-091e65bc6a2c", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1920-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "97efb80d-4f46-4aef-b95e-20d260de01b2", + "entity_id": "e16c2693-f4f2-4d10-99ca-03d1b5ab9018" + } + ], + "file_name": "ff410495-335f-42d8-8654-b7610dd42f74.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_189_MirnaExpressiona21298c6-010d-4637-bb10-114483fc2bef_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1920-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_189_AlignedReadsa21298c6-010d-4637-bb10-114483fc2bef", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 185172590, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "e24c18bce070585c65dbccbf3aafa10b", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "3735c2e8-c759-479b-b444-7c7ad31051db", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_189_MirnaExpressionWorkflow2d93dce6-0263-417f-a673-6ac617cb498d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a3aa5f4c-b706-498a-ae1a-1cb1a9546624", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50351, + "md5sum": "581d798f81376bba20ab0ae293526900", + "file_id": "df341b71-c88e-45ad-96fd-b5c4e1c725c5", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0916-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "5f60bc2d-738f-43fc-a3fb-61ec6e80e3d4", + "entity_id": "63c52e46-68cf-4dac-9bd7-37081daa4474" + } + ], + "file_name": "955af0e2-8562-4ded-a3e5-9e88ee9def83.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_391_MirnaExpressionc3e2e43a-2578-44e4-a1fa-c2ab39db5bee_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0916-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_391_AlignedReadsc3e2e43a-2578-44e4-a1fa-c2ab39db5bee", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 138494179, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "f284594cb10ce58309d374f0eecc08fb", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "39e55ac6-7760-4df4-980b-2d1a5c1a2cfe", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_391_MirnaExpressionWorkflow9bb96291-dda3-4e53-b9e8-6e6eea32537f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "32e69b04-37f9-4e2e-bd88-c18ddf4dcdce", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 329459, + "md5sum": "b9958cbb65e863809eeab384809d2a80", + "file_id": "ab6f1164-e56c-4aee-b720-ad05952edeaf", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0803-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "54cf3bfe-51c0-4cca-9054-bf76b05a9371", + "entity_id": "cdb89051-4ba2-411f-8ad8-c63f3fd471e6" + } + ], + "file_name": "97b587bc-f32b-4542-bed0-9a10f12488b2.mirnaseq.isoforms.quantification.txt", + "submitter_id": "3f41cbf4-7779-4e2c-9bba-a53177c1cf8d", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9807313236564908, + "total_reads": 22915326, + "access": "controlled", + "file_name": "cdb89051-4ba2-411f-8ad8-c63f3fd471e6_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004391067, + "proportion_reads_duplicated": 0, + "submitter_id": "4cde5e0e-c3f9-4b63-a2e3-26fb76b33576", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 393416749, + "created_datetime": "2024-09-20T11:13:12.856001-05:00", + "average_base_quality": 36, + "md5sum": "2fb7ef840c827358904154893ca32231", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "ad483108-80f3-478f-b70e-127782dbe34d", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 37, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "97b587bc-f32b-4542-bed0-9a10f12488b2_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "41792d0e-895e-40f6-ad7f-16c4786c5a2a", + "created_datetime": "2024-09-20T11:17:07.879031-05:00" + }, + "file_size": 421023, + "md5sum": "3e840a7437de9f62aa9697cf7edcecdf", + "file_id": "da4737ff-70f9-44b1-a254-cba8092ae0ea", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0794-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "b63cad1b-b4c7-4e50-8acb-5cee4e9ce4a9", + "entity_id": "e62ef002-f571-4f79-9b22-66f3908e1e0d" + } + ], + "file_name": "e172d14b-489d-449d-9dfd-2874eb4b377c.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_268_MirnaExpression3d846432-46d2-4331-94ff-23e5af8b3e77_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0794-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_268_AlignedReads3d846432-46d2-4331-94ff-23e5af8b3e77", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 93986871, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "1a5d20b69506c2bd76594c3fa7a4ba4d", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4936ec5d-aedd-4bef-9643-aee83fce5b2c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_268_MirnaExpressionWorkflowb26b20a3-a774-4bac-93fb-71d3d126ab72_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "259fffff-0c2a-46b4-8b9a-d45f84fccdfb", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50125, + "md5sum": "1749f4df0172e1fbb0e8ebbb78383328", + "file_id": "a4420ddb-399e-4f21-bbc3-9fa7bf42c525", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1404-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "8e107f4b-1912-4d3e-814a-b863e2d65ed7", + "entity_id": "5a24a912-7e38-4d60-a1b9-56023d2a321a" + } + ], + "file_name": "3606aeab-e636-441d-89b0-d4d9454ea665.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_461_MirnaExpression794b97fa-061e-4321-b244-a28a70bdaa7a_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "48cf8a32-bb8b-567b-9fe3-f6bdccc634df", + "entity_submitter_id": "TCGA-13-1404-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8780", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "5a24a912-7e38-4d60-a1b9-56023d2a321a", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "fdc85185-1355-518c-9a9e-628cc5ef25d7", + "entity_submitter_id": "TCGA-13-1404-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29742", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "5a24a912-7e38-4d60-a1b9-56023d2a321a", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1404-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_461_AlignedReads794b97fa-061e-4321-b244-a28a70bdaa7a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 220017522, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "89959bd2fc70bc9a6eff99de9871a39c", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c52b22ff-6194-4fc2-b6ad-2b8227c2cf69", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_461_MirnaExpressionWorkflow053fe9cc-dbab-42f3-96fa-9eb3f10bf926_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "de5421bc-c298-4197-92bd-afb6b447cef8", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 375720, + "md5sum": "771579d763412dbd81ef456e45746ef2", + "file_id": "2eb78ba1-4d33-4957-a47a-051aff614d0a", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0908-01B-01R-1565-13", + "entity_type": "aliquot", + "case_id": "0ba7b6cc-e5f5-47d7-859a-24e31aa336ab", + "entity_id": "5324831d-94be-40c6-bcb1-5b29bbbaab1b" + } + ], + "file_name": "b930e9a2-09a2-45bd-82dc-552afa7539ec.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_289_MirnaExpression8a7a4801-0743-4b16-af29-a735b2837136_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "5c0071d8-4189-5b3f-a207-93577e890993", + "entity_submitter_id": "TCGA-13-0908-01B-01R-1565-13", + "notes": "RNA-seq:HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8802", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "5324831d-94be-40c6-bcb1-5b29bbbaab1b", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "85e0ce64-aadd-5a81-bc77-833e767d14b2", + "entity_submitter_id": "TCGA-13-0908-01B-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29737", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "5324831d-94be-40c6-bcb1-5b29bbbaab1b", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0908-01B-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_289_AlignedReads8a7a4801-0743-4b16-af29-a735b2837136", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 178194658, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "fd5427e00495c97e0009201b8cfe639e", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "291f3f93-d049-491f-8ab6-fba2dc889cb0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_289_MirnaExpressionWorkflow2ff48852-3a9a-4592-846f-bacb1fdac7c5_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "830aeb29-7f88-43e0-8bcf-78524c1e1c48", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 420583, + "md5sum": "f14e6df7459fcba1a466ddfe01e93512", + "file_id": "3257ae7a-48f2-4bad-880b-dcbaabd0a697", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1463-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "171f7917-69eb-4a3f-9cc0-0e1dffd412c1", + "entity_id": "939d41b7-9ccb-4cf6-be16-f2792aece5eb" + } + ], + "file_name": "df5a89e9-3a01-45b0-aa49-c0ff89e726b4.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_55_MirnaExpression910a5ea3-9a73-47e0-a59b-247b13b77f16_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1463-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_55_AlignedReads910a5ea3-9a73-47e0-a59b-247b13b77f16", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 155301680, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "58c2c5e4fbfcfcda04a61b50621b765a", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "ac438b58-59fb-401a-8cf1-e2ef236baf1c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_55_MirnaExpressionWorkflow1eb36c8b-c552-44b7-8801-79615df5a28e_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "910ac05d-2ad6-42ab-9e25-49d656670bf2", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 372744, + "md5sum": "9eb873b6794c1c5a585b73d7fec0f123", + "file_id": "9fedc221-c922-47b7-9046-c6fcf06e5ada", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2260-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "f2ce00e4-0d4f-4faa-bee1-ddf1b306e97b", + "entity_id": "862bbbd2-974a-4c4c-bb61-5a97e84ac977" + } + ], + "file_name": "fff42272-072c-49f3-bd29-3862e50ed9d3.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_22_MirnaExpressionf68f44e4-5413-4034-9261-5c728d8578f0_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2260-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_22_AlignedReadsf68f44e4-5413-4034-9261-5c728d8578f0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 291178044, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "9c028be7acbfc730c9003c37c0c68447", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "9baa7a53-ca60-4764-a6e2-3e801a98e235", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_22_MirnaExpressionWorkflow05c7ba08-f719-4f3c-9017-e1815f730e40_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "577ad807-ae5d-4625-b614-9ff5b9f13c26", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 429073, + "md5sum": "42226e55adae9f9a9238400bee0215fe", + "file_id": "738ba401-4df7-48fb-b141-dfd811c72fbf", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-59-A5PD-01A-11R-A407-13", + "entity_type": "aliquot", + "case_id": "7ebc776e-bde1-4563-adb1-8bd441872733", + "entity_id": "73ae6f0a-9aab-4049-853c-9c1f6d02bffc" + } + ], + "file_name": "fb28f9e2-9d63-4414-baa4-1479b3d26e4f.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_4_MirnaExpression19e38fcb-eda6-4d6e-b549-60915c343eb7_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-59-A5PD-01A-11R-A407-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_4_AlignedReads19e38fcb-eda6-4d6e-b549-60915c343eb7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 305033075, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "e9bc5164c546fe1db216b200e29d8b03", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "151d23bd-45b7-443f-9bad-899a0bc2ca2b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_4_MirnaExpressionWorkflow5124773b-16fa-4a52-8bba-6d0b1260b6ce_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1c2afcb4-69ab-4a31-a51f-55bd6aced730", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 494304, + "md5sum": "2cb211641cacb474f21b11cac5e1cdc5", + "file_id": "703712ff-be4e-475e-b339-51ba652f6dce", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2029-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "bbbf1184-1e19-479a-b31f-daa692d52e02", + "entity_id": "43e4eb81-300c-44fe-9ed2-8fe7d3d39b66" + } + ], + "file_name": "4cedeef4-d1a0-4016-83fc-c21bd6fbe551.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_345_MirnaExpression901d0e5c-1d68-44ea-a47f-0f0584ad5d37_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-24-2029", + "notes": "[intgen.org]: Prior Malignancy", + "submitter_id": "655", + "classification": "Notification", + "entity_id": "bbbf1184-1e19-479a-b31f-daa692d52e02", + "created_datetime": "2010-09-02T00:00:00", + "annotation_id": "1149c1e3-b13a-5fc5-9122-bce312fbbc41", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "bbbf1184-1e19-479a-b31f-daa692d52e02", + "state": "released", + "category": "Prior malignancy", + "status": "Approved", + "case_submitter_id": "TCGA-24-2029" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2029-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_345_AlignedReads901d0e5c-1d68-44ea-a47f-0f0584ad5d37", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 206717695, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "7eb265ac36979f70567b8787e713ff23", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "63a16ce2-3166-4839-9824-cf6aec4a199d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_345_MirnaExpressionWorkflow8b5a7980-bedf-4e7b-9b1a-bb70726aa661_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5b25e6e2-3b08-40de-b856-31527a8f8a85", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 416582, + "md5sum": "fbd2fb45288152cd00df1987444358d5", + "file_id": "cf7bb560-9c16-47ef-a01f-9b634cc8446a", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2029-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "bbbf1184-1e19-479a-b31f-daa692d52e02", + "entity_id": "43e4eb81-300c-44fe-9ed2-8fe7d3d39b66" + } + ], + "file_name": "4cedeef4-d1a0-4016-83fc-c21bd6fbe551.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_345_MirnaExpression901d0e5c-1d68-44ea-a47f-0f0584ad5d37_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-24-2029", + "notes": "[intgen.org]: Prior Malignancy", + "submitter_id": "655", + "classification": "Notification", + "entity_id": "bbbf1184-1e19-479a-b31f-daa692d52e02", + "created_datetime": "2010-09-02T00:00:00", + "annotation_id": "1149c1e3-b13a-5fc5-9122-bce312fbbc41", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "bbbf1184-1e19-479a-b31f-daa692d52e02", + "state": "released", + "category": "Prior malignancy", + "status": "Approved", + "case_submitter_id": "TCGA-24-2029" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2029-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_345_AlignedReads901d0e5c-1d68-44ea-a47f-0f0584ad5d37", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 206717695, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "7eb265ac36979f70567b8787e713ff23", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "63a16ce2-3166-4839-9824-cf6aec4a199d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_345_MirnaExpressionWorkflow8b5a7980-bedf-4e7b-9b1a-bb70726aa661_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5b25e6e2-3b08-40de-b856-31527a8f8a85", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50395, + "md5sum": "485cb0889cf0e823821d7ae6cc9868be", + "file_id": "f9d4818a-dbce-42e3-a9d2-4ed427e4f677", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1338-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "31872f6a-d225-4f91-b38d-4505d19e406c", + "entity_id": "d248cbe1-f6e1-4456-920e-2e1c29441c87" + } + ], + "file_name": "e9dcc282-3fcd-4f6c-b33d-70380cbf3201.mirnaseq.mirnas.quantification.txt", + "submitter_id": "6e09dc5e-6919-4136-a137-969a7ee2ba73", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9889687420486523, + "total_reads": 25730701, + "access": "controlled", + "file_name": "d248cbe1-f6e1-4456-920e-2e1c29441c87_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004558, + "proportion_reads_duplicated": 0, + "submitter_id": "1faab853-5b9e-4210-bd7c-226423063563", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 435952391, + "created_datetime": "2024-09-20T11:13:17.399339-05:00", + "average_base_quality": 36, + "md5sum": "16f76d2f68287b04a7eb9dd0cb3ddc78", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "7eaf5fc0-e688-43d6-954a-62249daab40f", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 32, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "e9dcc282-3fcd-4f6c-b33d-70380cbf3201_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "6e00ea3f-9a2d-4d71-9903-75b0416049a8", + "created_datetime": "2024-09-20T11:17:11.095760-05:00" + }, + "file_size": 50821, + "md5sum": "4b037723d042bc7b5d2f89039fb203c2", + "file_id": "f1ca9d7d-90d7-423a-ab4b-3d93ccced65d", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1335-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "ab3dbbbe-eed6-4a35-a505-1815225e86c9", + "entity_id": "6af34bd0-c3c5-45f3-881f-be5dded7f335" + } + ], + "file_name": "4daf8c79-d47b-4be2-a037-9f7b87b0fa7b.mirnaseq.mirnas.quantification.txt", + "submitter_id": "7b58dae8-cb2e-46d2-b40a-edeac16fab36", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-04-1335", + "notes": "[schaefc]: Pathology indicates Stage I disease", + "submitter_id": "680", + "classification": "Observation", + "entity_id": "ab3dbbbe-eed6-4a35-a505-1815225e86c9", + "created_datetime": "2010-07-30T00:00:00", + "annotation_id": "18bac3ce-7eb0-5385-bbb8-1a8e197b9fd4", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "ab3dbbbe-eed6-4a35-a505-1815225e86c9", + "state": "released", + "category": "Item may not meet study protocol", + "status": "Approved", + "case_submitter_id": "TCGA-04-1335" + } + ], + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9842354430725464, + "total_reads": 25556887, + "access": "controlled", + "file_name": "6af34bd0-c3c5-45f3-881f-be5dded7f335_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005626034, + "proportion_reads_duplicated": 0, + "submitter_id": "c3ed7bfa-331b-41f8-84b2-5d3b98535fb5", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 454477572, + "created_datetime": "2024-09-20T11:12:48.956359-05:00", + "average_base_quality": 36, + "md5sum": "17bda706e34c64c6d4a8e44630d08e1f", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "ba377426-f9e6-4742-ad47-9f107642b0fe", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 30, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "4daf8c79-d47b-4be2-a037-9f7b87b0fa7b_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c8ba37bb-9efe-4ec4-9907-76eb848aec7e", + "created_datetime": "2024-09-20T11:16:56.643703-05:00" + }, + "file_size": 50735, + "md5sum": "437e42411d42418a9e82f9d5f51d4ba4", + "file_id": "e9f9a37b-9744-4dfd-9702-388856d3899b", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1784-01A-02R-1567-13", + "entity_type": "aliquot", + "case_id": "23d32627-9fd2-4312-bcda-ee7409e3983f", + "entity_id": "c72e442b-36f5-4ea6-a893-505b5ccd8c4f" + } + ], + "file_name": "2c2b36e6-6508-405e-bc84-1d8b929fd6b9.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_254_MirnaExpression0f587263-c5a9-47b8-8fca-e7c51d710f10_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1784-01A-02R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_254_AlignedReads0f587263-c5a9-47b8-8fca-e7c51d710f10", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 264941763, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "812db46e1dc5e767c4382e905d0a48fb", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b170ae61-6c94-43df-9eae-950c521615af", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_254_MirnaExpressionWorkflowe0860d36-512d-4671-90d9-20b5f35000f9_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "862ec37f-4a8e-44f6-b96b-bf94ca0c74ee", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 420905, + "md5sum": "37b9441c3bff698bbe2dacf4e7f7838e", + "file_id": "bf43b446-d9c9-4b4d-afae-e435dc39bf74", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1918-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "3491d67a-4f83-4f67-8085-bbb9fe942be5", + "entity_id": "62f75d97-ea9e-4694-8c83-1a0e6d137a02" + } + ], + "file_name": "a9fbcbb3-0d3f-483f-8286-c23f7b1fef31.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_17_MirnaExpression1f030800-9ce5-40a5-8b90-67aa91f9ac11_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1918-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_17_AlignedReads1f030800-9ce5-40a5-8b90-67aa91f9ac11", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 437546050, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "5739b8746d5c25bfd1bf779386d18bb9", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "88898528-4ce4-4762-8057-030844fa21ce", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_17_MirnaExpressionWorkflow65a08322-6f27-4ac2-899f-5df9a55f40e3_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2ccd5f42-0af5-4a66-a0e8-1285b1c9545a", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50557, + "md5sum": "ab4c2dd47ae82aef12918cd36f613217", + "file_id": "a3cdbdc5-ea49-4d9f-9ce3-9492c42fc996", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1725-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "a6eb0cd0-fe57-41b0-8593-776208684293", + "entity_id": "748ff969-cb49-4f22-994f-6debe734c38f" + } + ], + "file_name": "b420b0bf-ed7e-4299-8ee1-b344b971231b.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_180_MirnaExpressionabd41116-4a7e-4030-b7b6-76b30d6f93c8_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1725-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_180_AlignedReadsabd41116-4a7e-4030-b7b6-76b30d6f93c8", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 187164150, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "69ecb3ed4d5dacddda0f0b664aae3227", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a75e626e-496e-42e7-816c-28844ac2809b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_180_MirnaExpressionWorkflowfb6c56f6-21ff-49d9-b7a6-cde1a78de154_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c3d6dcb6-9ee6-4d86-ba25-d973c08e0eca", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 385534, + "md5sum": "2f377fba6428cd8f2e33a49c4b62ba9d", + "file_id": "8dd54e85-462e-4b50-adb6-aa89379ab05d", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1995-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "931738a7-4b5b-46dc-b69f-72600862d8af", + "entity_id": "13b2c972-c6ef-4d1f-8ada-f831d2606023" + } + ], + "file_name": "00ed6a2a-f49f-4fde-b82d-6405562a6976.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_433_MirnaExpression61dc9c27-16fa-4bad-9b84-d86547e5d53e_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1995-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_433_AlignedReads61dc9c27-16fa-4bad-9b84-d86547e5d53e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 134484449, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "f7e8f2436392b4f6cfd5bc89f9dc4d97", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "32514a51-fb88-4605-a46a-d33b9634aaa5", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_433_MirnaExpressionWorkflowe9120655-120e-4c6a-a97b-e12a14d8163f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "9e17167d-fa5b-406e-ace6-376ed6b7e3aa", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 329978, + "md5sum": "08aeba8ef1e9e9091dc4aa0c16f18bf6", + "file_id": "b66b00b9-6f9c-4745-acdf-47ca241cfb5e", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2036-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "c9226204-cb61-40b8-8a94-a7e71c14ea3a", + "entity_id": "788ade22-382b-49ca-b2b1-447a2072d0ea" + } + ], + "file_name": "3446bcfb-1b6a-4863-a481-f19e4474d9b0.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_430_MirnaExpressionae0fe71b-0b7f-4424-81fe-abd8dfb82e35_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-24-2036", + "notes": "Prior malignancy breast cancer treated with systemic treatment per path report.", + "submitter_id": "11931", + "classification": "Notification", + "entity_id": "c9226204-cb61-40b8-8a94-a7e71c14ea3a", + "created_datetime": "2012-11-10T00:00:00", + "annotation_id": "60110db8-dd2e-5801-9e6c-22527b3ebfdc", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "c9226204-cb61-40b8-8a94-a7e71c14ea3a", + "state": "released", + "category": "History of unacceptable prior treatment related to a prior/other malignancy", + "status": "Approved", + "case_submitter_id": "TCGA-24-2036" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2036-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_430_AlignedReadsae0fe71b-0b7f-4424-81fe-abd8dfb82e35", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 351624265, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "dd58839dd6c8ffb346213984a94990df", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "206df246-2cb7-4b22-85c7-7115b94e35ad", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_430_MirnaExpressionWorkflow85458f75-10f3-49fb-83ca-151a76610f89_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "93ce1cb9-6ace-4876-bc26-16345f8d65ed", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50522, + "md5sum": "f7821158219f5a3ddb9df842ec2af34d", + "file_id": "5b8804d9-b010-4abf-80a6-313003ef7649", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1031-01A-01R-A96U-41", + "entity_type": "aliquot", + "case_id": "c7c3fe4a-327a-4b7e-a259-989b72971209", + "entity_id": "b7887bad-4a24-4033-b3a0-d2beffca4f9b" + } + ], + "file_name": "28a69387-df6e-4d1b-8d45-d74624a53136.mirnaseq.isoforms.quantification.txt", + "submitter_id": "f3f9b9a8-3e42-42b3-80f7-5c6d8348449f", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9916769827695565, + "total_reads": 25146770, + "access": "controlled", + "file_name": "b7887bad-4a24-4033-b3a0-d2beffca4f9b_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.002598953, + "proportion_reads_duplicated": 0, + "submitter_id": "f9a4daa2-66c2-488a-9768-0286e8fbd1fc", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 473959208, + "created_datetime": "2024-09-20T11:13:11.170073-05:00", + "average_base_quality": 36, + "md5sum": "138156a87846eb78fa1e1842a550e93b", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "bf0070d8-5415-4f0e-b53d-a3aee745a375", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 35, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "28a69387-df6e-4d1b-8d45-d74624a53136_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "fa7074bc-cc61-4748-8b3b-75a7c474df47", + "created_datetime": "2024-09-20T11:17:43.117874-05:00" + }, + "file_size": 380720, + "md5sum": "5b2613a5e9fb6ae6cf2abc28abb075db", + "file_id": "3f29aff9-f28c-4178-b6af-2116506b475a", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2002-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "85bb4987-51e7-40fe-ad59-2aa56754eca9", + "entity_id": "14cd154a-6ea5-4ad9-92e4-72f53ee5d60b" + } + ], + "file_name": "33ec3a0b-ff6a-44b1-aeb8-c72e3e50336c.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_25_MirnaExpression8bcab26b-5f07-4caf-a8d7-92518284be7d_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2002-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_25_AlignedReads8bcab26b-5f07-4caf-a8d7-92518284be7d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 178061834, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "0ee3be36733903359e4f82f038bfa77a", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "21490770-f590-4181-a11c-6f6383040d61", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_25_MirnaExpressionWorkflow12ae1357-532f-4f51-bc52-fbe52001e491_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "94f0a62e-bc1e-49f4-bd91-b2d5ac5b913b", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 363775, + "md5sum": "e150f0d70f43ed26520d643fda55a45b", + "file_id": "cc2916c9-4917-4d0a-a2a0-5ca43f3fb6a9", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2267-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "99a61986-7b23-46b5-99a4-efba6bad3766", + "entity_id": "9ebb3535-6536-49fc-a88b-473235972378" + } + ], + "file_name": "b1c0b5c7-626f-4708-a432-9194287c35fa.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_47_MirnaExpression9317eef2-9825-4da4-a6a2-a96a2690ccd9_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2267-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_47_AlignedReads9317eef2-9825-4da4-a6a2-a96a2690ccd9", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 245639768, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "430d5c85e0af3152383f0586ea52a526", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "f4d91d93-4175-4e5e-8dbd-ebc440736bab", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_47_MirnaExpressionWorkflow4203e104-8311-4d13-b4a6-dba833d5dc2d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ae6c3f65-b953-4246-be2e-0b623a4c54f8", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50361, + "md5sum": "207fdc917787486ceb90031b5c928190", + "file_id": "aded3597-9cb6-4811-9231-daa7887f9307", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-2645-01A-01R-A96U-41", + "entity_type": "aliquot", + "case_id": "66a0df9b-096b-4e8e-9b9c-54bf8637720b", + "entity_id": "4180bd35-261c-4a94-b74c-9786264aeff0" + } + ], + "file_name": "68dd81a3-d1d8-4562-9127-17b4db200be1.mirnaseq.isoforms.quantification.txt", + "submitter_id": "818c853f-5e53-4c5c-a7e8-aff3b97fc6c3", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9913630888207493, + "total_reads": 23086610, + "access": "controlled", + "file_name": "4180bd35-261c-4a94-b74c-9786264aeff0_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004128823, + "proportion_reads_duplicated": 0, + "submitter_id": "4c740416-d554-48cf-a90b-3fa8b2dfa0ee", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 384870235, + "created_datetime": "2024-09-20T11:14:24.663198-05:00", + "average_base_quality": 36, + "md5sum": "e16dba671a07b00d35a40b63c0669c57", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "fddb42ea-3b8a-4680-8b55-ed2d20454d71", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "68dd81a3-d1d8-4562-9127-17b4db200be1_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0a407c93-25dd-44d2-a592-4913e15275cb", + "created_datetime": "2024-09-20T11:18:05.964886-05:00" + }, + "file_size": 618815, + "md5sum": "09630d21e2e0177853e6671a9eb111ff", + "file_id": "b1ab9fd9-4057-48ce-85e3-1f8c658fd0b0", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-2054-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "cbd87697-7708-4b69-9e50-9ee474feabe1", + "entity_id": "5cd7faa0-323a-4ea3-a658-859d0336e0ac" + } + ], + "file_name": "0caa173c-a21a-485f-badd-562cd6b415c2.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_288_MirnaExpressionb59c537b-c3e4-4282-923f-16a3440957f0_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-2054-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_288_AlignedReadsb59c537b-c3e4-4282-923f-16a3440957f0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 301707622, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "7af10728f4ecec5d3b4c1ee24ceaa979", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6d49e1a6-c514-42a8-817a-7795201ad66b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_288_MirnaExpressionWorkflowe3171110-c381-4a35-a901-5a3169b946ad_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f0af7115-57ca-4094-a6fe-01aedefc4e06", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 522942, + "md5sum": "75c12405db0f6b70fe490812202e7320", + "file_id": "aa4f7849-9b39-420a-a6bf-b4bbec785260", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1654-01A-02R-1567-13", + "entity_type": "aliquot", + "case_id": "ff33db70-91d4-4dbb-a4fc-d81a128d0f32", + "entity_id": "206d96d4-2215-45d3-ab87-156cddbcbbee" + } + ], + "file_name": "39a34789-fd59-4215-b6f2-e6a1c8d5ba92.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_379_MirnaExpression0362c8a7-81b8-47ae-92d5-c5115c021b56_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1654-01A-02R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_379_AlignedReads0362c8a7-81b8-47ae-92d5-c5115c021b56", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 206350903, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "5942413393e18f0027db09320a95eb98", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "755184a0-2b82-461d-98a1-8f5a7f6ee2d6", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_379_MirnaExpressionWorkflowa41f4638-c837-436c-ae40-8b4f4385e232_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c98c7bd6-4004-4460-a502-abdf88c71965", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50285, + "md5sum": "80eb7cc72d1bd921a4ecd35ddb454309", + "file_id": "8537bf67-17d6-4e5e-ab15-6b6300c2d874", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1654-01A-02R-1567-13", + "entity_type": "aliquot", + "case_id": "ff33db70-91d4-4dbb-a4fc-d81a128d0f32", + "entity_id": "206d96d4-2215-45d3-ab87-156cddbcbbee" + } + ], + "file_name": "39a34789-fd59-4215-b6f2-e6a1c8d5ba92.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_379_MirnaExpression0362c8a7-81b8-47ae-92d5-c5115c021b56_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1654-01A-02R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_379_AlignedReads0362c8a7-81b8-47ae-92d5-c5115c021b56", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 206350903, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "5942413393e18f0027db09320a95eb98", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "755184a0-2b82-461d-98a1-8f5a7f6ee2d6", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_379_MirnaExpressionWorkflowa41f4638-c837-436c-ae40-8b4f4385e232_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c98c7bd6-4004-4460-a502-abdf88c71965", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 355565, + "md5sum": "009d8a506b094d3c42da063ac9095bc8", + "file_id": "4f63a09d-d0f9-4859-a008-df3d83cfff2e", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-2399-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "ad2b1a0a-153f-483d-b228-5763eba3f6cc", + "entity_id": "28a681dc-3e0f-4a9c-ad0c-f2bb10aab0e1" + } + ], + "file_name": "df348536-bdd8-4747-8d10-bd23cb16709b.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_396_MirnaExpression7f99a332-f4a0-46ac-a842-fad07501a8fe_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-2399-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_396_AlignedReads7f99a332-f4a0-46ac-a842-fad07501a8fe", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 334878551, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "7ce7af5cf0ae8e9604cee601f1190237", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "041e55e4-71c0-4a65-8b9d-95079024ed3b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_396_MirnaExpressionWorkflow5f8b4ef3-17d4-420c-89e6-4d8c6fad4e46_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "fe264370-5916-4651-93dd-e18d7d331356", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50633, + "md5sum": "868b874317331f62a0761cd35bd51450", + "file_id": "830cb854-788a-4eb3-8940-17dc10d3ebf3", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0765-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "774ce281-96b2-467a-9170-079797ee10f7", + "entity_id": "d5c33d85-54da-455b-aa65-aaec79af99b0" + } + ], + "file_name": "bff64718-2f96-4e0a-9376-ccf2f0f16ff3.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_195_MirnaExpression3a66ad67-26f0-4ab4-b2c2-43bc1d06268f_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "12ccfa15-3f80-5d0f-b208-b5efa625cc3a", + "entity_submitter_id": "TCGA-13-0765-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:32:20.747393-05:00", + "submitter_id": "8768", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "d5c33d85-54da-455b-aa65-aaec79af99b0", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "1c9e27c8-5234-567e-a12f-45ad6f03f549", + "entity_submitter_id": "TCGA-13-0765-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29721", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "d5c33d85-54da-455b-aa65-aaec79af99b0", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0765-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_195_AlignedReads3a66ad67-26f0-4ab4-b2c2-43bc1d06268f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 141252123, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "4bda7e2e45944707db137db143680223", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "984a0cf3-aa2d-40d9-b9d9-263e31d32c06", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_195_MirnaExpressionWorkflow489c1bad-cf18-4b4b-a37d-2c5594b73e41_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8612b6da-7460-48bc-8648-01f8f5fc15ce", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50181, + "md5sum": "016383af3d9a670d06ee57302e962c89", + "file_id": "7f6b44e4-c1c8-4f50-b8af-f89a33005e6b", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2008-02A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "3ac45a71-c463-4f0f-b030-58c475a34418", + "entity_id": "b90a4b33-cb6f-4c75-bc26-ff316ea81cce" + } + ], + "file_name": "a177947e-4ac4-431d-a431-54c756eaabd2.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_316_MirnaExpression1cb1fb99-303d-4d37-b7dc-d1c510dbe534_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "63a066da-9d2d-5af6-8bf5-8cc6a446ed9f", + "entity_submitter_id": "TCGA-61-2008-02A-01R", + "notes": "Ovary Triplet", + "entity_type": "analyte", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "1480", + "state": "released", + "category": "Item is noncanonical", + "classification": "Notification", + "entity_id": "1f57d960-8019-4aa5-a498-11c034287817", + "created_datetime": "2011-03-14T00:00:00", + "status": "Approved" + }, + { + "entity_submitter_id": "TCGA-61-2008", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1240", + "classification": "Notification", + "entity_id": "3ac45a71-c463-4f0f-b030-58c475a34418", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "af8333d7-1e5f-5f01-97c2-f0f6f4fb8601", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "case_id": "3ac45a71-c463-4f0f-b030-58c475a34418", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-61-2008" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2008-02A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_316_AlignedReads1cb1fb99-303d-4d37-b7dc-d1c510dbe534", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 256647145, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "8185dea28c561eb77b593539c7ac0635", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "8f50895e-aeed-4cb5-ac88-47266f747a2d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_316_MirnaExpressionWorkflowf2e3d410-28b1-4966-8cc3-76b167b0ca83_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c5755806-929a-430e-9327-11533b45f148", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 505422, + "md5sum": "a95a410d04a4f611786da7925e673152", + "file_id": "2ddbcaf5-b12d-40d2-a14e-0061f8a9a9da", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0791-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "90118207-8f11-4784-ac1b-0deec2e7af3a", + "entity_id": "4754bccc-d595-4459-a152-58dd52c3be97" + } + ], + "file_name": "199502b9-4230-43df-a904-659ffe33e794.mirnaseq.isoforms.quantification.txt", + "submitter_id": "2e8b8f5f-b5bd-44e6-9f2d-ba39235c7b9d", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-0791", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1238", + "classification": "Notification", + "entity_id": "90118207-8f11-4784-ac1b-0deec2e7af3a", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "b713b5b5-ecc3-5732-a334-4de313844399", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "90118207-8f11-4784-ac1b-0deec2e7af3a", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-13-0791" + } + ], + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9909054974203908, + "total_reads": 16464122, + "access": "controlled", + "file_name": "4754bccc-d595-4459-a152-58dd52c3be97_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003923555, + "proportion_reads_duplicated": 0, + "submitter_id": "0269ddd4-dd6f-42ea-a221-767b22457a0b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 292348344, + "created_datetime": "2024-09-20T11:13:00.230525-05:00", + "average_base_quality": 36, + "md5sum": "0a9c1f4a92ef34ed73b06ad841fbe117", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "1a88a4a9-d41d-40f0-a3dc-93a6438bd4f9", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 34, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "199502b9-4230-43df-a904-659ffe33e794_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "9eca1fab-39fa-4b55-b8d2-0ee01357ad2d", + "created_datetime": "2024-09-20T11:17:32.638357-05:00" + }, + "file_size": 534358, + "md5sum": "f527c1a7e82b0273f96bc6b8f9f80336", + "file_id": "b4fd1a4e-dfe6-4d2b-a6e0-9869129a9bd6", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0791-02A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "90118207-8f11-4784-ac1b-0deec2e7af3a", + "entity_id": "b45d2df2-d334-4029-bd4d-59572796d577" + } + ], + "file_name": "aa4bfbb3-fdfc-4389-b565-ac2e90c77739.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_304_MirnaExpressionf39442b1-84a6-440a-aba2-daebc42c65ac_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-0791-02A-01R", + "notes": "Ovary Triplet", + "submitter_id": "1821", + "classification": "Notification", + "entity_id": "a481062e-11b4-4990-af2f-39906693795e", + "created_datetime": "2011-03-14T00:00:00", + "annotation_id": "72f1db4f-9ded-537c-b92c-5c653817a1e3", + "entity_type": "analyte", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "90118207-8f11-4784-ac1b-0deec2e7af3a", + "state": "released", + "category": "Item is noncanonical", + "status": "Approved", + "case_submitter_id": "TCGA-13-0791" + }, + { + "entity_submitter_id": "TCGA-13-0791", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1238", + "classification": "Notification", + "entity_id": "90118207-8f11-4784-ac1b-0deec2e7af3a", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "b713b5b5-ecc3-5732-a334-4de313844399", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "90118207-8f11-4784-ac1b-0deec2e7af3a", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-13-0791" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0791-02A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_304_AlignedReadsf39442b1-84a6-440a-aba2-daebc42c65ac", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 151215414, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "4f61931697d64ab9ff717fba5000b1e7", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "2e164d33-3bb9-434c-b412-4632e59141b5", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_304_MirnaExpressionWorkflow87edfc09-0798-41c2-bf59-4f76220c0b1c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ef5d94ca-a4a4-4e95-b4c2-ba23215bba9c", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 373370, + "md5sum": "f24a7085556df79a6464d727255f4234", + "file_id": "0ca77382-0f14-400c-91e7-ffaa90162dad", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0791-02A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "90118207-8f11-4784-ac1b-0deec2e7af3a", + "entity_id": "b45d2df2-d334-4029-bd4d-59572796d577" + } + ], + "file_name": "aa4bfbb3-fdfc-4389-b565-ac2e90c77739.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_304_MirnaExpressionf39442b1-84a6-440a-aba2-daebc42c65ac_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-0791-02A-01R", + "notes": "Ovary Triplet", + "submitter_id": "1821", + "classification": "Notification", + "entity_id": "a481062e-11b4-4990-af2f-39906693795e", + "created_datetime": "2011-03-14T00:00:00", + "annotation_id": "72f1db4f-9ded-537c-b92c-5c653817a1e3", + "entity_type": "analyte", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "90118207-8f11-4784-ac1b-0deec2e7af3a", + "state": "released", + "category": "Item is noncanonical", + "status": "Approved", + "case_submitter_id": "TCGA-13-0791" + }, + { + "entity_submitter_id": "TCGA-13-0791", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1238", + "classification": "Notification", + "entity_id": "90118207-8f11-4784-ac1b-0deec2e7af3a", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "b713b5b5-ecc3-5732-a334-4de313844399", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "90118207-8f11-4784-ac1b-0deec2e7af3a", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-13-0791" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0791-02A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_304_AlignedReadsf39442b1-84a6-440a-aba2-daebc42c65ac", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 151215414, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "4f61931697d64ab9ff717fba5000b1e7", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "2e164d33-3bb9-434c-b412-4632e59141b5", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_304_MirnaExpressionWorkflow87edfc09-0798-41c2-bf59-4f76220c0b1c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ef5d94ca-a4a4-4e95-b4c2-ba23215bba9c", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50290, + "md5sum": "165d5a2f475716ceaaa55b3402630e30", + "file_id": "d27cc176-5113-45a9-a7ba-0beb39a6275f", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0791-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "90118207-8f11-4784-ac1b-0deec2e7af3a", + "entity_id": "4754bccc-d595-4459-a152-58dd52c3be97" + } + ], + "file_name": "199502b9-4230-43df-a904-659ffe33e794.mirnaseq.mirnas.quantification.txt", + "submitter_id": "5a03d045-dc50-46fc-a7be-de7afc29f8ad", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-0791", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1238", + "classification": "Notification", + "entity_id": "90118207-8f11-4784-ac1b-0deec2e7af3a", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "b713b5b5-ecc3-5732-a334-4de313844399", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "90118207-8f11-4784-ac1b-0deec2e7af3a", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-13-0791" + } + ], + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9909054974203908, + "total_reads": 16464122, + "access": "controlled", + "file_name": "4754bccc-d595-4459-a152-58dd52c3be97_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003923555, + "proportion_reads_duplicated": 0, + "submitter_id": "0269ddd4-dd6f-42ea-a221-767b22457a0b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 292348344, + "created_datetime": "2024-09-20T11:13:00.230525-05:00", + "average_base_quality": 36, + "md5sum": "0a9c1f4a92ef34ed73b06ad841fbe117", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "1a88a4a9-d41d-40f0-a3dc-93a6438bd4f9", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 34, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "199502b9-4230-43df-a904-659ffe33e794_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "9eca1fab-39fa-4b55-b8d2-0ee01357ad2d", + "created_datetime": "2024-09-20T11:17:32.638357-05:00" + }, + "file_size": 50606, + "md5sum": "1a72a34b067e25a06f8265bce6c2ac26", + "file_id": "58a0c1b0-5916-466c-9ba1-a1ee3f28f3c4", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1707-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "7fd6ab8a-201e-431d-a886-6ab553b6ca36", + "entity_id": "6cb867d8-f4fa-4802-a947-6820e8309213" + } + ], + "file_name": "cc6332c0-893e-4b1d-8248-f2f87b1cc933.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_294_MirnaExpression1019b848-e425-46a0-b9fb-441dacb7100a_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-29-1707", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1247", + "classification": "Notification", + "entity_id": "7fd6ab8a-201e-431d-a886-6ab553b6ca36", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "bb413d44-c130-5fcc-a7f6-ccc0de597a30", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "7fd6ab8a-201e-431d-a886-6ab553b6ca36", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-29-1707" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1707-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_294_AlignedReads1019b848-e425-46a0-b9fb-441dacb7100a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 162895520, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "9abe24e9564ae6ed6357b652628aa88b", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "cb0f478f-bae3-470b-9ce7-f5c8963cc2d4", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_294_MirnaExpressionWorkflow75039612-13d4-4bd4-bd80-a6d8cb67704c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f0f8916d-1e37-4b9a-9c98-b41457fd8cac", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 305399, + "md5sum": "9dacd788fc92d8dbff67a54c01250cc0", + "file_id": "508634ea-9a5b-46d2-a0a2-eadeafac0deb", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0791-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "90118207-8f11-4784-ac1b-0deec2e7af3a", + "entity_id": "54b4cbce-18fd-4cdd-819b-9becbd4c1e29" + } + ], + "file_name": "d3a67ee5-83cc-44a4-bb3f-8d7eb755ccf4.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_45_MirnaExpressioncfc1ceba-61ee-4659-8aec-722c746eaf3a_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-0791", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1238", + "classification": "Notification", + "entity_id": "90118207-8f11-4784-ac1b-0deec2e7af3a", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "b713b5b5-ecc3-5732-a334-4de313844399", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "90118207-8f11-4784-ac1b-0deec2e7af3a", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-13-0791" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0791-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_45_AlignedReadscfc1ceba-61ee-4659-8aec-722c746eaf3a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 196135003, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "8d034909b6833b060937b543c6eea8d8", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "74d930d3-7e27-42df-bfdb-eb15472388ea", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_45_MirnaExpressionWorkflow1bdafae9-cb23-4e0d-a109-4027a3ad2fad_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "84655afd-3679-45ce-8566-9ef8f9b00ec3", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 342822, + "md5sum": "5692c236cf1f99501f25c82d844ab225", + "file_id": "3109e81d-956d-4ea6-8d0a-5c2abe228e16", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1364-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "80f85c54-e12f-4afa-8fa5-5f3e083b6f95", + "entity_id": "2fadaf5a-402b-483d-bc26-08feb3dc162d" + } + ], + "file_name": "afc4a9bb-0dd1-42f1-8c4f-3cc912441a44.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_357_MirnaExpression16e22d12-6b41-4fc8-b418-eee75e76e8fd_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-04-1364", + "notes": "This subject was duplicated by TCGA-24-0981; 0981 was redacted and this one retained", + "submitter_id": "823", + "classification": "Observation", + "entity_id": "80f85c54-e12f-4afa-8fa5-5f3e083b6f95", + "created_datetime": "2010-10-28T00:00:00", + "annotation_id": "d86a2f83-303f-58e8-b24d-0c8d6c8cde39", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "80f85c54-e12f-4afa-8fa5-5f3e083b6f95", + "state": "released", + "category": "General", + "status": "Approved", + "case_submitter_id": "TCGA-04-1364" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1364-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_357_AlignedReads16e22d12-6b41-4fc8-b418-eee75e76e8fd", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 210783961, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "25ffe67e245625ca738fb6bf61bc6964", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b3ff2f1f-061c-4b65-a79a-64f99dd2e706", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_357_MirnaExpressionWorkflow8f9d7e24-ec76-437d-a26e-3281ae8c8c6d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "52c43164-4b60-464d-99cc-9377028a9c5b", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 452048, + "md5sum": "db66318c8ac6dc5409cc75f585d47db3", + "file_id": "b986edf0-8287-419c-8262-dc81f06ec211", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1411-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "a9d3a7b0-faf8-4e56-8600-d9e6882a4f23", + "entity_id": "0069c63d-f699-41d4-9798-9a109d1c09df" + } + ], + "file_name": "fd24d2f0-999d-44c5-a62e-141888de2c6d.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_420_MirnaExpressiondec97669-6658-4c56-a56f-da8c646b23a9_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1411-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_420_AlignedReadsdec97669-6658-4c56-a56f-da8c646b23a9", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 132319358, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "b90480516f5b15d995fd0ef3e2237a28", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "06084800-31dd-4b57-8d7b-983c18639a15", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_420_MirnaExpressionWorkflow6f8194f9-a431-45a0-aa37-8826095b957f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1fb9d946-4ea8-433d-b467-1b6bcd8bf07b", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 332402, + "md5sum": "6e2ed45ed088a5b662dd6cf80509b98b", + "file_id": "86ba6ad7-143e-46ac-a67b-c114a6b4676d", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2098-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "eb7c3b35-7a5e-4621-b31f-9775c51f9a23", + "entity_id": "d855f86a-f302-47fb-aa9f-5977632c695a" + } + ], + "file_name": "d21fe1b2-b8e2-42b7-8326-3659d4bf1736.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_65_MirnaExpression13b26bb3-bae6-4a10-90b9-bbcdd07a3e5e_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2098-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_65_AlignedReads13b26bb3-bae6-4a10-90b9-bbcdd07a3e5e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 328802376, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "49cfd69282155f46cce5b2e6fbc53b34", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "423e76cc-1efa-4ad2-a350-1bf6548ad9db", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_65_MirnaExpressionWorkflow91e06a99-2af9-487d-9215-d7bb3c78d8ce_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "757c392d-61d6-4704-8207-c08ab436e0a2", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50585, + "md5sum": "9c3ca8ffea3f122b0070e997f40d0f56", + "file_id": "63e4b723-a2f5-4936-a41f-93ee582e641e", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1635-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "bc2591b0-65d7-48c3-a5cc-783f67b65869", + "entity_id": "877d96a2-6e5c-472c-b190-59fcfd1febb4" + } + ], + "file_name": "6ab6b5fa-0704-4636-8a23-4916811be004.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_99_MirnaExpressionf715404b-653b-4fe7-9d2e-5aaf76af0c90_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1635-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_99_AlignedReadsf715404b-653b-4fe7-9d2e-5aaf76af0c90", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 136930444, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "dfffb48d9442cc9fc5e92a1a22aa55d7", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "d99cc8da-48a0-4a44-8220-51b3bb9b3a28", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_99_MirnaExpressionWorkflow19647358-49ff-4294-a05d-fd7f11161258_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8c443b75-2fc8-4b33-93af-8e68c777a7d6", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 359338, + "md5sum": "ea0d2cf17ccd31d738c32b8f30ecf40c", + "file_id": "a2075f67-4a27-4988-817e-f81455198c23", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-2072-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "1592af8e-8d11-4325-8a2b-e0c690b15b58", + "entity_id": "2d99a8f5-c707-4402-9bfb-cf46c5207eda" + } + ], + "file_name": "8c6b3fc8-d4d9-49c8-9bc3-915c4b99ff87.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_417_MirnaExpression7abd744a-96f4-47d4-a51f-7ad8bdddd81d_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-2072-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_417_AlignedReads7abd744a-96f4-47d4-a51f-7ad8bdddd81d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 180625524, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "29a0239060b6ba585c88a241971f6dcd", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6b25150e-f87d-4b22-ac4b-ca88dd7035b6", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_417_MirnaExpressionWorkflowa93990af-f549-4247-b07e-7052ddb68f04_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "3203d886-8303-405e-b0aa-c3e0886b65b4", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50330, + "md5sum": "44c4e82d44a436247ef6da1ac890fa56", + "file_id": "305f5852-36a9-4e9f-a1e6-e120799da4b8", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-57-1586-01A-02R-1567-13", + "entity_type": "aliquot", + "case_id": "48e66676-dbed-48a4-9a7f-a6d247b15c17", + "entity_id": "2dcac69e-7167-4979-8327-be74d2c1202b" + } + ], + "file_name": "b11f9bbf-5c77-43aa-8c58-17edc9f181a5.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_301_MirnaExpressione67d0056-9bdd-4e1c-8242-7eb4a9559606_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "55473a74-6d9e-5d6c-b729-37cd9ac95a56", + "entity_submitter_id": "TCGA-57-1586-01A-02R-1567-13", + "notes": "RNA-seq:HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8818", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "2dcac69e-7167-4979-8327-be74d2c1202b", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "e0cb9265-3b4a-5e09-99db-37ea1f5d0b41", + "entity_submitter_id": "TCGA-57-1586-01A-02R-1567-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29804", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "2dcac69e-7167-4979-8327-be74d2c1202b", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-57-1586-01A-02R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_301_AlignedReadse67d0056-9bdd-4e1c-8242-7eb4a9559606", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 214064809, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "effbbc7d6eea163960705dc556eb51ea", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "2bc98b5d-f8ba-419d-b305-e6323591f08f", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_301_MirnaExpressionWorkflow8129ee3d-27df-4b79-8734-41968a637b02_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "9eb2295d-4b67-4729-bb1a-494ebfa9fcb3", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 416450, + "md5sum": "c1f5a5dc778f0ba9902cbc84f58632e3", + "file_id": "5811f4e3-a4f9-475b-97fc-b7a147b7e780", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-0966-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "fef1696c-a8f4-4db6-8615-e486522baaaa", + "entity_id": "63a8de0c-927c-4faf-a596-841871ceb8f9" + } + ], + "file_name": "c3478c98-0e20-4059-8271-4b9afb66d6b4.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_144_MirnaExpression4b7495cf-ca96-48a2-85f2-4998ba13fba4_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-24-0966-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29775", + "classification": "CenterNotification", + "entity_id": "63a8de0c-927c-4faf-a596-841871ceb8f9", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "82b3ef18-7413-50f1-9d33-61f5af6be83b", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "case_id": "fef1696c-a8f4-4db6-8615-e486522baaaa", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-24-0966" + }, + { + "entity_submitter_id": "TCGA-24-0966-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "submitter_id": "8760", + "classification": "CenterNotification", + "entity_id": "63a8de0c-927c-4faf-a596-841871ceb8f9", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "c3b70b8d-c549-51b4-861c-41ddbc8584d7", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "case_id": "fef1696c-a8f4-4db6-8615-e486522baaaa", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-24-0966" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-0966-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_144_AlignedReads4b7495cf-ca96-48a2-85f2-4998ba13fba4", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 117095390, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "f4cd8a37869b009f25d8ce058da71a93", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5fab4f58-20cf-426c-9d4d-694db0100cc1", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_144_MirnaExpressionWorkflow7f63b24f-ca37-4f26-8ec4-3df1cb6b19ca_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "064323f8-eb0b-4f5d-82c0-7d809553e769", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 271482, + "md5sum": "cdcebb771b05e74b15a1f563d42c235d", + "file_id": "b92f7adb-0228-433c-8770-a22c9d326671", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-0966-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "fef1696c-a8f4-4db6-8615-e486522baaaa", + "entity_id": "63a8de0c-927c-4faf-a596-841871ceb8f9" + } + ], + "file_name": "c3478c98-0e20-4059-8271-4b9afb66d6b4.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_144_MirnaExpression4b7495cf-ca96-48a2-85f2-4998ba13fba4_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-24-0966-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29775", + "classification": "CenterNotification", + "entity_id": "63a8de0c-927c-4faf-a596-841871ceb8f9", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "82b3ef18-7413-50f1-9d33-61f5af6be83b", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "case_id": "fef1696c-a8f4-4db6-8615-e486522baaaa", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-24-0966" + }, + { + "entity_submitter_id": "TCGA-24-0966-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "submitter_id": "8760", + "classification": "CenterNotification", + "entity_id": "63a8de0c-927c-4faf-a596-841871ceb8f9", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "c3b70b8d-c549-51b4-861c-41ddbc8584d7", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "case_id": "fef1696c-a8f4-4db6-8615-e486522baaaa", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-24-0966" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-0966-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_144_AlignedReads4b7495cf-ca96-48a2-85f2-4998ba13fba4", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 117095390, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "f4cd8a37869b009f25d8ce058da71a93", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5fab4f58-20cf-426c-9d4d-694db0100cc1", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_144_MirnaExpressionWorkflow7f63b24f-ca37-4f26-8ec4-3df1cb6b19ca_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "064323f8-eb0b-4f5d-82c0-7d809553e769", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50068, + "md5sum": "fbe1ae31a7142cc0a416a20e960aaf50", + "file_id": "29a55ada-ed8f-4541-ad88-5e1f080cefbd", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1416-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "f9793a4b-c0e7-4475-bf80-69543b7ee2f6", + "entity_id": "67fcea16-d5bc-4edd-b66d-bfc5d56d976d" + } + ], + "file_name": "b6315f3a-b332-4b8a-8f32-682a5153eb3d.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_75_MirnaExpressiond1080745-ed0c-4a44-ba3d-3a2045c963fc_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1416-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_75_AlignedReadsd1080745-ed0c-4a44-ba3d-3a2045c963fc", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 153020440, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "1c9c3e6d7dff5d235c0a39d12f927415", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5e85308e-e22b-40a7-b775-aa2aa121c5e0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_75_MirnaExpressionWorkflowc16d354d-b31c-46e2-b0ef-31fd1ce83f96_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "701f5b05-3a8e-4620-aef4-e7839bdc098a", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50351, + "md5sum": "5966379c89dd29cbd9f8c45960d35123", + "file_id": "cd27feb0-46e2-46a0-9517-3e51f704526f", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-2044-01B-01R-1568-13", + "entity_type": "aliquot", + "case_id": "7d03ddb6-f3fe-4b50-8bba-514aa65e7d0e", + "entity_id": "658b4847-33bc-414c-a2bb-ce9379ef57bd" + } + ], + "file_name": "92aa4586-c552-41d1-9fbe-262d86d246df.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_276_MirnaExpression0066827a-2e18-4ada-93c1-c5aad1fa438f_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-2044-01B-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_276_AlignedReads0066827a-2e18-4ada-93c1-c5aad1fa438f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 351230229, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "0042c03110411b72cd24ec163fcc9f67", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "f68e85a5-acd8-406c-81d9-73911f2b0f45", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_276_MirnaExpressionWorkflowb7eb9053-e1e2-4b39-9d4e-d84683327fd1_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8ad38406-0dcd-4e39-ad8b-c88ab735593b", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50577, + "md5sum": "c3825493ce7cd325a156f08a233707bc", + "file_id": "65522b73-34ad-453e-8d5e-76916ffc7d59", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-2044-01B-01R-1568-13", + "entity_type": "aliquot", + "case_id": "7d03ddb6-f3fe-4b50-8bba-514aa65e7d0e", + "entity_id": "658b4847-33bc-414c-a2bb-ce9379ef57bd" + } + ], + "file_name": "92aa4586-c552-41d1-9fbe-262d86d246df.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_276_MirnaExpression0066827a-2e18-4ada-93c1-c5aad1fa438f_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-2044-01B-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_276_AlignedReads0066827a-2e18-4ada-93c1-c5aad1fa438f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 351230229, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "0042c03110411b72cd24ec163fcc9f67", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "f68e85a5-acd8-406c-81d9-73911f2b0f45", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_276_MirnaExpressionWorkflowb7eb9053-e1e2-4b39-9d4e-d84683327fd1_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8ad38406-0dcd-4e39-ad8b-c88ab735593b", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 545269, + "md5sum": "4dd7387dfce5c48b96afbced4fca72b2", + "file_id": "be63f4f7-8ed2-496a-8991-797f07635ff5", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1603-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "19427350-619b-4b9c-a3ba-37f667bb2843", + "entity_id": "f4187f4f-9c52-4065-818b-c884183a5a70" + } + ], + "file_name": "b69419cc-f6e0-4d44-bd54-1342f70a7a85.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_249_MirnaExpression54851eff-2777-4e55-a318-52a554dad30f_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1603-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_249_AlignedReads54851eff-2777-4e55-a318-52a554dad30f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 171706637, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "00895a75fb45a6e7d90c63fb5ca56dff", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "ef16655a-63ea-4483-839a-1bf28ad35e62", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_249_MirnaExpressionWorkflow037b24cb-1de4-4d44-bedc-4d964c6b4669_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7a9c6208-3d33-4e5b-b3e3-48f0001eda42", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 353734, + "md5sum": "a0c528f6744d66f8e1260f6bee58faef", + "file_id": "073365a1-e468-4e6f-956f-dd48680dbdd2", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-30-1714-01A-02R-1567-13", + "entity_type": "aliquot", + "case_id": "09820a33-80b1-42d0-8366-a0ddaf94b122", + "entity_id": "c990f93e-c4e1-4192-b948-31a5bda0ff72" + } + ], + "file_name": "f422d7b9-4f8f-4f7d-a6fd-2d0565afb8ef.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_266_MirnaExpression594d4ee3-2509-4ece-a420-0655dd6d02d7_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "349055b4-704a-51cf-8f76-2aeaaf922e55", + "entity_submitter_id": "TCGA-30-1714-01A-02R-1567-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8847", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "c990f93e-c4e1-4192-b948-31a5bda0ff72", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "c2722fa7-bd51-59f1-b070-e8b6adaebf6d", + "entity_submitter_id": "TCGA-30-1714-01A-02R-1567-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29799", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "c990f93e-c4e1-4192-b948-31a5bda0ff72", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-30-1714-01A-02R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_266_AlignedReads594d4ee3-2509-4ece-a420-0655dd6d02d7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 146830240, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "b6c0ddd7caf5555eb4aa32854bc675c6", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b990e9a1-0ee8-4924-8df2-bf2988185336", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_266_MirnaExpressionWorkflow29665790-5ac4-4c59-af37-bd87fa61c8f3_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c540d09e-9b8b-4684-815b-f1f6f9e31dbf", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 315010, + "md5sum": "f7983d08b7cafee56b7239bd284cd564", + "file_id": "dffb3669-74e6-40e2-a66a-06f493645ea3", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1652-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "d86adfac-56be-4a69-9315-5a90b4113e65", + "entity_id": "da29de91-fb96-4f2f-9e45-f305e03fcfea" + } + ], + "file_name": "017c892f-c964-4bb1-966b-959b87194658.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_437_MirnaExpressiond98ef41d-36e7-46c3-8e17-22e387b55210_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1652-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_437_AlignedReadsd98ef41d-36e7-46c3-8e17-22e387b55210", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 537882152, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "dfa6ab659d0a331dd39e62a87d95da67", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "8ad6040e-5a66-4e51-b097-47432895d674", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_437_MirnaExpressionWorkflowdf782079-f268-4cc4-8cda-d71d11bb0c88_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c6e80ce3-1f4f-4509-b19c-ffa8a7b42768", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 521623, + "md5sum": "68298a0a9c35a1ff409f54db0ddb7216", + "file_id": "bc578bea-5f48-409e-954b-c3477b901912", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1899-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "35b1bb47-b32b-4acd-8e5e-fe6bd56c0289", + "entity_id": "4abf6d40-51eb-4ef2-9730-0a97f3e6687a" + } + ], + "file_name": "5b6dce21-6736-48a0-a805-2e4a9b1c940c.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_39_MirnaExpression8b4346ae-f370-4411-a92b-db65b509a6c4_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1899-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_39_AlignedReads8b4346ae-f370-4411-a92b-db65b509a6c4", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 164824932, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "7fb134198fe0793e20db0ddc01de57d5", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4b70b30c-ea90-45ec-b2ce-918b7e14b92d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_39_MirnaExpressionWorkflow17c010d1-490a-4725-acd7-e0a54e5dc915_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "00b10ffd-7600-433b-8324-bbea39ac39b5", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50245, + "md5sum": "4d725bdea4879879455123cce2f9b592", + "file_id": "133ca53d-cbe1-433d-a539-21c1e1488106", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1491-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "c8febeef-8e7e-459e-88cb-8086692dc559", + "entity_id": "23af3387-f7a5-4217-b7f4-83937e7253f2" + } + ], + "file_name": "4cb6de9b-6a8f-49c5-913a-e951d2a78edb.mirnaseq.mirnas.quantification.txt", + "submitter_id": "b134b7a0-a2eb-4d6a-bdea-51c7eacbb070", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9924564606571002, + "total_reads": 19267746, + "access": "controlled", + "file_name": "23af3387-f7a5-4217-b7f4-83937e7253f2_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003569341, + "proportion_reads_duplicated": 0, + "submitter_id": "1427d592-0d3b-415b-8b43-741df73b6573", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 313736727, + "created_datetime": "2024-09-20T11:13:55.241641-05:00", + "average_base_quality": 36, + "md5sum": "8e2f2e6a28e8c127a23bf6d0c8d5634d", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "16bb662b-7fa7-464e-9668-e027f4dbc244", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 35, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "4cb6de9b-6a8f-49c5-913a-e951d2a78edb_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "334d18eb-4a25-47f7-995d-d4452fc3e8e0", + "created_datetime": "2024-09-20T11:17:40.646666-05:00" + }, + "file_size": 50520, + "md5sum": "495c8c6bd25a44877f2dd73cb83cfdda", + "file_id": "744805b4-efff-46d6-8054-e136486cd00a", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1525-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "2bb96e1e-6992-434d-83e5-2f03713b3911", + "entity_id": "efc8d6be-7a3c-4555-92db-3c0dde9a2982" + } + ], + "file_name": "cebb6715-88e3-4c25-bff6-15a7fc44d183.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_460_MirnaExpressiond544c844-4c06-458d-956d-99c7b63127d9_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1525-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_460_AlignedReadsd544c844-4c06-458d-956d-99c7b63127d9", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 160327031, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "2d39f214a63f69d5891cbd38c376a133", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "7335ce04-f58e-4ed9-855c-794bb0019d97", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_460_MirnaExpressionWorkflowd544b057-4e6a-4418-9721-872832ca38b5_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0383a1fb-5d0e-44c5-bc10-ca31fe0a42bd", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50353, + "md5sum": "d1dbe759ce7a049f703fc7500a7a2f86", + "file_id": "8f5f844f-98ad-4a2a-985d-06ff90901833", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1899-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "35b1bb47-b32b-4acd-8e5e-fe6bd56c0289", + "entity_id": "4abf6d40-51eb-4ef2-9730-0a97f3e6687a" + } + ], + "file_name": "5b6dce21-6736-48a0-a805-2e4a9b1c940c.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_39_MirnaExpression8b4346ae-f370-4411-a92b-db65b509a6c4_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1899-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_39_AlignedReads8b4346ae-f370-4411-a92b-db65b509a6c4", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 164824932, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "7fb134198fe0793e20db0ddc01de57d5", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4b70b30c-ea90-45ec-b2ce-918b7e14b92d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_39_MirnaExpressionWorkflow17c010d1-490a-4725-acd7-e0a54e5dc915_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "00b10ffd-7600-433b-8324-bbea39ac39b5", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 324046, + "md5sum": "3d54bdc4e0b18492d00910cb9b6019cf", + "file_id": "6350804a-48e5-4896-b66a-01ba29bd337c", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1525-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "2bb96e1e-6992-434d-83e5-2f03713b3911", + "entity_id": "eddb96f9-029e-4888-b48e-bab9ce94192a" + } + ], + "file_name": "a1981850-49b7-4841-9e58-dada0c3de058.mirnaseq.isoforms.quantification.txt", + "submitter_id": "4a543273-3195-4268-8e59-0b60f5877360", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.984892302747308, + "total_reads": 24895389, + "access": "controlled", + "file_name": "eddb96f9-029e-4888-b48e-bab9ce94192a_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005612245, + "proportion_reads_duplicated": 0, + "submitter_id": "cd2dc965-7d88-4808-868e-b1dcb99b9728", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 422393541, + "created_datetime": "2024-09-20T11:14:27.949993-05:00", + "average_base_quality": 36, + "md5sum": "82101e67c39185f60592d326a7f48895", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "08ffc4f6-3000-47c4-adac-6cbe104a50ee", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "a1981850-49b7-4841-9e58-dada0c3de058_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ed06e948-ea7a-4fa1-b03f-1ad225a64c9d", + "created_datetime": "2024-09-20T11:17:37.851757-05:00" + }, + "file_size": 592589, + "md5sum": "bffeb821ea7f1474b60285f650986bc6", + "file_id": "0077e63e-a8e4-4f78-be4c-8562af503794", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2101-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "5d1a54fe-e0df-4c17-b623-b649a136dc82", + "entity_id": "95970bdb-e1f2-49dc-903b-c30088cef71d" + } + ], + "file_name": "e82e5a67-9628-425e-9509-8e59dac8801e.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_330_MirnaExpressionb18ecb30-f351-4098-a99b-25540157b27b_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2101-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_330_AlignedReadsb18ecb30-f351-4098-a99b-25540157b27b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 180242517, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "19de71cbdf0a279b42ed1beab1da3483", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "ecb011a7-7df8-4dee-b26b-e1123b771c54", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_330_MirnaExpressionWorkflow82fefff7-7315-4a99-8df1-80501b42835f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ed788c75-207a-45ba-943d-2e0e049d27bb", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 382438, + "md5sum": "3bb7077cff62f99f5452f727353b08e8", + "file_id": "ff13ca63-d6e5-4f90-b6e1-11de047970ea", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0916-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "5f60bc2d-738f-43fc-a3fb-61ec6e80e3d4", + "entity_id": "63c52e46-68cf-4dac-9bd7-37081daa4474" + } + ], + "file_name": "955af0e2-8562-4ded-a3e5-9e88ee9def83.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_391_MirnaExpressionc3e2e43a-2578-44e4-a1fa-c2ab39db5bee_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0916-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_391_AlignedReadsc3e2e43a-2578-44e4-a1fa-c2ab39db5bee", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 138494179, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "f284594cb10ce58309d374f0eecc08fb", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "39e55ac6-7760-4df4-980b-2d1a5c1a2cfe", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_391_MirnaExpressionWorkflow9bb96291-dda3-4e53-b9e8-6e6eea32537f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "32e69b04-37f9-4e2e-bd88-c18ddf4dcdce", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50130, + "md5sum": "10b1451b76557327f99b26aaed0e3e74", + "file_id": "47b74b74-b798-4b95-9e25-d72f58bc3177", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0803-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "54cf3bfe-51c0-4cca-9054-bf76b05a9371", + "entity_id": "cdb89051-4ba2-411f-8ad8-c63f3fd471e6" + } + ], + "file_name": "97b587bc-f32b-4542-bed0-9a10f12488b2.mirnaseq.mirnas.quantification.txt", + "submitter_id": "b8e2e89e-f5e5-4b97-84ce-9f3cbf0c6c4b", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9807313236564908, + "total_reads": 22915326, + "access": "controlled", + "file_name": "cdb89051-4ba2-411f-8ad8-c63f3fd471e6_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004391067, + "proportion_reads_duplicated": 0, + "submitter_id": "4cde5e0e-c3f9-4b63-a2e3-26fb76b33576", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 393416749, + "created_datetime": "2024-09-20T11:13:12.856001-05:00", + "average_base_quality": 36, + "md5sum": "2fb7ef840c827358904154893ca32231", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "ad483108-80f3-478f-b70e-127782dbe34d", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 37, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "97b587bc-f32b-4542-bed0-9a10f12488b2_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "41792d0e-895e-40f6-ad7f-16c4786c5a2a", + "created_datetime": "2024-09-20T11:17:07.879031-05:00" + }, + "file_size": 50440, + "md5sum": "3a6d390548e7d06cf2d6e52d9c2a8055", + "file_id": "5112fa79-69f9-4366-bd3e-fcaaa67741e6", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0803-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "54cf3bfe-51c0-4cca-9054-bf76b05a9371", + "entity_id": "085a2e2a-3902-46c4-8a84-80690ce84ad5" + } + ], + "file_name": "261caf5a-43ec-4c1f-9627-781b234ff451.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_94_MirnaExpression252619f1-f696-4eac-913a-01738c6d5b56_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0803-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_94_AlignedReads252619f1-f696-4eac-913a-01738c6d5b56", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 132346665, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "6ec8ce926e3b4b967f873759eeabf075", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "fa8917df-5b6c-4e0e-a268-7ed107d7a097", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_94_MirnaExpressionWorkflow96912a4a-432e-434e-9a3f-cdbd0ad9214e_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "3a341043-c344-4266-aa7c-9bab98cd7260", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 219381, + "md5sum": "baa05f3f619f51ce5a14370ee784bffe", + "file_id": "5b7c4e7d-7170-4d09-a7b0-62422abc176c", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1111-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "6b2a9f9a-fe96-4311-a330-925c4ad36fe7", + "entity_id": "f38e46dc-67b9-448a-8d24-507291e55bca" + } + ], + "file_name": "e04fc9ad-f44a-49e4-b019-71fe06c85a44.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_125_MirnaExpressionc28d1e33-4697-4e60-8b63-bedf8f25a448_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1111-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_125_AlignedReadsc28d1e33-4697-4e60-8b63-bedf8f25a448", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 214601499, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "52af70ea4cfa76eaa8893f5cb3ac4b11", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "feda4001-5194-47eb-a0b3-ace95831cec4", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_125_MirnaExpressionWorkflow9983bb2d-c3f9-4658-83a6-868fb6a25545_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c8dac45f-4691-4951-b37b-179e705c0d7d", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 430235, + "md5sum": "679a2e2d47ab31cd3b6d57ec1001f7ac", + "file_id": "d09d2d08-5b71-4c3f-8d42-0aec8fe892f4", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0908-01B-01R-1565-13", + "entity_type": "aliquot", + "case_id": "0ba7b6cc-e5f5-47d7-859a-24e31aa336ab", + "entity_id": "5324831d-94be-40c6-bcb1-5b29bbbaab1b" + } + ], + "file_name": "b930e9a2-09a2-45bd-82dc-552afa7539ec.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_289_MirnaExpression8a7a4801-0743-4b16-af29-a735b2837136_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "5c0071d8-4189-5b3f-a207-93577e890993", + "entity_submitter_id": "TCGA-13-0908-01B-01R-1565-13", + "notes": "RNA-seq:HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8802", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "5324831d-94be-40c6-bcb1-5b29bbbaab1b", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "85e0ce64-aadd-5a81-bc77-833e767d14b2", + "entity_submitter_id": "TCGA-13-0908-01B-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29737", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "5324831d-94be-40c6-bcb1-5b29bbbaab1b", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0908-01B-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_289_AlignedReads8a7a4801-0743-4b16-af29-a735b2837136", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 178194658, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "fd5427e00495c97e0009201b8cfe639e", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "291f3f93-d049-491f-8ab6-fba2dc889cb0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_289_MirnaExpressionWorkflow2ff48852-3a9a-4592-846f-bacb1fdac7c5_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "830aeb29-7f88-43e0-8bcf-78524c1e1c48", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50406, + "md5sum": "8b945c062031c067ccfc699a7d9eef48", + "file_id": "d693f0be-e9c9-4be4-8a4f-3a256b846b8b", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1900-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "ef653772-e5d2-46ec-8610-f81d75d7353c", + "entity_id": "92adf6a1-4880-4ee4-8ebe-09a943dbfe04" + } + ], + "file_name": "4b69f0d4-5d54-418a-8fbf-b5e28a0c3652.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_167_MirnaExpressionb3497d09-923f-406e-bc3b-2393d3b11ba6_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1900-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_167_AlignedReadsb3497d09-923f-406e-bc3b-2393d3b11ba6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 382219920, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "ce63dd2094580bdab3d8a65d748c78e1", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "adaa83db-416a-4ee7-819e-476804cb647c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_167_MirnaExpressionWorkflow4666f8df-4d50-4c74-9836-e01f3cf1206a_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8bfb0d0c-f269-499c-ab04-a6bff2188485", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 474771, + "md5sum": "e8431ed91016686797bc2bd4cb29ea5b", + "file_id": "6089bed2-325c-4d2d-8723-f0d8afc762b2", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1900-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "ef653772-e5d2-46ec-8610-f81d75d7353c", + "entity_id": "92adf6a1-4880-4ee4-8ebe-09a943dbfe04" + } + ], + "file_name": "4b69f0d4-5d54-418a-8fbf-b5e28a0c3652.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_167_MirnaExpressionb3497d09-923f-406e-bc3b-2393d3b11ba6_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1900-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_167_AlignedReadsb3497d09-923f-406e-bc3b-2393d3b11ba6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 382219920, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "ce63dd2094580bdab3d8a65d748c78e1", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "adaa83db-416a-4ee7-819e-476804cb647c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_167_MirnaExpressionWorkflow4666f8df-4d50-4c74-9836-e01f3cf1206a_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8bfb0d0c-f269-499c-ab04-a6bff2188485", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50542, + "md5sum": "2bf7779d2999f37838f2ecf392f1101d", + "file_id": "f29dd584-9bef-4a38-9794-ee2bcbca74b5", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2260-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "f2ce00e4-0d4f-4faa-bee1-ddf1b306e97b", + "entity_id": "862bbbd2-974a-4c4c-bb61-5a97e84ac977" + } + ], + "file_name": "fff42272-072c-49f3-bd29-3862e50ed9d3.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_22_MirnaExpressionf68f44e4-5413-4034-9261-5c728d8578f0_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2260-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_22_AlignedReadsf68f44e4-5413-4034-9261-5c728d8578f0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 291178044, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "9c028be7acbfc730c9003c37c0c68447", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "9baa7a53-ca60-4764-a6e2-3e801a98e235", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_22_MirnaExpressionWorkflow05c7ba08-f719-4f3c-9017-e1815f730e40_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "577ad807-ae5d-4625-b614-9ff5b9f13c26", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50394, + "md5sum": "a9dd754bd02a60a9b38145e596a922e7", + "file_id": "9898d8ec-d128-4ac1-ba45-5a8827342c05", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1313-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "d73a0a33-e4e8-44bd-9580-2038ab06583a", + "entity_id": "ab99683f-6116-463d-8bf6-5782809d4729" + } + ], + "file_name": "94741406-595c-456b-9a27-2d838ca91557.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_320_MirnaExpression94a57d51-c84a-4b37-9eb9-cab2afa8c9a2_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1313-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_320_AlignedReads94a57d51-c84a-4b37-9eb9-cab2afa8c9a2", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 196162260, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "b85fa6a9e253f426043b9b8c3f213344", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "0aaf5063-8b48-47a0-816a-ad42b44d3138", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_320_MirnaExpressionWorkflow1d9257d8-d2de-45fb-9aae-9af8e3167966_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "da2b4f32-21db-4ec3-904d-65b75645d7c2", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50397, + "md5sum": "f0f4a5a16432ee766c1392e3321ad3c8", + "file_id": "792d6268-dee2-4ffe-9632-610b6d6af622", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-2079-01A-01R-A96U-41", + "entity_type": "aliquot", + "case_id": "e3ea5137-76b8-4afc-9b80-ed74714e7172", + "entity_id": "8e214b70-6117-4008-8c76-14d161f88a94" + } + ], + "file_name": "406bd343-0d59-403d-b5d8-2e2176da2e39.mirnaseq.isoforms.quantification.txt", + "submitter_id": "a25b8ebf-404a-49c5-bc18-a3e330eccadf", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9920670494770177, + "total_reads": 20803861, + "access": "controlled", + "file_name": "8e214b70-6117-4008-8c76-14d161f88a94_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004695148, + "proportion_reads_duplicated": 0, + "submitter_id": "899985a8-6853-4efa-9123-0491a125f8c6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 352753917, + "created_datetime": "2024-09-20T11:13:42.596707-05:00", + "average_base_quality": 36, + "md5sum": "5d283b534fb778a885b33051faa5c5a8", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "cbd5d99b-5eee-4467-8a5f-bba97c591418", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 32, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "406bd343-0d59-403d-b5d8-2e2176da2e39_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "3b9a952e-6b99-44d0-b110-6d4d53f74445", + "created_datetime": "2024-09-20T11:16:54.878144-05:00" + }, + "file_size": 506261, + "md5sum": "d8ea88fd3898f733ee9fe134c0f92460", + "file_id": "a0cc7809-6bd1-41ff-adc2-e9ae48709bd8", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-2079-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "e3ea5137-76b8-4afc-9b80-ed74714e7172", + "entity_id": "ffc3dce7-236b-481c-87e4-0f2316f10306" + } + ], + "file_name": "4f9c89b8-8395-41f1-ad03-5efb9c1a3bf8.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_287_MirnaExpressioncb420006-4e8f-4587-b646-097affd60322_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-2079-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_287_AlignedReadscb420006-4e8f-4587-b646-097affd60322", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 205005638, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "30d2859b730af999ba643a7f12a5ed73", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "cdb5731f-24a5-43c4-b6c4-f7b1933147e5", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_287_MirnaExpressionWorkflowceb0b699-b0ac-4d5f-aefd-9824515903ce_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a7fb43d3-2923-4ef6-83b3-8142e82b813e", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 341925, + "md5sum": "9c5a80445ee147f1bb19ebd68635a468", + "file_id": "57c9964b-83e5-443e-b99b-fdeb1fee17db", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1313-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "d73a0a33-e4e8-44bd-9580-2038ab06583a", + "entity_id": "ab99683f-6116-463d-8bf6-5782809d4729" + } + ], + "file_name": "94741406-595c-456b-9a27-2d838ca91557.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_320_MirnaExpression94a57d51-c84a-4b37-9eb9-cab2afa8c9a2_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1313-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_320_AlignedReads94a57d51-c84a-4b37-9eb9-cab2afa8c9a2", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 196162260, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "b85fa6a9e253f426043b9b8c3f213344", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "0aaf5063-8b48-47a0-816a-ad42b44d3138", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_320_MirnaExpressionWorkflow1d9257d8-d2de-45fb-9aae-9af8e3167966_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "da2b4f32-21db-4ec3-904d-65b75645d7c2", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 398508, + "md5sum": "8897b1ad7a95f16adfe385facefe1859", + "file_id": "f6847e4f-2f97-44a2-8d02-36418e2dec0f", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2019-01A-02R-1568-13", + "entity_type": "aliquot", + "case_id": "bbad2efe-e9c7-4f8f-924b-ebbbe4c181d4", + "entity_id": "52908652-f29a-4517-8ff6-6f4cd31c691b" + } + ], + "file_name": "87821081-c9cb-4fc5-b526-a519ac58c9a1.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_405_MirnaExpressionbda815f1-9862-4fbe-80c1-2e3f5e9918a8_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2019-01A-02R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_405_AlignedReadsbda815f1-9862-4fbe-80c1-2e3f5e9918a8", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 190777127, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "09f5e78018bed4b12d0e2214ea537c70", + "updated_datetime": "2023-07-12T10:33:27.414833-05:00", + "file_id": "2134d7d5-4459-4e93-ad25-0cd30613e03e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_405_MirnaExpressionWorkflow92537475-31fd-4d37-8811-7bc7757d5f7f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "84041152-c8ff-4143-87d8-eb478cd10888", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50494, + "md5sum": "7fb6132ff5dac76d2d5455516d60bbb9", + "file_id": "6fe0b82a-9571-4456-ba35-121161450d5d", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-59-A5PD-01A-11R-A407-13", + "entity_type": "aliquot", + "case_id": "7ebc776e-bde1-4563-adb1-8bd441872733", + "entity_id": "73ae6f0a-9aab-4049-853c-9c1f6d02bffc" + } + ], + "file_name": "fb28f9e2-9d63-4414-baa4-1479b3d26e4f.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_4_MirnaExpression19e38fcb-eda6-4d6e-b549-60915c343eb7_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-59-A5PD-01A-11R-A407-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_4_AlignedReads19e38fcb-eda6-4d6e-b549-60915c343eb7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 305033075, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "e9bc5164c546fe1db216b200e29d8b03", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "151d23bd-45b7-443f-9bad-899a0bc2ca2b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_4_MirnaExpressionWorkflow5124773b-16fa-4a52-8bba-6d0b1260b6ce_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1c2afcb4-69ab-4a31-a51f-55bd6aced730", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50512, + "md5sum": "e55b94d943c7624f209bbdec301fc571", + "file_id": "24455347-10dc-4a0e-8ab3-3021c590cc0a", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2019-01A-02R-1568-13", + "entity_type": "aliquot", + "case_id": "bbad2efe-e9c7-4f8f-924b-ebbbe4c181d4", + "entity_id": "52908652-f29a-4517-8ff6-6f4cd31c691b" + } + ], + "file_name": "87821081-c9cb-4fc5-b526-a519ac58c9a1.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_405_MirnaExpressionbda815f1-9862-4fbe-80c1-2e3f5e9918a8_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2019-01A-02R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_405_AlignedReadsbda815f1-9862-4fbe-80c1-2e3f5e9918a8", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 190777127, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "09f5e78018bed4b12d0e2214ea537c70", + "updated_datetime": "2023-07-12T10:33:27.414833-05:00", + "file_id": "2134d7d5-4459-4e93-ad25-0cd30613e03e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_405_MirnaExpressionWorkflow92537475-31fd-4d37-8811-7bc7757d5f7f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "84041152-c8ff-4143-87d8-eb478cd10888", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 430983, + "md5sum": "be872ae67788e44e7604d2566831e4fd", + "file_id": "a53d20d4-1cea-42bc-a8d8-f2d08fc429cf", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1784-01A-02R-1567-13", + "entity_type": "aliquot", + "case_id": "23d32627-9fd2-4312-bcda-ee7409e3983f", + "entity_id": "c72e442b-36f5-4ea6-a893-505b5ccd8c4f" + } + ], + "file_name": "2c2b36e6-6508-405e-bc84-1d8b929fd6b9.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_254_MirnaExpression0f587263-c5a9-47b8-8fca-e7c51d710f10_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1784-01A-02R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_254_AlignedReads0f587263-c5a9-47b8-8fca-e7c51d710f10", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 264941763, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "812db46e1dc5e767c4382e905d0a48fb", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b170ae61-6c94-43df-9eae-950c521615af", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_254_MirnaExpressionWorkflowe0860d36-512d-4671-90d9-20b5f35000f9_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "862ec37f-4a8e-44f6-b96b-bf94ca0c74ee", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50405, + "md5sum": "de2b84c4f6d5475ccf6944765a3e855b", + "file_id": "99dd4058-384b-443b-b2b0-4b68161541ba", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-2400-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "5c127332-5ca0-45f1-a5ac-4876ad94e491", + "entity_id": "5c98c2c5-806f-4562-ad57-e152ea8388ab" + } + ], + "file_name": "8fc5d76c-59f4-498d-9646-17b4f8320180.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_57_MirnaExpressiond48f809a-0f38-4ba7-b20f-d5c003fd67cd_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-2400-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_57_AlignedReadsd48f809a-0f38-4ba7-b20f-d5c003fd67cd", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 319792191, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "fb8bd42064f4bc35615d30be54947d83", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "d3609691-974f-4d3a-989a-cc48c6f8a0bc", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_57_MirnaExpressionWorkflowe7a36194-979e-496c-a59e-d59d98875b11_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2ec7e98a-7607-4ff6-9f4d-4cead081ebc9", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 539652, + "md5sum": "6ba66ca8cca7351486efcd7f1f9d6c5d", + "file_id": "b11afd75-e356-454d-bfb5-27ee5ab0b4b8", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1737-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "0aa020cb-69d2-4235-a609-c279a133d8bb", + "entity_id": "b442230a-d330-45da-adf7-76873d18645c" + } + ], + "file_name": "9eb52286-e11c-4c30-b950-c464ce3effc7.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_72_MirnaExpressionb5df88e8-8df7-49fe-ac4a-24fe796b7e6a_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1737-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_72_AlignedReadsb5df88e8-8df7-49fe-ac4a-24fe796b7e6a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 168051185, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "87e3d929c31e4d5b800009ffbdf444ed", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "aaca0d8d-2b68-4f1f-872e-d281dc25effe", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_72_MirnaExpressionWorkflowc8fa776b-10da-4684-b788-2d078ebf44dd_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0f91bcda-30ae-4052-976f-506d399e65d9", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50391, + "md5sum": "6ce33c2ccf04b5454978f92cb9f9278f", + "file_id": "76cd7b71-a512-4993-aff7-9692e615569c", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-2641-01A-01R-A96U-41", + "entity_type": "aliquot", + "case_id": "49e5ee61-a1c9-4038-84ac-92683e573a65", + "entity_id": "94d33085-20ba-4b47-b9cd-bdb8b4c61a5f" + } + ], + "file_name": "17476252-748e-4652-9edc-b436467bd0f5.mirnaseq.mirnas.quantification.txt", + "submitter_id": "85b3b25b-0f66-4b2c-b261-d263b2e14178", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9922124119944219, + "total_reads": 28301189, + "access": "controlled", + "file_name": "94d33085-20ba-4b47-b9cd-bdb8b4c61a5f_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004865963, + "proportion_reads_duplicated": 0, + "submitter_id": "d738d727-61bb-432c-afcd-a96041a07e53", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 438220545, + "created_datetime": "2024-09-20T11:13:37.827839-05:00", + "average_base_quality": 36, + "md5sum": "2bec13a1481a14461fc5040631199ec7", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "82255e5d-8577-4c6c-8c12-c38eb0ebedc9", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 29, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "17476252-748e-4652-9edc-b436467bd0f5_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "030d4c21-60c5-42ea-ae7b-a53b9bb7aad3", + "created_datetime": "2024-09-20T11:17:48.438421-05:00" + }, + "file_size": 50781, + "md5sum": "18e67b39fb32bb9977e4d258beccd839", + "file_id": "53d170f3-f046-494b-b3e4-dc661e4a2c6e", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-31-1956-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "e1158102-06f2-47bb-9fe0-49b57f070755", + "entity_id": "24cfcfd9-ce30-4e24-9470-60265efd6721" + } + ], + "file_name": "f996a109-74e5-473c-a312-96dfb6153734.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_77_MirnaExpression2d23e702-bce6-45b5-8787-6619e906b416_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-31-1956-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_77_AlignedReads2d23e702-bce6-45b5-8787-6619e906b416", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 168412628, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "f4ae9e417780ec3dcf2a483e8d9ff01d", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "68e17de2-1c28-4742-8a3d-c2014291f0f4", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_77_MirnaExpressionWorkflowcb6e71f3-1cb6-476f-9042-761a02d596d9_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b6e80789-0d6d-4934-b5b9-15f07e581179", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 314291, + "md5sum": "13ac89dba555ab0578b7151785ebd139", + "file_id": "00cec9b6-244c-44ff-9ac2-91fed660de97", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1705-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "f9c835db-2ab6-4bf5-826f-48723493c0ec", + "entity_id": "d1603029-2b45-4c5c-b313-8846d0ebdbdb" + } + ], + "file_name": "4015424e-d713-461f-b5c7-ad244b910901.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_426_MirnaExpressionaeeb0307-ae51-4988-969a-a285f43a84b7_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-29-1705", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1242", + "classification": "Notification", + "entity_id": "f9c835db-2ab6-4bf5-826f-48723493c0ec", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "21f06af2-c9eb-5fef-b7a5-cda0d6339354", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "f9c835db-2ab6-4bf5-826f-48723493c0ec", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-29-1705" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1705-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_426_AlignedReadsaeeb0307-ae51-4988-969a-a285f43a84b7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 243884466, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "1584e6ae27c33d8dad109c83078c4d98", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "dc767efb-df9d-4ec1-83b7-8a9f2e7b8192", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_426_MirnaExpressionWorkflowb123b04c-764d-42df-a06f-135c342b7bf5_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c5381f1d-50e6-4c08-89d9-2bd622c50926", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 352966, + "md5sum": "b0540ae841d4fa3dae4f96e5e1997762", + "file_id": "2ef04af4-e629-4382-9d9c-ded0b3861100", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1470-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "a3898640-0d85-441d-a000-b5b8ff857399", + "entity_id": "f2066443-2f17-4279-a993-f07961259108" + } + ], + "file_name": "1e0d261b-645d-46dc-8cb9-8ba6b57a0368.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_240_MirnaExpression28b4d25d-cc0e-4f78-ae6a-b57bed4cc985_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "203b2606-4653-58f2-89b7-4a151903ac38", + "entity_submitter_id": "TCGA-24-1470-01A-01R-1566-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8812", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "f2066443-2f17-4279-a993-f07961259108", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "2bc252c1-7a3a-5788-8884-9a36d36b1a34", + "entity_submitter_id": "TCGA-24-1470-01A-01R-1566-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29785", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "f2066443-2f17-4279-a993-f07961259108", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1470-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_240_AlignedReads28b4d25d-cc0e-4f78-ae6a-b57bed4cc985", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 148859170, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "9c2880928e2ac8746249415f875dbbc6", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "33007211-5e62-4fa1-b1bc-8767ae3a9f36", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_240_MirnaExpressionWorkflow8dbf22dd-87d3-44ae-a37f-0abd44150193_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "58fb81e6-566b-4c73-a22d-da56a866b59d", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 395135, + "md5sum": "16dba337b240e70a8bb36e1f4a31ea16", + "file_id": "28356624-64aa-4099-9e1c-63a831a3e058", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-31-1956-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "e1158102-06f2-47bb-9fe0-49b57f070755", + "entity_id": "24cfcfd9-ce30-4e24-9470-60265efd6721" + } + ], + "file_name": "f996a109-74e5-473c-a312-96dfb6153734.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_77_MirnaExpression2d23e702-bce6-45b5-8787-6619e906b416_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-31-1956-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_77_AlignedReads2d23e702-bce6-45b5-8787-6619e906b416", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 168412628, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "f4ae9e417780ec3dcf2a483e8d9ff01d", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "68e17de2-1c28-4742-8a3d-c2014291f0f4", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_77_MirnaExpressionWorkflowcb6e71f3-1cb6-476f-9042-761a02d596d9_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b6e80789-0d6d-4934-b5b9-15f07e581179", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50239, + "md5sum": "04d50bde08bd54f6acdbaef895e5d4ac", + "file_id": "62efb1f3-7d3e-48ac-b84b-f0f89936d85f", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0765-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "774ce281-96b2-467a-9170-079797ee10f7", + "entity_id": "d5c33d85-54da-455b-aa65-aaec79af99b0" + } + ], + "file_name": "bff64718-2f96-4e0a-9376-ccf2f0f16ff3.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_195_MirnaExpression3a66ad67-26f0-4ab4-b2c2-43bc1d06268f_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "12ccfa15-3f80-5d0f-b208-b5efa625cc3a", + "entity_submitter_id": "TCGA-13-0765-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:32:20.747393-05:00", + "submitter_id": "8768", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "d5c33d85-54da-455b-aa65-aaec79af99b0", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "1c9e27c8-5234-567e-a12f-45ad6f03f549", + "entity_submitter_id": "TCGA-13-0765-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29721", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "d5c33d85-54da-455b-aa65-aaec79af99b0", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0765-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_195_AlignedReads3a66ad67-26f0-4ab4-b2c2-43bc1d06268f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 141252123, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "4bda7e2e45944707db137db143680223", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "984a0cf3-aa2d-40d9-b9d9-263e31d32c06", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_195_MirnaExpressionWorkflow489c1bad-cf18-4b4b-a37d-2c5594b73e41_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8612b6da-7460-48bc-8648-01f8f5fc15ce", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 292599, + "md5sum": "880ebd5675723e52b3820efdbee68102", + "file_id": "49f8811e-6955-4cc9-842b-77955be0c158", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1023-01R-01R-1564-13", + "entity_type": "aliquot", + "case_id": "9e18238f-ae85-4b75-ae87-d92da9731a40", + "entity_id": "1c88dde8-4fe6-49e9-8d76-40668ed783ff" + } + ], + "file_name": "b59ff5ba-775a-4fc3-8a39-1e6f3da99d1b.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_369_MirnaExpression6bdb12db-d4c2-45d6-98ab-7c1ccf76d1a9_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-23-1023", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1244", + "classification": "Notification", + "entity_id": "9e18238f-ae85-4b75-ae87-d92da9731a40", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "48ddd5c2-532f-5bf4-a605-d87f54006442", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "9e18238f-ae85-4b75-ae87-d92da9731a40", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-23-1023" + }, + { + "annotation_id": "28ba580a-8d0f-51a2-b64c-bbdf2c1fe71a", + "entity_submitter_id": "TCGA-23-1023-01R", + "notes": "Ovarian Triplet Sample TCGA-23-1023-01R is a recurrent sample that for historical reasons has retained the -01R designation rather than the conventional -02R designation used elsewhere in TCGA.", + "entity_type": "sample", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "20470", + "state": "released", + "category": "Item is noncanonical", + "classification": "Notification", + "entity_id": "8a53cd24-5041-418b-811b-33b72c165798", + "created_datetime": "2014-04-07T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1023-01R-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_369_AlignedReads6bdb12db-d4c2-45d6-98ab-7c1ccf76d1a9", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 132118346, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "cfbbe62cc5e19ebc91a97808e33ae7c7", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "69816230-9200-4201-acca-e8f61ee3e442", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_369_MirnaExpressionWorkflowd1dff82c-880e-4658-a0fd-ba5be65e3430_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0eece441-3817-4806-bb82-6d4235b688bb", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50066, + "md5sum": "63d792e2820d09297319ff81eb273354", + "file_id": "50a23e46-efd3-4c37-b9c2-383d5b11fecc", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1489-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "7248cd60-be22-44bc-bc58-f644db0940a2", + "entity_id": "dcb03592-9f67-49bf-bc78-d89d69de14a8" + } + ], + "file_name": "6a7d6268-43fe-4116-bf2d-ed887897ce23.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_335_MirnaExpression859f71fa-5a1b-4abb-adbc-b1143b5f28f0_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "5c9f967e-5a4b-5722-b0b2-07be5354965a", + "entity_submitter_id": "TCGA-13-1489-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29752", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "dcb03592-9f67-49bf-bc78-d89d69de14a8", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "c47302f3-ef4a-52dc-9c9f-5d6783f9ee76", + "entity_submitter_id": "TCGA-13-1489-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8787", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "dcb03592-9f67-49bf-bc78-d89d69de14a8", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "entity_submitter_id": "TCGA-13-1489", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1252", + "classification": "Notification", + "entity_id": "7248cd60-be22-44bc-bc58-f644db0940a2", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "6b415596-3ae3-50a9-b69b-5163f32b2027", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "7248cd60-be22-44bc-bc58-f644db0940a2", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-13-1489" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1489-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_335_AlignedReads859f71fa-5a1b-4abb-adbc-b1143b5f28f0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 173746632, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "1d14c404d7b7887e9c626940b2570799", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5ffd74f9-9502-435a-a358-09b6be778bd5", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_335_MirnaExpressionWorkflowe8033820-de8d-4ae3-9b70-724930ec4a3b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "818e5e4c-7eed-4ce2-981c-92cc1b07489f", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50340, + "md5sum": "82b9cf99a5635fb3fa3a695ae5411e38", + "file_id": "81036e0d-152c-44f7-a940-3bbda5fe16b1", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0913-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "3e8a51bf-7e1f-4eab-af83-3c60d04db1bf", + "entity_id": "cdaf98b1-fdb5-4575-aa17-e2d2ccba31f9" + } + ], + "file_name": "8e6b2db9-07aa-4c54-9cd4-30ba0932cb81.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_325_MirnaExpressionee71e238-4aea-4edd-bc88-bbca6f472441_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-0913", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1253", + "classification": "Notification", + "entity_id": "3e8a51bf-7e1f-4eab-af83-3c60d04db1bf", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "6d23646b-68b6-5a7a-9180-6a7c912f0830", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "case_id": "3e8a51bf-7e1f-4eab-af83-3c60d04db1bf", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-13-0913" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0913-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_325_AlignedReadsee71e238-4aea-4edd-bc88-bbca6f472441", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 128152436, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "0545531c4273279be4e999cf5f12152d", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "87acc5cb-ef16-488f-b02d-bcc209c98e78", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_325_MirnaExpressionWorkflow4089b3dd-e5bf-4dbf-90ae-b37936eeeadf_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ee4b3d85-0540-4c46-ad15-9b811f928cd1", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50109, + "md5sum": "6163a4808551befd5134b201da6d2495", + "file_id": "7160d2d7-9db8-4da5-a1fe-a547d171cba7", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1691-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b", + "entity_id": "f83833b8-8cb2-44d8-8ac7-c4d2d2463053" + } + ], + "file_name": "2a2beb9b-5869-421f-ab4c-c36e5bef515c.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_158_MirnaExpressiona1fffb3b-8e84-469e-8633-aed7778f61b6_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-29-1691", + "notes": "Prior malignancy of breast cancer", + "submitter_id": "3388", + "classification": "Notification", + "entity_id": "b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b", + "created_datetime": "2011-09-18T00:00:00", + "annotation_id": "85f8041b-f3b7-510a-9158-67034bdaf117", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b", + "state": "released", + "category": "Prior malignancy", + "status": "Approved", + "case_submitter_id": "TCGA-29-1691" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1691-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_158_AlignedReadsa1fffb3b-8e84-469e-8633-aed7778f61b6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 186095597, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "05ec45520a270c87b8b7ad95eda43a22", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "d06768a9-2a66-49a4-b768-3f70b32d33a7", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_158_MirnaExpressionWorkflow61c7a1d1-5941-4fda-836a-a393b75c3af4_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1d23b520-22c4-4301-a4b6-df29e667d6d0", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50236, + "md5sum": "ef8b07af845ac49ed62bfa4c47c17ac5", + "file_id": "bf5c0ffa-bb5a-4fa6-9861-6c41b2af7894", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1691-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b", + "entity_id": "f83833b8-8cb2-44d8-8ac7-c4d2d2463053" + } + ], + "file_name": "2a2beb9b-5869-421f-ab4c-c36e5bef515c.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_158_MirnaExpressiona1fffb3b-8e84-469e-8633-aed7778f61b6_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-29-1691", + "notes": "Prior malignancy of breast cancer", + "submitter_id": "3388", + "classification": "Notification", + "entity_id": "b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b", + "created_datetime": "2011-09-18T00:00:00", + "annotation_id": "85f8041b-f3b7-510a-9158-67034bdaf117", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b", + "state": "released", + "category": "Prior malignancy", + "status": "Approved", + "case_submitter_id": "TCGA-29-1691" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1691-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_158_AlignedReadsa1fffb3b-8e84-469e-8633-aed7778f61b6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 186095597, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "05ec45520a270c87b8b7ad95eda43a22", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "d06768a9-2a66-49a4-b768-3f70b32d33a7", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_158_MirnaExpressionWorkflow61c7a1d1-5941-4fda-836a-a393b75c3af4_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1d23b520-22c4-4301-a4b6-df29e667d6d0", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 372597, + "md5sum": "756d0fa9c97bdf7bf4f2933f730704b3", + "file_id": "527c6f82-a57e-4aee-be18-2de45a16dcfb", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0913-02A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "3e8a51bf-7e1f-4eab-af83-3c60d04db1bf", + "entity_id": "733f0607-6c6b-4385-9868-fa6f155a9a2e" + } + ], + "file_name": "827219c7-837c-44e5-9ac6-6530112ca91f.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_313_MirnaExpressionf02b19ee-3250-4154-b94f-703f506e677a_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-0913-02A-01R-1564-13", + "notes": "RNA-seq:INSUFFICIENT INPUT MATERIAL,LOW SEQUENCE YIELD/DIVERSITY;LOW 5/3 COVERAGE RATIO", + "submitter_id": "8764", + "classification": "CenterNotification", + "entity_id": "733f0607-6c6b-4385-9868-fa6f155a9a2e", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "5cf05f41-ce70-58a3-8ecb-6bfaf6264437", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "3e8a51bf-7e1f-4eab-af83-3c60d04db1bf", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-13-0913" + }, + { + "entity_submitter_id": "TCGA-13-0913-02A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29739", + "classification": "CenterNotification", + "entity_id": "733f0607-6c6b-4385-9868-fa6f155a9a2e", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "62d89b7a-5c5d-5f0f-84e4-825d88c666c8", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "3e8a51bf-7e1f-4eab-af83-3c60d04db1bf", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-13-0913" + }, + { + "entity_submitter_id": "TCGA-13-0913-02A-01R", + "notes": "Ovary Triplet", + "submitter_id": "1437", + "classification": "Notification", + "entity_id": "194a6538-dd75-4ba9-8682-0fb6c5cc552e", + "created_datetime": "2011-03-14T00:00:00", + "annotation_id": "75179a5a-0ffe-5602-9f4e-996f9f2ed9b8", + "entity_type": "analyte", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "3e8a51bf-7e1f-4eab-af83-3c60d04db1bf", + "state": "released", + "category": "Item is noncanonical", + "status": "Approved", + "case_submitter_id": "TCGA-13-0913" + }, + { + "entity_submitter_id": "TCGA-13-0913", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1253", + "classification": "Notification", + "entity_id": "3e8a51bf-7e1f-4eab-af83-3c60d04db1bf", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "6d23646b-68b6-5a7a-9180-6a7c912f0830", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "case_id": "3e8a51bf-7e1f-4eab-af83-3c60d04db1bf", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-13-0913" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0913-02A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_313_AlignedReadsf02b19ee-3250-4154-b94f-703f506e677a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 334011033, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "6105d91a38355ab1c87653179c33efc4", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5e5263e4-7d68-4d96-a76a-5d4bd1ab8088", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_313_MirnaExpressionWorkflow856be821-5908-498b-a8e0-4ce2ec467656_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1294296c-5ac8-4ee4-bdc2-9c11e4d3f916", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 267438, + "md5sum": "76f168adb75ea51d4726268d258cd649", + "file_id": "3a290952-fb87-4986-bd40-11245ce4eef8", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0913-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "3e8a51bf-7e1f-4eab-af83-3c60d04db1bf", + "entity_id": "cdaf98b1-fdb5-4575-aa17-e2d2ccba31f9" + } + ], + "file_name": "8e6b2db9-07aa-4c54-9cd4-30ba0932cb81.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_325_MirnaExpressionee71e238-4aea-4edd-bc88-bbca6f472441_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-0913", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1253", + "classification": "Notification", + "entity_id": "3e8a51bf-7e1f-4eab-af83-3c60d04db1bf", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "6d23646b-68b6-5a7a-9180-6a7c912f0830", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "case_id": "3e8a51bf-7e1f-4eab-af83-3c60d04db1bf", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-13-0913" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0913-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_325_AlignedReadsee71e238-4aea-4edd-bc88-bbca6f472441", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 128152436, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "0545531c4273279be4e999cf5f12152d", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "87acc5cb-ef16-488f-b02d-bcc209c98e78", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_325_MirnaExpressionWorkflow4089b3dd-e5bf-4dbf-90ae-b37936eeeadf_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ee4b3d85-0540-4c46-ad15-9b811f928cd1", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 297038, + "md5sum": "a2c57967718ba11a63f1c5a6d4dd9f36", + "file_id": "e35d2b3d-c8cb-4c7c-a0da-038b68af3180", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-2059-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "f4b56568-a74a-4a2e-89d9-11722ecf5948", + "entity_id": "44de533e-53ff-42d9-a777-0aff5884af71" + } + ], + "file_name": "5ce230b0-d8b8-4718-aea5-83e3083a9dbe.mirnaseq.isoforms.quantification.txt", + "submitter_id": "0f775859-d0ee-4864-9b1b-c3d0daac935d", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-2059", + "notes": "[intgen.org]: Molecular Results off Spec", + "submitter_id": "619", + "classification": "Notification", + "entity_id": "f4b56568-a74a-4a2e-89d9-11722ecf5948", + "created_datetime": "2010-09-02T00:00:00", + "annotation_id": "a144a0e5-68e1-5bcf-87b7-d712013e5586", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "f4b56568-a74a-4a2e-89d9-11722ecf5948", + "state": "released", + "category": "Molecular analysis outside specification", + "status": "Approved", + "case_submitter_id": "TCGA-13-2059" + } + ], + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9921718943201966, + "total_reads": 18579974, + "access": "controlled", + "file_name": "44de533e-53ff-42d9-a777-0aff5884af71_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003786388, + "proportion_reads_duplicated": 0, + "submitter_id": "3771e3f6-bcb2-45da-bf48-71387fa4cf07", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 294279308, + "created_datetime": "2024-09-20T11:14:26.321240-05:00", + "average_base_quality": 36, + "md5sum": "f8dfcc02e923dd4885853878e3008dd3", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "91362cde-58fc-4941-ab5f-10fb74af3745", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 33, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "5ce230b0-d8b8-4718-aea5-83e3083a9dbe_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "6b549e60-b28f-4ab1-8498-09dc2a15758a", + "created_datetime": "2024-09-20T11:16:38.136177-05:00" + }, + "file_size": 563401, + "md5sum": "552493bb2a4fb29ad0495c382a8652f2", + "file_id": "1737057a-e8b2-4e06-89db-ad61d9b0c827", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1770-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "5abb6d80-fc39-49a4-8db5-3db24543feb6", + "entity_id": "5ba75bb8-6229-4d6a-80e5-9a79a548e167" + } + ], + "file_name": "201695f4-5983-43fb-abe4-b8665c6ac027.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_440_MirnaExpression2d9ed627-eb13-4d25-97f7-c9e1c594c0dd_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-29-1770", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1241", + "classification": "Notification", + "entity_id": "5abb6d80-fc39-49a4-8db5-3db24543feb6", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "75f708f5-fc14-570c-8ee1-c5cfb5c950e8", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "5abb6d80-fc39-49a4-8db5-3db24543feb6", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-29-1770" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1770-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_440_AlignedReads2d9ed627-eb13-4d25-97f7-c9e1c594c0dd", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 198324726, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "183658de3607085488f58ba18ec4a8b4", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "fbd8c651-60ff-4d67-b894-96c4e6325e47", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_440_MirnaExpressionWorkflow993aba90-5efa-4e6d-8195-e8eb3f23aa73_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b4d81f6a-74a8-4701-839e-9f26f15c81e6", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 332435, + "md5sum": "7a08a64ff614d28900388ab63d1cce1b", + "file_id": "3bf0c1e7-53c8-4988-b1a8-d54c19b7c139", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1770-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "5abb6d80-fc39-49a4-8db5-3db24543feb6", + "entity_id": "5ba75bb8-6229-4d6a-80e5-9a79a548e167" + } + ], + "file_name": "201695f4-5983-43fb-abe4-b8665c6ac027.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_440_MirnaExpression2d9ed627-eb13-4d25-97f7-c9e1c594c0dd_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-29-1770", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1241", + "classification": "Notification", + "entity_id": "5abb6d80-fc39-49a4-8db5-3db24543feb6", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "75f708f5-fc14-570c-8ee1-c5cfb5c950e8", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "5abb6d80-fc39-49a4-8db5-3db24543feb6", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-29-1770" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1770-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_440_AlignedReads2d9ed627-eb13-4d25-97f7-c9e1c594c0dd", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 198324726, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "183658de3607085488f58ba18ec4a8b4", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "fbd8c651-60ff-4d67-b894-96c4e6325e47", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_440_MirnaExpressionWorkflow993aba90-5efa-4e6d-8195-e8eb3f23aa73_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b4d81f6a-74a8-4701-839e-9f26f15c81e6", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50226, + "md5sum": "f38fc254fbbd3128fabdb7f86bfc3916", + "file_id": "3bc37b15-a26c-4cc5-b030-cb894d7aa69a", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-1673-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "4e6f88de-7624-4719-8234-4c9e5b2e2988", + "entity_id": "37037dcf-fa69-4cd3-b83d-e474d69059b4" + } + ], + "file_name": "f8275247-c285-4175-bdb5-fc1dad344fc3.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_62_MirnaExpressioncf2d979c-b9b3-4395-9a24-f4d56ede09fc_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-1673-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_62_AlignedReadscf2d979c-b9b3-4395-9a24-f4d56ede09fc", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 253288231, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "1a99a518d77609931c75d6d46c0d8b20", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "be806b77-629e-4117-809c-559392520418", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_62_MirnaExpressionWorkflowc836b1db-4a17-49a4-9785-0b776e86b6f6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d3bdabcc-77c5-41f9-a876-fd821da0a1b0", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 396346, + "md5sum": "ce97a8e3327b4893907891831c6c73a9", + "file_id": "27c221b0-0b09-4671-90d0-85838635702a", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-59-2351-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "16829472-5666-4fba-9bf9-360ec1689aa0", + "entity_id": "7e58cfd1-07eb-44e2-a563-fa7a00b338a3" + } + ], + "file_name": "f77ca65d-5775-44d9-b4d3-07256c35153a.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_100_MirnaExpression318dba58-f1fd-4ff7-ad0a-ad34a89ef8cd_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-59-2351-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_100_AlignedReads318dba58-f1fd-4ff7-ad0a-ad34a89ef8cd", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 117959410, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "88d680d859ff045eba5b8944fad78412", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b01c007c-78e0-482b-8c19-912db2889221", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_100_MirnaExpressionWorkflowd44d0542-cba8-414c-b733-316cff345c47_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a2b90d12-05fb-429e-af33-550d55349aca", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50291, + "md5sum": "f7d02034544d13f24e0b136bd662b5f8", + "file_id": "c161f52a-a65b-422b-9767-0c104008ba91", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-1673-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "4e6f88de-7624-4719-8234-4c9e5b2e2988", + "entity_id": "37037dcf-fa69-4cd3-b83d-e474d69059b4" + } + ], + "file_name": "f8275247-c285-4175-bdb5-fc1dad344fc3.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_62_MirnaExpressioncf2d979c-b9b3-4395-9a24-f4d56ede09fc_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-1673-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_62_AlignedReadscf2d979c-b9b3-4395-9a24-f4d56ede09fc", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 253288231, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "1a99a518d77609931c75d6d46c0d8b20", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "be806b77-629e-4117-809c-559392520418", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_62_MirnaExpressionWorkflowc836b1db-4a17-49a4-9785-0b776e86b6f6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d3bdabcc-77c5-41f9-a876-fd821da0a1b0", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50340, + "md5sum": "9cb3b085188b7c3f194dae7c5a39e47d", + "file_id": "e5babf00-45fc-4e4f-a26b-08fe08e9c660", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1104-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "f9f44f86-10c7-4473-b156-5afbfa9a2ad0", + "entity_id": "3947333f-7cc5-4044-bc18-01a8f4426017" + } + ], + "file_name": "74765af0-0860-4a85-a788-ec981d9f71c3.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_183_MirnaExpression902fea13-4dcc-4b9a-a0fb-7e9eb99c0a05_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "61f2bb00-8854-5a55-923b-2fb7157f5c3b", + "entity_submitter_id": "TCGA-24-1104-01A-01R-1565-13", + "notes": "RNA-seq:HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8784", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "3947333f-7cc5-4044-bc18-01a8f4426017", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "8d3c2fcf-2aaa-5e7a-a0ed-41161dafba13", + "entity_submitter_id": "TCGA-24-1104-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29780", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "3947333f-7cc5-4044-bc18-01a8f4426017", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1104-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_183_AlignedReads902fea13-4dcc-4b9a-a0fb-7e9eb99c0a05", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 154434841, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "14c6e570f039ccef73eb496ca4625790", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "99ef6c4f-f9b3-4bff-9785-0f4b273ff822", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_183_MirnaExpressionWorkflowe27cdbd6-cc7f-4909-96c2-294b8d732d98_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "6eb3ba73-512f-4261-bc7e-891a313a3d29", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 315156, + "md5sum": "6fb9257d8b5de338d182903fad4166c9", + "file_id": "8ecf6544-85ea-4916-a7fb-51c700ccd89d", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1104-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "f9f44f86-10c7-4473-b156-5afbfa9a2ad0", + "entity_id": "3947333f-7cc5-4044-bc18-01a8f4426017" + } + ], + "file_name": "74765af0-0860-4a85-a788-ec981d9f71c3.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_183_MirnaExpression902fea13-4dcc-4b9a-a0fb-7e9eb99c0a05_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "61f2bb00-8854-5a55-923b-2fb7157f5c3b", + "entity_submitter_id": "TCGA-24-1104-01A-01R-1565-13", + "notes": "RNA-seq:HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8784", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "3947333f-7cc5-4044-bc18-01a8f4426017", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "8d3c2fcf-2aaa-5e7a-a0ed-41161dafba13", + "entity_submitter_id": "TCGA-24-1104-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29780", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "3947333f-7cc5-4044-bc18-01a8f4426017", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1104-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_183_AlignedReads902fea13-4dcc-4b9a-a0fb-7e9eb99c0a05", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 154434841, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "14c6e570f039ccef73eb496ca4625790", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "99ef6c4f-f9b3-4bff-9785-0f4b273ff822", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_183_MirnaExpressionWorkflowe27cdbd6-cc7f-4909-96c2-294b8d732d98_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "6eb3ba73-512f-4261-bc7e-891a313a3d29", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50227, + "md5sum": "8de9d564d29fa0a70c67e34f2654abdf", + "file_id": "120a8002-353e-413e-be06-cd679ae63a0c", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1652-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "d86adfac-56be-4a69-9315-5a90b4113e65", + "entity_id": "e01ba70a-a928-480c-952c-d5364b476b9b" + } + ], + "file_name": "4dc19548-6030-4bfa-a09c-50a2fa7a4e26.mirnaseq.mirnas.quantification.txt", + "submitter_id": "b2324b92-e002-42c9-b2ba-54eeed7d1e7c", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.990336827799593, + "total_reads": 23275276, + "access": "controlled", + "file_name": "e01ba70a-a928-480c-952c-d5364b476b9b_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005818574, + "proportion_reads_duplicated": 0, + "submitter_id": "a9e55e5a-6fe4-4621-8945-d78850780f63", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 375197414, + "created_datetime": "2024-09-20T11:13:08.107168-05:00", + "average_base_quality": 36, + "md5sum": "9562f21a841ab31c436fde89423b9a90", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "ae9d580d-139d-462b-a482-009df15cd9aa", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 32, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "4dc19548-6030-4bfa-a09c-50a2fa7a4e26_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "299dd27c-56c0-4ebf-a094-8f6dbcaab861", + "created_datetime": "2024-09-20T11:17:56.727266-05:00" + }, + "file_size": 50571, + "md5sum": "034f4e3a47ac1d6453b8f2cf389d597a", + "file_id": "4bc9c77a-a29f-4658-8472-b91334eb03c6", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-1659-01B-01R-A96S-41", + "entity_type": "aliquot", + "case_id": "644a88a7-dc56-468a-af5c-60278aab7642", + "entity_id": "076947ac-b413-4d87-891e-9a9783e8ba7a" + } + ], + "file_name": "d4599d77-b03b-4ec5-8dae-53d0da4bc869.mirnaseq.isoforms.quantification.txt", + "submitter_id": "82d77788-c703-4c99-8262-5c5e12d40d0d", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9913604702385204, + "total_reads": 28285220, + "access": "controlled", + "file_name": "076947ac-b413-4d87-891e-9a9783e8ba7a_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004230765, + "proportion_reads_duplicated": 0, + "submitter_id": "734436f5-464c-400a-8e27-0b9272100fd7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 450002840, + "created_datetime": "2024-09-20T11:13:25.210618-05:00", + "average_base_quality": 36, + "md5sum": "578a164da55f8e63217dde4ffc88d4bb", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "cf9af0d7-d912-4898-b9ef-3aac96b9386f", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 35, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "d4599d77-b03b-4ec5-8dae-53d0da4bc869_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "042a7968-677e-446e-98df-68875680e005", + "created_datetime": "2024-09-20T11:18:01.961167-05:00" + }, + "file_size": 580877, + "md5sum": "efa09d46a2909a234c047c4f88967a80", + "file_id": "ae3fc2e8-04b8-4d2a-90dd-a18c98a1e64c", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1652-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "d86adfac-56be-4a69-9315-5a90b4113e65", + "entity_id": "e01ba70a-a928-480c-952c-d5364b476b9b" + } + ], + "file_name": "4dc19548-6030-4bfa-a09c-50a2fa7a4e26.mirnaseq.isoforms.quantification.txt", + "submitter_id": "46277933-3a08-4ef0-96c9-cc784796040e", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.990336827799593, + "total_reads": 23275276, + "access": "controlled", + "file_name": "e01ba70a-a928-480c-952c-d5364b476b9b_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005818574, + "proportion_reads_duplicated": 0, + "submitter_id": "a9e55e5a-6fe4-4621-8945-d78850780f63", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 375197414, + "created_datetime": "2024-09-20T11:13:08.107168-05:00", + "average_base_quality": 36, + "md5sum": "9562f21a841ab31c436fde89423b9a90", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "ae9d580d-139d-462b-a482-009df15cd9aa", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 32, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "4dc19548-6030-4bfa-a09c-50a2fa7a4e26_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "299dd27c-56c0-4ebf-a094-8f6dbcaab861", + "created_datetime": "2024-09-20T11:17:56.727266-05:00" + }, + "file_size": 554712, + "md5sum": "f926e31fe978df804e138066b984d360", + "file_id": "dfd11b50-c86d-478a-8575-41cb3e573b7a", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-1659-01B-01R-A96S-41", + "entity_type": "aliquot", + "case_id": "644a88a7-dc56-468a-af5c-60278aab7642", + "entity_id": "076947ac-b413-4d87-891e-9a9783e8ba7a" + } + ], + "file_name": "d4599d77-b03b-4ec5-8dae-53d0da4bc869.mirnaseq.mirnas.quantification.txt", + "submitter_id": "f7146a22-ff7e-435d-b7d0-1d87d9ae8e10", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9913604702385204, + "total_reads": 28285220, + "access": "controlled", + "file_name": "076947ac-b413-4d87-891e-9a9783e8ba7a_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004230765, + "proportion_reads_duplicated": 0, + "submitter_id": "734436f5-464c-400a-8e27-0b9272100fd7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 450002840, + "created_datetime": "2024-09-20T11:13:25.210618-05:00", + "average_base_quality": 36, + "md5sum": "578a164da55f8e63217dde4ffc88d4bb", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "cf9af0d7-d912-4898-b9ef-3aac96b9386f", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 35, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "d4599d77-b03b-4ec5-8dae-53d0da4bc869_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "042a7968-677e-446e-98df-68875680e005", + "created_datetime": "2024-09-20T11:18:01.961167-05:00" + }, + "file_size": 50690, + "md5sum": "7bd9a0b676a8844d70dba050c0da82a9", + "file_id": "895a9a47-a1bc-4b99-a7b9-dd4f05444b69", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1743-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "a3e26259-732b-49fb-bc95-2f0ec7a0494e", + "entity_id": "f3277084-b0a8-43df-946e-dc792bbb8cdb" + } + ], + "file_name": "0ede0d69-1aaf-4777-b03e-cc4a106b07d6.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_366_MirnaExpressiond063c020-aa36-4b8b-9deb-b4332f3c65a3_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1743-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_366_AlignedReadsd063c020-aa36-4b8b-9deb-b4332f3c65a3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 237114875, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "e4e8040a4b1cfed42516ad95489bc198", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "35f30392-4cf7-4215-8411-75b8005ee4e0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_366_MirnaExpressionWorkflow647b294b-050d-4dbd-80af-6dc00aa213b3_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "daee62b9-205c-485c-88de-8f9fd0991650", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50434, + "md5sum": "1b4fbe52582c7f415528f09045393d76", + "file_id": "0e0713c3-9ba1-4758-be9d-97c9aeaecfc8", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1870-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "15f1a992-0724-4d76-a71a-702ac7753a41", + "entity_id": "c446d667-ea88-40fe-ad97-fd3fcceb7dd1" + } + ], + "file_name": "0e5a354f-02fb-4dfc-8680-293e3cad57c3.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_486_MirnaExpression47046911-d173-4417-8091-394abd036809_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1870-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_486_AlignedReads47046911-d173-4417-8091-394abd036809", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 241836426, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "6765ecff4a24a956cc74449f845eaf7e", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "02c45283-d917-47e8-b18c-6892c8f17d6a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_486_MirnaExpressionWorkflow13829fc5-892e-4b9c-b43c-95f9078f529c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2e93edaa-4d96-40c0-84ec-c8d82e00d070", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 371978, + "md5sum": "68a1dde52c1c03d4a6509f8415b27e02", + "file_id": "afeac78f-e033-4024-8be3-5f57ad5b0607", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1525-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "2bb96e1e-6992-434d-83e5-2f03713b3911", + "entity_id": "eddb96f9-029e-4888-b48e-bab9ce94192a" + } + ], + "file_name": "a1981850-49b7-4841-9e58-dada0c3de058.mirnaseq.mirnas.quantification.txt", + "submitter_id": "9ce72606-c6fc-45f3-a905-add90db7569d", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.984892302747308, + "total_reads": 24895389, + "access": "controlled", + "file_name": "eddb96f9-029e-4888-b48e-bab9ce94192a_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005612245, + "proportion_reads_duplicated": 0, + "submitter_id": "cd2dc965-7d88-4808-868e-b1dcb99b9728", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 422393541, + "created_datetime": "2024-09-20T11:14:27.949993-05:00", + "average_base_quality": 36, + "md5sum": "82101e67c39185f60592d326a7f48895", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "08ffc4f6-3000-47c4-adac-6cbe104a50ee", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "a1981850-49b7-4841-9e58-dada0c3de058_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ed06e948-ea7a-4fa1-b03f-1ad225a64c9d", + "created_datetime": "2024-09-20T11:17:37.851757-05:00" + }, + "file_size": 50794, + "md5sum": "d866dfa7f524c003d2683048985314b6", + "file_id": "6e194836-785b-4139-b6cf-375de35eca5a", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0893-01B-01R-1565-13", + "entity_type": "aliquot", + "case_id": "15170c7f-5880-4fb6-82ce-68d3df0dfb68", + "entity_id": "2b2d5fc7-b109-4d11-a632-db8016268840" + } + ], + "file_name": "eee30a6c-2b86-48e4-ac22-961dc52fe45e.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_489_MirnaExpression013d52b5-69d3-4b82-b2a8-a5bdcd302ea3_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0893-01B-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_489_AlignedReads013d52b5-69d3-4b82-b2a8-a5bdcd302ea3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 199132996, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "7da6f89b9ed647550f786be854296c4e", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a6a3237a-310f-43a9-ae41-76561489ca49", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_489_MirnaExpressionWorkflowc9c5bebc-39b5-4b87-87a4-75df7789b6a3_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a0a368ce-ca43-4cb4-aa87-de7b142a2212", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50319, + "md5sum": "66247a9191ba5ba5bd33ea30c4afdaea", + "file_id": "6c51563f-ea48-4751-a1a1-476f94a6d842", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0893-01B-01R-1565-13", + "entity_type": "aliquot", + "case_id": "15170c7f-5880-4fb6-82ce-68d3df0dfb68", + "entity_id": "2b2d5fc7-b109-4d11-a632-db8016268840" + } + ], + "file_name": "eee30a6c-2b86-48e4-ac22-961dc52fe45e.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_489_MirnaExpression013d52b5-69d3-4b82-b2a8-a5bdcd302ea3_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0893-01B-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_489_AlignedReads013d52b5-69d3-4b82-b2a8-a5bdcd302ea3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 199132996, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "7da6f89b9ed647550f786be854296c4e", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a6a3237a-310f-43a9-ae41-76561489ca49", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_489_MirnaExpressionWorkflowc9c5bebc-39b5-4b87-87a4-75df7789b6a3_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a0a368ce-ca43-4cb4-aa87-de7b142a2212", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 387201, + "md5sum": "f5e31a9bcbb0cde21e2e12fa3b396415", + "file_id": "944b3462-e68a-410e-a99b-da2d8d66b710", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1350-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "0f4a4ad1-e394-45c4-9aa9-aadf2bff0628", + "entity_id": "56822a73-96f7-40ba-a5c2-6eec113b52d9" + } + ], + "file_name": "e8639999-1068-4cdc-a745-58c547d062b3.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_286_MirnaExpressione2278c94-4d49-4e0d-a33d-47d6ee2ffe40_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "5a0e2e73-b8a1-54f1-96be-f7d161839e4e", + "entity_submitter_id": "TCGA-04-1350-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29693", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "56822a73-96f7-40ba-a5c2-6eec113b52d9", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "b0ec0e83-0b3b-555b-a6ad-09bb619df55a", + "entity_submitter_id": "TCGA-04-1350-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8801", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "56822a73-96f7-40ba-a5c2-6eec113b52d9", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1350-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_286_AlignedReadse2278c94-4d49-4e0d-a33d-47d6ee2ffe40", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 141001106, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "d7219b3afa25f2882671a1483c155060", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6369a8e8-a736-4878-8991-5c8af8cf77e0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_286_MirnaExpressionWorkflow20459b4a-8f4a-4c38-9ac4-5d3f7301062a_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "da2fe298-c62c-4508-b9f2-ce4dae6b0f32", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 275436, + "md5sum": "b60bab991e4a552d25d70c7ff9235256", + "file_id": "2070846c-7692-4c9a-a61a-e588e6303a76", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1769-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "94769f2c-b6fd-48ec-af34-b41165340b7c", + "entity_id": "f2ac7109-1071-47f7-af2a-2d655c475427" + } + ], + "file_name": "7ce526cd-59d2-4e95-ba31-43480c795985.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_84_MirnaExpression492042a1-2338-476c-ae1e-7cfd1d1b0091_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "3390b336-d64c-5c4c-9a5b-6d404f6d7ac9", + "entity_submitter_id": "TCGA-29-1769-01A-01R-1567-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8856", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "f2ac7109-1071-47f7-af2a-2d655c475427", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "86411ff0-b0aa-503b-979c-e7986b931628", + "entity_submitter_id": "TCGA-29-1769-01A-01R-1567-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29796", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "f2ac7109-1071-47f7-af2a-2d655c475427", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1769-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_84_AlignedReads492042a1-2338-476c-ae1e-7cfd1d1b0091", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 244480253, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "23ed881d33ff84d469866b7570dcd50e", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "e27add1d-dbbb-4919-881e-b5453872b3af", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_84_MirnaExpressionWorkflowe2571a78-2a70-4d5b-91ab-71f82d9df78c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8df319d4-4e38-4745-bb8e-b3d264c47c69", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 403758, + "md5sum": "57da07905656d2e3e456499e9e6ab4cf", + "file_id": "7d0a6130-bb06-40bb-a0ee-59eda10a0827", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1350-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "0f4a4ad1-e394-45c4-9aa9-aadf2bff0628", + "entity_id": "56822a73-96f7-40ba-a5c2-6eec113b52d9" + } + ], + "file_name": "e8639999-1068-4cdc-a745-58c547d062b3.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_286_MirnaExpressione2278c94-4d49-4e0d-a33d-47d6ee2ffe40_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "5a0e2e73-b8a1-54f1-96be-f7d161839e4e", + "entity_submitter_id": "TCGA-04-1350-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29693", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "56822a73-96f7-40ba-a5c2-6eec113b52d9", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "b0ec0e83-0b3b-555b-a6ad-09bb619df55a", + "entity_submitter_id": "TCGA-04-1350-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8801", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "56822a73-96f7-40ba-a5c2-6eec113b52d9", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1350-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_286_AlignedReadse2278c94-4d49-4e0d-a33d-47d6ee2ffe40", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 141001106, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "d7219b3afa25f2882671a1483c155060", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6369a8e8-a736-4878-8991-5c8af8cf77e0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_286_MirnaExpressionWorkflow20459b4a-8f4a-4c38-9ac4-5d3f7301062a_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "da2fe298-c62c-4508-b9f2-ce4dae6b0f32", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50106, + "md5sum": "49f07305aead7065b10a797f0badc92c", + "file_id": "679b31d8-f963-4555-8db7-ea49976df089", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-30-1892-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "a09f0626-002a-48fd-8b2d-c66b8285cf23", + "entity_id": "bb8dc795-80ff-4b42-8cf8-9f9716c13967" + } + ], + "file_name": "735a2b61-3da0-4fe1-9eac-9bcb468c750c.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_382_MirnaExpression594db3f7-b960-48fd-81e2-e3b6eea1e055_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "18f73180-50f4-5781-a9c1-18930346068f", + "entity_submitter_id": "TCGA-30-1892-01A-01R-1568-13", + "notes": "RNA-seq:INSUFFICIENT INPUT MATERIAL,LOW SEQUENCE YIELD/DIVERSITY", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8863", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "bb8dc795-80ff-4b42-8cf8-9f9716c13967", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "d6a34fea-69e8-57b6-933f-b77ab834dbf8", + "entity_submitter_id": "TCGA-30-1892-01A-01R-1568-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29803", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "bb8dc795-80ff-4b42-8cf8-9f9716c13967", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-30-1892-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_382_AlignedReads594db3f7-b960-48fd-81e2-e3b6eea1e055", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 183170131, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "bb0703e1e42f57515bd54089c3f5051f", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4e669016-33c4-4f17-9f97-28d72bca38cb", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_382_MirnaExpressionWorkflow2ad5b123-4dcb-4399-bc2b-85b20d1dee81_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "fd1eec2f-446b-4b2f-aabc-bee3b70b0092", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 318707, + "md5sum": "46ac35f11e89ab5da7418291b85c1a94", + "file_id": "d46aafb3-2584-43c0-8f02-9cfe9413eb7d", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1431-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "384170fc-e8be-426a-a54e-bf1ca61f2986", + "entity_id": "0e968ed4-9fbd-482b-b91d-ce7190dc91ed" + } + ], + "file_name": "36f2b200-3e96-475e-8cdf-5df3a85cb2ca.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_114_MirnaExpression9cfbbecb-da51-4961-b044-c25177858dbc_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "145d32ec-e12e-56e3-98a7-dd64b3a19687", + "entity_submitter_id": "TCGA-24-1431-01A-01R-1566-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29783", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "0e968ed4-9fbd-482b-b91d-ce7190dc91ed", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "d7cb38ff-0ca2-5496-896b-92c5a76b6109", + "entity_submitter_id": "TCGA-24-1431-01A-01R-1566-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8807", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "0e968ed4-9fbd-482b-b91d-ce7190dc91ed", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1431-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_114_AlignedReads9cfbbecb-da51-4961-b044-c25177858dbc", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 199976801, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "cc0dd5cd5c967cc48a5ca6b9023f18d3", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4830445e-fff8-4199-8b66-110805a03654", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_114_MirnaExpressionWorkflowd3867f91-cb53-4bd5-bc9c-db6c56f46d67_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "295a3314-8b41-48fc-9977-498465bd5255", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 306512, + "md5sum": "dca814c74db4206438d340b837dd884b", + "file_id": "b1ac88e8-d3cf-4340-8bdb-8576f14a4f60", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1850-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "b6b607cd-67b8-4c04-a212-a4e8c0743f05", + "entity_id": "9d88c064-c348-4f3f-a1f1-5884e0b66d9e" + } + ], + "file_name": "eb0ed599-e679-4ccb-b76b-9156a4b21f35.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_141_MirnaExpression633a9648-7611-42f1-8875-5e086577b990_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1850-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_141_AlignedReads633a9648-7611-42f1-8875-5e086577b990", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 223869203, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "75e0bcd19c00d86dc052002c7237638d", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6fd99ecb-caee-4eff-a3ad-f41cf358e153", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_141_MirnaExpressionWorkflow4c9eba83-b550-4f96-be9f-fbf72952375c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7806768a-a496-4847-af33-7817e223decd", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 374139, + "md5sum": "073828587d53b5abbfa20ee0fe812598", + "file_id": "8832447f-5473-4220-8e7e-6d89e06e7b2f", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1850-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "b6b607cd-67b8-4c04-a212-a4e8c0743f05", + "entity_id": "9d88c064-c348-4f3f-a1f1-5884e0b66d9e" + } + ], + "file_name": "eb0ed599-e679-4ccb-b76b-9156a4b21f35.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_141_MirnaExpression633a9648-7611-42f1-8875-5e086577b990_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1850-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_141_AlignedReads633a9648-7611-42f1-8875-5e086577b990", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 223869203, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "75e0bcd19c00d86dc052002c7237638d", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6fd99ecb-caee-4eff-a3ad-f41cf358e153", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_141_MirnaExpressionWorkflow4c9eba83-b550-4f96-be9f-fbf72952375c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7806768a-a496-4847-af33-7817e223decd", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50355, + "md5sum": "685bebe6e9e6657e98a6a922dfb53847", + "file_id": "25d89cc7-1929-4ea2-a5c8-dbea62301fc2", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2101-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "5d1a54fe-e0df-4c17-b623-b649a136dc82", + "entity_id": "95970bdb-e1f2-49dc-903b-c30088cef71d" + } + ], + "file_name": "e82e5a67-9628-425e-9509-8e59dac8801e.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_330_MirnaExpressionb18ecb30-f351-4098-a99b-25540157b27b_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2101-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_330_AlignedReadsb18ecb30-f351-4098-a99b-25540157b27b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 180242517, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "19de71cbdf0a279b42ed1beab1da3483", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "ecb011a7-7df8-4dee-b26b-e1123b771c54", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_330_MirnaExpressionWorkflow82fefff7-7315-4a99-8df1-80501b42835f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ed788c75-207a-45ba-943d-2e0e049d27bb", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50356, + "md5sum": "532c9ed2ffbca7166f8d91c0b8a4d4c7", + "file_id": "e0acfdd1-c6bb-417a-9c89-01d47c5c0ee6", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-31-1951-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "b0839f46-8c82-4619-be3d-c857a1759463", + "entity_id": "197ea6b5-5716-4e5c-9c7f-92ed4521682a" + } + ], + "file_name": "336bdf94-2c7c-4f4e-a046-09421240e273.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_21_MirnaExpressionfeeb11d0-346b-486b-92b3-563a6e59d630_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-31-1951-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_21_AlignedReadsfeeb11d0-346b-486b-92b3-563a6e59d630", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 200562093, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "df2d1e8c14f93e6533782a0f8b11cb14", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a3e01732-1b07-43c9-9570-3327e0aad768", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_21_MirnaExpressionWorkflowdba86a16-0ca9-4431-a0b8-7f0c9bfee2f9_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ad48becb-1a39-4b9a-b56b-3b10d7d556e7", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50285, + "md5sum": "193c0135a64f41875a45efb11bf23d5e", + "file_id": "42346878-816d-4a45-9c35-194b3a7d89d2", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1463-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "171f7917-69eb-4a3f-9cc0-0e1dffd412c1", + "entity_id": "939d41b7-9ccb-4cf6-be16-f2792aece5eb" + } + ], + "file_name": "df5a89e9-3a01-45b0-aa49-c0ff89e726b4.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_55_MirnaExpression910a5ea3-9a73-47e0-a59b-247b13b77f16_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1463-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_55_AlignedReads910a5ea3-9a73-47e0-a59b-247b13b77f16", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 155301680, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "58c2c5e4fbfcfcda04a61b50621b765a", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "ac438b58-59fb-401a-8cf1-e2ef236baf1c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_55_MirnaExpressionWorkflow1eb36c8b-c552-44b7-8801-79615df5a28e_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "910ac05d-2ad6-42ab-9e25-49d656670bf2", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50302, + "md5sum": "d6e97c1f35be25b1e48b3488a0f23e2c", + "file_id": "e65e034d-a6c2-47c8-994b-f9faf54c762a", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2027-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "219f54ef-4235-482d-b799-f2fa9930105c", + "entity_id": "fc1f34ba-12e1-46d8-85ef-15b9486b37c2" + } + ], + "file_name": "e83ec329-a390-464e-b760-28de78fd1532.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_163_MirnaExpression3b574184-ad50-4351-a748-a2d7f0124b40_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2027-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_163_AlignedReads3b574184-ad50-4351-a748-a2d7f0124b40", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 122061008, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "82fbc2435d85a6a0980dc16c3c46d5cd", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "70ca9198-5c12-4440-a9ed-0fb307af20d9", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_163_MirnaExpressionWorkflow1f25bfb0-21cc-42da-99e7-adce64d72c9f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "30e7555d-865b-4ed5-a18f-ce6a7d60b4ec", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50387, + "md5sum": "3feef7915cdfacaba23fcf172687e03e", + "file_id": "6b1c8ae8-ac1c-468c-9c96-f5461faa72c8", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1335-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "ab3dbbbe-eed6-4a35-a505-1815225e86c9", + "entity_id": "6af34bd0-c3c5-45f3-881f-be5dded7f335" + } + ], + "file_name": "4daf8c79-d47b-4be2-a037-9f7b87b0fa7b.mirnaseq.isoforms.quantification.txt", + "submitter_id": "65e1d295-88aa-42a3-aab4-764476b02b0e", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-04-1335", + "notes": "[schaefc]: Pathology indicates Stage I disease", + "submitter_id": "680", + "classification": "Observation", + "entity_id": "ab3dbbbe-eed6-4a35-a505-1815225e86c9", + "created_datetime": "2010-07-30T00:00:00", + "annotation_id": "18bac3ce-7eb0-5385-bbb8-1a8e197b9fd4", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "ab3dbbbe-eed6-4a35-a505-1815225e86c9", + "state": "released", + "category": "Item may not meet study protocol", + "status": "Approved", + "case_submitter_id": "TCGA-04-1335" + } + ], + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9842354430725464, + "total_reads": 25556887, + "access": "controlled", + "file_name": "6af34bd0-c3c5-45f3-881f-be5dded7f335_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005626034, + "proportion_reads_duplicated": 0, + "submitter_id": "c3ed7bfa-331b-41f8-84b2-5d3b98535fb5", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 454477572, + "created_datetime": "2024-09-20T11:12:48.956359-05:00", + "average_base_quality": 36, + "md5sum": "17bda706e34c64c6d4a8e44630d08e1f", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "ba377426-f9e6-4742-ad47-9f107642b0fe", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 30, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "4daf8c79-d47b-4be2-a037-9f7b87b0fa7b_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c8ba37bb-9efe-4ec4-9907-76eb848aec7e", + "created_datetime": "2024-09-20T11:16:56.643703-05:00" + }, + "file_size": 634464, + "md5sum": "40feaff0eee66c35771180be8435b864", + "file_id": "1863e00d-61ba-4484-815d-947ca05f718c", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1918-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "3491d67a-4f83-4f67-8085-bbb9fe942be5", + "entity_id": "62f75d97-ea9e-4694-8c83-1a0e6d137a02" + } + ], + "file_name": "a9fbcbb3-0d3f-483f-8286-c23f7b1fef31.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_17_MirnaExpression1f030800-9ce5-40a5-8b90-67aa91f9ac11_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1918-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_17_AlignedReads1f030800-9ce5-40a5-8b90-67aa91f9ac11", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 437546050, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "5739b8746d5c25bfd1bf779386d18bb9", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "88898528-4ce4-4762-8057-030844fa21ce", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_17_MirnaExpressionWorkflow65a08322-6f27-4ac2-899f-5df9a55f40e3_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2ccd5f42-0af5-4a66-a0e8-1285b1c9545a", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 528925, + "md5sum": "3c2dc90383ebd219b400f981f7f35620", + "file_id": "1e677ab6-d525-4bc8-968b-bb251b6e4950", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1995-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "931738a7-4b5b-46dc-b69f-72600862d8af", + "entity_id": "13b2c972-c6ef-4d1f-8ada-f831d2606023" + } + ], + "file_name": "00ed6a2a-f49f-4fde-b82d-6405562a6976.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_433_MirnaExpression61dc9c27-16fa-4bad-9b84-d86547e5d53e_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1995-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_433_AlignedReads61dc9c27-16fa-4bad-9b84-d86547e5d53e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 134484449, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "f7e8f2436392b4f6cfd5bc89f9dc4d97", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "32514a51-fb88-4605-a46a-d33b9634aaa5", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_433_MirnaExpressionWorkflowe9120655-120e-4c6a-a97b-e12a14d8163f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "9e17167d-fa5b-406e-ace6-376ed6b7e3aa", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50293, + "md5sum": "d029fad250da0c894ba4875e03b05692", + "file_id": "e0da46e3-a245-4f27-88d4-cdf0741c647e", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1546-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "9e7d3dea-5d81-4f10-819c-1c2a68ddd150", + "entity_id": "9984be2d-c37f-44cd-9eb8-61b65efcf8cb" + } + ], + "file_name": "0d206137-dd6e-466f-9966-30331b36bd31.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_413_MirnaExpression17eb6543-124d-4b24-a787-cb80a5021b1a_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1546-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_413_AlignedReads17eb6543-124d-4b24-a787-cb80a5021b1a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 158197810, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "efcdeb20118fbe49d7f3ffc0e65a8115", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5b592b43-6547-40bb-8898-f1303ac7c5a7", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_413_MirnaExpressionWorkflowcd6f75f1-027c-4813-a566-4c3a72702516_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "39d1ed4f-f34a-483b-ba26-8e269913a9ba", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 314150, + "md5sum": "96b376cae29f9d06b5e3f797c1e62102", + "file_id": "1d48bf45-061f-45ae-a386-f268b93b953b", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1546-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "9e7d3dea-5d81-4f10-819c-1c2a68ddd150", + "entity_id": "9984be2d-c37f-44cd-9eb8-61b65efcf8cb" + } + ], + "file_name": "0d206137-dd6e-466f-9966-30331b36bd31.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_413_MirnaExpression17eb6543-124d-4b24-a787-cb80a5021b1a_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1546-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_413_AlignedReads17eb6543-124d-4b24-a787-cb80a5021b1a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 158197810, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "efcdeb20118fbe49d7f3ffc0e65a8115", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5b592b43-6547-40bb-8898-f1303ac7c5a7", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_413_MirnaExpressionWorkflowcd6f75f1-027c-4813-a566-4c3a72702516_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "39d1ed4f-f34a-483b-ba26-8e269913a9ba", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50221, + "md5sum": "ad1d16d9435da9ac8d63872fd9b432ff", + "file_id": "daf89bb5-9f20-4ad0-8958-e99b54d2c108", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1031-01A-01R-A96U-41", + "entity_type": "aliquot", + "case_id": "c7c3fe4a-327a-4b7e-a259-989b72971209", + "entity_id": "b7887bad-4a24-4033-b3a0-d2beffca4f9b" + } + ], + "file_name": "28a69387-df6e-4d1b-8d45-d74624a53136.mirnaseq.mirnas.quantification.txt", + "submitter_id": "9089d783-bde1-49ac-a291-26fc657e63df", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9916769827695565, + "total_reads": 25146770, + "access": "controlled", + "file_name": "b7887bad-4a24-4033-b3a0-d2beffca4f9b_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.002598953, + "proportion_reads_duplicated": 0, + "submitter_id": "f9a4daa2-66c2-488a-9768-0286e8fbd1fc", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 473959208, + "created_datetime": "2024-09-20T11:13:11.170073-05:00", + "average_base_quality": 36, + "md5sum": "138156a87846eb78fa1e1842a550e93b", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "bf0070d8-5415-4f0e-b53d-a3aee745a375", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 35, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "28a69387-df6e-4d1b-8d45-d74624a53136_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "fa7074bc-cc61-4748-8b3b-75a7c474df47", + "created_datetime": "2024-09-20T11:17:43.117874-05:00" + }, + "file_size": 50569, + "md5sum": "436421e7395cb874fa24aa01e21fc995", + "file_id": "8c25b7c5-b526-4458-969c-72d293bdd6e2", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1514-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "e9483296-cb91-497a-b955-39a3c3289dac", + "entity_id": "cc5e2498-a9e6-48be-bbda-9aa101546ca4" + } + ], + "file_name": "5637de49-a56c-45e0-8671-e953d66bcb1d.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_238_MirnaExpression1f8c6dfa-7b09-45d7-b23a-7755b2c6af9a_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1514-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_238_AlignedReads1f8c6dfa-7b09-45d7-b23a-7755b2c6af9a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 240586808, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "c01be115980114f8ad7b685a402b6a8e", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "8f7bd634-8fed-43d4-bb20-02f860fdf6ac", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_238_MirnaExpressionWorkflow057a64de-1c78-4732-9263-2a2c77b90a77_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "29948285-56ae-4141-bc1a-7971977d57b7", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50518, + "md5sum": "87e0486834895688fed8e0dbc6c760f7", + "file_id": "4018f453-3dae-4504-b0f6-e0e509df69d0", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-2645-01A-01R-A96U-41", + "entity_type": "aliquot", + "case_id": "66a0df9b-096b-4e8e-9b9c-54bf8637720b", + "entity_id": "4180bd35-261c-4a94-b74c-9786264aeff0" + } + ], + "file_name": "68dd81a3-d1d8-4562-9127-17b4db200be1.mirnaseq.mirnas.quantification.txt", + "submitter_id": "c2cffd5c-c6d6-444b-acf3-21a3a38720d1", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9913630888207493, + "total_reads": 23086610, + "access": "controlled", + "file_name": "4180bd35-261c-4a94-b74c-9786264aeff0_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004128823, + "proportion_reads_duplicated": 0, + "submitter_id": "4c740416-d554-48cf-a90b-3fa8b2dfa0ee", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 384870235, + "created_datetime": "2024-09-20T11:14:24.663198-05:00", + "average_base_quality": 36, + "md5sum": "e16dba671a07b00d35a40b63c0669c57", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "fddb42ea-3b8a-4680-8b55-ed2d20454d71", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "68dd81a3-d1d8-4562-9127-17b4db200be1_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0a407c93-25dd-44d2-a592-4913e15275cb", + "created_datetime": "2024-09-20T11:18:05.964886-05:00" + }, + "file_size": 50814, + "md5sum": "3519b60374038e35d31b63e2b025aef8", + "file_id": "b98f49e0-f338-487a-8f47-24685e74dc60", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2267-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "99a61986-7b23-46b5-99a4-efba6bad3766", + "entity_id": "9ebb3535-6536-49fc-a88b-473235972378" + } + ], + "file_name": "b1c0b5c7-626f-4708-a432-9194287c35fa.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_47_MirnaExpression9317eef2-9825-4da4-a6a2-a96a2690ccd9_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2267-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_47_AlignedReads9317eef2-9825-4da4-a6a2-a96a2690ccd9", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 245639768, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "430d5c85e0af3152383f0586ea52a526", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "f4d91d93-4175-4e5e-8dbd-ebc440736bab", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_47_MirnaExpressionWorkflow4203e104-8311-4d13-b4a6-dba833d5dc2d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ae6c3f65-b953-4246-be2e-0b623a4c54f8", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 422956, + "md5sum": "0a6ff5540cebaf53ecb0790f562f93e2", + "file_id": "858a03d1-3055-48a7-badf-7fd879af3705", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1705-02A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "f9c835db-2ab6-4bf5-826f-48723493c0ec", + "entity_id": "cc3afd8c-3639-437f-a22b-aadc9f6c5aaa" + } + ], + "file_name": "26e7326d-6c1e-4af5-ab54-78be4526d569.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_317_MirnaExpression5f0a140f-13ed-4270-b0d4-f2bd73276237_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "b4321f59-d41f-54f8-a812-c906398f86fd", + "entity_submitter_id": "TCGA-29-1705-02A-01R", + "notes": "Ovary Triplet", + "entity_type": "analyte", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "2084", + "state": "released", + "category": "Item is noncanonical", + "classification": "Notification", + "entity_id": "656f95dd-960a-46c9-88d9-060adfc1de0b", + "created_datetime": "2011-03-14T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "5a88f39e-f348-586e-a598-873bfa8775e2", + "entity_submitter_id": "TCGA-29-1705-02A-01R-1567-13", + "notes": "RNA-seq:HIGH rRNA CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8846", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "cc3afd8c-3639-437f-a22b-aadc9f6c5aaa", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "c6fdc09d-b4a4-5c09-9be2-5a5bb28e1aa1", + "entity_submitter_id": "TCGA-29-1705-02A-01R-1567-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29792", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "cc3afd8c-3639-437f-a22b-aadc9f6c5aaa", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "entity_submitter_id": "TCGA-29-1705", + "notes": "This is part of the ovarian triplet set.", + "submitter_id": "1242", + "classification": "Notification", + "entity_id": "f9c835db-2ab6-4bf5-826f-48723493c0ec", + "created_datetime": "2011-01-28T00:00:00", + "annotation_id": "21f06af2-c9eb-5fef-b7a5-cda0d6339354", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "f9c835db-2ab6-4bf5-826f-48723493c0ec", + "state": "released", + "category": "Item in special subset", + "status": "Approved", + "case_submitter_id": "TCGA-29-1705" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1705-02A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_317_AlignedReads5f0a140f-13ed-4270-b0d4-f2bd73276237", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 89087058, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "f2d9bdc02fb8a0d3aa8edefaf9f457b3", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "d863eed0-6d30-41d8-8b87-69b815d0bfe3", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_317_MirnaExpressionWorkflowde6453ca-db1a-4592-8df9-b0e26755cd80_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "05be6181-fb76-4ab0-bdf6-0c0bff3628be", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50133, + "md5sum": "ec8b87293b53c00fc6a88d04d8d66469", + "file_id": "cf594c07-8200-4e5c-a0bc-dcf2ea55f2b2", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-2054-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "cbd87697-7708-4b69-9e50-9ee474feabe1", + "entity_id": "5cd7faa0-323a-4ea3-a658-859d0336e0ac" + } + ], + "file_name": "0caa173c-a21a-485f-badd-562cd6b415c2.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_288_MirnaExpressionb59c537b-c3e4-4282-923f-16a3440957f0_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-2054-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_288_AlignedReadsb59c537b-c3e4-4282-923f-16a3440957f0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 301707622, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "7af10728f4ecec5d3b4c1ee24ceaa979", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6d49e1a6-c514-42a8-817a-7795201ad66b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_288_MirnaExpressionWorkflowe3171110-c381-4a35-a901-5a3169b946ad_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f0af7115-57ca-4094-a6fe-01aedefc4e06", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50584, + "md5sum": "2b55c6eea3ac834edd326ef0599c7e78", + "file_id": "1be45c68-66dd-44db-9c4a-c958f458e6eb", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2035-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "062982f8-9f49-425a-99e9-008af5ed9040", + "entity_id": "e78f43ff-0b31-4f9b-a9c1-02155ee3d8b0" + } + ], + "file_name": "1e93f0a7-1ca8-4ea6-b917-e166e7508819.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_244_MirnaExpressionddfd7d8f-dda2-45e0-9c25-bffe6613b5de_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2035-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_244_AlignedReadsddfd7d8f-dda2-45e0-9c25-bffe6613b5de", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 197639388, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "ad88768c83d8fda5671c63505308bf05", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "176faa45-f502-486f-9487-30f7334a8502", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_244_MirnaExpressionWorkflowad086bae-49ec-48cc-8471-fbad8b780101_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a7e7966d-1bf2-408c-b61a-ca3f55244ac7", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50363, + "md5sum": "3a43a317ff743d3e024e8b289a540317", + "file_id": "3c5f619c-9a12-47cb-aa37-4124ca50beb0", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2035-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "062982f8-9f49-425a-99e9-008af5ed9040", + "entity_id": "e78f43ff-0b31-4f9b-a9c1-02155ee3d8b0" + } + ], + "file_name": "1e93f0a7-1ca8-4ea6-b917-e166e7508819.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_244_MirnaExpressionddfd7d8f-dda2-45e0-9c25-bffe6613b5de_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2035-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_244_AlignedReadsddfd7d8f-dda2-45e0-9c25-bffe6613b5de", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 197639388, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "ad88768c83d8fda5671c63505308bf05", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "176faa45-f502-486f-9487-30f7334a8502", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_244_MirnaExpressionWorkflowad086bae-49ec-48cc-8471-fbad8b780101_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a7e7966d-1bf2-408c-b61a-ca3f55244ac7", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 363162, + "md5sum": "d2d57c91a8cfcf8bbc5dc39b77e2e807", + "file_id": "b0efdacf-345d-4c4d-bc7e-69cadd33c443", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1326-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "07a859fc-6f78-4905-9035-90e2403dbe8d", + "entity_id": "b29bd766-95b1-46fa-a070-d2206cd5722a" + } + ], + "file_name": "70f92ff5-e211-4b29-ac29-14f7f7c4b0de.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_380_MirnaExpression494bde84-c2c6-43da-b2eb-743575db0848_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1326-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_380_AlignedReads494bde84-c2c6-43da-b2eb-743575db0848", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 150205258, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "85ade8b2d2f553e93e889baf88c7285f", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "30eb5855-486e-4e84-b2bc-75f7b9290eb7", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_380_MirnaExpressionWorkflow87b1791e-b559-46fd-8952-220fa9bb827b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "30fc3aca-91d7-47ad-a67e-556465c9c557", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50343, + "md5sum": "d18ee7f433ec99465d635181444b22f5", + "file_id": "5905a69b-50df-4426-913b-173a2b935733", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1917-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "87cdf9a8-0579-4d3e-b4df-0f8eef63d7f4", + "entity_id": "519aea8b-5e08-47b2-bb98-b311f2dba540" + } + ], + "file_name": "161fc178-9a31-41fb-84ac-47d1ac5d5bea.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_234_MirnaExpressionc10f26ca-fa89-4d91-a35c-4f0d09a139fd_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1917-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_234_AlignedReadsc10f26ca-fa89-4d91-a35c-4f0d09a139fd", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 218698024, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "75b2c5355f59c1daaac6547c3ad291d3", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "0f91e0c8-efdf-4483-ae12-e3b6e575018c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_234_MirnaExpressionWorkflow09eb5aeb-ca66-404a-bd6b-4a4bb3e91563_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a888202f-4520-453f-a17d-2705c1f6cd96", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50312, + "md5sum": "6afb04257eb96ca933bc79bc41cd91bf", + "file_id": "f0a5816e-a3cd-4bd1-9f8a-2540f58d7514", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1326-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "07a859fc-6f78-4905-9035-90e2403dbe8d", + "entity_id": "b29bd766-95b1-46fa-a070-d2206cd5722a" + } + ], + "file_name": "70f92ff5-e211-4b29-ac29-14f7f7c4b0de.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_380_MirnaExpression494bde84-c2c6-43da-b2eb-743575db0848_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1326-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_380_AlignedReads494bde84-c2c6-43da-b2eb-743575db0848", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 150205258, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "85ade8b2d2f553e93e889baf88c7285f", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "30eb5855-486e-4e84-b2bc-75f7b9290eb7", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_380_MirnaExpressionWorkflow87b1791e-b559-46fd-8952-220fa9bb827b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "30fc3aca-91d7-47ad-a67e-556465c9c557", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 354148, + "md5sum": "706d8858c7636811779ced2a3b978ce0", + "file_id": "8568393a-749f-4015-ada5-45c36c9a412c", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1923-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "8449955f-42d9-46f6-919a-5cc5d59e6284", + "entity_id": "d34ae25d-8073-4129-a1b8-3f43e19af73b" + } + ], + "file_name": "425fcf70-5b63-4b81-98f8-ec5212be70dd.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_341_MirnaExpression4f2408b2-fbe2-4446-b1dd-7e20a38b02cf_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "bdd34a84-1422-54ed-ba44-cc44f1d7c199", + "entity_submitter_id": "TCGA-24-1923-01A-01R-1567-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29789", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "d34ae25d-8073-4129-a1b8-3f43e19af73b", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "f340f2cb-3cdc-5843-83d1-851d95d00f93", + "entity_submitter_id": "TCGA-24-1923-01A-01R-1567-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8862", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "d34ae25d-8073-4129-a1b8-3f43e19af73b", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1923-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_341_AlignedReads4f2408b2-fbe2-4446-b1dd-7e20a38b02cf", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 217493186, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "2edce0a95af4a18a21244698490e36e0", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "947be1c5-fca8-4ca6-bb13-c8b6714c60d0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_341_MirnaExpressionWorkflow18640e74-725b-4950-a291-1bdb0433df52_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a6ec3d41-5dbf-4949-aa28-66a8925f2eda", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50312, + "md5sum": "a3ce8fc15efe8331f3da6f1c27e9936e", + "file_id": "5a25340d-36f3-4cbf-a756-7e1dd24ec2b2", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1470-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "a3898640-0d85-441d-a000-b5b8ff857399", + "entity_id": "f2066443-2f17-4279-a993-f07961259108" + } + ], + "file_name": "1e0d261b-645d-46dc-8cb9-8ba6b57a0368.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_240_MirnaExpression28b4d25d-cc0e-4f78-ae6a-b57bed4cc985_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "203b2606-4653-58f2-89b7-4a151903ac38", + "entity_submitter_id": "TCGA-24-1470-01A-01R-1566-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8812", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "f2066443-2f17-4279-a993-f07961259108", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "2bc252c1-7a3a-5788-8884-9a36d36b1a34", + "entity_submitter_id": "TCGA-24-1470-01A-01R-1566-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29785", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "f2066443-2f17-4279-a993-f07961259108", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1470-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_240_AlignedReads28b4d25d-cc0e-4f78-ae6a-b57bed4cc985", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 148859170, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "9c2880928e2ac8746249415f875dbbc6", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "33007211-5e62-4fa1-b1bc-8767ae3a9f36", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_240_MirnaExpressionWorkflow8dbf22dd-87d3-44ae-a37f-0abd44150193_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "58fb81e6-566b-4c73-a22d-da56a866b59d", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50336, + "md5sum": "f00d10521666a690d3a17536a60aab0d", + "file_id": "76d9eef5-8078-4e68-9154-e18f41ba1b90", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1923-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "8449955f-42d9-46f6-919a-5cc5d59e6284", + "entity_id": "d34ae25d-8073-4129-a1b8-3f43e19af73b" + } + ], + "file_name": "425fcf70-5b63-4b81-98f8-ec5212be70dd.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_341_MirnaExpression4f2408b2-fbe2-4446-b1dd-7e20a38b02cf_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "bdd34a84-1422-54ed-ba44-cc44f1d7c199", + "entity_submitter_id": "TCGA-24-1923-01A-01R-1567-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29789", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "d34ae25d-8073-4129-a1b8-3f43e19af73b", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "f340f2cb-3cdc-5843-83d1-851d95d00f93", + "entity_submitter_id": "TCGA-24-1923-01A-01R-1567-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8862", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "d34ae25d-8073-4129-a1b8-3f43e19af73b", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1923-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_341_AlignedReads4f2408b2-fbe2-4446-b1dd-7e20a38b02cf", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 217493186, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "2edce0a95af4a18a21244698490e36e0", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "947be1c5-fca8-4ca6-bb13-c8b6714c60d0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_341_MirnaExpressionWorkflow18640e74-725b-4950-a291-1bdb0433df52_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a6ec3d41-5dbf-4949-aa28-66a8925f2eda", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 364296, + "md5sum": "96379b997a82ebe010d7c265db3380b2", + "file_id": "af5240bc-fe35-4c23-9072-009b1e7e8417", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-59-2348-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "20cf00ea-d7da-42bb-bce7-f005f0b952eb", + "entity_id": "7162d809-ff1a-4346-bb00-c8086386ec46" + } + ], + "file_name": "4508c46a-7ecc-4031-9936-4c4746ce5a8d.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_362_MirnaExpressiond1d6798a-fd47-483a-900b-062f32c981ec_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-59-2348-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_362_AlignedReadsd1d6798a-fd47-483a-900b-062f32c981ec", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 329195522, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "fad56af3c5b47884f613d71417513dca", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "72a4a90d-f1a6-4fd7-89a7-6f2a9a7063de", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_362_MirnaExpressionWorkflow13f6afe5-ff18-4b79-9036-ac05867fba6f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b1bd80b4-9ef2-4192-8249-7ee2e4297b66", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50385, + "md5sum": "49f6b7ec6aa25dd599a31ab41ca57fd6", + "file_id": "8438ca9e-78a4-40de-82e1-da30489e695c", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1474-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "d7b3156d-672a-4a55-868d-9ca6a09fcb0f", + "entity_id": "4da3ccd5-53e1-46f5-874d-e5d131dbfc52" + } + ], + "file_name": "e61d4ce3-c0f1-4d4d-9205-f09fed9bf43f.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_107_MirnaExpression6f722aa1-7783-4e26-861c-7e705123aea0_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1474-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_107_AlignedReads6f722aa1-7783-4e26-861c-7e705123aea0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 187332417, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "55fded9438f980ac17cbf6b9f7cc948c", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b3e06533-494f-454c-9a31-9f8660252941", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_107_MirnaExpressionWorkflowca5acfcc-a9f4-4a66-b706-308648741071_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1bc9dbfe-4206-4a0f-bb0d-770f1a25f85d", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 332819, + "md5sum": "4a01e94b75e4c08985e7ae0068ddc0f3", + "file_id": "3d2b4d1e-32a9-40c9-9efd-4f19c624949d", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1469-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "cd6e5d3d-1c86-40dd-9cb3-b2e2075dec56", + "entity_id": "7b6fe6e3-145b-46e6-884e-fcec23514674" + } + ], + "file_name": "1243e3ec-e09f-48fe-a2fd-2035eb202af1.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_227_MirnaExpression79b2a22b-973b-438e-9588-d11aed94cdbd_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1469-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_227_AlignedReads79b2a22b-973b-438e-9588-d11aed94cdbd", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 213493277, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "b3bcac4d408398e57858bca3170a31ec", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "025e9754-55ec-4ecf-99d6-2fa779bad9fc", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_227_MirnaExpressionWorkflowb5ba7bfc-a1f8-4743-8508-e88d58fbb0b0_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0f87802d-670a-4e3a-ad58-28a52c5a6658", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 401698, + "md5sum": "6682b34ecacf03469dbbaaaf00e5fa4f", + "file_id": "83cc9884-157b-43a2-850e-b373ea0af02c", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-36-1580-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "533f5ff9-466c-4cdb-9c46-b841c2626775", + "entity_id": "6a101b07-3cc5-4da3-90ab-0e45fa5b9cd3" + } + ], + "file_name": "6c23024c-aa93-44c7-a89d-46e545e13e18.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_230_MirnaExpression6ec6c599-93a7-4944-b1c2-9ac31e0bd997_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-36-1580-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_230_AlignedReads6ec6c599-93a7-4944-b1c2-9ac31e0bd997", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 173960961, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "14e922e598a075c9cbaa48cb3f2e362b", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "2849e29b-ea9a-4248-aa36-571bca4d82e3", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_230_MirnaExpressionWorkflowe20fc59f-129c-42f0-bf72-70a9d779bdc4_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8656875c-d0c0-4fd1-b828-5acb00892d3c", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 412489, + "md5sum": "1dd06ed6a599e05e93a5bce5d644be18", + "file_id": "dbdd912e-9f6a-49b6-8ff6-99df4f049f29", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-36-1580-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "533f5ff9-466c-4cdb-9c46-b841c2626775", + "entity_id": "6a101b07-3cc5-4da3-90ab-0e45fa5b9cd3" + } + ], + "file_name": "6c23024c-aa93-44c7-a89d-46e545e13e18.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_230_MirnaExpression6ec6c599-93a7-4944-b1c2-9ac31e0bd997_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-36-1580-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_230_AlignedReads6ec6c599-93a7-4944-b1c2-9ac31e0bd997", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 173960961, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "14e922e598a075c9cbaa48cb3f2e362b", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "2849e29b-ea9a-4248-aa36-571bca4d82e3", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_230_MirnaExpressionWorkflowe20fc59f-129c-42f0-bf72-70a9d779bdc4_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8656875c-d0c0-4fd1-b828-5acb00892d3c", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50415, + "md5sum": "9a111a8160241e2d6d01d2a057eecbcd", + "file_id": "5d2de448-9931-42aa-8c42-6bc3127b9966", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-1667-01C-01R-1566-13", + "entity_type": "aliquot", + "case_id": "32d4d200-1fdf-44ed-b81f-1954a9c93926", + "entity_id": "9b7a1eb0-014f-4cd6-bde8-fd96131fac3e" + } + ], + "file_name": "4cbbf25f-4fc6-4590-96d1-832a6ab2708b.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_226_MirnaExpressiona18c2237-e392-4c61-865a-cecefa244dda_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-1667-01C-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_226_AlignedReadsa18c2237-e392-4c61-865a-cecefa244dda", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 200380778, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "d947adde26bda7efe0d65882fb57bee6", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "3b42fb71-abd8-4f1c-9362-d3b300015792", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_226_MirnaExpressionWorkflowda936d54-9d61-4575-a09f-1d28cf38b543_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f5402182-74f4-438d-93f1-8a1da19e8777", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50201, + "md5sum": "9dcff04660a8c9431650b41499343973", + "file_id": "f9cb899f-0625-412f-abeb-06a2c9ace5e5", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1701-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "86b513ba-df09-485d-92d4-fb9e888f7350", + "entity_id": "e5e6f25b-d641-4598-8bb1-0850750ef048" + } + ], + "file_name": "78db0e91-71ff-46bf-9ace-22ae8aba21fa.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_356_MirnaExpressiondf445a9e-fe38-4210-be9c-a446c6dc35e0_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1701-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_356_AlignedReadsdf445a9e-fe38-4210-be9c-a446c6dc35e0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 181197793, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "edd48059c345450356fba38cc98a5de8", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a9468f95-f816-46f7-95e6-f9c9ec1fe3cf", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_356_MirnaExpressionWorkflowa3841e86-695d-4665-9259-70ebed1cfab8_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d2c8c73c-1700-4b78-90d8-5298597bdc55", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50275, + "md5sum": "ada1fdfb81a3dd4e028f7edc49f13ab1", + "file_id": "f03073cf-9898-46ff-838f-4982afde29df", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1498-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "56a30462-2819-4c18-95be-8e73880a4921", + "entity_id": "176d1ca2-eb1d-4f49-9b10-c129c822fa5a" + } + ], + "file_name": "495bd808-d3f9-4490-9e29-8afb0211f9a1.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_88_MirnaExpression7f9080ab-619c-4349-a35c-54d1bee630e3_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1498-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_88_AlignedReads7f9080ab-619c-4349-a35c-54d1bee630e3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 236132462, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "206f91a0c707ff234eef7bf291d8be00", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "53bf2172-e9ec-443a-907a-290017e11a64", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_88_MirnaExpressionWorkflow38165ad2-2d53-4012-ba87-d358ce45dca1_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "08794c15-77d2-4942-8de4-2a8bac50e21e", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 393269, + "md5sum": "5d975ab683f622602be3d844485a640a", + "file_id": "59a3b85a-cea4-4477-a560-53772d006b83", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1337-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "d1e974e7-dd68-40cc-ad06-2b57d964e5a1", + "entity_id": "42faaf19-95dd-426c-96d5-f3363c2e12ab" + } + ], + "file_name": "3832b832-ddf2-4632-8be7-03946e864a96.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_443_MirnaExpression51569497-ee48-4f6d-b1a1-1006bda21d8a_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "103a53d6-c5a2-504a-bf75-a93447c0ab3c", + "entity_submitter_id": "TCGA-04-1337-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8774", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "42faaf19-95dd-426c-96d5-f3363c2e12ab", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "c42280ba-a58b-5d87-b030-fd678bbd3cab", + "entity_submitter_id": "TCGA-04-1337-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29688", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "42faaf19-95dd-426c-96d5-f3363c2e12ab", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1337-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_443_AlignedReads51569497-ee48-4f6d-b1a1-1006bda21d8a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 115353830, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "d5247d9780200ea15d05616e307ccc13", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "f7dabb4d-9f91-43d1-bb5a-a494c043cae1", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_443_MirnaExpressionWorkflowd7c28431-8e91-40f3-bfd0-c3d4d67c9eeb_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "bb9ba44a-e4fb-4065-9efb-e8d1d8175113", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 301188, + "md5sum": "68e539409c6624a158b87cc9700d817c", + "file_id": "565fd0d2-defb-4517-8b8f-45f109e9e6e2", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-30-1855-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "7d1e9451-7a6a-4086-af7f-3ed57505daf0", + "entity_id": "732d0664-c343-4a63-9dc3-40985e540a59" + } + ], + "file_name": "33028eea-2d01-4442-bef7-7f4bd3b00fae.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_231_MirnaExpression9a7ffd78-52c7-4ce7-9162-5078c05c5996_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-30-1855-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_231_AlignedReads9a7ffd78-52c7-4ce7-9162-5078c05c5996", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 170688300, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "4fd6115f63f1244bf2f56805ffca0458", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "db2ff1b3-55bd-4c5c-a672-2d4f4e08b256", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_231_MirnaExpressionWorkflowfecffffe-d74a-43b3-8157-502ebb82c9cc_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b688ad20-e702-4f55-8bdd-bba83ecc4b5a", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50275, + "md5sum": "76696f3038cd2476d2f09762ba96e2ae", + "file_id": "b9a73c51-3c5f-418b-a381-289a4a04bf52", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-30-1855-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "7d1e9451-7a6a-4086-af7f-3ed57505daf0", + "entity_id": "732d0664-c343-4a63-9dc3-40985e540a59" + } + ], + "file_name": "33028eea-2d01-4442-bef7-7f4bd3b00fae.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_231_MirnaExpression9a7ffd78-52c7-4ce7-9162-5078c05c5996_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-30-1855-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_231_AlignedReads9a7ffd78-52c7-4ce7-9162-5078c05c5996", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 170688300, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "4fd6115f63f1244bf2f56805ffca0458", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "db2ff1b3-55bd-4c5c-a672-2d4f4e08b256", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_231_MirnaExpressionWorkflowfecffffe-d74a-43b3-8157-502ebb82c9cc_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b688ad20-e702-4f55-8bdd-bba83ecc4b5a", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 344538, + "md5sum": "e8d230703c1608645d351ac7d7b20fc9", + "file_id": "3d6f60d6-3179-4a53-ac95-1b54d6f9017e", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1558-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "ba68f2cf-9271-41fd-9655-1fac7681f588", + "entity_id": "1b8d5b5e-f671-419a-844a-6640fe5a896d" + } + ], + "file_name": "c7a39416-e802-40f9-923a-d8c212bea633.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_219_MirnaExpressiona5ffee53-5e7f-4d47-a83a-fb0e621b1786_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1558-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_219_AlignedReadsa5ffee53-5e7f-4d47-a83a-fb0e621b1786", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 209878635, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "8784032289a173a50bdf9024237a3806", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "ff018516-7275-4113-b84c-7b01cead58f1", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_219_MirnaExpressionWorkflow3ab85cd0-8461-4018-93c5-595dbccb7247_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "300c275f-19c3-47d6-a932-ed006fab24c4", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 425912, + "md5sum": "d3942452b87009c40cabe1a42d6052e6", + "file_id": "f422faa4-62d5-4097-ab70-340904d7d405", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1558-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "ba68f2cf-9271-41fd-9655-1fac7681f588", + "entity_id": "1b8d5b5e-f671-419a-844a-6640fe5a896d" + } + ], + "file_name": "c7a39416-e802-40f9-923a-d8c212bea633.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_219_MirnaExpressiona5ffee53-5e7f-4d47-a83a-fb0e621b1786_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1558-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_219_AlignedReadsa5ffee53-5e7f-4d47-a83a-fb0e621b1786", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 209878635, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "8784032289a173a50bdf9024237a3806", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "ff018516-7275-4113-b84c-7b01cead58f1", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_219_MirnaExpressionWorkflow3ab85cd0-8461-4018-93c5-595dbccb7247_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "300c275f-19c3-47d6-a932-ed006fab24c4", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50418, + "md5sum": "283f846383922b39659c4a39e3a20ab4", + "file_id": "1efd87f1-c7e3-4b1a-9970-26f2e9ae19c7", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1022-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "d0673efd-3315-4dd5-8ab6-912bfa07dceb", + "entity_id": "2eeb258f-bbc2-4412-9673-cc39915da304" + } + ], + "file_name": "139df8ff-6e24-465c-970b-20f7ff444afb.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_252_MirnaExpressionb5730959-1a73-4830-92be-e7d7510f33de_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "0513b14d-97fb-5baf-9147-55bd72502eff", + "entity_submitter_id": "TCGA-23-1022-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29764", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "2eeb258f-bbc2-4412-9673-cc39915da304", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "a3e1c1a3-2044-55e0-88eb-fe71472eca3a", + "entity_submitter_id": "TCGA-23-1022-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8824", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "2eeb258f-bbc2-4412-9673-cc39915da304", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1022-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_252_AlignedReadsb5730959-1a73-4830-92be-e7d7510f33de", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 160304255, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "91f18c19baff13c7987888d78df06920", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "818fa21c-9311-4395-9dd5-8ed6afc57418", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_252_MirnaExpressionWorkflowf0578915-9deb-43a3-989c-005a75fb997c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ed8e345d-4773-4c53-8049-ffb7274803a3", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 255354, + "md5sum": "74678bd0572e45b96fb082e08d6c6a8e", + "file_id": "be19627a-16f3-4ad7-b382-5916dda40e35", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1030-01A-02R-1564-13", + "entity_type": "aliquot", + "case_id": "cbcf6922-a3c0-43a1-826e-642918b0a635", + "entity_id": "0cdd0255-c7b2-4cbc-8306-37e74d295324" + } + ], + "file_name": "6a310ab7-7902-4654-9ca4-8ee005a94b97.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_490_MirnaExpression93b94712-ff58-48c9-bfe4-0f3c985ab5b4_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "215b5a4f-5f77-53b8-aaac-87bea4f974c4", + "entity_submitter_id": "TCGA-23-1030-01A-02R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29767", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "0cdd0255-c7b2-4cbc-8306-37e74d295324", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "b03520f3-ca13-5d15-a903-45e029fde3ca", + "entity_submitter_id": "TCGA-23-1030-01A-02R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8778", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "0cdd0255-c7b2-4cbc-8306-37e74d295324", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1030-01A-02R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_490_AlignedReads93b94712-ff58-48c9-bfe4-0f3c985ab5b4", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 226007697, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "381c8143cede2ec4e0f538955e32e2c4", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "fc7fec5a-e34c-4b14-8199-2fa879fcb2f4", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_490_MirnaExpressionWorkflow1b96f146-27b6-4f60-958c-e44d2a5a56ee_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a558e881-8fc8-48bb-a09d-9dfb3b5b73bc", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 371027, + "md5sum": "e2a86daa4943b62b25a27eabded6a99a", + "file_id": "8984dace-18f1-467c-a9a8-ceb13def0ced", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1030-01A-02R-1564-13", + "entity_type": "aliquot", + "case_id": "cbcf6922-a3c0-43a1-826e-642918b0a635", + "entity_id": "0cdd0255-c7b2-4cbc-8306-37e74d295324" + } + ], + "file_name": "6a310ab7-7902-4654-9ca4-8ee005a94b97.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_490_MirnaExpression93b94712-ff58-48c9-bfe4-0f3c985ab5b4_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "215b5a4f-5f77-53b8-aaac-87bea4f974c4", + "entity_submitter_id": "TCGA-23-1030-01A-02R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29767", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "0cdd0255-c7b2-4cbc-8306-37e74d295324", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "b03520f3-ca13-5d15-a903-45e029fde3ca", + "entity_submitter_id": "TCGA-23-1030-01A-02R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8778", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "0cdd0255-c7b2-4cbc-8306-37e74d295324", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1030-01A-02R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_490_AlignedReads93b94712-ff58-48c9-bfe4-0f3c985ab5b4", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 226007697, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "381c8143cede2ec4e0f538955e32e2c4", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "fc7fec5a-e34c-4b14-8199-2fa879fcb2f4", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_490_MirnaExpressionWorkflow1b96f146-27b6-4f60-958c-e44d2a5a56ee_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a558e881-8fc8-48bb-a09d-9dfb3b5b73bc", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50310, + "md5sum": "cd7339f0b817fba2d586f6085db810bf", + "file_id": "b44ac8a0-c1a4-49a1-9d1c-0df0440a8048", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0768-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "e732f81c-9b7d-44bd-a905-ff53fbed5009", + "entity_id": "f6907b8b-95a3-47a8-abe0-239c6ae60482" + } + ], + "file_name": "84913533-60d5-4f98-8cd2-4a01e836ee52.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_469_MirnaExpression3bae71a1-3f9d-4d4d-80ec-d3edadba2090_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "37e8e0ad-9c83-5cbe-9e55-c02eb4bf7e3a", + "entity_submitter_id": "TCGA-13-0768-01A-01R-1569-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8849", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "f6907b8b-95a3-47a8-abe0-239c6ae60482", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "b5a579d3-7230-5cfb-83e0-d24892523828", + "entity_submitter_id": "TCGA-13-0768-01A-01R-1569-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29723", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "f6907b8b-95a3-47a8-abe0-239c6ae60482", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0768-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_469_AlignedReads3bae71a1-3f9d-4d4d-80ec-d3edadba2090", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 162556022, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "32dd6cde214db9d5fd181b26f18cdb90", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "ba72c34a-f672-4102-be88-a9b3a9371974", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_469_MirnaExpressionWorkflowcddd0e92-9fa8-48aa-847a-70b90a6dcef9_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ff308994-a63e-4312-8fb6-78b843382939", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50471, + "md5sum": "74d2caa28042b19f1f3c0c6cfea5e972", + "file_id": "3e516dea-6051-4c6f-b13c-b4cbffb392bf", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0768-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "e732f81c-9b7d-44bd-a905-ff53fbed5009", + "entity_id": "f6907b8b-95a3-47a8-abe0-239c6ae60482" + } + ], + "file_name": "84913533-60d5-4f98-8cd2-4a01e836ee52.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_469_MirnaExpression3bae71a1-3f9d-4d4d-80ec-d3edadba2090_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "37e8e0ad-9c83-5cbe-9e55-c02eb4bf7e3a", + "entity_submitter_id": "TCGA-13-0768-01A-01R-1569-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8849", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "f6907b8b-95a3-47a8-abe0-239c6ae60482", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "b5a579d3-7230-5cfb-83e0-d24892523828", + "entity_submitter_id": "TCGA-13-0768-01A-01R-1569-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29723", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "f6907b8b-95a3-47a8-abe0-239c6ae60482", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0768-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_469_AlignedReads3bae71a1-3f9d-4d4d-80ec-d3edadba2090", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 162556022, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "32dd6cde214db9d5fd181b26f18cdb90", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "ba72c34a-f672-4102-be88-a9b3a9371974", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_469_MirnaExpressionWorkflowcddd0e92-9fa8-48aa-847a-70b90a6dcef9_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ff308994-a63e-4312-8fb6-78b843382939", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 397625, + "md5sum": "06fe142e0fc8c562cc6ecd182049b4f1", + "file_id": "dc86c47f-50ae-486f-bda1-0ca1e5497500", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1417-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "48f831b0-5d91-44ae-bc4e-db57ca84fe46", + "entity_id": "e76a7745-3193-4650-9a7a-c96329690be3" + } + ], + "file_name": "2a58319d-778c-46a5-84b3-67594c8121b9.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_312_MirnaExpressione35aadf2-04f4-48f2-98c7-a39b011d4935_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1417-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_312_AlignedReadse35aadf2-04f4-48f2-98c7-a39b011d4935", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 164044944, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "7d2e097301276bc8d471b287d157180e", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "cd2ab1c0-f36a-487f-af5a-90380d0f1ea6", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_312_MirnaExpressionWorkflowc1e7cfc0-8ac6-41f2-b654-975d8e11c001_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "de346851-8707-4e66-8b35-7deb78de6e79", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 360696, + "md5sum": "e751b2c20b1ada8cab96dd0282eea07a", + "file_id": "89e71f52-9497-4c3c-a888-9b206c3fe7a8", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1417-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "48f831b0-5d91-44ae-bc4e-db57ca84fe46", + "entity_id": "e76a7745-3193-4650-9a7a-c96329690be3" + } + ], + "file_name": "2a58319d-778c-46a5-84b3-67594c8121b9.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_312_MirnaExpressione35aadf2-04f4-48f2-98c7-a39b011d4935_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1417-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_312_AlignedReadse35aadf2-04f4-48f2-98c7-a39b011d4935", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 164044944, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "7d2e097301276bc8d471b287d157180e", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "cd2ab1c0-f36a-487f-af5a-90380d0f1ea6", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_312_MirnaExpressionWorkflowc1e7cfc0-8ac6-41f2-b654-975d8e11c001_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "de346851-8707-4e66-8b35-7deb78de6e79", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50269, + "md5sum": "5b441bd1c2907c81e10be08865e34172", + "file_id": "72ea515c-a955-4ea4-8007-c27c37a0151a", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-0982-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "206ce0ed-36a4-47ab-ac8e-f6fca6ac5c18", + "entity_id": "ae158b16-5d93-42d5-a793-3294629af24d" + } + ], + "file_name": "8b2fd9eb-933c-4522-ae0f-2cd892c66621.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_109_MirnaExpression64a70573-c76f-42b3-b8ca-a5f3640ac413_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "5490b3a3-bbdb-5997-9ad3-9a170b0347a3", + "entity_submitter_id": "TCGA-24-0982-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29779", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "ae158b16-5d93-42d5-a793-3294629af24d", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "c2c914d4-8c4d-5d78-9100-f6b4f9b9af02", + "entity_submitter_id": "TCGA-24-0982-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8838", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "ae158b16-5d93-42d5-a793-3294629af24d", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-0982-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_109_AlignedReads64a70573-c76f-42b3-b8ca-a5f3640ac413", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 217531872, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "7aeabbed9673c281ea62c5dae529b46e", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "691c0562-41e0-43d8-bed2-6ee1bcac293e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_109_MirnaExpressionWorkflow880b1b97-e61e-4508-8e06-1ed37f042187_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f4e92411-f61f-48dc-b78c-7270c2ea67d9", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 354394, + "md5sum": "a1c3f6171d9d8380bfb43aaad7096afa", + "file_id": "ceb7d410-c4d9-427c-b580-b997a4125cb7", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-0982-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "206ce0ed-36a4-47ab-ac8e-f6fca6ac5c18", + "entity_id": "ae158b16-5d93-42d5-a793-3294629af24d" + } + ], + "file_name": "8b2fd9eb-933c-4522-ae0f-2cd892c66621.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_109_MirnaExpression64a70573-c76f-42b3-b8ca-a5f3640ac413_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "5490b3a3-bbdb-5997-9ad3-9a170b0347a3", + "entity_submitter_id": "TCGA-24-0982-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29779", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "ae158b16-5d93-42d5-a793-3294629af24d", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "c2c914d4-8c4d-5d78-9100-f6b4f9b9af02", + "entity_submitter_id": "TCGA-24-0982-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8838", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "ae158b16-5d93-42d5-a793-3294629af24d", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-0982-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_109_AlignedReads64a70573-c76f-42b3-b8ca-a5f3640ac413", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 217531872, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "7aeabbed9673c281ea62c5dae529b46e", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "691c0562-41e0-43d8-bed2-6ee1bcac293e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_109_MirnaExpressionWorkflow880b1b97-e61e-4508-8e06-1ed37f042187_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f4e92411-f61f-48dc-b78c-7270c2ea67d9", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50345, + "md5sum": "bbb952c0b7e55dca10730667df1d63a5", + "file_id": "414e904c-6f97-4958-800f-b338c2f29635", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1114-01B-01R-1566-13", + "entity_type": "aliquot", + "case_id": "c0c3caab-9277-4a31-a96c-c607e38d5ccc", + "entity_id": "7cfe1419-65be-4860-9f99-75f4a139d9ac" + } + ], + "file_name": "e13b4565-bb53-404e-a71b-0b37700e9727.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_122_MirnaExpression23cef87f-70b7-4cb7-92b5-be43bd16d032_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1114-01B-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_122_AlignedReads23cef87f-70b7-4cb7-92b5-be43bd16d032", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 113405603, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "8051f83acd420702cda9cb43703bf513", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "7cc2955d-fec5-42aa-9b0a-7f57145ec5ea", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_122_MirnaExpressionWorkflow648b73e7-a09e-49f2-860e-5e664f37e5a6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c7d4ca17-bafb-4519-95a2-145c3f541f18", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50266, + "md5sum": "4dc27dd292e8d6bf0e4c894017949e54", + "file_id": "bea90154-777e-4462-80b1-b6f12e9428e1", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1346-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "25a0a9e6-4f5b-45d8-8f34-abfd31d5ff1b", + "entity_id": "e44d2f5c-c06c-4ce5-8f3a-8810dc4e1e8c" + } + ], + "file_name": "c0d5ebbc-312d-4b7b-98ef-6938080ff4e5.mirnaseq.mirnas.quantification.txt", + "submitter_id": "dc6c71b5-1149-4464-9b51-867f0a82ab66", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9875324816367611, + "total_reads": 30091233, + "access": "controlled", + "file_name": "e44d2f5c-c06c-4ce5-8f3a-8810dc4e1e8c_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004285913, + "proportion_reads_duplicated": 0, + "submitter_id": "ee940b52-7974-4b06-b406-77c4de08a6d2", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 509858444, + "created_datetime": "2024-09-20T11:14:01.571456-05:00", + "average_base_quality": 36, + "md5sum": "9190453a932fee342a586c1e0a53b482", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "112cf4fe-2d8e-484a-89ac-08d294a50ae0", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "c0d5ebbc-312d-4b7b-98ef-6938080ff4e5_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5312916b-0312-4ea4-ad2e-f7f7d0d07103", + "created_datetime": "2024-09-20T11:18:11.614589-05:00" + }, + "file_size": 50758, + "md5sum": "0842cc5d140033556d0ad9275cc5fa54", + "file_id": "6e77bda2-17e0-40b6-a8dc-ebfe9c048393", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1346-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "25a0a9e6-4f5b-45d8-8f34-abfd31d5ff1b", + "entity_id": "c3c1d49c-c63c-4d76-be7c-3176fb07367b" + } + ], + "file_name": "b81a1160-be17-47ef-b8fb-0e022340edb6.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_272_MirnaExpressione22e279a-d9c0-4409-a6de-40a00f65d2c4_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1346-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_272_AlignedReadse22e279a-d9c0-4409-a6de-40a00f65d2c4", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 180026393, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "a837aa0f3c14dd84d159cd7f5e6caad3", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c50434bf-bdc3-4be1-8e68-8a3f61cfe170", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_272_MirnaExpressionWorkflowa9a75c19-978f-4db2-9d2c-840b57876934_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "22ca40fa-b5bb-4df6-85be-5de086fba0eb", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50344, + "md5sum": "8ce97fca5b29247800e27cec3a286c8a", + "file_id": "24460ff7-c030-4f96-9219-dc6280431ef9", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0801-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "b8c3d99c-429b-42a3-b486-6fbcb90cc2e0", + "entity_id": "c51dee3c-5047-4dde-b454-2474de5cf025" + } + ], + "file_name": "313bf802-3721-4ec1-87fd-3bab7c541f32.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_257_MirnaExpression31552e58-a26c-42d5-9886-e1c84e9fdd78_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0801-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_257_AlignedReads31552e58-a26c-42d5-9886-e1c84e9fdd78", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 122538582, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "c9e257b57e67a257eb07f3cfe690225e", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "067a245d-c6a3-4ed3-bc44-f81fc79dcfa6", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_257_MirnaExpressionWorkflow619c84d1-c0f1-47d8-9b16-e167832ef2b2_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "be981aba-d99c-4835-b054-e523edb30f8c", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 291157, + "md5sum": "8fe52b15140f8188ef8f9a6751179e36", + "file_id": "9b69127a-1af2-4724-a791-ea0719c82df5", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1553-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "08c64000-d320-4e4d-974b-da503d48890c", + "entity_id": "7c607e77-a353-4995-855b-36ccaaf3bde6" + } + ], + "file_name": "16fc7599-1ca5-4179-ac55-811a89c3ec32.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_215_MirnaExpression184b9bdb-bc6a-411b-b9e8-5c2bf293bd6b_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1553-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_215_AlignedReads184b9bdb-bc6a-411b-b9e8-5c2bf293bd6b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 122317628, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "9e0e4db20881fc727180a37141e83da7", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c4e67fce-3b31-4ebe-96fa-afe3aa8a5885", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_215_MirnaExpressionWorkflow8ae98c6b-1b20-4f0e-b42f-759f107f1f0f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1f0e02d6-3304-4477-b915-425d6dc757bf", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50109, + "md5sum": "2af5d5398ae044e7463afb3c83b97521", + "file_id": "5298d88d-73ef-4a86-9ee1-1420df8be60c", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1783-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "460616ec-f66f-483b-88c1-757edd86261d", + "entity_id": "dad3688e-fdd7-4c85-a1df-cf0e1cc0a235" + } + ], + "file_name": "27b7aae2-07ed-4a4f-a6fa-c27a41355b90.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_470_MirnaExpression88a6a56f-db0e-47c2-842c-02cbd16735fe_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1783-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_470_AlignedReads88a6a56f-db0e-47c2-842c-02cbd16735fe", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 202851942, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "3c4d570c5dfcc32773107451a6e14028", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a402ebe7-561c-486b-a1f6-266d51c5ec9d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_470_MirnaExpressionWorkflowcee93e21-9af1-4656-b595-2ff1f9825165_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ec66504e-847e-4cb0-b1d3-3354f8706403", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50254, + "md5sum": "fe767235c7a9f027ed372718e8d0f425", + "file_id": "12f7f577-b78e-4dbb-a3ea-e1879063ff97", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1332-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "b46263ab-c3ca-4fda-a895-74c7e6e6fe22", + "entity_id": "08e7c700-7038-40b5-bec0-2dd402e1a225" + } + ], + "file_name": "559313a3-7242-4619-9a97-1f24e26dae26.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_472_MirnaExpression0a28814b-a073-4338-8aec-635846d21335_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "12dff6bb-0d3a-550d-9e24-898678b83bdf", + "entity_submitter_id": "TCGA-04-1332-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29687", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "08e7c700-7038-40b5-bec0-2dd402e1a225", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "ef198191-f361-52df-a099-a83b9df1f295", + "entity_submitter_id": "TCGA-04-1332-01A-01R-1564-13", + "notes": "RNA-seq:HIGH rRNA CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8829", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "08e7c700-7038-40b5-bec0-2dd402e1a225", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1332-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_472_AlignedReads0a28814b-a073-4338-8aec-635846d21335", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 139509188, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "417f7553885331907a676912b85e727b", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c0b14cde-7e94-45d8-856c-06eb5226eb7a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_472_MirnaExpressionWorkflow98fb916c-d1a7-4724-acca-e5bb87eb40c8_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "757a7f60-f014-4da3-abd7-e9d32aa12a9d", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 221444, + "md5sum": "54b10c486bd35daf6f8ef1f79a772307", + "file_id": "b4fb1037-1915-41cb-b102-9d652018b81b", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1510-01A-02R-1565-13", + "entity_type": "aliquot", + "case_id": "dac96910-0cb2-44ea-b108-2d6d51b07112", + "entity_id": "b75db551-4254-4736-a089-0a38890e7778" + } + ], + "file_name": "c771d5ee-c270-4c69-a740-290d0962846a.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_102_MirnaExpression7fc70d9e-dded-4b40-ab0a-975872497c33_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "210a55a3-41e5-5aad-bccd-a7df7d870438", + "entity_submitter_id": "TCGA-13-1510-01A-02R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29759", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "b75db551-4254-4736-a089-0a38890e7778", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "4cef724e-ec96-5a83-a27e-1824ae2e7b80", + "entity_submitter_id": "TCGA-13-1510-01A-02R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8793", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "b75db551-4254-4736-a089-0a38890e7778", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1510-01A-02R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_102_AlignedReads7fc70d9e-dded-4b40-ab0a-975872497c33", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 183464096, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "7dc220a238e9069b0d940bb17206faf0", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c23392c6-be52-48ae-8a14-8bfe155a735e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_102_MirnaExpressionWorkflowe9185153-eba8-424c-8f17-27e79a2e98f8_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "95160f45-0a26-4d82-8f9f-10a7dfb64b99", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 296316, + "md5sum": "22bf5da4f5cd514089376590f13c4651", + "file_id": "958a302d-ae6c-4ad2-8765-ba6d34faa6f5", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1914-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "8e1b8811-1eb2-4337-852c-c19eaa0ee418", + "entity_id": "0d75483f-eab3-41c8-b2cc-453af29b6f44" + } + ], + "file_name": "20e569b2-2679-4e3a-b81d-3c210253c3e1.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_385_MirnaExpressione3dfab7f-664d-4bf6-aea4-57f28c3d0e97_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1914-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_385_AlignedReadse3dfab7f-664d-4bf6-aea4-57f28c3d0e97", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 345637854, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "ec9672efb2ea81a8a6268027395052a0", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c0fe0305-090a-476d-9875-fc6be933ae45", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_385_MirnaExpressionWorkflowf267c5bc-ae7e-4cc7-b943-e1560d257850_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b70dee22-d257-46c3-b574-0abbd93f4c69", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50420, + "md5sum": "73f0e138276ca742fcc9d2c91c94a046", + "file_id": "1a515ae6-353c-4312-afbc-ee9800f51164", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1545-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "f2ec64f5-a414-4c34-99c7-d59bc4e831e0", + "entity_id": "e2fcba09-755d-425d-ab4d-cede8ef86e48" + } + ], + "file_name": "806e63e0-463e-4370-acf8-a2787c33c683.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_292_MirnaExpression36431b6e-3dd2-4d95-908c-02a13f3f6c48_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1545-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_292_AlignedReads36431b6e-3dd2-4d95-908c-02a13f3f6c48", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 64999024, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "58a3a80c0adf3e367f809bfaf3d7c6e2", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "3aa5ffd6-73bd-413e-99b2-369b4a860d2c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_292_MirnaExpressionWorkflow8a0966c3-9406-40ad-ae3c-89350e043954_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "309cad62-388e-4bc2-a65a-c7738fabb4a3", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50040, + "md5sum": "5673ec099ab62bc2eeb45098b4ffe580", + "file_id": "7cfcf2e2-fdc6-493a-a87e-5e66ec04c17f", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1634-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "15556b28-c6bd-455a-87b6-4b7b3e33d0e4", + "entity_id": "d10f0cee-d755-43cc-8d3d-8974cea0defb" + } + ], + "file_name": "72502bda-8a92-4683-8407-ed1bf1fe638f.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_473_MirnaExpression666dda4b-135b-4a76-bad0-fb7790dcd994_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1634-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_473_AlignedReads666dda4b-135b-4a76-bad0-fb7790dcd994", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 105921099, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "bd6edf3b64cfc3ba076952425230aecd", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a9930077-18b5-4bde-a9cb-491af1a0f95e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_473_MirnaExpressionWorkflow85f897bb-c413-4f2f-bcd6-6878c9b10f59_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "54ce930c-552b-4d8e-9734-dee377c52f48", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 280213, + "md5sum": "d3465e3a93afcf95f22267c9fcc03170", + "file_id": "a706f8ee-652a-4dbc-aa57-3d7a52e547ed", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-2051-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "02594e5e-8751-47c1-9245-90c66984b665", + "entity_id": "6bc296b8-ac74-4ff9-872d-5f7e4a3d011a" + } + ], + "file_name": "7bf48040-2885-469d-9671-58c0a08cf4b3.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_152_MirnaExpressiond5e5e817-7b73-4a86-a48e-a0cd5288efde_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-2051-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_152_AlignedReadsd5e5e817-7b73-4a86-a48e-a0cd5288efde", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 278893631, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "dde7ec47e5c971e6c1749bb343d39bec", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "0ce1a145-d49b-480e-a798-10872c2c5d3b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_152_MirnaExpressionWorkflow85c9c969-61c3-41ab-b5a8-dda401fc8eae_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1c289f43-5fe4-4f71-a9e2-bfcd13a7b4b9", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 459485, + "md5sum": "3a374e9581818a908062a905efda760c", + "file_id": "efb7bb49-3089-4f5b-9f28-320583b2fd54", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-2053-01C-01R-1568-13", + "entity_type": "aliquot", + "case_id": "ea605be2-6578-4e01-8ec3-bbd84c0b7f1d", + "entity_id": "fd1b7b74-067f-4fc9-820a-b80b5954ee10" + } + ], + "file_name": "e13810e3-d924-435f-92f5-972ede0ba5c8.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_67_MirnaExpression19808c6e-c9df-4126-b55e-ee7052a5f193_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "186dfa32-7196-5d18-8808-410880592bb9", + "entity_submitter_id": "TCGA-09-2053-01C-01R-1568-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8864", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "fd1b7b74-067f-4fc9-820a-b80b5954ee10", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "18eaf778-9e8a-535d-a50e-56cdfba66e22", + "entity_submitter_id": "TCGA-09-2053-01C-01R-1568-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29705", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "fd1b7b74-067f-4fc9-820a-b80b5954ee10", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-2053-01C-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_67_AlignedReads19808c6e-c9df-4126-b55e-ee7052a5f193", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 243185226, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "6ee17d9f8536a9e85f429afd9d0c571f", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "cbc586d1-1fc7-41da-acc6-7fec0b93eb70", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_67_MirnaExpressionWorkflowfd8dd3a0-9c2b-4e3f-a7d7-ba13ff56e542_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "608b3220-1203-4023-8f39-d45a66ad2ca1", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 448439, + "md5sum": "623c8b6941730f9bad4f7fceb9742616", + "file_id": "aa1b565a-213c-4e85-92a3-75696cac1859", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-36-1570-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "0f530b3e-5b6d-4892-9ebd-9138d76fdca7", + "entity_id": "cd799c12-6a2b-4f7a-af72-f4bd7f69f6c7" + } + ], + "file_name": "062184e2-d589-42de-966b-d88ad1773828.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_248_MirnaExpressione405aa5b-d912-437e-adc7-a14ae0715238_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-36-1570-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_248_AlignedReadse405aa5b-d912-437e-adc7-a14ae0715238", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 208498709, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "6a37bf3ec94c41bb5d60574cb945f75e", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b28af55d-16bf-45ea-a251-b7da89bd012c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_248_MirnaExpressionWorkflowbb808e0a-d1fd-4891-a594-fb6c803df3c0_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "512b9734-6d01-4dfb-84a4-910230e27d90", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 422923, + "md5sum": "8158b252372ec79856088b8a3ac0dffe", + "file_id": "5e2d1a73-11fc-4c14-91ac-76543ffa27ae", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-36-1570-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "0f530b3e-5b6d-4892-9ebd-9138d76fdca7", + "entity_id": "cd799c12-6a2b-4f7a-af72-f4bd7f69f6c7" + } + ], + "file_name": "062184e2-d589-42de-966b-d88ad1773828.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_248_MirnaExpressione405aa5b-d912-437e-adc7-a14ae0715238_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-36-1570-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_248_AlignedReadse405aa5b-d912-437e-adc7-a14ae0715238", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 208498709, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "6a37bf3ec94c41bb5d60574cb945f75e", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b28af55d-16bf-45ea-a251-b7da89bd012c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_248_MirnaExpressionWorkflowbb808e0a-d1fd-4891-a594-fb6c803df3c0_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "512b9734-6d01-4dfb-84a4-910230e27d90", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50416, + "md5sum": "dee31d302215e9c43e8806e7f80580a7", + "file_id": "f3bb6627-fefc-4714-aac0-dd6a3aea5a67", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-2392-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "7413c891-f74e-456f-bc70-69c83fb53c70", + "entity_id": "95b7a71d-8cf5-4660-ac1d-52a888cd2f20" + } + ], + "file_name": "21a6b0ca-53c3-4e0a-9a03-9db95a3c9606.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_259_MirnaExpression52b8857b-5121-418f-87d2-37bdd3122a6b_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-2392-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_259_AlignedReads52b8857b-5121-418f-87d2-37bdd3122a6b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 217469507, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "cc8f2aad2baa892ccaf165389880efeb", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "70576fef-54ba-4be5-96bc-023cc1bdb6d5", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_259_MirnaExpressionWorkflow9ef69404-8136-40bd-851c-4d7684d06a19_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "76e64d4c-ac07-4254-a4ca-18c53c993d58", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 486654, + "md5sum": "aac152bf18706ae7ad329e73840084ce", + "file_id": "4bc4b0b4-cd8a-4b6e-a89a-91e811a62dea", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1119-01A-02R-1565-13", + "entity_type": "aliquot", + "case_id": "2dfd8a0e-e642-49b3-abd7-f0334927eebb", + "entity_id": "a0e6000c-2e04-4e12-bce6-ef9c29f04252" + } + ], + "file_name": "59a2fe2e-bad3-4ab8-845e-aa53f920426f.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_377_MirnaExpression1ab5bc3e-8a28-459a-8a07-b4c79b6defe2_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "763ddc4c-f1ea-5127-bd14-cb3f451b0190", + "entity_submitter_id": "TCGA-23-1119-01A-02R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29774", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "a0e6000c-2e04-4e12-bce6-ef9c29f04252", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "84eda76e-1365-51b4-9226-b3b0d30c8008", + "entity_submitter_id": "TCGA-23-1119-01A-02R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8779", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "a0e6000c-2e04-4e12-bce6-ef9c29f04252", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1119-01A-02R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_377_AlignedReads1ab5bc3e-8a28-459a-8a07-b4c79b6defe2", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 188195133, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "1ebbb9f221199c7b4a233015f3e2f548", + "updated_datetime": "2023-07-12T10:33:27.414833-05:00", + "file_id": "cd014c72-794e-43dc-b1b7-b391d84c6217", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_377_MirnaExpressionWorkflow7e191f57-f701-44e4-84e4-6d6df52e3cfb_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d553e2da-b403-48c4-9a34-5f501aa0d82a", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50410, + "md5sum": "c90f73c82291e20e17fdf018f94e5290", + "file_id": "d10fee5e-c927-4926-834c-0c875b185acb", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2000-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "29949b65-2913-4c86-bbd7-b85c5df6f15e", + "entity_id": "f4fccaa6-cd8c-4e5a-a7a8-beb63cf7b109" + } + ], + "file_name": "6ec97e54-755d-44d1-b5cc-c60cb736df3c.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_130_MirnaExpression6ac6905a-c7de-4f8d-bcc1-5067062f74b3_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2000-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_130_AlignedReads6ac6905a-c7de-4f8d-bcc1-5067062f74b3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 347677430, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "5d341c253498cd7046530a6999b8e7fd", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6f888588-1e0a-4db0-815f-a8f2828de0cc", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_130_MirnaExpressionWorkflowb857b13f-21b5-461c-8dca-8e3ed72f8113_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8deb2541-81b3-463b-a62b-dbeab2bf5f56", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50303, + "md5sum": "b55a697fe66200fd5bbd08b41421f403", + "file_id": "c68cb147-873f-48f4-bb78-6acc569fbea6", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1544-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "21f6bf91-dfc6-4a59-8b76-88a0f95c7b47", + "entity_id": "83333a5a-de0b-4d72-b886-e5488c619827" + } + ], + "file_name": "60b196ad-8929-404d-b2a2-14ef281cdf6b.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_120_MirnaExpression11123029-32f5-4e04-a31d-846e04429ebe_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1544-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_120_AlignedReads11123029-32f5-4e04-a31d-846e04429ebe", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 225543643, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "f1d49c70e06d46e087aeadc8e7df8a25", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "add4adeb-e7a3-40f5-b1fb-b5e86b4c5993", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_120_MirnaExpressionWorkflowe1dd6270-9858-4c5c-bec4-daeb37724627_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "da03837d-a65f-4a30-8d96-8b870570903c", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 325896, + "md5sum": "ca65be7d7d3fdc256cb19d2e1c585ab4", + "file_id": "4480e26f-2314-44ca-8d12-513b991002ec", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-2398-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "fd4740db-76a8-4362-be71-7b609479bb67", + "entity_id": "3a080008-8266-4e2d-a143-adac14991b22" + } + ], + "file_name": "cf14f0f0-9e50-4a58-bd91-14f5c544e1be.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_349_MirnaExpression55878f5b-29aa-48d7-81c3-aa7f4d1a131f_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-2398-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_349_AlignedReads55878f5b-29aa-48d7-81c3-aa7f4d1a131f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 240097383, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "5f787cde52e30290876f63c77ceb6b9c", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4bcf900a-dea6-4b04-9883-ead8890f78d1", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_349_MirnaExpressionWorkflowaf10dc17-3790-4c2c-bf62-18d864d12678_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "22c4edb7-dd6d-4132-8af5-ae1e1cb0b14a", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 400826, + "md5sum": "2d2c99a269e22f4a168e869a7af67b2d", + "file_id": "d27d70f2-37f2-4dc7-b993-ccb83e109e8f", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-2057-01A-02R-A96T-41", + "entity_type": "aliquot", + "case_id": "56c4bd48-ab15-4b49-ae2f-968653052b50", + "entity_id": "4e202877-82e1-448d-91da-463005ea5156" + } + ], + "file_name": "349fde78-3468-4f44-9b7c-db70c772d6fb.mirnaseq.isoforms.quantification.txt", + "submitter_id": "f9c99a9a-d274-4b60-9f4b-6cc8c822aa07", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.992311187351175, + "total_reads": 23103047, + "access": "controlled", + "file_name": "4e202877-82e1-448d-91da-463005ea5156_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004345339, + "proportion_reads_duplicated": 0, + "submitter_id": "3a3373ae-53c9-48a4-b09e-a59c47870a48", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 355479177, + "created_datetime": "2024-09-20T11:13:48.902926-05:00", + "average_base_quality": 36, + "md5sum": "28649f3f39122f414b57594b2f1cf5d2", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "7f75457a-3f3c-47ae-b08c-a2ef3ae140d0", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "349fde78-3468-4f44-9b7c-db70c772d6fb_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1cb80f16-5d4c-477c-b291-a9865f8c0504", + "created_datetime": "2024-09-20T11:18:04.556845-05:00" + }, + "file_size": 642350, + "md5sum": "565d1793a0a3fd9382b277cd73e44a03", + "file_id": "8808e370-c4c3-4c9e-813b-eca996136a6c", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2104-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "05263959-c4f5-4540-b6d2-d8c8a128861f", + "entity_id": "721a8fc8-bb54-4ec3-a19c-340c35f05280" + } + ], + "file_name": "746f7449-4911-49d8-8672-a867477eda73.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_15_MirnaExpression9598dc9c-298b-4ab2-afb3-5d4f3d244288_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2104-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_15_AlignedReads9598dc9c-298b-4ab2-afb3-5d4f3d244288", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 171760506, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "d31fcb1a7b3b131ed8102a2f7329b7d4", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5d8c4c52-ac47-4083-a2fc-e9f2e76a6f62", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_15_MirnaExpressionWorkflowb34da9f6-c796-48f1-bf50-b1484ada7d2c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "16f804b8-6393-46e7-ad44-6ef5f9f34a75", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 395270, + "md5sum": "1ac708ec7c1a893087787925bf3d5117", + "file_id": "6b16b408-a45a-419a-992d-8ef9ff89355c", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2113-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "71faa2c1-0d5b-4dcc-bdf9-f2405f29907c", + "entity_id": "d5752594-1a2c-47c8-a40b-bffd5b6b7e71" + } + ], + "file_name": "07a1428c-f519-4818-853f-a9a20dc111a8.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_402_MirnaExpression17e7fcfe-a9ae-40fe-a8c6-f4105dc5c64d_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2113-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_402_AlignedReads17e7fcfe-a9ae-40fe-a8c6-f4105dc5c64d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 233050073, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "d28c69571b961fdf7a5f01347d857193", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "7cabf9c5-5e52-4942-9fa2-39af318e5bd0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_402_MirnaExpressionWorkflowf26b88e4-a085-4c69-9ccc-a100e5260bef_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c639cbd3-31a6-4324-89bf-2e54aeaf2741", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 411731, + "md5sum": "ffe6dead5b5fcf1e3ca69bdd596420d9", + "file_id": "03db776b-6eef-4de9-9868-171543664f65", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-1665-01B-01R-1566-13", + "entity_type": "aliquot", + "case_id": "9d25cd0e-0a3e-4ee0-b1a3-58ffab348c9d", + "entity_id": "c06f72e0-e59f-4cbb-8233-1eb6637ea23f" + } + ], + "file_name": "c479012a-ab8b-434c-b88e-9bc28931adbe.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_390_MirnaExpressionb964be69-cdfb-482a-b499-d31a59850a5f_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "c03a7905-50cf-524c-8d29-84e8f266b158", + "entity_submitter_id": "TCGA-09-1665-01B-01R-1566-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29704", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "c06f72e0-e59f-4cbb-8233-1eb6637ea23f", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "c47aab6e-7aef-55cf-b364-92e95cfc04c2", + "entity_submitter_id": "TCGA-09-1665-01B-01R-1566-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8844", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "c06f72e0-e59f-4cbb-8233-1eb6637ea23f", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-1665-01B-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_390_AlignedReadsb964be69-cdfb-482a-b499-d31a59850a5f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 78483016, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "54788ef90c8f85384a13248068929684", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "9d1a849d-17f8-449b-ba6b-4ff888818978", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_390_MirnaExpressionWorkflowd9d563ed-0ba4-460a-ac48-4bb6d93aebef_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d886fc9f-2d2d-4e51-897e-7250e7d4e6ba", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50171, + "md5sum": "d0c45669f20fb6a3200c8faccad7f8d7", + "file_id": "98fc8c5c-b1b0-49a2-9407-63c6540d3c09", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-31-1944-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "6fee41dc-b8a9-4347-8085-b7e05f813ad0", + "entity_id": "c8a1ec95-a4b3-4fb2-b135-1c7616db9ab2" + } + ], + "file_name": "80d179ee-dafe-46d2-9a8c-94dda800da7b.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_192_MirnaExpression82e8880f-496b-4ff1-a9b9-c08eaef1a6e4_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-31-1944-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_192_AlignedReads82e8880f-496b-4ff1-a9b9-c08eaef1a6e4", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 305866261, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "ea1cec3d3c95406f60d1a3d99ec4b68a", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "80a84a69-fedb-4e60-a91c-86757c521a40", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_192_MirnaExpressionWorkflowf0530d0f-560a-4f70-a265-0fac75104d12_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "af3f4cb8-1087-47e9-ac2c-234a90c6a67c", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 404896, + "md5sum": "df7158511b82e8258b8ac177f984582e", + "file_id": "25b4bd85-1547-4c0a-a701-9382e9c96ea9", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-0975-01A-02R-1565-13", + "entity_type": "aliquot", + "case_id": "6a57948c-0dc5-4ea2-8043-380f26763752", + "entity_id": "a16723c4-d5b1-40a0-9890-570351738879" + } + ], + "file_name": "a92eccd8-fc46-47e6-96b5-a614b12857d8.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_466_MirnaExpression358c6f53-1a29-43db-9a38-cbce92d92874_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-0975-01A-02R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_466_AlignedReads358c6f53-1a29-43db-9a38-cbce92d92874", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 92882003, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "d15f1212cef5042b73540e7bd841c896", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "430f9b43-5438-42d3-bd91-38fd61479868", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_466_MirnaExpressionWorkflow9ab35bc3-f784-4376-b8f3-6a0adcb7e49b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a23b977e-7009-4d3d-a3c0-e9b5374d44be", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 215903, + "md5sum": "3da189e58b2156cf13227ba31f291dcc", + "file_id": "6829c5b7-40dd-4c30-b500-9e9107836aeb", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1123-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "60cce7ac-d27d-44a6-9873-ecf91da5e906", + "entity_id": "71543abc-9f15-48d9-994d-e7b963a4d8f3" + } + ], + "file_name": "1c61adad-e43a-44a0-b6bb-69cbcc639f10.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_365_MirnaExpressionc8f8e113-1cc7-4312-949b-9c59908e396b_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1123-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_365_AlignedReadsc8f8e113-1cc7-4312-949b-9c59908e396b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 194307451, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "b7470082a936b8d11a2f08570e3c5777", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "7dd2c0a7-0483-4227-a013-0ec441245755", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_365_MirnaExpressionWorkflowe2b7e5ea-627e-4aa8-989b-a07929e30e7b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "104e230c-4c47-4f37-908e-c90a78506ed9", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50445, + "md5sum": "a70a658ff100922a0541750304556246", + "file_id": "18b2414f-662a-4157-a700-e21ec99b31a8", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-FX-A3RE-01A-11R-A22I-13", + "entity_type": "aliquot", + "case_id": "7f9031da-124a-4a38-83e6-878a50e58c24", + "entity_id": "e0f6c539-ad0e-4db7-819c-01c3c05c89c6" + } + ], + "file_name": "f167c780-8955-4b50-b53c-41cde7cdace1.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_245_MirnaExpression74f0e63d-4c0c-460d-aaa9-a9d7c5e7b2c4_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-FX-A3RE-01A-11R-A22I-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_245_AlignedReads74f0e63d-4c0c-460d-aaa9-a9d7c5e7b2c4", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 141247399, + "created_datetime": "2018-03-19T23:27:11.131407-05:00", + "md5sum": "19c92532a34ea2b373c97391f28067c3", + "updated_datetime": "2023-07-12T10:14:24.322042-05:00", + "file_id": "45ba281b-ab1d-4ea3-b448-3134d5affd32", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-06T13:48:10.784619-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_245_MirnaExpressionWorkflow284b0c47-19e2-4448-ac75-2bad1861cd46_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "fca97455-51cc-48f2-a84b-adc6ebd7ab51", + "created_datetime": "2018-03-19T23:27:11.131407-05:00" + }, + "platform": "Illumina", + "file_size": 319374, + "md5sum": "9012aeb6ef620c12859fc82184474407", + "file_id": "edf704b0-09e1-4791-9eb8-66a6dae458d9", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-FX-A3RE-01A-11R-A22I-13", + "entity_type": "aliquot", + "case_id": "7f9031da-124a-4a38-83e6-878a50e58c24", + "entity_id": "e0f6c539-ad0e-4db7-819c-01c3c05c89c6" + } + ], + "file_name": "f167c780-8955-4b50-b53c-41cde7cdace1.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_245_MirnaExpression74f0e63d-4c0c-460d-aaa9-a9d7c5e7b2c4_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-FX-A3RE-01A-11R-A22I-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_245_AlignedReads74f0e63d-4c0c-460d-aaa9-a9d7c5e7b2c4", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 141247399, + "created_datetime": "2018-03-19T23:27:11.131407-05:00", + "md5sum": "19c92532a34ea2b373c97391f28067c3", + "updated_datetime": "2023-07-12T10:14:24.322042-05:00", + "file_id": "45ba281b-ab1d-4ea3-b448-3134d5affd32", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-06T13:48:10.784619-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_245_MirnaExpressionWorkflow284b0c47-19e2-4448-ac75-2bad1861cd46_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "fca97455-51cc-48f2-a84b-adc6ebd7ab51", + "created_datetime": "2018-03-19T23:27:11.131407-05:00" + }, + "platform": "Illumina", + "file_size": 50240, + "md5sum": "83b5c59ed3145ac3e3180d5b75c41b7e", + "file_id": "688574e1-faae-4437-8f4c-d7e3b014540a", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "52c064a7-78d9-4a1a-85b4-27c6d1_D7", + "entity_type": "aliquot", + "case_id": "01026cf5-8582-4864-8e89-111c05660eb6", + "entity_id": "ce78459b-ad95-49de-b7db-0c07ed19d5ca" + } + ], + "file_name": "24c2025c-4eed-4fd0-8b25-3843ef6a97e1.mirnaseq.mirnas.quantification.txt", + "submitter_id": "910a652f-c3b9-4a0f-a5dc-a2433db9f179", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9951181083001845, + "total_reads": 8052821, + "access": "controlled", + "file_name": "ce78459b-ad95-49de-b7db-0c07ed19d5ca_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.008469339, + "proportion_reads_duplicated": 0, + "submitter_id": "4a7f1875-7128-47b4-a23f-85235255d714", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 81615332, + "created_datetime": "2021-06-16T12:06:38.930982-05:00", + "average_base_quality": 34, + "md5sum": "d74caeeba15f7219dc69e85f96323dd4", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "7ab31890-1ef0-4c63-acd1-e4236f9e7596", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "24c2025c-4eed-4fd0-8b25-3843ef6a97e1_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "9648d591-b065-4e92-b2fe-4de22f451529", + "created_datetime": "2021-06-16T12:29:00.722416-05:00" + }, + "platform": "Illumina", + "file_size": 50580, + "md5sum": "a72e8350672c6241c48cfd3a49d2873b", + "file_id": "61f5b9c1-f98f-49cf-8ec4-66239fa573a6", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "52c064a7-78d9-4a1a-85b4-27c6d1_D7", + "entity_type": "aliquot", + "case_id": "01026cf5-8582-4864-8e89-111c05660eb6", + "entity_id": "ce78459b-ad95-49de-b7db-0c07ed19d5ca" + } + ], + "file_name": "24c2025c-4eed-4fd0-8b25-3843ef6a97e1.mirnaseq.isoforms.quantification.txt", + "submitter_id": "fa533dde-a420-491d-8757-728f2c7fe85b", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9951181083001845, + "total_reads": 8052821, + "access": "controlled", + "file_name": "ce78459b-ad95-49de-b7db-0c07ed19d5ca_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.008469339, + "proportion_reads_duplicated": 0, + "submitter_id": "4a7f1875-7128-47b4-a23f-85235255d714", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 81615332, + "created_datetime": "2021-06-16T12:06:38.930982-05:00", + "average_base_quality": 34, + "md5sum": "d74caeeba15f7219dc69e85f96323dd4", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "7ab31890-1ef0-4c63-acd1-e4236f9e7596", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "24c2025c-4eed-4fd0-8b25-3843ef6a97e1_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "9648d591-b065-4e92-b2fe-4de22f451529", + "created_datetime": "2021-06-16T12:29:00.722416-05:00" + }, + "platform": "Illumina", + "file_size": 491603, + "md5sum": "8af023fff85e5629a88344ba998be00d", + "file_id": "7d0ebbb1-e989-41e3-8c7b-6b9710d3c8bb", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "28d0abdb-f682-4bd3-9425-a9c508_D7", + "entity_type": "aliquot", + "case_id": "085fbb0b-0924-4c26-a240-94b13d1742b6", + "entity_id": "97b8921d-9576-4f0f-b1ff-f5ab80b2af0a" + } + ], + "file_name": "3738cacb-c775-4bcc-b2c2-d16a1d6ccd6f.mirnaseq.isoforms.quantification.txt", + "submitter_id": "b185a8f8-73c8-49bd-84eb-7d501fedcac6", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9973090636037422, + "total_reads": 8264781, + "access": "controlled", + "file_name": "97b8921d-9576-4f0f-b1ff-f5ab80b2af0a_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.006528266, + "proportion_reads_duplicated": 0, + "submitter_id": "bb015e82-034f-4408-9e97-683f36ad6dc3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 87565078, + "created_datetime": "2021-06-16T12:08:21.515597-05:00", + "average_base_quality": 34, + "md5sum": "157dcaa79f4bcc469645fb61f9a8efb4", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "0bc09dd7-51f6-45e5-9962-d63fac016e97", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "3738cacb-c775-4bcc-b2c2-d16a1d6ccd6f_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2b8d6ac6-f5db-4c2b-a6f4-49ca3cdfdfee", + "created_datetime": "2021-06-16T12:32:27.138902-05:00" + }, + "platform": "Illumina", + "file_size": 517478, + "md5sum": "ad7b10a57ef92efa0936a8fc9ad65bed", + "file_id": "23aca952-5d4f-4aac-a74c-6e7f8ca0f500", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "28d0abdb-f682-4bd3-9425-a9c508_D7", + "entity_type": "aliquot", + "case_id": "085fbb0b-0924-4c26-a240-94b13d1742b6", + "entity_id": "97b8921d-9576-4f0f-b1ff-f5ab80b2af0a" + } + ], + "file_name": "3738cacb-c775-4bcc-b2c2-d16a1d6ccd6f.mirnaseq.mirnas.quantification.txt", + "submitter_id": "799ce87d-6338-468f-94f8-9e7665eb4393", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9973090636037422, + "total_reads": 8264781, + "access": "controlled", + "file_name": "97b8921d-9576-4f0f-b1ff-f5ab80b2af0a_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.006528266, + "proportion_reads_duplicated": 0, + "submitter_id": "bb015e82-034f-4408-9e97-683f36ad6dc3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 87565078, + "created_datetime": "2021-06-16T12:08:21.515597-05:00", + "average_base_quality": 34, + "md5sum": "157dcaa79f4bcc469645fb61f9a8efb4", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "0bc09dd7-51f6-45e5-9962-d63fac016e97", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "3738cacb-c775-4bcc-b2c2-d16a1d6ccd6f_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2b8d6ac6-f5db-4c2b-a6f4-49ca3cdfdfee", + "created_datetime": "2021-06-16T12:32:27.138902-05:00" + }, + "platform": "Illumina", + "file_size": 50568, + "md5sum": "32d958a141f6d340188ea591b47b0928", + "file_id": "84730706-fd9b-4d78-ab9b-1d9dddbda54e", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "7c7ce2d7-6c8a-424e-8e6c-d14ad1_D7_1", + "entity_type": "aliquot", + "case_id": "0bb7be19-e7c9-46f2-b1b3-f83f3b213475", + "entity_id": "1df02601-fdc8-4888-9392-d5a1d0f091e1" + } + ], + "file_name": "1ee86be9-53d7-4483-9141-fe8bb6ca5cff.mirnaseq.mirnas.quantification.txt", + "submitter_id": "d4b882cb-6501-40f5-a708-05b0201ff5fd", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9960540282368032, + "total_reads": 7926818, + "access": "controlled", + "file_name": "1df02601-fdc8-4888-9392-d5a1d0f091e1_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007753004, + "proportion_reads_duplicated": 0, + "submitter_id": "1c68c8aa-a74f-48e7-b1c0-a4bf708a4ebb", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 84210561, + "created_datetime": "2021-06-16T12:14:08.604029-05:00", + "average_base_quality": 34, + "md5sum": "254dea882561a24469a37f8fcd098e5b", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "63a67440-12c5-4ea4-8109-9c47020d9bf4", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "1ee86be9-53d7-4483-9141-fe8bb6ca5cff_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "6511aa0f-07ee-41a7-b2fb-7d0b100cbb03", + "created_datetime": "2021-06-16T12:30:22.705055-05:00" + }, + "platform": "Illumina", + "file_size": 50649, + "md5sum": "04d8f5b4bf8fce3b045fe72c648a4b22", + "file_id": "4a14da95-9ef7-461f-a1f5-22ce76b7aedd", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "7c7ce2d7-6c8a-424e-8e6c-d14ad1_D7_1", + "entity_type": "aliquot", + "case_id": "0bb7be19-e7c9-46f2-b1b3-f83f3b213475", + "entity_id": "1df02601-fdc8-4888-9392-d5a1d0f091e1" + } + ], + "file_name": "1ee86be9-53d7-4483-9141-fe8bb6ca5cff.mirnaseq.isoforms.quantification.txt", + "submitter_id": "09e76616-8de5-43b5-9a45-e7d6fd358ea6", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9960540282368032, + "total_reads": 7926818, + "access": "controlled", + "file_name": "1df02601-fdc8-4888-9392-d5a1d0f091e1_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007753004, + "proportion_reads_duplicated": 0, + "submitter_id": "1c68c8aa-a74f-48e7-b1c0-a4bf708a4ebb", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 84210561, + "created_datetime": "2021-06-16T12:14:08.604029-05:00", + "average_base_quality": 34, + "md5sum": "254dea882561a24469a37f8fcd098e5b", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "63a67440-12c5-4ea4-8109-9c47020d9bf4", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "1ee86be9-53d7-4483-9141-fe8bb6ca5cff_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "6511aa0f-07ee-41a7-b2fb-7d0b100cbb03", + "created_datetime": "2021-06-16T12:30:22.705055-05:00" + }, + "platform": "Illumina", + "file_size": 560829, + "md5sum": "b746e37187a8b0a5c38ee7372d43bc84", + "file_id": "a3654831-b5f4-45db-b44c-774cc9647f60", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "7069e990-4a4e-4984-a66d-4d835a_D7", + "entity_type": "aliquot", + "case_id": "0f875052-cf76-45f2-9c76-021ee605479d", + "entity_id": "048e556a-82fc-4742-b483-c961671dbef5" + } + ], + "file_name": "28b2d19c-cbe0-4160-8bc6-95954b2aeea1.mirnaseq.mirnas.quantification.txt", + "submitter_id": "a2d4a0e0-ca83-4898-a827-c0041448296e", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9984215389977414, + "total_reads": 8641962, + "access": "controlled", + "file_name": "048e556a-82fc-4742-b483-c961671dbef5_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005421087, + "proportion_reads_duplicated": 0, + "submitter_id": "1270b865-a42c-42a1-a199-9886dafee617", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 81893653, + "created_datetime": "2021-06-16T12:07:51.035205-05:00", + "average_base_quality": 34, + "md5sum": "3ec2af93bef064535ad65772e6f95465", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "1f31577e-988b-4244-9d39-9ff2444ca56f", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "28b2d19c-cbe0-4160-8bc6-95954b2aeea1_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e9a5d57b-220a-4f6d-8139-d7919e6138b8", + "created_datetime": "2021-06-16T12:32:47.452915-05:00" + }, + "platform": "Illumina", + "file_size": 50578, + "md5sum": "26449aaaf537bee65c1d6879a0e6b106", + "file_id": "ad1bc08a-e2b8-4ae8-b848-1939cef329d6", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "74a45e5a-a35a-4c60-a4b4-f3f5ea_D7", + "entity_type": "aliquot", + "case_id": "0f277939-aad8-48c8-9653-37c08ec8b021", + "entity_id": "b9e863d6-3a3c-46e3-9dec-359321fceb5c" + } + ], + "file_name": "d2d587d7-065a-4fca-a3b8-abd85d44a4a2.mirnaseq.isoforms.quantification.txt", + "submitter_id": "35001a7c-7afe-47b2-a48b-7df199fcb835", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9970926663898537, + "total_reads": 6264159, + "access": "controlled", + "file_name": "b9e863d6-3a3c-46e3-9dec-359321fceb5c_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.006903283, + "proportion_reads_duplicated": 0, + "submitter_id": "7027773b-fbf3-4319-b173-3ae23629e916", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 67185233, + "created_datetime": "2021-06-16T12:14:11.813957-05:00", + "average_base_quality": 34, + "md5sum": "e01e500dd49c549539e57f97fd04e663", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "1322a402-07a5-470d-9a2b-6120b41a2864", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "d2d587d7-065a-4fca-a3b8-abd85d44a4a2_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1c30e1a1-23eb-4753-80fb-e77f6b7bcb2e", + "created_datetime": "2021-06-16T12:31:43.031965-05:00" + }, + "platform": "Illumina", + "file_size": 485133, + "md5sum": "c2a56e04e445514f5b1a04e00f27c6c6", + "file_id": "d9e4d260-63d3-4802-967e-746e7d09627c", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "79b60f32-6cca-4cb6-9a1e-22a3ac_D7", + "entity_type": "aliquot", + "case_id": "116115d7-9ebb-4830-86ff-1daf3a0da9f0", + "entity_id": "ef7cf49b-d1ec-4ae3-8efb-8c6fd6bd6b94" + } + ], + "file_name": "fe2345ce-9d8e-41e5-8df2-a703cf163e23.mirnaseq.mirnas.quantification.txt", + "submitter_id": "b706369e-ce1a-4ebc-a800-900e36f280b5", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9957243706678408, + "total_reads": 4530795, + "access": "controlled", + "file_name": "ef7cf49b-d1ec-4ae3-8efb-8c6fd6bd6b94_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.0076626, + "proportion_reads_duplicated": 0, + "submitter_id": "0a9c287b-73ec-4f45-b28a-32e9dbdb282e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 52406040, + "created_datetime": "2021-06-16T12:08:18.198440-05:00", + "average_base_quality": 34, + "md5sum": "8772f388bd8540cef385c6bade8fd58b", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "0b36f147-03e4-4635-b7ca-1cc4c2234264", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "fe2345ce-9d8e-41e5-8df2-a703cf163e23_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "acb24e8a-258b-453d-be57-c497c0df5c2e", + "created_datetime": "2021-06-16T12:28:50.542227-05:00" + }, + "platform": "Illumina", + "file_size": 50550, + "md5sum": "c1cedadd84415b6d45b2001c4646b80d", + "file_id": "31823419-6125-4888-9bbd-1a00712466ba", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "79b60f32-6cca-4cb6-9a1e-22a3ac_D7", + "entity_type": "aliquot", + "case_id": "116115d7-9ebb-4830-86ff-1daf3a0da9f0", + "entity_id": "ef7cf49b-d1ec-4ae3-8efb-8c6fd6bd6b94" + } + ], + "file_name": "fe2345ce-9d8e-41e5-8df2-a703cf163e23.mirnaseq.isoforms.quantification.txt", + "submitter_id": "52676fe4-e17d-41e3-9464-8657d78cb55d", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9957243706678408, + "total_reads": 4530795, + "access": "controlled", + "file_name": "ef7cf49b-d1ec-4ae3-8efb-8c6fd6bd6b94_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.0076626, + "proportion_reads_duplicated": 0, + "submitter_id": "0a9c287b-73ec-4f45-b28a-32e9dbdb282e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 52406040, + "created_datetime": "2021-06-16T12:08:18.198440-05:00", + "average_base_quality": 34, + "md5sum": "8772f388bd8540cef385c6bade8fd58b", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "0b36f147-03e4-4635-b7ca-1cc4c2234264", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "fe2345ce-9d8e-41e5-8df2-a703cf163e23_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "acb24e8a-258b-453d-be57-c497c0df5c2e", + "created_datetime": "2021-06-16T12:28:50.542227-05:00" + }, + "platform": "Illumina", + "file_size": 451156, + "md5sum": "eaba5879c60c57cf5f7d3af809d082c8", + "file_id": "e39cfeb7-a0b3-4936-ba34-3221ee0e92d0", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "256ac9f5-1e19-44b4-92fb-fef3fc_D7", + "entity_type": "aliquot", + "case_id": "11ed8b7d-2483-4b5e-9893-3376d1d49672", + "entity_id": "751e161f-29db-47d5-aa08-d932faaa8cb3" + } + ], + "file_name": "56ac98cc-4b1a-43b3-b6c8-323ac42460e0.mirnaseq.isoforms.quantification.txt", + "submitter_id": "430eea10-5eb8-406f-a7e4-6ef903047f92", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9964042685829873, + "total_reads": 7603460, + "access": "controlled", + "file_name": "751e161f-29db-47d5-aa08-d932faaa8cb3_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007732036, + "proportion_reads_duplicated": 0, + "submitter_id": "fe8e7348-d6de-4cf6-b402-c7dc8af27d09", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 79000966, + "created_datetime": "2021-06-16T12:11:48.501246-05:00", + "average_base_quality": 34, + "md5sum": "1914e89b0204c52dd9b2df2d7308c32c", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "36b0bc0f-ba0d-42f5-899a-0116a4daaaa8", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "56ac98cc-4b1a-43b3-b6c8-323ac42460e0_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0ed532f7-5a6d-4c26-a483-54d0f35e169c", + "created_datetime": "2021-06-16T12:30:50.295648-05:00" + }, + "platform": "Illumina", + "file_size": 488166, + "md5sum": "7d0a3bb98f7c6a3383d600bc0c04ee82", + "file_id": "a6f428d3-85f8-4629-a0c0-fef6b72ede92", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "256ac9f5-1e19-44b4-92fb-fef3fc_D7", + "entity_type": "aliquot", + "case_id": "11ed8b7d-2483-4b5e-9893-3376d1d49672", + "entity_id": "751e161f-29db-47d5-aa08-d932faaa8cb3" + } + ], + "file_name": "56ac98cc-4b1a-43b3-b6c8-323ac42460e0.mirnaseq.mirnas.quantification.txt", + "submitter_id": "32c1d4c4-92ff-480b-bf0e-1b8e7818e470", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9964042685829873, + "total_reads": 7603460, + "access": "controlled", + "file_name": "751e161f-29db-47d5-aa08-d932faaa8cb3_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007732036, + "proportion_reads_duplicated": 0, + "submitter_id": "fe8e7348-d6de-4cf6-b402-c7dc8af27d09", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 79000966, + "created_datetime": "2021-06-16T12:11:48.501246-05:00", + "average_base_quality": 34, + "md5sum": "1914e89b0204c52dd9b2df2d7308c32c", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "36b0bc0f-ba0d-42f5-899a-0116a4daaaa8", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "56ac98cc-4b1a-43b3-b6c8-323ac42460e0_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0ed532f7-5a6d-4c26-a483-54d0f35e169c", + "created_datetime": "2021-06-16T12:30:50.295648-05:00" + }, + "platform": "Illumina", + "file_size": 50492, + "md5sum": "7a905d23bc6b966bc629547386497241", + "file_id": "91d633a2-a3c0-4d0d-a072-6dda34f8369e", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "05387aad-2a1f-42c2-8d6f-950598_D7", + "entity_type": "aliquot", + "case_id": "13546f31-27a6-4549-8165-126c7d847c2a", + "entity_id": "b7b80584-1307-488b-8e0a-29c6a47f42d4" + } + ], + "file_name": "a638c269-1264-4f52-b345-8bf4b5db72cf.mirnaseq.isoforms.quantification.txt", + "submitter_id": "665a93d3-9c82-4291-9918-7bc88957a2bb", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9896967229918573, + "total_reads": 6780270, + "access": "controlled", + "file_name": "b7b80584-1307-488b-8e0a-29c6a47f42d4_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.01091412, + "proportion_reads_duplicated": 0, + "submitter_id": "bc8d851f-099f-4d7d-93bc-9ef7b982730a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 67603134, + "created_datetime": "2021-06-16T12:13:24.420813-05:00", + "average_base_quality": 34, + "md5sum": "2fccbf48c889e5b93ee5eff457a74608", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "b1a9d9cd-7a82-45e5-8f01-8df2656b2764", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "a638c269-1264-4f52-b345-8bf4b5db72cf_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "bc515c08-2575-4824-ac0c-d13da9699fe9", + "created_datetime": "2021-06-16T12:28:57.870611-05:00" + }, + "platform": "Illumina", + "file_size": 544567, + "md5sum": "daafb73d6fb7eb6013682fd993b7e1da", + "file_id": "8989cf23-8835-47a4-87d2-ff15385a4135", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "05387aad-2a1f-42c2-8d6f-950598_D7", + "entity_type": "aliquot", + "case_id": "13546f31-27a6-4549-8165-126c7d847c2a", + "entity_id": "b7b80584-1307-488b-8e0a-29c6a47f42d4" + } + ], + "file_name": "a638c269-1264-4f52-b345-8bf4b5db72cf.mirnaseq.mirnas.quantification.txt", + "submitter_id": "e6abe4d7-80df-4b66-a2ae-6fbb50e625c9", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9896967229918573, + "total_reads": 6780270, + "access": "controlled", + "file_name": "b7b80584-1307-488b-8e0a-29c6a47f42d4_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.01091412, + "proportion_reads_duplicated": 0, + "submitter_id": "bc8d851f-099f-4d7d-93bc-9ef7b982730a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 67603134, + "created_datetime": "2021-06-16T12:13:24.420813-05:00", + "average_base_quality": 34, + "md5sum": "2fccbf48c889e5b93ee5eff457a74608", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "b1a9d9cd-7a82-45e5-8f01-8df2656b2764", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "a638c269-1264-4f52-b345-8bf4b5db72cf_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "bc515c08-2575-4824-ac0c-d13da9699fe9", + "created_datetime": "2021-06-16T12:28:57.870611-05:00" + }, + "platform": "Illumina", + "file_size": 50694, + "md5sum": "f171f5a227b978de3d6e062aaace6320", + "file_id": "04f2faf4-486e-48e2-b495-95e08605ea4b", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "1a10c200-3895-4648-b951-94f99f_D7", + "entity_type": "aliquot", + "case_id": "14cca285-5fbb-45c8-bbd3-3a901154a1e3", + "entity_id": "4883f929-ba33-44a9-abe8-33e9da4027c6" + } + ], + "file_name": "46d63673-21f7-4c6e-a210-882a6f358f02.mirnaseq.mirnas.quantification.txt", + "submitter_id": "bb495247-0db6-43e5-8498-41740e59a2e1", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9907886693686874, + "total_reads": 4390788, + "access": "controlled", + "file_name": "4883f929-ba33-44a9-abe8-33e9da4027c6_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.01167204, + "proportion_reads_duplicated": 0, + "submitter_id": "8ef58776-767a-4d42-adf2-7603f80da501", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 50661983, + "created_datetime": "2021-06-16T12:12:13.447679-05:00", + "average_base_quality": 35, + "md5sum": "ecd2a5ba6a4f1afe39b9dddffb3277d1", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "4892a46e-9fad-4430-87da-d8a0b281149f", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "46d63673-21f7-4c6e-a210-882a6f358f02_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5b28a3b4-4e35-4693-9ffc-085b444b362a", + "created_datetime": "2021-06-16T12:28:39.290192-05:00" + }, + "platform": "Illumina", + "file_size": 50358, + "md5sum": "558c80149273e3b97979e9ac6c12c220", + "file_id": "84ff8a96-78ac-4483-b68a-ca70f3587bfa", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "5ea22f5e-307b-491d-801f-8b7fa6_D7", + "entity_type": "aliquot", + "case_id": "2e174f9b-290f-444f-b16e-530085416b13", + "entity_id": "55b5f1e0-0705-495b-bdb4-cd8eeb6739be" + } + ], + "file_name": "5182585a-8d5c-4d19-ae5d-54b618ce253c.mirnaseq.mirnas.quantification.txt", + "submitter_id": "3d1ff249-2830-46d5-8e6a-1c938f140c33", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9944908833693139, + "total_reads": 4972122, + "access": "controlled", + "file_name": "55b5f1e0-0705-495b-bdb4-cd8eeb6739be_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.01048339, + "proportion_reads_duplicated": 0, + "submitter_id": "b671df80-79b6-4bae-8d84-db657663eaf6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 48766241, + "created_datetime": "2021-06-16T12:10:18.290193-05:00", + "average_base_quality": 34, + "md5sum": "daeeeace8ad2b3c014d6a5a2c8f3408d", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "527837a8-f375-4546-b332-eaef5a3890fc", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "5182585a-8d5c-4d19-ae5d-54b618ce253c_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "aa6f26d1-06a7-43e3-a8d0-8fdbdef5ec46", + "created_datetime": "2021-06-16T12:29:04.933811-05:00" + }, + "platform": "Illumina", + "file_size": 50582, + "md5sum": "bd47380c4ee74157116e5004dfc0362f", + "file_id": "5bd76bf0-175a-4cc3-875b-a8c19339b0df", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "5ea22f5e-307b-491d-801f-8b7fa6_D7", + "entity_type": "aliquot", + "case_id": "2e174f9b-290f-444f-b16e-530085416b13", + "entity_id": "55b5f1e0-0705-495b-bdb4-cd8eeb6739be" + } + ], + "file_name": "5182585a-8d5c-4d19-ae5d-54b618ce253c.mirnaseq.isoforms.quantification.txt", + "submitter_id": "1ac3e929-01d1-492b-9bf0-9b26d2c3cc8e", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9944908833693139, + "total_reads": 4972122, + "access": "controlled", + "file_name": "55b5f1e0-0705-495b-bdb4-cd8eeb6739be_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.01048339, + "proportion_reads_duplicated": 0, + "submitter_id": "b671df80-79b6-4bae-8d84-db657663eaf6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 48766241, + "created_datetime": "2021-06-16T12:10:18.290193-05:00", + "average_base_quality": 34, + "md5sum": "daeeeace8ad2b3c014d6a5a2c8f3408d", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "527837a8-f375-4546-b332-eaef5a3890fc", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "5182585a-8d5c-4d19-ae5d-54b618ce253c_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "aa6f26d1-06a7-43e3-a8d0-8fdbdef5ec46", + "created_datetime": "2021-06-16T12:29:04.933811-05:00" + }, + "platform": "Illumina", + "file_size": 451212, + "md5sum": "7fa7cd34f7055472bb2d0d7b1b52dd77", + "file_id": "07035910-c554-4945-ba21-e6040f63de3c", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "27f3ca2d-a86f-479d-8e7e-5307c7_D7", + "entity_type": "aliquot", + "case_id": "35e72ed7-d7a0-4720-af25-ad4336fa7d89", + "entity_id": "b07fac42-b038-4a64-8557-5cddb79b9485" + } + ], + "file_name": "093b9884-2f2f-4d8e-91a7-e4b97bf5ebff.mirnaseq.mirnas.quantification.txt", + "submitter_id": "34377045-43c2-40f8-a937-eca6504060d5", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9968541600569953, + "total_reads": 4813023, + "access": "controlled", + "file_name": "b07fac42-b038-4a64-8557-5cddb79b9485_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.00692071, + "proportion_reads_duplicated": 0, + "submitter_id": "5a033c49-4e17-4816-9d5c-fdd8dd486d55", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 44130760, + "created_datetime": "2021-06-16T12:07:30.481386-05:00", + "average_base_quality": 35, + "md5sum": "015f2d5b07318ae7499b3b1c7011161f", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "756285a3-569c-498e-883b-e920b04ac8e0", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "093b9884-2f2f-4d8e-91a7-e4b97bf5ebff_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1498d95a-1660-46a0-bcef-65d6b48b8a2e", + "created_datetime": "2021-06-16T12:26:22.185089-05:00" + }, + "platform": "Illumina", + "file_size": 50624, + "md5sum": "f5483930f7522184ce4d95bc3d83aa16", + "file_id": "27a61554-ede4-4b7a-8640-f86e242af32b", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "27f3ca2d-a86f-479d-8e7e-5307c7_D7", + "entity_type": "aliquot", + "case_id": "35e72ed7-d7a0-4720-af25-ad4336fa7d89", + "entity_id": "b07fac42-b038-4a64-8557-5cddb79b9485" + } + ], + "file_name": "093b9884-2f2f-4d8e-91a7-e4b97bf5ebff.mirnaseq.isoforms.quantification.txt", + "submitter_id": "92735ee5-9fc4-44fb-8997-d58269fda7ad", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9968541600569953, + "total_reads": 4813023, + "access": "controlled", + "file_name": "b07fac42-b038-4a64-8557-5cddb79b9485_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.00692071, + "proportion_reads_duplicated": 0, + "submitter_id": "5a033c49-4e17-4816-9d5c-fdd8dd486d55", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 44130760, + "created_datetime": "2021-06-16T12:07:30.481386-05:00", + "average_base_quality": 35, + "md5sum": "015f2d5b07318ae7499b3b1c7011161f", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "756285a3-569c-498e-883b-e920b04ac8e0", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "093b9884-2f2f-4d8e-91a7-e4b97bf5ebff_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1498d95a-1660-46a0-bcef-65d6b48b8a2e", + "created_datetime": "2021-06-16T12:26:22.185089-05:00" + }, + "platform": "Illumina", + "file_size": 477503, + "md5sum": "d7aa7a175f2c7b274a557e75274a2897", + "file_id": "74d0d1ad-7a3d-4b76-be6e-2b44a9bc0836", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "285fed94-1495-448e-879b-b55de9_D7", + "entity_type": "aliquot", + "case_id": "38bb0083-a307-4cc7-b15b-581f6c678482", + "entity_id": "d4d19856-7a37-49ce-b4b2-9a445568b566" + } + ], + "file_name": "47c7dfa6-eed8-428d-9f77-5e3bb2562de3.mirnaseq.mirnas.quantification.txt", + "submitter_id": "55733255-c87f-45d9-ba12-18d769fdcf55", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9964571447958606, + "total_reads": 6602302, + "access": "controlled", + "file_name": "d4d19856-7a37-49ce-b4b2-9a445568b566_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007557988, + "proportion_reads_duplicated": 0, + "submitter_id": "050693ca-eef1-4a98-be74-c118287e7318", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 66625117, + "created_datetime": "2021-06-16T12:07:05.606517-05:00", + "average_base_quality": 34, + "md5sum": "22fd1ca8f4c4e451ca7f483a2f036bda", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "5cea6a8d-780b-42cd-939a-22042c4a52bc", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "47c7dfa6-eed8-428d-9f77-5e3bb2562de3_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b3994864-17c0-4a64-abe7-73f6b782c5ed", + "created_datetime": "2021-06-16T12:26:02.325083-05:00" + }, + "platform": "Illumina", + "file_size": 50502, + "md5sum": "8a3431fd0a6ea5164230ee14e0c12860", + "file_id": "0b45b53d-3cd5-49fd-b912-4854fab2934b", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "2ed8beb2-bc63-4bad-b5fe-1916a0_D7", + "entity_type": "aliquot", + "case_id": "426aede7-3fc5-4cf8-9d24-735da96402e9", + "entity_id": "2fb0684c-bb0e-4c64-8ca3-a17f815516db" + } + ], + "file_name": "d34172a0-c0b0-46d1-a1f3-a0c7be9f07ae.mirnaseq.mirnas.quantification.txt", + "submitter_id": "a56764f0-5221-4d34-aa42-c85a30c60d13", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9961031723459371, + "total_reads": 5203720, + "access": "controlled", + "file_name": "2fb0684c-bb0e-4c64-8ca3-a17f815516db_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007031164, + "proportion_reads_duplicated": 0, + "submitter_id": "4c869dd0-9b88-4238-9ac2-9182ae9245b5", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 51743986, + "created_datetime": "2021-06-16T12:12:24.983697-05:00", + "average_base_quality": 34, + "md5sum": "16f8d1d478978663c57ecc739f5d5a59", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "8b74d778-d776-48da-9b4d-90a0b2c11cba", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "d34172a0-c0b0-46d1-a1f3-a0c7be9f07ae_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a4448624-5e61-46a7-beb2-2f6669a1fed2", + "created_datetime": "2021-06-16T12:31:53.265190-05:00" + }, + "platform": "Illumina", + "file_size": 50627, + "md5sum": "81521a5cbe45b8151cba0534b1cf3072", + "file_id": "19a4b916-39b2-4394-b3e1-795db3e88c07", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "3946a96c-e0ae-442f-83b4-a9350e_D7", + "entity_type": "aliquot", + "case_id": "46bab896-cce4-40d2-aee9-006234ec03e2", + "entity_id": "f0f21c6c-6571-4d28-b905-4ecf9e5e648b" + } + ], + "file_name": "af104314-112c-4398-ad24-0fdd90d51e22.mirnaseq.isoforms.quantification.txt", + "submitter_id": "44fc80ed-4078-497d-b6ca-24bbe49c34a5", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9947439592224383, + "total_reads": 6295423, + "access": "controlled", + "file_name": "f0f21c6c-6571-4d28-b905-4ecf9e5e648b_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.009314423, + "proportion_reads_duplicated": 0, + "submitter_id": "66a42f73-fa62-4023-86bd-3b7a579b754f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 67628334, + "created_datetime": "2021-06-16T12:12:42.080042-05:00", + "average_base_quality": 34, + "md5sum": "4af3a572495c9a5fd97ef39a79d4d9cb", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "00595125-5395-4257-b653-d53435ce2d65", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "af104314-112c-4398-ad24-0fdd90d51e22_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b39dc887-03e6-46fa-80d8-9fa234808398", + "created_datetime": "2021-06-16T12:31:34.344130-05:00" + }, + "platform": "Illumina", + "file_size": 450513, + "md5sum": "58deb5d1cd3d71d2e7d9f4187aa5214b", + "file_id": "9badb697-5d66-4187-91e3-693b75157071", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "8e6a9f67-7c53-4386-9ba0-e48101_D7", + "entity_type": "aliquot", + "case_id": "52e4305e-1ff0-4a92-a38a-136696eb8968", + "entity_id": "94b4f277-b651-4fdc-8bff-1a4f418796b6" + } + ], + "file_name": "fa3fc45d-1a7c-44c0-9d70-813916949abd.mirnaseq.mirnas.quantification.txt", + "submitter_id": "9fbdf454-7889-4dc1-b4f8-e435ce724539", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.99716757317934, + "total_reads": 6515261, + "access": "controlled", + "file_name": "94b4f277-b651-4fdc-8bff-1a4f418796b6_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007340932, + "proportion_reads_duplicated": 0, + "submitter_id": "389c9744-2b7b-426d-984c-5a33b8c6c9a0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 63887139, + "created_datetime": "2021-06-16T12:14:21.594894-05:00", + "average_base_quality": 34, + "md5sum": "9df91af8c8a094e2f4994fdbe3ce9dd0", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "f6d694ae-4483-4615-a239-1a25d319b61e", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "fa3fc45d-1a7c-44c0-9d70-813916949abd_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "758e0bd8-394b-495c-b88f-3fbd2f036374", + "created_datetime": "2021-06-16T12:32:28.647068-05:00" + }, + "platform": "Illumina", + "file_size": 50565, + "md5sum": "73fd364d5615288fdf676d91b24b88d6", + "file_id": "cdfc8b8d-b389-4c49-b645-9fe05151355d", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "8d78194e-fbef-4819-a7b5-b73ae9_D7", + "entity_type": "aliquot", + "case_id": "53c60788-10b1-4ba1-afdd-63376587b7cb", + "entity_id": "3042b7a7-5a7f-44d8-b92c-f0a242fd6f16" + } + ], + "file_name": "d57d899e-14f5-4f67-8f71-268aff92aa5f.mirnaseq.isoforms.quantification.txt", + "submitter_id": "9636692e-cb56-4728-b397-fabb915ffe57", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9963009275445236, + "total_reads": 7599743, + "access": "controlled", + "file_name": "3042b7a7-5a7f-44d8-b92c-f0a242fd6f16_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007365281, + "proportion_reads_duplicated": 0, + "submitter_id": "acaac99f-0168-4def-90fd-61ef76ab6eda", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 81493366, + "created_datetime": "2021-06-16T12:09:49.456475-05:00", + "average_base_quality": 34, + "md5sum": "1fb070808e75a8d8ae801cddb2001912", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "795d8c60-3afb-4961-be67-f1c8ff5266da", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "d57d899e-14f5-4f67-8f71-268aff92aa5f_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d169f453-1b82-491d-8111-e225975aa40a", + "created_datetime": "2021-06-16T12:27:27.287251-05:00" + }, + "platform": "Illumina", + "file_size": 436278, + "md5sum": "42423030dcc456dba52c50f80099e495", + "file_id": "4636b740-0429-45de-9618-425d63b5e759", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "8d78194e-fbef-4819-a7b5-b73ae9_D7", + "entity_type": "aliquot", + "case_id": "53c60788-10b1-4ba1-afdd-63376587b7cb", + "entity_id": "3042b7a7-5a7f-44d8-b92c-f0a242fd6f16" + } + ], + "file_name": "d57d899e-14f5-4f67-8f71-268aff92aa5f.mirnaseq.mirnas.quantification.txt", + "submitter_id": "527997a3-4965-47aa-a23d-3f533e602d8b", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9963009275445236, + "total_reads": 7599743, + "access": "controlled", + "file_name": "3042b7a7-5a7f-44d8-b92c-f0a242fd6f16_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007365281, + "proportion_reads_duplicated": 0, + "submitter_id": "acaac99f-0168-4def-90fd-61ef76ab6eda", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 81493366, + "created_datetime": "2021-06-16T12:09:49.456475-05:00", + "average_base_quality": 34, + "md5sum": "1fb070808e75a8d8ae801cddb2001912", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "795d8c60-3afb-4961-be67-f1c8ff5266da", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "d57d899e-14f5-4f67-8f71-268aff92aa5f_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d169f453-1b82-491d-8111-e225975aa40a", + "created_datetime": "2021-06-16T12:27:27.287251-05:00" + }, + "platform": "Illumina", + "file_size": 50420, + "md5sum": "89698ba0b2d66a930d7c4a1c50d76003", + "file_id": "d24856e7-130d-4f7b-a012-f121ca983024", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "50997c44-1c8b-4d34-b535-4a6cc2_D7", + "entity_type": "aliquot", + "case_id": "7d7fba6d-9bbb-44a6-b91c-ca97277e49b2", + "entity_id": "5a729747-a095-4eb6-81ba-a16c3ced935c" + } + ], + "file_name": "616f5677-0978-476e-88b0-2763f15fcc4c.mirnaseq.mirnas.quantification.txt", + "submitter_id": "9bc31388-0adc-4bda-a46d-98fbc89afe43", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9954308592673882, + "total_reads": 7474053, + "access": "controlled", + "file_name": "5a729747-a095-4eb6-81ba-a16c3ced935c_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007045363, + "proportion_reads_duplicated": 0, + "submitter_id": "3ae490a7-8547-4145-9089-1f3b54c21ef3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 74161474, + "created_datetime": "2021-06-16T12:14:31.072497-05:00", + "average_base_quality": 34, + "md5sum": "d426c7d338c6b0494461798857075946", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "6411abbf-e499-4af5-9e04-9a1b4a30a669", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "616f5677-0978-476e-88b0-2763f15fcc4c_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c399787c-be07-4d66-9e85-827f5567290c", + "created_datetime": "2021-06-16T12:26:58.597447-05:00" + }, + "platform": "Illumina", + "file_size": 50519, + "md5sum": "c69603a8ac6f1118becdbdd45cfb8585", + "file_id": "dfdb8033-bca7-4fb7-a568-2f3b64c95f62", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "50997c44-1c8b-4d34-b535-4a6cc2_D7", + "entity_type": "aliquot", + "case_id": "7d7fba6d-9bbb-44a6-b91c-ca97277e49b2", + "entity_id": "5a729747-a095-4eb6-81ba-a16c3ced935c" + } + ], + "file_name": "616f5677-0978-476e-88b0-2763f15fcc4c.mirnaseq.isoforms.quantification.txt", + "submitter_id": "b377763f-7d79-47ce-8199-6f981d3814b7", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9954308592673882, + "total_reads": 7474053, + "access": "controlled", + "file_name": "5a729747-a095-4eb6-81ba-a16c3ced935c_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007045363, + "proportion_reads_duplicated": 0, + "submitter_id": "3ae490a7-8547-4145-9089-1f3b54c21ef3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 74161474, + "created_datetime": "2021-06-16T12:14:31.072497-05:00", + "average_base_quality": 34, + "md5sum": "d426c7d338c6b0494461798857075946", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "6411abbf-e499-4af5-9e04-9a1b4a30a669", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "616f5677-0978-476e-88b0-2763f15fcc4c_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c399787c-be07-4d66-9e85-827f5567290c", + "created_datetime": "2021-06-16T12:26:58.597447-05:00" + }, + "platform": "Illumina", + "file_size": 481502, + "md5sum": "6c7be46ad56680d5dec7851e03dee42c", + "file_id": "ec077aa4-4d88-475a-ab09-ad50fb79a793", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "fe83e13f-9754-403b-8f74-d6caf8_D7_1", + "entity_type": "aliquot", + "case_id": "7e06a271-ede9-40dc-a5f1-6eebaa82de8b", + "entity_id": "f3e3031c-1674-4b46-9abd-7f67b88832e5" + } + ], + "file_name": "4b73d25d-9515-40a2-963d-32b14ff8849a.mirnaseq.isoforms.quantification.txt", + "submitter_id": "b9ad7ff0-637c-4668-98de-b838121808cd", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9973645771243638, + "total_reads": 8452154, + "access": "controlled", + "file_name": "f3e3031c-1674-4b46-9abd-7f67b88832e5_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007308489, + "proportion_reads_duplicated": 0, + "submitter_id": "00c829a0-4e8b-46df-9e94-76875002b1ac", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 80823838, + "created_datetime": "2021-06-16T12:07:10.415741-05:00", + "average_base_quality": 34, + "md5sum": "29f00ba34acf08530dace0b589ff5cc5", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "4b5d6871-91aa-479b-91a8-29894655887b", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "4b73d25d-9515-40a2-963d-32b14ff8849a_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0a0d03b0-59e5-4175-a186-c9ebb7da4bf9", + "created_datetime": "2021-06-16T12:29:46.741869-05:00" + }, + "platform": "Illumina", + "file_size": 558388, + "md5sum": "2a50e00363911e2bf23308d98d2c74df", + "file_id": "d8f5089d-4182-46ea-b09a-e1986cf5b22b", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "fe83e13f-9754-403b-8f74-d6caf8_D7_1", + "entity_type": "aliquot", + "case_id": "7e06a271-ede9-40dc-a5f1-6eebaa82de8b", + "entity_id": "f3e3031c-1674-4b46-9abd-7f67b88832e5" + } + ], + "file_name": "4b73d25d-9515-40a2-963d-32b14ff8849a.mirnaseq.mirnas.quantification.txt", + "submitter_id": "ac46f4d6-33e1-42a0-8ca1-b9177da309c9", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9973645771243638, + "total_reads": 8452154, + "access": "controlled", + "file_name": "f3e3031c-1674-4b46-9abd-7f67b88832e5_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007308489, + "proportion_reads_duplicated": 0, + "submitter_id": "00c829a0-4e8b-46df-9e94-76875002b1ac", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 80823838, + "created_datetime": "2021-06-16T12:07:10.415741-05:00", + "average_base_quality": 34, + "md5sum": "29f00ba34acf08530dace0b589ff5cc5", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "4b5d6871-91aa-479b-91a8-29894655887b", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "4b73d25d-9515-40a2-963d-32b14ff8849a_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0a0d03b0-59e5-4175-a186-c9ebb7da4bf9", + "created_datetime": "2021-06-16T12:29:46.741869-05:00" + }, + "platform": "Illumina", + "file_size": 50645, + "md5sum": "97177c51020043f014b91c3f39ad5b87", + "file_id": "84d89b66-252c-4ad8-8ca3-7b11f0c259e4", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "d945689a-dcf3-44f4-a42f-1ded6d_D7_1", + "entity_type": "aliquot", + "case_id": "7e89e67a-6376-41ee-8022-e9445e3fbfc7", + "entity_id": "67fba543-7325-4a5a-a8ea-6f13224fd7d2" + } + ], + "file_name": "f479c11e-be87-41cf-81e5-7b7cf627fbf6.mirnaseq.mirnas.quantification.txt", + "submitter_id": "4bf34d70-b2af-4717-9d32-8c245958951e", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.997368055165072, + "total_reads": 5530891, + "access": "controlled", + "file_name": "67fba543-7325-4a5a-a8ea-6f13224fd7d2_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.006342382, + "proportion_reads_duplicated": 0, + "submitter_id": "04955079-51e7-45a6-9aa5-0c9b480b9614", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 55034178, + "created_datetime": "2021-06-16T12:09:44.886025-05:00", + "average_base_quality": 34, + "md5sum": "bb235b6d824158391b978cc228ac45f3", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "ef3df9a4-87f0-4d07-849d-08f7365464a4", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "f479c11e-be87-41cf-81e5-7b7cf627fbf6_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "35d9f392-8c65-4d20-b535-b18fbe261c43", + "created_datetime": "2021-06-16T12:31:38.752549-05:00" + }, + "platform": "Illumina", + "file_size": 50590, + "md5sum": "8716de143798c1d6c4e6f7956165c351", + "file_id": "e3e0ce59-f199-4fb6-a20b-7cd0bce0cd00", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "ce1e5dfc-2ef1-4633-af93-5ea4d9_D7", + "entity_type": "aliquot", + "case_id": "848d4e80-9658-4f99-bcdb-e3f7275bb72d", + "entity_id": "14244068-73ab-48eb-881e-f4c26fd65dac" + } + ], + "file_name": "7e50f090-1bc6-4123-9c5e-c08eb5497634.mirnaseq.mirnas.quantification.txt", + "submitter_id": "ca9666e2-62fc-4b5f-bafc-4f18da1086d2", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.996854211291491, + "total_reads": 7172764, + "access": "controlled", + "file_name": "14244068-73ab-48eb-881e-f4c26fd65dac_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007299195, + "proportion_reads_duplicated": 0, + "submitter_id": "b11dd6d1-701b-4e7f-a605-535092d3c247", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 77193569, + "created_datetime": "2021-06-16T12:07:04.002218-05:00", + "average_base_quality": 34, + "md5sum": "650a95bb806d9bb8b7d544cbdfbb88b3", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "4491ab4e-4b0e-4bb7-911b-dd38ab23a982", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "7e50f090-1bc6-4123-9c5e-c08eb5497634_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "cb252aee-086c-4e1e-8400-a035c97a61fe", + "created_datetime": "2021-06-16T12:27:28.858478-05:00" + }, + "platform": "Illumina", + "file_size": 50597, + "md5sum": "fa1ce74061a5ffd9b2cd160ddcca81f1", + "file_id": "529625ec-cfe3-4a6f-b0dd-d9b5b5d8aa5a", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "d945689a-dcf3-44f4-a42f-1ded6d_D7_1", + "entity_type": "aliquot", + "case_id": "7e89e67a-6376-41ee-8022-e9445e3fbfc7", + "entity_id": "67fba543-7325-4a5a-a8ea-6f13224fd7d2" + } + ], + "file_name": "f479c11e-be87-41cf-81e5-7b7cf627fbf6.mirnaseq.isoforms.quantification.txt", + "submitter_id": "4fcee0d2-4643-4ee0-86cb-daca0852ae8a", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.997368055165072, + "total_reads": 5530891, + "access": "controlled", + "file_name": "67fba543-7325-4a5a-a8ea-6f13224fd7d2_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.006342382, + "proportion_reads_duplicated": 0, + "submitter_id": "04955079-51e7-45a6-9aa5-0c9b480b9614", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 55034178, + "created_datetime": "2021-06-16T12:09:44.886025-05:00", + "average_base_quality": 34, + "md5sum": "bb235b6d824158391b978cc228ac45f3", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "ef3df9a4-87f0-4d07-849d-08f7365464a4", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "f479c11e-be87-41cf-81e5-7b7cf627fbf6_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "35d9f392-8c65-4d20-b535-b18fbe261c43", + "created_datetime": "2021-06-16T12:31:38.752549-05:00" + }, + "platform": "Illumina", + "file_size": 466243, + "md5sum": "557186e5f591635bfb97b1560949a454", + "file_id": "059efef0-d802-4f74-940a-6b7114e8c457", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "4bc2d3ea-1611-4fc3-85ee-5b06c4_D7", + "entity_type": "aliquot", + "case_id": "8a44e623-e199-445f-96de-0e7a5c336a1b", + "entity_id": "a6834e2d-954a-4218-b2d7-faa75222f8a5" + } + ], + "file_name": "28c78a90-1f33-44b0-b7b0-99afed2cb895.mirnaseq.isoforms.quantification.txt", + "submitter_id": "1e545f6a-e674-40df-820f-4cf052d45450", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9958654516165826, + "total_reads": 6259934, + "access": "controlled", + "file_name": "a6834e2d-954a-4218-b2d7-faa75222f8a5_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007453417, + "proportion_reads_duplicated": 0, + "submitter_id": "7ef53241-6a7d-4a89-9313-cfaaf97ec4c9", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 73290253, + "created_datetime": "2021-06-16T12:14:25.228564-05:00", + "average_base_quality": 34, + "md5sum": "986841aa0ff931f8b8997f0a37abac74", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "80cbacd5-ece6-4e51-9455-fbc9aa8684f1", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "28c78a90-1f33-44b0-b7b0-99afed2cb895_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "6b43586f-f985-4811-aeb4-770c9082b189", + "created_datetime": "2021-06-16T12:33:00.002973-05:00" + }, + "platform": "Illumina", + "file_size": 437809, + "md5sum": "fb25b20027c4a375e1bcf56e11467abc", + "file_id": "d8d3ff1d-65b9-46e5-8179-517740745fbc", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "0c87932d-b6fd-4eb5-b86a-a34d07_D7_1", + "entity_type": "aliquot", + "case_id": "8beaf23a-9e0e-4fc1-b604-5de8c857fbd9", + "entity_id": "4621871b-ace6-4436-ba4c-2375317c3844" + } + ], + "file_name": "26f80c3e-311d-4185-95a1-e4ca729f6a2d.mirnaseq.mirnas.quantification.txt", + "submitter_id": "8ab659ed-5d6a-47e5-b9f5-3774618dffeb", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9968544489543977, + "total_reads": 5129149, + "access": "controlled", + "file_name": "4621871b-ace6-4436-ba4c-2375317c3844_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007057493, + "proportion_reads_duplicated": 0, + "submitter_id": "bc46c582-43a9-4c86-ba75-184c8385c9bb", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 53437320, + "created_datetime": "2021-06-16T12:06:27.807546-05:00", + "average_base_quality": 34, + "md5sum": "5c93e62a6a3fe2c3cb98284ff5d12919", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "0b0f81ed-7e89-4a86-a483-cd9cb92d24ae", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "26f80c3e-311d-4185-95a1-e4ca729f6a2d_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c051ac30-f71e-41a1-ade6-60b5d12d1cef", + "created_datetime": "2021-06-16T12:32:44.747191-05:00" + }, + "platform": "Illumina", + "file_size": 50386, + "md5sum": "81b4297b9bf9aa290699a9b822e59789", + "file_id": "c394ce80-bee7-4314-b4be-fc1c18aade71", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "cfb8cb2c-53c6-40d7-8069-a1a804_D7", + "entity_type": "aliquot", + "case_id": "8eee2518-57c0-4ee8-b72d-49c3187d7e1a", + "entity_id": "072edfbd-8e5e-47db-8fbd-ea0773555c80" + } + ], + "file_name": "babd95ad-d3a5-485c-8af0-c036cfff7337.mirnaseq.mirnas.quantification.txt", + "submitter_id": "c4a74aa0-3444-4605-b681-ada7896c5627", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9966047772569546, + "total_reads": 8227148, + "access": "controlled", + "file_name": "072edfbd-8e5e-47db-8fbd-ea0773555c80_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.008143755, + "proportion_reads_duplicated": 0, + "submitter_id": "cfcb4853-c41d-4948-8378-48ac4f85e5ff", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 84467362, + "created_datetime": "2021-06-16T12:07:00.963816-05:00", + "average_base_quality": 34, + "md5sum": "9ba0bb9a4564e6076f83fe051cfffbcd", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "8ef99924-fa3f-44b7-ae9e-dc3df533cc4c", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "babd95ad-d3a5-485c-8af0-c036cfff7337_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "38006edb-541a-4b56-8e25-1fe0dcc24d0d", + "created_datetime": "2021-06-16T12:29:26.673390-05:00" + }, + "platform": "Illumina", + "file_size": 50667, + "md5sum": "1489a0d0d95e4ade12de619da90d744e", + "file_id": "21a753cc-8040-4ac6-867f-55f7354a0b71", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "6319b36b-533c-4e86-8e12-80552e_D7", + "entity_type": "aliquot", + "case_id": "a7deae0d-38d2-46e4-a90b-f79f57fd2808", + "entity_id": "c30cbf67-5a54-4e3b-8028-797729663fa4" + } + ], + "file_name": "19b57268-9861-44b9-8a50-243937c472cb.mirnaseq.mirnas.quantification.txt", + "submitter_id": "9b02c94f-cdf5-4c07-9fcd-a46a1d196dda", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9885590691294871, + "total_reads": 7914828, + "access": "controlled", + "file_name": "c30cbf67-5a54-4e3b-8028-797729663fa4_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.01420335, + "proportion_reads_duplicated": 0, + "submitter_id": "53a90909-9822-44c6-845c-79f30fe83522", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 92057772, + "created_datetime": "2021-06-16T12:14:40.539378-05:00", + "average_base_quality": 34, + "md5sum": "f92e6104cf015eaf31002bf81a53b382", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "dac53246-1110-47f1-ae45-a83918504db8", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "19b57268-9861-44b9-8a50-243937c472cb_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e2ec8ca4-cd9a-485c-afc3-89a87d2574a8", + "created_datetime": "2021-06-16T12:26:41.475541-05:00" + }, + "platform": "Illumina", + "file_size": 50623, + "md5sum": "dfb50a89cf74819de46d089090a34f19", + "file_id": "247f21f2-5d69-489f-89f1-622d78a8d9a1", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "97cab1b7-a9ba-4c11-9f39-c8c54d_D7", + "entity_type": "aliquot", + "case_id": "aa6ca4cf-aad7-48d5-855b-3aff763ff527", + "entity_id": "4dca8fb1-c0bb-4884-8099-6e64ba48b2a4" + } + ], + "file_name": "5e6966c3-8159-4b05-b9ba-20ec6b83a233.mirnaseq.isoforms.quantification.txt", + "submitter_id": "4fc23950-ad9f-4d38-807b-c168dd486603", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9934355309230812, + "total_reads": 7865678, + "access": "controlled", + "file_name": "4dca8fb1-c0bb-4884-8099-6e64ba48b2a4_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.0100064, + "proportion_reads_duplicated": 0, + "submitter_id": "5a975ce9-f908-4db7-aaca-d02e374cf4ac", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 82087181, + "created_datetime": "2021-06-16T12:12:45.276159-05:00", + "average_base_quality": 34, + "md5sum": "9d078492015ced52d0c3b1c61f3c788b", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "97a42e8e-3b5b-485e-833a-97f093a8c481", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "5e6966c3-8159-4b05-b9ba-20ec6b83a233_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8350d253-4e87-43c7-9a7e-e93ea19f814f", + "created_datetime": "2021-06-16T12:25:48.147083-05:00" + }, + "platform": "Illumina", + "file_size": 487936, + "md5sum": "ac0f0df768d7388f30c32aa4b34de370", + "file_id": "d633e082-d6f3-459c-aaf6-5cf2be4e834e", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "2a237fd4-f966-4563-bab1-61dbd7_D7", + "entity_type": "aliquot", + "case_id": "af7b9ab4-fe96-43be-ac63-0721d3689fe2", + "entity_id": "61bd9fcc-393b-401d-b744-b85cfd2fcfa1" + } + ], + "file_name": "e34460ad-500e-4d3d-a2de-871d44cb677e.mirnaseq.isoforms.quantification.txt", + "submitter_id": "f5b5f5ec-1f87-4cfc-ae51-3c2e7bcc287d", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.994122588640707, + "total_reads": 7814835, + "access": "controlled", + "file_name": "61bd9fcc-393b-401d-b744-b85cfd2fcfa1_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.009965136, + "proportion_reads_duplicated": 0, + "submitter_id": "29fc6c7b-90fb-4a7b-8f4e-b8c434cadb22", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 79712206, + "created_datetime": "2021-06-16T12:08:42.575915-05:00", + "average_base_quality": 34, + "md5sum": "11a872005b55d967d0059b6a8607b9ae", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "395b1279-d50d-47fe-a65a-f3d65a708da6", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "e34460ad-500e-4d3d-a2de-871d44cb677e_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5267c4f2-7d88-4988-ac98-abb03f8d767d", + "created_datetime": "2021-06-16T12:32:43.326841-05:00" + }, + "platform": "Illumina", + "file_size": 526133, + "md5sum": "ed76d97b2f28a0b084ad2873d32f28db", + "file_id": "622cbd77-a6b0-4b39-a448-19c63031facd", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "2a237fd4-f966-4563-bab1-61dbd7_D7", + "entity_type": "aliquot", + "case_id": "af7b9ab4-fe96-43be-ac63-0721d3689fe2", + "entity_id": "61bd9fcc-393b-401d-b744-b85cfd2fcfa1" + } + ], + "file_name": "e34460ad-500e-4d3d-a2de-871d44cb677e.mirnaseq.mirnas.quantification.txt", + "submitter_id": "1e477098-2c57-45c0-b0da-9eda78267d2b", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.994122588640707, + "total_reads": 7814835, + "access": "controlled", + "file_name": "61bd9fcc-393b-401d-b744-b85cfd2fcfa1_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.009965136, + "proportion_reads_duplicated": 0, + "submitter_id": "29fc6c7b-90fb-4a7b-8f4e-b8c434cadb22", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 79712206, + "created_datetime": "2021-06-16T12:08:42.575915-05:00", + "average_base_quality": 34, + "md5sum": "11a872005b55d967d0059b6a8607b9ae", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "395b1279-d50d-47fe-a65a-f3d65a708da6", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "e34460ad-500e-4d3d-a2de-871d44cb677e_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5267c4f2-7d88-4988-ac98-abb03f8d767d", + "created_datetime": "2021-06-16T12:32:43.326841-05:00" + }, + "platform": "Illumina", + "file_size": 50612, + "md5sum": "dec562014458fffb26e270e7ee4f2cb2", + "file_id": "8ac03d87-5ef9-4cb8-8222-5e94420cebf5", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "8120e7d6-bd09-4334-841c-70a214_D7", + "entity_type": "aliquot", + "case_id": "c2126c09-0465-43c1-bae1-a50e83d5f7d0", + "entity_id": "1a81ab02-469c-4f67-83cd-d2391fb30e11" + } + ], + "file_name": "c3634b8c-f0fd-4d28-92b3-77eead7a6102.mirnaseq.isoforms.quantification.txt", + "submitter_id": "e7c773c2-75f4-451b-9489-931084ccffc4", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9905036593499971, + "total_reads": 2626696, + "access": "controlled", + "file_name": "1a81ab02-469c-4f67-83cd-d2391fb30e11_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.01097779, + "proportion_reads_duplicated": 0, + "submitter_id": "cfd7276e-e9ba-4d81-b6c5-d0514acc996f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 30616644, + "created_datetime": "2021-06-16T12:08:34.470254-05:00", + "average_base_quality": 35, + "md5sum": "ce7b96dd573c4df419c0b331955e927d", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "abf220e6-facd-4a3e-91eb-59d8ed9118bf", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "c3634b8c-f0fd-4d28-92b3-77eead7a6102_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ffd5f12a-6df3-4fbf-81a2-cb839e24726c", + "created_datetime": "2021-06-16T12:29:52.346340-05:00" + }, + "platform": "Illumina", + "file_size": 361353, + "md5sum": "1d35ff749b4820f242ab62b8c4374612", + "file_id": "41b073a4-f9ea-4b0a-83d8-b227d1e5beff", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "5b5c81b1-4e73-48d3-9469-108edd_D7", + "entity_type": "aliquot", + "case_id": "b9337dee-3bdb-49b2-90e4-97249e30418d", + "entity_id": "21ff5353-7b06-4e65-850a-eb462bd0c2e8" + } + ], + "file_name": "23749b37-2455-4e3e-b6fc-820519f94e11.mirnaseq.mirnas.quantification.txt", + "submitter_id": "a5a954d5-89d8-4f68-867b-c1afdd847649", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9954181876899477, + "total_reads": 7976538, + "access": "controlled", + "file_name": "21ff5353-7b06-4e65-850a-eb462bd0c2e8_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.008507292, + "proportion_reads_duplicated": 0, + "submitter_id": "8f8af4ba-28a6-4838-bc6e-e2d43878de56", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 80801480, + "created_datetime": "2021-06-16T12:08:47.383002-05:00", + "average_base_quality": 34, + "md5sum": "13a7bc8fd43c4ec17a53aa18a5798314", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "2340ed4d-7c29-4e52-939d-6c66f66f698e", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "23749b37-2455-4e3e-b6fc-820519f94e11_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a7b0f972-a59e-425c-9ff9-851828806288", + "created_datetime": "2021-06-16T12:27:12.518283-05:00" + }, + "platform": "Illumina", + "file_size": 50663, + "md5sum": "fbfa637c6546b89ac16d907cb44804bc", + "file_id": "a5aef34d-41bc-4600-bf1d-3bb69261776f", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "2f901c90-617e-46da-9fac-d68369_D7", + "entity_type": "aliquot", + "case_id": "c3a430fe-641e-4b7b-884e-9735908692d6", + "entity_id": "0b2776ab-5731-491b-8046-521c3c22fded" + } + ], + "file_name": "142e0755-5538-437e-86dd-f7a769446460.mirnaseq.isoforms.quantification.txt", + "submitter_id": "28f9cd5d-d4c8-4bbd-8bf1-f5bc208a2895", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9915747027119647, + "total_reads": 4505479, + "access": "controlled", + "file_name": "0b2776ab-5731-491b-8046-521c3c22fded_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.01021715, + "proportion_reads_duplicated": 0, + "submitter_id": "eb25c46d-7784-41f6-9a7b-24939ccc2108", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 54908286, + "created_datetime": "2021-06-16T12:13:58.993485-05:00", + "average_base_quality": 35, + "md5sum": "caa98c9e72854f6885636130eb70a0e7", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "4df198e2-be27-4801-98d5-4962217a6f5d", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "142e0755-5538-437e-86dd-f7a769446460_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "456c7dde-fa86-4979-884c-58d7e9f4a770", + "created_datetime": "2021-06-16T12:32:11.640271-05:00" + }, + "platform": "Illumina", + "file_size": 429638, + "md5sum": "3683f03f5c6c9c1ac6cd1a1570db2ab2", + "file_id": "817dc9e1-7a3e-4c38-9c7d-7b79bac2653f", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "46c73531-f531-4ec3-97fe-b39d9d_D7_1", + "entity_type": "aliquot", + "case_id": "cee465f1-3162-49de-ba8c-29b2f989a7bb", + "entity_id": "c1968745-1e94-4cea-b3ca-ed59095eda3a" + } + ], + "file_name": "ae729b95-39c6-475f-87aa-03e18fe38015.mirnaseq.mirnas.quantification.txt", + "submitter_id": "1713133f-eb2c-4d62-bcfe-3ef5011bad77", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9952515833349745, + "total_reads": 6296204, + "access": "controlled", + "file_name": "c1968745-1e94-4cea-b3ca-ed59095eda3a_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007291906, + "proportion_reads_duplicated": 0, + "submitter_id": "557cf378-9142-42d9-bf14-d1dad933d427", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 74430315, + "created_datetime": "2021-06-16T12:10:49.705163-05:00", + "average_base_quality": 34, + "md5sum": "54fb087fbfd19154211d91262a8e92e5", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "1981a331-87ee-442e-95d4-1ed4cc98b565", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "ae729b95-39c6-475f-87aa-03e18fe38015_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "34c83c1c-fafa-4d98-8775-785f68c68c17", + "created_datetime": "2021-06-16T12:26:00.853209-05:00" + }, + "platform": "Illumina", + "file_size": 50567, + "md5sum": "83817845fb0960199131e5ae12e4dc5a", + "file_id": "f97cd99b-cc47-4c9d-b68c-4071a230ba6c", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "cfd76f9a-ce60-4ec7-8e6b-a8fc31_D7", + "entity_type": "aliquot", + "case_id": "c6006435-8e68-4d7f-9d6b-ebac520c1361", + "entity_id": "096a91ee-84f7-4018-a294-2e67d7130b71" + } + ], + "file_name": "54dcb5d2-7d29-44e4-882f-cc7891c52e5f.mirnaseq.isoforms.quantification.txt", + "submitter_id": "044a4ce7-b543-4b5f-bee1-740088daddf5", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9926409123181041, + "total_reads": 7050874, + "access": "controlled", + "file_name": "096a91ee-84f7-4018-a294-2e67d7130b71_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.008862901, + "proportion_reads_duplicated": 0, + "submitter_id": "200ad973-dfbf-4aa1-a4ae-dcab91a743c9", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 69940487, + "created_datetime": "2021-06-16T12:12:30.551083-05:00", + "average_base_quality": 34, + "md5sum": "9a27fb54eed46298266d27ef550f945e", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "651b4a4d-c922-4b68-b262-49f8bddd105e", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "54dcb5d2-7d29-44e4-882f-cc7891c52e5f_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f1275034-7986-4e01-b872-fccaa4a466ed", + "created_datetime": "2021-06-16T12:30:30.650582-05:00" + }, + "platform": "Illumina", + "file_size": 476379, + "md5sum": "8bf01a0cea2bdf81f40d851fc293a7e8", + "file_id": "10dace4e-9ef6-43f2-8d43-1db276ad52e0", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "cfd76f9a-ce60-4ec7-8e6b-a8fc31_D7", + "entity_type": "aliquot", + "case_id": "c6006435-8e68-4d7f-9d6b-ebac520c1361", + "entity_id": "096a91ee-84f7-4018-a294-2e67d7130b71" + } + ], + "file_name": "54dcb5d2-7d29-44e4-882f-cc7891c52e5f.mirnaseq.mirnas.quantification.txt", + "submitter_id": "39735688-83b1-4a28-af3f-ca874d6fd438", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9926409123181041, + "total_reads": 7050874, + "access": "controlled", + "file_name": "096a91ee-84f7-4018-a294-2e67d7130b71_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.008862901, + "proportion_reads_duplicated": 0, + "submitter_id": "200ad973-dfbf-4aa1-a4ae-dcab91a743c9", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 69940487, + "created_datetime": "2021-06-16T12:12:30.551083-05:00", + "average_base_quality": 34, + "md5sum": "9a27fb54eed46298266d27ef550f945e", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "651b4a4d-c922-4b68-b262-49f8bddd105e", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "54dcb5d2-7d29-44e4-882f-cc7891c52e5f_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f1275034-7986-4e01-b872-fccaa4a466ed", + "created_datetime": "2021-06-16T12:30:30.650582-05:00" + }, + "platform": "Illumina", + "file_size": 50551, + "md5sum": "3c59cc82f74b5b8155329bca1912e59b", + "file_id": "d2a5f04f-8c56-4856-8a73-6099a4f18943", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "1c9145ad-1981-4871-aa7e-8b11de_D7", + "entity_type": "aliquot", + "case_id": "caf0bcda-98b4-4ef9-a1b5-10f7a95e08fc", + "entity_id": "02ecf23d-5ea3-4fa3-875e-8020579a4ff3" + } + ], + "file_name": "d383b337-778b-44d3-a692-92c5ab9b77e7.mirnaseq.isoforms.quantification.txt", + "submitter_id": "e34d4619-4872-48f7-a6dd-0138ee1b7e6d", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9941034443274679, + "total_reads": 4043547, + "access": "controlled", + "file_name": "02ecf23d-5ea3-4fa3-875e-8020579a4ff3_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007653467, + "proportion_reads_duplicated": 0, + "submitter_id": "855c3484-8fa9-4ed2-a1f8-e05310f24d96", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 41831311, + "created_datetime": "2021-06-16T12:09:07.953514-05:00", + "average_base_quality": 34, + "md5sum": "6dfa15baead9706ab56a1aaa9c8800f9", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "d52fcae9-c7cc-45b9-b284-14e8e29b630d", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "d383b337-778b-44d3-a692-92c5ab9b77e7_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c55c67e7-04f5-4996-932f-0987859f287a", + "created_datetime": "2021-06-16T12:29:14.791923-05:00" + }, + "platform": "Illumina", + "file_size": 430700, + "md5sum": "2b54b86352082bb11d57de8645b4797b", + "file_id": "46f4a1ff-f885-43e9-9ee5-40471a7e83d6", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "fbb41c94-aabd-49cc-90b2-882c3e_D7", + "entity_type": "aliquot", + "case_id": "d7e3db60-1891-494b-81cb-5412cab99f5d", + "entity_id": "5ad09903-e194-4d71-87ca-2855863fa867" + } + ], + "file_name": "1796fc0d-475e-4753-9e87-c3d5c354d65e.mirnaseq.mirnas.quantification.txt", + "submitter_id": "4fe5dc65-4605-4716-91e1-0294eb334ca3", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.99551473549644, + "total_reads": 4163857, + "access": "controlled", + "file_name": "5ad09903-e194-4d71-87ca-2855863fa867_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.00808295, + "proportion_reads_duplicated": 0, + "submitter_id": "a9d90c0a-f50e-4604-b6f3-ee9c0a716123", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 40626408, + "created_datetime": "2021-06-16T12:13:18.029964-05:00", + "average_base_quality": 34, + "md5sum": "c675913a294f7f028ea67d6d908a25e7", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "983074dd-7bd6-473a-abad-2afebfe778cb", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "1796fc0d-475e-4753-9e87-c3d5c354d65e_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8a88a74c-ed2e-4c81-8f37-c1587a49f050", + "created_datetime": "2021-06-16T12:25:58.152856-05:00" + }, + "platform": "Illumina", + "file_size": 50602, + "md5sum": "9f45f816a6346aacfaeba7ef64c061b0", + "file_id": "0948eba4-4a62-49df-bd49-e21286db5b7e", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "95c2a5bf-a27b-4c83-8791-160e03_D7", + "entity_type": "aliquot", + "case_id": "dc8e3901-b845-4419-8f76-d31750eacf60", + "entity_id": "24481767-7743-4dd0-ae53-80bb023d7df9" + } + ], + "file_name": "1a87d0c7-667d-42b2-ab04-775adeb5c0ec.mirnaseq.isoforms.quantification.txt", + "submitter_id": "2c82b953-9f73-4d94-b130-5039f6a916c3", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9622777272321699, + "total_reads": 5581318, + "access": "controlled", + "file_name": "24481767-7743-4dd0-ae53-80bb023d7df9_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.009558304, + "proportion_reads_duplicated": 0, + "submitter_id": "8ae76275-3672-4308-9ebe-370b0c06b98a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 92259575, + "created_datetime": "2021-06-16T12:11:51.948047-05:00", + "average_base_quality": 35, + "md5sum": "ef21fc8b233e92f3e1543210f11ae85c", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "a6bd00da-2143-4844-ac2e-7b8b01aafacf", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 33, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "1a87d0c7-667d-42b2-ab04-775adeb5c0ec_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "817b50d8-c33a-49bb-9036-64de02847347", + "created_datetime": "2021-06-16T12:27:41.522052-05:00" + }, + "platform": "Illumina", + "file_size": 462265, + "md5sum": "6623452821cf00d21a16874c78d4b565", + "file_id": "5431018d-5e22-44a9-bc07-dc4b11716676", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "1772e913-f62e-446a-8cf3-720348_D7", + "entity_type": "aliquot", + "case_id": "e7e2597f-c6a3-4bdc-9daa-d17fc8ab9f76", + "entity_id": "191f0069-d1c2-4c5f-a9b2-a7834b95bec6" + } + ], + "file_name": "2b584c7c-face-4833-a93c-f2c5ad179328.mirnaseq.isoforms.quantification.txt", + "submitter_id": "67e4d32b-43cf-4b5a-a203-ae61fb69b00e", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9903259895446799, + "total_reads": 3064086, + "access": "controlled", + "file_name": "191f0069-d1c2-4c5f-a9b2-a7834b95bec6_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.01119427, + "proportion_reads_duplicated": 0, + "submitter_id": "9e676c38-5f17-4692-b192-6a1ae7bcde89", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 36406136, + "created_datetime": "2021-06-16T12:12:18.154686-05:00", + "average_base_quality": 35, + "md5sum": "cfcd765a9a96c188d9dd4bf7c9602028", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "5f911f4d-e5e1-461d-96b8-5d7db479bad6", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "2b584c7c-face-4833-a93c-f2c5ad179328_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2a13299e-7873-4bf4-b399-d53a9353b3af", + "created_datetime": "2021-06-16T12:26:47.170237-05:00" + }, + "platform": "Illumina", + "file_size": 378500, + "md5sum": "200fe66110f56fbdce3f74644f12695d", + "file_id": "ce946e5c-4a6d-4098-af05-f945d064dd4e", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "1de8d3d8-fc0e-4be0-8aa7-127c7b_D7_1", + "entity_type": "aliquot", + "case_id": "de970d08-9907-464c-8175-47f6d2be62e0", + "entity_id": "57a667f4-a897-4aa5-9e41-ec94cd78416c" + } + ], + "file_name": "00b91f1b-5db7-47d3-94f6-d463886edf66.mirnaseq.isoforms.quantification.txt", + "submitter_id": "e4bc3169-af1d-472b-b4f4-a888e0519448", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9974946487950315, + "total_reads": 8720933, + "access": "controlled", + "file_name": "57a667f4-a897-4aa5-9e41-ec94cd78416c_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.00657056, + "proportion_reads_duplicated": 0, + "submitter_id": "43c1bb28-9d07-4c2b-a54d-7ec8748792e3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 86051883, + "created_datetime": "2021-06-16T12:08:15.118280-05:00", + "average_base_quality": 34, + "md5sum": "26458e279d23a606aff4d4373ea6653f", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "d43a8100-26b6-4205-8412-d7a835041f77", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "00b91f1b-5db7-47d3-94f6-d463886edf66_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b9a3cd71-fa79-4a38-a74f-2ee54a43539e", + "created_datetime": "2021-06-16T12:26:48.591273-05:00" + }, + "platform": "Illumina", + "file_size": 517402, + "md5sum": "d274c7e2df2e5c904e5af24ff494c308", + "file_id": "5dcf75eb-2368-44de-92f0-a5c1747e5d15", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "a03d1103-b809-42c4-ad5c-5aff58_D7", + "entity_type": "aliquot", + "case_id": "f169018a-e95d-4f32-a807-da64ea3b83e2", + "entity_id": "366d73bf-fa90-44e2-a3ae-fccfe413562c" + } + ], + "file_name": "cd8a050b-559e-4682-a691-ceb04adb62e6.mirnaseq.isoforms.quantification.txt", + "submitter_id": "51a5040d-5967-4ed9-abd3-8c7fb6cc5db5", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9947577556127197, + "total_reads": 8535657, + "access": "controlled", + "file_name": "366d73bf-fa90-44e2-a3ae-fccfe413562c_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.01126143, + "proportion_reads_duplicated": 0, + "submitter_id": "5492c088-d9fe-47df-bb24-d67277e77596", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 87077375, + "created_datetime": "2021-06-16T12:09:31.731303-05:00", + "average_base_quality": 34, + "md5sum": "f6d57300efa94ec874592651140044f2", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "026e6592-22c8-4a0c-b03c-007228ce8da7", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "cd8a050b-559e-4682-a691-ceb04adb62e6_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "44d33c75-9daa-4522-96cf-55e6399dc3b3", + "created_datetime": "2021-06-16T12:29:58.377418-05:00" + }, + "platform": "Illumina", + "file_size": 468170, + "md5sum": "31d811dd68f9f0445af6caf4c0227b44", + "file_id": "59765801-6ceb-4646-a139-17ebf2c60ec3", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "a03d1103-b809-42c4-ad5c-5aff58_D7", + "entity_type": "aliquot", + "case_id": "f169018a-e95d-4f32-a807-da64ea3b83e2", + "entity_id": "366d73bf-fa90-44e2-a3ae-fccfe413562c" + } + ], + "file_name": "cd8a050b-559e-4682-a691-ceb04adb62e6.mirnaseq.mirnas.quantification.txt", + "submitter_id": "c2b89120-875b-4992-858c-34ec1652a592", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9947577556127197, + "total_reads": 8535657, + "access": "controlled", + "file_name": "366d73bf-fa90-44e2-a3ae-fccfe413562c_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.01126143, + "proportion_reads_duplicated": 0, + "submitter_id": "5492c088-d9fe-47df-bb24-d67277e77596", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 87077375, + "created_datetime": "2021-06-16T12:09:31.731303-05:00", + "average_base_quality": 34, + "md5sum": "f6d57300efa94ec874592651140044f2", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "026e6592-22c8-4a0c-b03c-007228ce8da7", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "cd8a050b-559e-4682-a691-ceb04adb62e6_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "44d33c75-9daa-4522-96cf-55e6399dc3b3", + "created_datetime": "2021-06-16T12:29:58.377418-05:00" + }, + "platform": "Illumina", + "file_size": 50503, + "md5sum": "db611bfb3daa1e3e8f79f48ec9e73821", + "file_id": "dcb7c72d-4101-47a2-a5b1-adcf9861b386", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "e67153d3-61af-49d6-9402-599b39_D7", + "entity_type": "aliquot", + "case_id": "fc1c474a-93d1-4faf-9180-cb4136043ef9", + "entity_id": "52b1158a-0e4f-4e90-b217-2393ec1e23bd" + } + ], + "file_name": "c5b40d79-4bd0-47f1-b91e-269ef363f39a.mirnaseq.isoforms.quantification.txt", + "submitter_id": "396ef27a-54d7-450f-aea9-44606b85670c", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.99841272299407, + "total_reads": 7684229, + "access": "controlled", + "file_name": "52b1158a-0e4f-4e90-b217-2393ec1e23bd_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005428153, + "proportion_reads_duplicated": 0, + "submitter_id": "e4ea33d8-fb7b-4086-b86a-8f33343a4200", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 78320361, + "created_datetime": "2021-06-16T12:14:13.532880-05:00", + "average_base_quality": 34, + "md5sum": "3c2da5083a01eb2bf533654a2362a122", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "afdd5c3d-9dd5-4c15-843f-ed0ab44d0154", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "c5b40d79-4bd0-47f1-b91e-269ef363f39a_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "83ad79cd-ae4d-43c8-8efd-5983ce082944", + "created_datetime": "2021-06-16T12:32:07.464096-05:00" + }, + "platform": "Illumina", + "file_size": 511653, + "md5sum": "9a0a1cc55595b23e5a4bed54af25ef0b", + "file_id": "60134ccf-151e-4b02-a575-36be0a83cad9", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "74a45e5a-a35a-4c60-a4b4-f3f5ea_D7", + "entity_type": "aliquot", + "case_id": "0f277939-aad8-48c8-9653-37c08ec8b021", + "entity_id": "b9e863d6-3a3c-46e3-9dec-359321fceb5c" + } + ], + "file_name": "d2d587d7-065a-4fca-a3b8-abd85d44a4a2.mirnaseq.mirnas.quantification.txt", + "submitter_id": "494abe44-b368-47b0-a041-58e62283cc8e", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9970926663898537, + "total_reads": 6264159, + "access": "controlled", + "file_name": "b9e863d6-3a3c-46e3-9dec-359321fceb5c_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.006903283, + "proportion_reads_duplicated": 0, + "submitter_id": "7027773b-fbf3-4319-b173-3ae23629e916", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 67185233, + "created_datetime": "2021-06-16T12:14:11.813957-05:00", + "average_base_quality": 34, + "md5sum": "e01e500dd49c549539e57f97fd04e663", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "1322a402-07a5-470d-9a2b-6120b41a2864", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "d2d587d7-065a-4fca-a3b8-abd85d44a4a2_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1c30e1a1-23eb-4753-80fb-e77f6b7bcb2e", + "created_datetime": "2021-06-16T12:31:43.031965-05:00" + }, + "platform": "Illumina", + "file_size": 50601, + "md5sum": "3a403e1c49a67a31fcbb8d2a8272cc23", + "file_id": "9ebf0e93-130a-4aef-a549-b4f4c1b9f399", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "7069e990-4a4e-4984-a66d-4d835a_D7", + "entity_type": "aliquot", + "case_id": "0f875052-cf76-45f2-9c76-021ee605479d", + "entity_id": "048e556a-82fc-4742-b483-c961671dbef5" + } + ], + "file_name": "28b2d19c-cbe0-4160-8bc6-95954b2aeea1.mirnaseq.isoforms.quantification.txt", + "submitter_id": "04391820-1283-45c0-8092-3fbeef81c8ac", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9984215389977414, + "total_reads": 8641962, + "access": "controlled", + "file_name": "048e556a-82fc-4742-b483-c961671dbef5_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005421087, + "proportion_reads_duplicated": 0, + "submitter_id": "1270b865-a42c-42a1-a199-9886dafee617", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 81893653, + "created_datetime": "2021-06-16T12:07:51.035205-05:00", + "average_base_quality": 34, + "md5sum": "3ec2af93bef064535ad65772e6f95465", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "1f31577e-988b-4244-9d39-9ff2444ca56f", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "28b2d19c-cbe0-4160-8bc6-95954b2aeea1_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e9a5d57b-220a-4f6d-8139-d7919e6138b8", + "created_datetime": "2021-06-16T12:32:47.452915-05:00" + }, + "platform": "Illumina", + "file_size": 551439, + "md5sum": "b2386bc3b1fc9760fc4f9a8c1d5dddeb", + "file_id": "d25bf326-867d-4a35-9c06-b9c135cdafa0", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "1a10c200-3895-4648-b951-94f99f_D7", + "entity_type": "aliquot", + "case_id": "14cca285-5fbb-45c8-bbd3-3a901154a1e3", + "entity_id": "4883f929-ba33-44a9-abe8-33e9da4027c6" + } + ], + "file_name": "46d63673-21f7-4c6e-a210-882a6f358f02.mirnaseq.isoforms.quantification.txt", + "submitter_id": "e7215088-8368-4438-90b6-a1865fa779f2", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9907886693686874, + "total_reads": 4390788, + "access": "controlled", + "file_name": "4883f929-ba33-44a9-abe8-33e9da4027c6_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.01167204, + "proportion_reads_duplicated": 0, + "submitter_id": "8ef58776-767a-4d42-adf2-7603f80da501", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 50661983, + "created_datetime": "2021-06-16T12:12:13.447679-05:00", + "average_base_quality": 35, + "md5sum": "ecd2a5ba6a4f1afe39b9dddffb3277d1", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "4892a46e-9fad-4430-87da-d8a0b281149f", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "46d63673-21f7-4c6e-a210-882a6f358f02_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5b28a3b4-4e35-4693-9ffc-085b444b362a", + "created_datetime": "2021-06-16T12:28:39.290192-05:00" + }, + "platform": "Illumina", + "file_size": 353515, + "md5sum": "7bee7cecfda523dc2990b921ff1f0504", + "file_id": "e18ee5d6-0983-4ea8-ac9d-96d535e73f59", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "6530147a-efe9-4df6-ac2f-03ece3_D7", + "entity_type": "aliquot", + "case_id": "1521ff7d-3781-439d-a4af-3acd83734b3b", + "entity_id": "59413d0c-23e8-44c3-b500-b5df24e3a454" + } + ], + "file_name": "5a76814b-59eb-4d7e-b4e1-262e17ce8efd.mirnaseq.mirnas.quantification.txt", + "submitter_id": "04a923b9-fcb3-448b-83fc-a12c1391fc4b", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9942493886283306, + "total_reads": 8311638, + "access": "controlled", + "file_name": "59413d0c-23e8-44c3-b500-b5df24e3a454_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.009971488, + "proportion_reads_duplicated": 0, + "submitter_id": "6470f6bb-2723-48a3-9c6d-ac8d9624261f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 88360003, + "created_datetime": "2021-06-16T12:09:27.062937-05:00", + "average_base_quality": 34, + "md5sum": "99ae4675d9d5aa63fca2ecc1572665b5", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "fd48cefe-3ba6-4c0d-9009-9696de1bbf27", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "5a76814b-59eb-4d7e-b4e1-262e17ce8efd_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f4f0c196-1b85-4429-9f70-df3da9229f4f", + "created_datetime": "2021-06-16T12:30:12.610052-05:00" + }, + "platform": "Illumina", + "file_size": 50527, + "md5sum": "2b7935d396802535ae3f3e038b1314f5", + "file_id": "fcbfefe6-e787-4273-87b2-cbbc9e3798f1", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "6530147a-efe9-4df6-ac2f-03ece3_D7", + "entity_type": "aliquot", + "case_id": "1521ff7d-3781-439d-a4af-3acd83734b3b", + "entity_id": "59413d0c-23e8-44c3-b500-b5df24e3a454" + } + ], + "file_name": "5a76814b-59eb-4d7e-b4e1-262e17ce8efd.mirnaseq.isoforms.quantification.txt", + "submitter_id": "a643cb52-3f9c-4499-aa7a-3303d7fa49c9", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9942493886283306, + "total_reads": 8311638, + "access": "controlled", + "file_name": "59413d0c-23e8-44c3-b500-b5df24e3a454_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.009971488, + "proportion_reads_duplicated": 0, + "submitter_id": "6470f6bb-2723-48a3-9c6d-ac8d9624261f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 88360003, + "created_datetime": "2021-06-16T12:09:27.062937-05:00", + "average_base_quality": 34, + "md5sum": "99ae4675d9d5aa63fca2ecc1572665b5", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "fd48cefe-3ba6-4c0d-9009-9696de1bbf27", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "5a76814b-59eb-4d7e-b4e1-262e17ce8efd_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f4f0c196-1b85-4429-9f70-df3da9229f4f", + "created_datetime": "2021-06-16T12:30:12.610052-05:00" + }, + "platform": "Illumina", + "file_size": 501555, + "md5sum": "5947179586ada00115f2455abe50b2c9", + "file_id": "e7c2ce3a-9389-41b5-96dd-cc1707a304b7", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "e9d416e7-f661-400a-896e-388545_D7", + "entity_type": "aliquot", + "case_id": "1c545cda-2a3a-41bd-9f99-e3712e31ecdd", + "entity_id": "99d15e2f-e01a-4aba-82ba-3b1f3b84d45d" + } + ], + "file_name": "940af80e-b338-41d9-ae7e-7a5f41bc85c3.mirnaseq.mirnas.quantification.txt", + "submitter_id": "a2eec976-257e-4d10-84ae-dd2b3950bcc2", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9969359775159133, + "total_reads": 6717640, + "access": "controlled", + "file_name": "99d15e2f-e01a-4aba-82ba-3b1f3b84d45d_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005901505, + "proportion_reads_duplicated": 0, + "submitter_id": "8a32818e-7c6c-4900-934d-b0edead9b3fa", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 72641267, + "created_datetime": "2021-06-16T12:11:31.359088-05:00", + "average_base_quality": 34, + "md5sum": "cb945a476dec5c31f1cd6b75a9f5704f", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "f8174bbe-d1d4-4962-899f-2b765236cf96", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "940af80e-b338-41d9-ae7e-7a5f41bc85c3_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "cd2b28ff-0ef9-448a-8083-87490154ea69", + "created_datetime": "2021-06-16T12:32:41.734671-05:00" + }, + "platform": "Illumina", + "file_size": 50585, + "md5sum": "59a633c0af19ecd16b7c3e10edf89ff1", + "file_id": "36ffb319-40b8-4fa6-8d0d-c6447eea62ea", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "e9d416e7-f661-400a-896e-388545_D7", + "entity_type": "aliquot", + "case_id": "1c545cda-2a3a-41bd-9f99-e3712e31ecdd", + "entity_id": "99d15e2f-e01a-4aba-82ba-3b1f3b84d45d" + } + ], + "file_name": "940af80e-b338-41d9-ae7e-7a5f41bc85c3.mirnaseq.isoforms.quantification.txt", + "submitter_id": "b8c3e0ea-32ef-4883-8bdd-c5b30b97d753", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9969359775159133, + "total_reads": 6717640, + "access": "controlled", + "file_name": "99d15e2f-e01a-4aba-82ba-3b1f3b84d45d_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005901505, + "proportion_reads_duplicated": 0, + "submitter_id": "8a32818e-7c6c-4900-934d-b0edead9b3fa", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 72641267, + "created_datetime": "2021-06-16T12:11:31.359088-05:00", + "average_base_quality": 34, + "md5sum": "cb945a476dec5c31f1cd6b75a9f5704f", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "f8174bbe-d1d4-4962-899f-2b765236cf96", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "940af80e-b338-41d9-ae7e-7a5f41bc85c3_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "cd2b28ff-0ef9-448a-8083-87490154ea69", + "created_datetime": "2021-06-16T12:32:41.734671-05:00" + }, + "platform": "Illumina", + "file_size": 493925, + "md5sum": "2451f9019db5c83a02154a58cf6f3287", + "file_id": "489aa9e9-a0b5-48dd-9e4b-480a16988ad5", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "c17b0ff9-9057-4848-a0cc-abb25f_D7", + "entity_type": "aliquot", + "case_id": "1e4cce58-5a8e-4bc7-98ac-2daad7721a6b", + "entity_id": "6bae6ad2-1fa0-4c42-aab2-3278d6402286" + } + ], + "file_name": "11f3d084-fe3c-4c70-befa-56fe5dacf1f2.mirnaseq.mirnas.quantification.txt", + "submitter_id": "c7f92858-691b-44c3-89f0-5bb4205a9611", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9964463481978936, + "total_reads": 7302066, + "access": "controlled", + "file_name": "6bae6ad2-1fa0-4c42-aab2-3278d6402286_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007536072, + "proportion_reads_duplicated": 0, + "submitter_id": "89fd123b-0ca5-42ad-8a6b-2b9de6eb3275", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 77871315, + "created_datetime": "2021-06-16T12:10:05.315290-05:00", + "average_base_quality": 34, + "md5sum": "a2d495cf86dc05b1da1acab5c36a0cb5", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "57710257-a355-4094-96b7-7749d59d46c4", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "11f3d084-fe3c-4c70-befa-56fe5dacf1f2_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "588a6882-011b-4bd2-a0fe-d44bd6a080d0", + "created_datetime": "2021-06-16T12:29:23.425804-05:00" + }, + "platform": "Illumina", + "file_size": 50600, + "md5sum": "33234d4d0753cdd37bccea5cbef0a183", + "file_id": "07b0168f-fe08-4b07-b002-e65d0f7d6455", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "c17b0ff9-9057-4848-a0cc-abb25f_D7", + "entity_type": "aliquot", + "case_id": "1e4cce58-5a8e-4bc7-98ac-2daad7721a6b", + "entity_id": "6bae6ad2-1fa0-4c42-aab2-3278d6402286" + } + ], + "file_name": "11f3d084-fe3c-4c70-befa-56fe5dacf1f2.mirnaseq.isoforms.quantification.txt", + "submitter_id": "38fb9f95-b8da-48fd-838d-3e799d5a5658", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9964463481978936, + "total_reads": 7302066, + "access": "controlled", + "file_name": "6bae6ad2-1fa0-4c42-aab2-3278d6402286_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007536072, + "proportion_reads_duplicated": 0, + "submitter_id": "89fd123b-0ca5-42ad-8a6b-2b9de6eb3275", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 77871315, + "created_datetime": "2021-06-16T12:10:05.315290-05:00", + "average_base_quality": 34, + "md5sum": "a2d495cf86dc05b1da1acab5c36a0cb5", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "57710257-a355-4094-96b7-7749d59d46c4", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "11f3d084-fe3c-4c70-befa-56fe5dacf1f2_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "588a6882-011b-4bd2-a0fe-d44bd6a080d0", + "created_datetime": "2021-06-16T12:29:23.425804-05:00" + }, + "platform": "Illumina", + "file_size": 510840, + "md5sum": "5646219b0a2cf66b9e2bde090047d7a0", + "file_id": "02c65cda-3293-4f67-967f-6ff8bab28b2c", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "6c9a5bdc-0f0e-4cc8-aec5-63091c_D7", + "entity_type": "aliquot", + "case_id": "1fe09e41-2ce0-4e8f-a05b-868afa54247d", + "entity_id": "758831bb-b626-47bb-b296-74e4711bad53" + } + ], + "file_name": "841bb971-7dc7-443e-a945-605084f844dd.mirnaseq.isoforms.quantification.txt", + "submitter_id": "d3f044f9-ced1-40b6-99a2-f7f4c1afbad8", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.995875558182669, + "total_reads": 8445264, + "access": "controlled", + "file_name": "758831bb-b626-47bb-b296-74e4711bad53_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.009221557, + "proportion_reads_duplicated": 0, + "submitter_id": "d857a0c7-8a79-41c9-a590-6016962faacb", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 83819644, + "created_datetime": "2021-06-16T12:11:42.487221-05:00", + "average_base_quality": 34, + "md5sum": "d7b2e68d0ad4f1e0cbb97d7c6fd487a2", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "03f7e98b-45a4-4717-a745-2dd660874cbb", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "841bb971-7dc7-443e-a945-605084f844dd_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c0a87e20-5d05-441b-bb18-f6db3289bf22", + "created_datetime": "2021-06-16T12:27:16.693671-05:00" + }, + "platform": "Illumina", + "file_size": 567529, + "md5sum": "df7ec65e03e65b98eb7c24cae609c28c", + "file_id": "64a0d2e7-94ee-4549-972d-ac697da4b71e", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "6c9a5bdc-0f0e-4cc8-aec5-63091c_D7", + "entity_type": "aliquot", + "case_id": "1fe09e41-2ce0-4e8f-a05b-868afa54247d", + "entity_id": "758831bb-b626-47bb-b296-74e4711bad53" + } + ], + "file_name": "841bb971-7dc7-443e-a945-605084f844dd.mirnaseq.mirnas.quantification.txt", + "submitter_id": "6867e14d-cba5-43c8-ba91-a7ea7b14b1aa", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.995875558182669, + "total_reads": 8445264, + "access": "controlled", + "file_name": "758831bb-b626-47bb-b296-74e4711bad53_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.009221557, + "proportion_reads_duplicated": 0, + "submitter_id": "d857a0c7-8a79-41c9-a590-6016962faacb", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 83819644, + "created_datetime": "2021-06-16T12:11:42.487221-05:00", + "average_base_quality": 34, + "md5sum": "d7b2e68d0ad4f1e0cbb97d7c6fd487a2", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "03f7e98b-45a4-4717-a745-2dd660874cbb", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "841bb971-7dc7-443e-a945-605084f844dd_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c0a87e20-5d05-441b-bb18-f6db3289bf22", + "created_datetime": "2021-06-16T12:27:16.693671-05:00" + }, + "platform": "Illumina", + "file_size": 50748, + "md5sum": "61f309e0a98b3f49adb6de7e457ac5d5", + "file_id": "e08d33f5-4083-450b-92de-817424deb9ce", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "7c2aeacf-a30d-4104-b60a-7545ee_D7_1", + "entity_type": "aliquot", + "case_id": "206fc122-71e4-4601-8841-ffe3843636d1", + "entity_id": "6a229fd3-76a1-4822-adea-0482eee86b24" + } + ], + "file_name": "fdf4a9f6-faf3-4ebc-9e57-8be6f9319147.mirnaseq.isoforms.quantification.txt", + "submitter_id": "ff29e5dc-658a-475c-bc50-f8965a17e6f3", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9969336048350147, + "total_reads": 6582648, + "access": "controlled", + "file_name": "6a229fd3-76a1-4822-adea-0482eee86b24_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005738607, + "proportion_reads_duplicated": 0, + "submitter_id": "6a8204b0-8fc6-43b3-9969-2153508fdb68", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 65680304, + "created_datetime": "2021-06-16T12:13:33.260341-05:00", + "average_base_quality": 34, + "md5sum": "d2537809230eb03fcee6e7af12dbae67", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "c550c024-f4eb-4974-aeaa-03b71c5e909b", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "fdf4a9f6-faf3-4ebc-9e57-8be6f9319147_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "9e0b0c07-20cf-43d5-9d73-95f12d82630b", + "created_datetime": "2021-06-16T12:32:48.878508-05:00" + }, + "platform": "Illumina", + "file_size": 416883, + "md5sum": "723c1893f916fd21540f3384669f1cde", + "file_id": "a09ab211-93e7-4932-998d-2dc8e025cbb5", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "7c2aeacf-a30d-4104-b60a-7545ee_D7_1", + "entity_type": "aliquot", + "case_id": "206fc122-71e4-4601-8841-ffe3843636d1", + "entity_id": "6a229fd3-76a1-4822-adea-0482eee86b24" + } + ], + "file_name": "fdf4a9f6-faf3-4ebc-9e57-8be6f9319147.mirnaseq.mirnas.quantification.txt", + "submitter_id": "b328f5f1-bf41-4f38-a6bd-7a8d725fbf40", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9969336048350147, + "total_reads": 6582648, + "access": "controlled", + "file_name": "6a229fd3-76a1-4822-adea-0482eee86b24_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005738607, + "proportion_reads_duplicated": 0, + "submitter_id": "6a8204b0-8fc6-43b3-9969-2153508fdb68", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 65680304, + "created_datetime": "2021-06-16T12:13:33.260341-05:00", + "average_base_quality": 34, + "md5sum": "d2537809230eb03fcee6e7af12dbae67", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "c550c024-f4eb-4974-aeaa-03b71c5e909b", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "fdf4a9f6-faf3-4ebc-9e57-8be6f9319147_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "9e0b0c07-20cf-43d5-9d73-95f12d82630b", + "created_datetime": "2021-06-16T12:32:48.878508-05:00" + }, + "platform": "Illumina", + "file_size": 50373, + "md5sum": "7b85d7653c6f3df1095666ec728340fb", + "file_id": "fa5b776b-8c7c-4284-83a2-302878387862", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "76e77c6b-c80e-4391-bdbb-e1dcea_D7", + "entity_type": "aliquot", + "case_id": "26e77e24-e20c-4b17-b038-e33663d72056", + "entity_id": "832b1551-9bff-4e39-a46c-3f54a1f1c6d5" + } + ], + "file_name": "d51798c5-c036-4294-91c6-3fbec47194fa.mirnaseq.mirnas.quantification.txt", + "submitter_id": "67f81ea4-2a8c-4f5f-86a3-5e5b93009385", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9952334914644237, + "total_reads": 7308704, + "access": "controlled", + "file_name": "832b1551-9bff-4e39-a46c-3f54a1f1c6d5_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.008225204, + "proportion_reads_duplicated": 0, + "submitter_id": "75c3f9ce-6ab0-483c-a467-5ebb4c879d7b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 75479070, + "created_datetime": "2021-06-16T12:06:40.452644-05:00", + "average_base_quality": 34, + "md5sum": "9b4f6ae500ca250cacece54185e91acb", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "4cffb6d0-a9b2-4ade-becb-d99189fa724f", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "d51798c5-c036-4294-91c6-3fbec47194fa_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a416d64f-4d19-4e4a-99c8-0f76a15b7ec9", + "created_datetime": "2021-06-16T12:31:13.359079-05:00" + }, + "platform": "Illumina", + "file_size": 50669, + "md5sum": "0d99e6975f40a89fea276e1b6e79da43", + "file_id": "fff0f5ef-1b53-4148-aef0-f2550e47923e", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "76e77c6b-c80e-4391-bdbb-e1dcea_D7", + "entity_type": "aliquot", + "case_id": "26e77e24-e20c-4b17-b038-e33663d72056", + "entity_id": "832b1551-9bff-4e39-a46c-3f54a1f1c6d5" + } + ], + "file_name": "d51798c5-c036-4294-91c6-3fbec47194fa.mirnaseq.isoforms.quantification.txt", + "submitter_id": "2ce79228-0fcf-4d3d-9ec0-dc9db71a40e6", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9952334914644237, + "total_reads": 7308704, + "access": "controlled", + "file_name": "832b1551-9bff-4e39-a46c-3f54a1f1c6d5_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.008225204, + "proportion_reads_duplicated": 0, + "submitter_id": "75c3f9ce-6ab0-483c-a467-5ebb4c879d7b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 75479070, + "created_datetime": "2021-06-16T12:06:40.452644-05:00", + "average_base_quality": 34, + "md5sum": "9b4f6ae500ca250cacece54185e91acb", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "4cffb6d0-a9b2-4ade-becb-d99189fa724f", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "d51798c5-c036-4294-91c6-3fbec47194fa_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a416d64f-4d19-4e4a-99c8-0f76a15b7ec9", + "created_datetime": "2021-06-16T12:31:13.359079-05:00" + }, + "platform": "Illumina", + "file_size": 555547, + "md5sum": "f052e5722b5ba865e45046b4b963cd10", + "file_id": "4e4f7447-6cbe-49f0-b96b-4a7d38f172ca", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "627e6e36-3dca-4ee5-9755-6f3510_D7", + "entity_type": "aliquot", + "case_id": "296336a2-8f88-4a26-8c34-7cdf22dd8f9c", + "entity_id": "4c5a6b9f-4a67-4f61-9745-091f3f43520b" + } + ], + "file_name": "ddb2c9c2-4487-467c-834a-938429aeb8f1.mirnaseq.mirnas.quantification.txt", + "submitter_id": "ec625208-60ae-4e25-b6dd-f2109e794151", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9925014615648492, + "total_reads": 6929217, + "access": "controlled", + "file_name": "4c5a6b9f-4a67-4f61-9745-091f3f43520b_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.009923868, + "proportion_reads_duplicated": 0, + "submitter_id": "af96761d-3b10-44f1-9ef8-80331f8bd05e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 63867733, + "created_datetime": "2021-06-16T12:14:03.694950-05:00", + "average_base_quality": 35, + "md5sum": "c3f28f834055178cfc6d7f768ecef29f", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "975af903-e96d-4dab-a0fb-92f249936de9", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "ddb2c9c2-4487-467c-834a-938429aeb8f1_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "393696b4-933b-4447-92c1-b604f8eb1603", + "created_datetime": "2021-06-16T12:30:34.467651-05:00" + }, + "platform": "Illumina", + "file_size": 50639, + "md5sum": "d9de25b165956376dcadd3c5c592aa8b", + "file_id": "11da7692-6b89-4ece-b0c9-d0ce49d52213", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "627e6e36-3dca-4ee5-9755-6f3510_D7", + "entity_type": "aliquot", + "case_id": "296336a2-8f88-4a26-8c34-7cdf22dd8f9c", + "entity_id": "4c5a6b9f-4a67-4f61-9745-091f3f43520b" + } + ], + "file_name": "ddb2c9c2-4487-467c-834a-938429aeb8f1.mirnaseq.isoforms.quantification.txt", + "submitter_id": "0feb493c-8842-4a8e-b36e-e39e8912e95e", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9925014615648492, + "total_reads": 6929217, + "access": "controlled", + "file_name": "4c5a6b9f-4a67-4f61-9745-091f3f43520b_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.009923868, + "proportion_reads_duplicated": 0, + "submitter_id": "af96761d-3b10-44f1-9ef8-80331f8bd05e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 63867733, + "created_datetime": "2021-06-16T12:14:03.694950-05:00", + "average_base_quality": 35, + "md5sum": "c3f28f834055178cfc6d7f768ecef29f", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "975af903-e96d-4dab-a0fb-92f249936de9", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "ddb2c9c2-4487-467c-834a-938429aeb8f1_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "393696b4-933b-4447-92c1-b604f8eb1603", + "created_datetime": "2021-06-16T12:30:34.467651-05:00" + }, + "platform": "Illumina", + "file_size": 520679, + "md5sum": "59c869f5282106ac71c20e51107f0045", + "file_id": "012a0d15-2d7d-4bab-af3f-ba3d808331c1", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "2115808b-6a0d-49bc-a8d7-b83bde_D7_1", + "entity_type": "aliquot", + "case_id": "2c8ff3ae-ef06-4e3c-b198-fb8f57ebbd61", + "entity_id": "aca4e3c3-3e0c-405d-a7f9-f6e24e672f12" + } + ], + "file_name": "0cbabe1d-cbc9-41b9-8c66-0e8d7a45fdcc.mirnaseq.mirnas.quantification.txt", + "submitter_id": "8e195c54-4e45-4f90-8151-428a3974ba19", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9971036272910135, + "total_reads": 6908296, + "access": "controlled", + "file_name": "aca4e3c3-3e0c-405d-a7f9-f6e24e672f12_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.006755985, + "proportion_reads_duplicated": 0, + "submitter_id": "5b845619-fe74-4cb7-bd85-0020a62001bf", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 72541271, + "created_datetime": "2021-06-16T12:10:43.143317-05:00", + "average_base_quality": 34, + "md5sum": "d36f906d0dcc021a0e5af88b9c48e40a", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "3707cf96-5157-457a-80b0-ff1e10228d2b", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "0cbabe1d-cbc9-41b9-8c66-0e8d7a45fdcc_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "9f8764db-d091-4809-b22f-a26d3c8b4712", + "created_datetime": "2021-06-16T12:26:03.699309-05:00" + }, + "platform": "Illumina", + "file_size": 50572, + "md5sum": "bde2e728c866af9fd140c908dcec0ea9", + "file_id": "d19bbd8a-54e1-4d3d-9b38-f2eae298cc75", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "2115808b-6a0d-49bc-a8d7-b83bde_D7_1", + "entity_type": "aliquot", + "case_id": "2c8ff3ae-ef06-4e3c-b198-fb8f57ebbd61", + "entity_id": "aca4e3c3-3e0c-405d-a7f9-f6e24e672f12" + } + ], + "file_name": "0cbabe1d-cbc9-41b9-8c66-0e8d7a45fdcc.mirnaseq.isoforms.quantification.txt", + "submitter_id": "c1d58cc8-f8d8-47a8-ac41-9616e255d884", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9971036272910135, + "total_reads": 6908296, + "access": "controlled", + "file_name": "aca4e3c3-3e0c-405d-a7f9-f6e24e672f12_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.006755985, + "proportion_reads_duplicated": 0, + "submitter_id": "5b845619-fe74-4cb7-bd85-0020a62001bf", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 72541271, + "created_datetime": "2021-06-16T12:10:43.143317-05:00", + "average_base_quality": 34, + "md5sum": "d36f906d0dcc021a0e5af88b9c48e40a", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "3707cf96-5157-457a-80b0-ff1e10228d2b", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "0cbabe1d-cbc9-41b9-8c66-0e8d7a45fdcc_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "9f8764db-d091-4809-b22f-a26d3c8b4712", + "created_datetime": "2021-06-16T12:26:03.699309-05:00" + }, + "platform": "Illumina", + "file_size": 505548, + "md5sum": "dfedabdb5edc118f324e7836e318179a", + "file_id": "ecdf9ebf-48ec-419b-9754-7e3a8c853086", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "80873a0c-1f40-4d51-bab1-3f2071_D7", + "entity_type": "aliquot", + "case_id": "36079a28-dfac-435d-a2f0-e00f653494bd", + "entity_id": "8ce8a9fd-6c9d-4eba-9d14-fac9ba4d6b7b" + } + ], + "file_name": "32540332-2dee-419f-83ba-7b570a563e38.mirnaseq.mirnas.quantification.txt", + "submitter_id": "500a702f-5d70-4d63-9292-dd28b68c0109", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9932379523042146, + "total_reads": 5818208, + "access": "controlled", + "file_name": "8ce8a9fd-6c9d-4eba-9d14-fac9ba4d6b7b_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.01115652, + "proportion_reads_duplicated": 0, + "submitter_id": "e1c65628-8b53-4379-9f88-9717c69bba6a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 66935541, + "created_datetime": "2021-06-16T12:12:19.827490-05:00", + "average_base_quality": 34, + "md5sum": "62a25e786386e0f10145455f0216b770", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "39923016-2ccb-4569-8caa-ab048f1103ef", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "32540332-2dee-419f-83ba-7b570a563e38_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d7beb084-515a-4e84-8f1e-afecf643d32c", + "created_datetime": "2021-06-16T12:29:55.276086-05:00" + }, + "platform": "Illumina", + "file_size": 50524, + "md5sum": "acdae9450b2751de5146ae6fd5660896", + "file_id": "3ecd56f4-803b-4835-a624-9006a10919a8", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "80873a0c-1f40-4d51-bab1-3f2071_D7", + "entity_type": "aliquot", + "case_id": "36079a28-dfac-435d-a2f0-e00f653494bd", + "entity_id": "8ce8a9fd-6c9d-4eba-9d14-fac9ba4d6b7b" + } + ], + "file_name": "32540332-2dee-419f-83ba-7b570a563e38.mirnaseq.isoforms.quantification.txt", + "submitter_id": "a36eab15-4aae-40b2-a5e4-c7d5b009dcc0", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9932379523042146, + "total_reads": 5818208, + "access": "controlled", + "file_name": "8ce8a9fd-6c9d-4eba-9d14-fac9ba4d6b7b_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.01115652, + "proportion_reads_duplicated": 0, + "submitter_id": "e1c65628-8b53-4379-9f88-9717c69bba6a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 66935541, + "created_datetime": "2021-06-16T12:12:19.827490-05:00", + "average_base_quality": 34, + "md5sum": "62a25e786386e0f10145455f0216b770", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "39923016-2ccb-4569-8caa-ab048f1103ef", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "32540332-2dee-419f-83ba-7b570a563e38_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d7beb084-515a-4e84-8f1e-afecf643d32c", + "created_datetime": "2021-06-16T12:29:55.276086-05:00" + }, + "platform": "Illumina", + "file_size": 461977, + "md5sum": "008f6834cba4e39c88956a50141316f6", + "file_id": "f9202cc5-3d87-44d7-9392-98cd45f1d2d1", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "285fed94-1495-448e-879b-b55de9_D7", + "entity_type": "aliquot", + "case_id": "38bb0083-a307-4cc7-b15b-581f6c678482", + "entity_id": "d4d19856-7a37-49ce-b4b2-9a445568b566" + } + ], + "file_name": "47c7dfa6-eed8-428d-9f77-5e3bb2562de3.mirnaseq.isoforms.quantification.txt", + "submitter_id": "3909ded0-0e0e-4a68-8188-b3513cfc84cc", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9964571447958606, + "total_reads": 6602302, + "access": "controlled", + "file_name": "d4d19856-7a37-49ce-b4b2-9a445568b566_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007557988, + "proportion_reads_duplicated": 0, + "submitter_id": "050693ca-eef1-4a98-be74-c118287e7318", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 66625117, + "created_datetime": "2021-06-16T12:07:05.606517-05:00", + "average_base_quality": 34, + "md5sum": "22fd1ca8f4c4e451ca7f483a2f036bda", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "5cea6a8d-780b-42cd-939a-22042c4a52bc", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "47c7dfa6-eed8-428d-9f77-5e3bb2562de3_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b3994864-17c0-4a64-abe7-73f6b782c5ed", + "created_datetime": "2021-06-16T12:26:02.325083-05:00" + }, + "platform": "Illumina", + "file_size": 463768, + "md5sum": "711c7255c36156995626ccfd1f859f0e", + "file_id": "bbcf182e-b06e-48ea-9aa4-931ea78d0443", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "2433b136-fc7b-4cea-b958-bc6efb_D7", + "entity_type": "aliquot", + "case_id": "420d40ba-e71a-495f-a5fa-7bd1b9a7dcc7", + "entity_id": "d7cb9e1a-902a-4936-84d9-00faaf11e193" + } + ], + "file_name": "ced2ac6a-8b9f-4f2f-a73a-ac3be4d8926c.mirnaseq.mirnas.quantification.txt", + "submitter_id": "7d5f6ed4-2daf-452f-be2e-906dc6e84147", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9958071296635655, + "total_reads": 8239940, + "access": "controlled", + "file_name": "d7cb9e1a-902a-4936-84d9-00faaf11e193_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.008179294, + "proportion_reads_duplicated": 0, + "submitter_id": "2abb1bce-04c9-4f8d-b88c-987172ded9d6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 84886909, + "created_datetime": "2021-06-16T12:08:29.423293-05:00", + "average_base_quality": 34, + "md5sum": "c5d944757b0aba1c262368a3d3e2c849", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "20903343-e57d-4dad-98e2-00457bfdf290", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "ced2ac6a-8b9f-4f2f-a73a-ac3be4d8926c_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "4f396d16-6570-4418-a314-f1a97b7d6856", + "created_datetime": "2021-06-16T12:31:03.449256-05:00" + }, + "platform": "Illumina", + "file_size": 50705, + "md5sum": "3a0958c69b6a1388fe32b769636d1cdc", + "file_id": "8221a870-bf71-4083-955a-85af6053a0b0", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "2433b136-fc7b-4cea-b958-bc6efb_D7", + "entity_type": "aliquot", + "case_id": "420d40ba-e71a-495f-a5fa-7bd1b9a7dcc7", + "entity_id": "d7cb9e1a-902a-4936-84d9-00faaf11e193" + } + ], + "file_name": "ced2ac6a-8b9f-4f2f-a73a-ac3be4d8926c.mirnaseq.isoforms.quantification.txt", + "submitter_id": "d35f1675-b191-45cc-b6d7-f5025c559927", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9958071296635655, + "total_reads": 8239940, + "access": "controlled", + "file_name": "d7cb9e1a-902a-4936-84d9-00faaf11e193_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.008179294, + "proportion_reads_duplicated": 0, + "submitter_id": "2abb1bce-04c9-4f8d-b88c-987172ded9d6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 84886909, + "created_datetime": "2021-06-16T12:08:29.423293-05:00", + "average_base_quality": 34, + "md5sum": "c5d944757b0aba1c262368a3d3e2c849", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "20903343-e57d-4dad-98e2-00457bfdf290", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "ced2ac6a-8b9f-4f2f-a73a-ac3be4d8926c_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "4f396d16-6570-4418-a314-f1a97b7d6856", + "created_datetime": "2021-06-16T12:31:03.449256-05:00" + }, + "platform": "Illumina", + "file_size": 554756, + "md5sum": "c504b8b474e5e882b72768a4cab8ea73", + "file_id": "7fe32694-3058-497c-9313-0fdd7f9fb2e1", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "2ed8beb2-bc63-4bad-b5fe-1916a0_D7", + "entity_type": "aliquot", + "case_id": "426aede7-3fc5-4cf8-9d24-735da96402e9", + "entity_id": "2fb0684c-bb0e-4c64-8ca3-a17f815516db" + } + ], + "file_name": "d34172a0-c0b0-46d1-a1f3-a0c7be9f07ae.mirnaseq.isoforms.quantification.txt", + "submitter_id": "bd760e21-f715-4508-be87-7db5420b7d47", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9961031723459371, + "total_reads": 5203720, + "access": "controlled", + "file_name": "2fb0684c-bb0e-4c64-8ca3-a17f815516db_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007031164, + "proportion_reads_duplicated": 0, + "submitter_id": "4c869dd0-9b88-4238-9ac2-9182ae9245b5", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 51743986, + "created_datetime": "2021-06-16T12:12:24.983697-05:00", + "average_base_quality": 34, + "md5sum": "16f8d1d478978663c57ecc739f5d5a59", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "8b74d778-d776-48da-9b4d-90a0b2c11cba", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "d34172a0-c0b0-46d1-a1f3-a0c7be9f07ae_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a4448624-5e61-46a7-beb2-2f6669a1fed2", + "created_datetime": "2021-06-16T12:31:53.265190-05:00" + }, + "platform": "Illumina", + "file_size": 489876, + "md5sum": "ad77b6b10eb7c38e53df4113eadcbc99", + "file_id": "7b7b6ca8-aedb-4ac9-8d47-999bf1aaf907", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "44a9e976-f859-4a0d-9f4f-70b95b_D7", + "entity_type": "aliquot", + "case_id": "68f99d2b-5a98-4cd8-8192-5f36fab4221b", + "entity_id": "53215eb6-e13c-45e5-9c73-7d1226b10840" + } + ], + "file_name": "bd7326d0-a521-4491-b804-9981392588b1.mirnaseq.isoforms.quantification.txt", + "submitter_id": "b3dfef94-f143-469f-b6b6-1a4be0a36359", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9970518005365553, + "total_reads": 5044774, + "access": "controlled", + "file_name": "53215eb6-e13c-45e5-9c73-7d1226b10840_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.008161015, + "proportion_reads_duplicated": 0, + "submitter_id": "66e15321-01de-4a40-a65c-7a32e5b8aa25", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 55793428, + "created_datetime": "2021-06-16T12:08:02.226571-05:00", + "average_base_quality": 34, + "md5sum": "a590b0429fe109d261f4f6bd6b79b0cd", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "903578a9-c386-42c9-b047-91c8354c2bae", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "bd7326d0-a521-4491-b804-9981392588b1_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "80ca2571-c5bd-4733-9c9a-035c8cafb78c", + "created_datetime": "2021-06-16T12:30:02.732986-05:00" + }, + "platform": "Illumina", + "file_size": 457711, + "md5sum": "73a1ea097847d15dc1d2a992d6868d92", + "file_id": "bdff0893-f501-4f15-a92d-bd36784d590f", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "44a9e976-f859-4a0d-9f4f-70b95b_D7", + "entity_type": "aliquot", + "case_id": "68f99d2b-5a98-4cd8-8192-5f36fab4221b", + "entity_id": "53215eb6-e13c-45e5-9c73-7d1226b10840" + } + ], + "file_name": "bd7326d0-a521-4491-b804-9981392588b1.mirnaseq.mirnas.quantification.txt", + "submitter_id": "f2b88a93-0547-4bcb-b101-244a70d7e445", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9970518005365553, + "total_reads": 5044774, + "access": "controlled", + "file_name": "53215eb6-e13c-45e5-9c73-7d1226b10840_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.008161015, + "proportion_reads_duplicated": 0, + "submitter_id": "66e15321-01de-4a40-a65c-7a32e5b8aa25", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 55793428, + "created_datetime": "2021-06-16T12:08:02.226571-05:00", + "average_base_quality": 34, + "md5sum": "a590b0429fe109d261f4f6bd6b79b0cd", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "903578a9-c386-42c9-b047-91c8354c2bae", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "bd7326d0-a521-4491-b804-9981392588b1_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "80ca2571-c5bd-4733-9c9a-035c8cafb78c", + "created_datetime": "2021-06-16T12:30:02.732986-05:00" + }, + "platform": "Illumina", + "file_size": 50483, + "md5sum": "66bd91b5a6c854ef79f01d52f5ed994b", + "file_id": "4dd6d604-0a6d-4a88-b6f7-511c6a23492c", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "9c8e78bf-b03e-4ba0-9909-5ff070_D7", + "entity_type": "aliquot", + "case_id": "6b343732-324e-49a8-bdcb-71c5e4bc6936", + "entity_id": "6848dcbd-484e-4c4a-b8c1-158ec254849f" + } + ], + "file_name": "716a3d4f-ef5a-4d6a-bf51-57053a7aeee3.mirnaseq.isoforms.quantification.txt", + "submitter_id": "f83d92fe-2756-43d4-9853-dbfbe6427e77", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.996729467111059, + "total_reads": 5944597, + "access": "controlled", + "file_name": "6848dcbd-484e-4c4a-b8c1-158ec254849f_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.00554547, + "proportion_reads_duplicated": 0, + "submitter_id": "812da012-c7bd-489c-a740-cb24e464d24f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 71595038, + "created_datetime": "2021-06-16T12:07:41.681830-05:00", + "average_base_quality": 34, + "md5sum": "f4c6e1ab8be214161c61b0e77f8b7a59", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "b0b7d8da-32e4-4f6a-a107-42d5fd24987b", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "716a3d4f-ef5a-4d6a-bf51-57053a7aeee3_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b966a089-7efe-469a-ab14-cf8793e90a86", + "created_datetime": "2021-06-16T12:25:51.191750-05:00" + }, + "platform": "Illumina", + "file_size": 521152, + "md5sum": "abd42a6e5ad32189708fd2b6f47b83fe", + "file_id": "26ef55fa-3db4-4d14-814d-217d06a481ab", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "ad5c848c-ae26-42c8-874e-387a09_D7", + "entity_type": "aliquot", + "case_id": "718dff52-0d0b-48d6-89c1-cf594a6ab883", + "entity_id": "9fc24703-4a64-45a4-8ddd-b52125bf6fb0" + } + ], + "file_name": "36ac35ec-65b4-4268-8935-65bb19c34362.mirnaseq.mirnas.quantification.txt", + "submitter_id": "33da459b-f227-49dd-b84e-95fd1ed94170", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9945296541550321, + "total_reads": 8335122, + "access": "controlled", + "file_name": "9fc24703-4a64-45a4-8ddd-b52125bf6fb0_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007059629, + "proportion_reads_duplicated": 0, + "submitter_id": "a6c2e1ba-971d-4208-a910-7a1190cd5cb5", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 85354290, + "created_datetime": "2021-06-16T12:06:59.435027-05:00", + "average_base_quality": 34, + "md5sum": "0b245b4822b2fa5abe3dc87ccc479c38", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "6cfe8c6d-2bc7-4531-8de2-950b94e4a878", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "36ac35ec-65b4-4268-8935-65bb19c34362_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "fb01bbb6-0515-4351-a91c-e2b503649b4c", + "created_datetime": "2021-06-16T12:32:20.214391-05:00" + }, + "platform": "Illumina", + "file_size": 50697, + "md5sum": "551df1de8e85395531c03c4dcc71f79c", + "file_id": "01cae191-097d-4df3-b599-f3709c4a95f1", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "ad5c848c-ae26-42c8-874e-387a09_D7", + "entity_type": "aliquot", + "case_id": "718dff52-0d0b-48d6-89c1-cf594a6ab883", + "entity_id": "9fc24703-4a64-45a4-8ddd-b52125bf6fb0" + } + ], + "file_name": "36ac35ec-65b4-4268-8935-65bb19c34362.mirnaseq.isoforms.quantification.txt", + "submitter_id": "09cd334e-fe2c-411c-9254-9a4970fe9728", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9945296541550321, + "total_reads": 8335122, + "access": "controlled", + "file_name": "9fc24703-4a64-45a4-8ddd-b52125bf6fb0_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007059629, + "proportion_reads_duplicated": 0, + "submitter_id": "a6c2e1ba-971d-4208-a910-7a1190cd5cb5", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 85354290, + "created_datetime": "2021-06-16T12:06:59.435027-05:00", + "average_base_quality": 34, + "md5sum": "0b245b4822b2fa5abe3dc87ccc479c38", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "6cfe8c6d-2bc7-4531-8de2-950b94e4a878", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "36ac35ec-65b4-4268-8935-65bb19c34362_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "fb01bbb6-0515-4351-a91c-e2b503649b4c", + "created_datetime": "2021-06-16T12:32:20.214391-05:00" + }, + "platform": "Illumina", + "file_size": 553161, + "md5sum": "41ab104112dde68307a17391b59582f3", + "file_id": "af195268-2dad-468a-b797-ead78e887565", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "42d860a3-8a0c-4c44-a09a-9ad8cf_D7", + "entity_type": "aliquot", + "case_id": "7cee15a6-0f80-42c8-9120-322226def3fc", + "entity_id": "955aecf4-e951-4862-bd8d-c59e9aeef807" + } + ], + "file_name": "753acd34-713c-40d6-b37c-c6b58a42d4b8.mirnaseq.mirnas.quantification.txt", + "submitter_id": "d76bf14a-e267-458c-956a-3ae59d8af21a", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.991622031986647, + "total_reads": 4363946, + "access": "controlled", + "file_name": "955aecf4-e951-4862-bd8d-c59e9aeef807_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.01013821, + "proportion_reads_duplicated": 0, + "submitter_id": "810fe14b-f38b-4b2b-b55a-9ee62bc03fee", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 49503903, + "created_datetime": "2021-06-16T12:09:51.120687-05:00", + "average_base_quality": 35, + "md5sum": "9eeed2836b24a8f48f75898cb8a1732e", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "dab0f1ed-c289-4479-b93c-3d0eb7f8da1c", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "753acd34-713c-40d6-b37c-c6b58a42d4b8_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "cc99a82c-0f72-4fe7-9d7e-0af39f12544b", + "created_datetime": "2021-06-16T12:26:20.779983-05:00" + }, + "platform": "Illumina", + "file_size": 50438, + "md5sum": "aadce849f1ceddf32d0db05b1be73964", + "file_id": "e2adb855-815b-47ca-a213-3023a888b02a", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "42d860a3-8a0c-4c44-a09a-9ad8cf_D7", + "entity_type": "aliquot", + "case_id": "7cee15a6-0f80-42c8-9120-322226def3fc", + "entity_id": "955aecf4-e951-4862-bd8d-c59e9aeef807" + } + ], + "file_name": "753acd34-713c-40d6-b37c-c6b58a42d4b8.mirnaseq.isoforms.quantification.txt", + "submitter_id": "fdb8fc8d-ab86-45c3-92f7-79483108528b", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.991622031986647, + "total_reads": 4363946, + "access": "controlled", + "file_name": "955aecf4-e951-4862-bd8d-c59e9aeef807_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.01013821, + "proportion_reads_duplicated": 0, + "submitter_id": "810fe14b-f38b-4b2b-b55a-9ee62bc03fee", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 49503903, + "created_datetime": "2021-06-16T12:09:51.120687-05:00", + "average_base_quality": 35, + "md5sum": "9eeed2836b24a8f48f75898cb8a1732e", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "dab0f1ed-c289-4479-b93c-3d0eb7f8da1c", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "753acd34-713c-40d6-b37c-c6b58a42d4b8_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "cc99a82c-0f72-4fe7-9d7e-0af39f12544b", + "created_datetime": "2021-06-16T12:26:20.779983-05:00" + }, + "platform": "Illumina", + "file_size": 390671, + "md5sum": "e8e8a64fec5772586e8586d2e938a7af", + "file_id": "524a9956-46ce-4d6e-93b1-52f7d2cb7d2b", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "49bd51fe-48a1-4828-b66e-b30c38_D7", + "entity_type": "aliquot", + "case_id": "742033a6-ba74-4871-9046-14972d6676e4", + "entity_id": "5dcea5ec-b940-4fdc-aa3f-932f2bcd2f65" + } + ], + "file_name": "c06d76b3-3158-430f-8e4e-59b9ce686909.mirnaseq.mirnas.quantification.txt", + "submitter_id": "019e6df3-caf2-4363-bcd0-8c99973c6ac0", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9846345414106057, + "total_reads": 4447508, + "access": "controlled", + "file_name": "5dcea5ec-b940-4fdc-aa3f-932f2bcd2f65_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.01452738, + "proportion_reads_duplicated": 0, + "submitter_id": "2384a021-5b9c-431b-8d55-68239074f4ae", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 53569085, + "created_datetime": "2021-06-16T12:08:48.854346-05:00", + "average_base_quality": 34, + "md5sum": "1cbb42e6a0e533815c2305bccd554444", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "10cc2654-c7bc-4e08-bfed-2a272a628712", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "c06d76b3-3158-430f-8e4e-59b9ce686909_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "86659098-a9ff-4676-bc9c-7699e7673ad9", + "created_datetime": "2021-06-16T12:25:43.244570-05:00" + }, + "platform": "Illumina", + "file_size": 50512, + "md5sum": "7a53dc54789b5cdad569e4f406df487f", + "file_id": "dfebb692-7e21-4aa8-95ef-f7bc24fdcc9a", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "ce1e5dfc-2ef1-4633-af93-5ea4d9_D7", + "entity_type": "aliquot", + "case_id": "848d4e80-9658-4f99-bcdb-e3f7275bb72d", + "entity_id": "14244068-73ab-48eb-881e-f4c26fd65dac" + } + ], + "file_name": "7e50f090-1bc6-4123-9c5e-c08eb5497634.mirnaseq.isoforms.quantification.txt", + "submitter_id": "d72409b9-871a-4ada-a986-db997bb6126a", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.996854211291491, + "total_reads": 7172764, + "access": "controlled", + "file_name": "14244068-73ab-48eb-881e-f4c26fd65dac_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007299195, + "proportion_reads_duplicated": 0, + "submitter_id": "b11dd6d1-701b-4e7f-a605-535092d3c247", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 77193569, + "created_datetime": "2021-06-16T12:07:04.002218-05:00", + "average_base_quality": 34, + "md5sum": "650a95bb806d9bb8b7d544cbdfbb88b3", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "4491ab4e-4b0e-4bb7-911b-dd38ab23a982", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "7e50f090-1bc6-4123-9c5e-c08eb5497634_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "cb252aee-086c-4e1e-8400-a035c97a61fe", + "created_datetime": "2021-06-16T12:27:28.858478-05:00" + }, + "platform": "Illumina", + "file_size": 511907, + "md5sum": "1c83f37f382f11814c9cbc1842eddf9a", + "file_id": "783f3377-21c3-42d7-b88c-47b5468cebc9", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "4bc2d3ea-1611-4fc3-85ee-5b06c4_D7", + "entity_type": "aliquot", + "case_id": "8a44e623-e199-445f-96de-0e7a5c336a1b", + "entity_id": "a6834e2d-954a-4218-b2d7-faa75222f8a5" + } + ], + "file_name": "28c78a90-1f33-44b0-b7b0-99afed2cb895.mirnaseq.mirnas.quantification.txt", + "submitter_id": "38fe48a2-d624-42c7-9639-03098e264025", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9958654516165826, + "total_reads": 6259934, + "access": "controlled", + "file_name": "a6834e2d-954a-4218-b2d7-faa75222f8a5_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007453417, + "proportion_reads_duplicated": 0, + "submitter_id": "7ef53241-6a7d-4a89-9313-cfaaf97ec4c9", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 73290253, + "created_datetime": "2021-06-16T12:14:25.228564-05:00", + "average_base_quality": 34, + "md5sum": "986841aa0ff931f8b8997f0a37abac74", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "80cbacd5-ece6-4e51-9455-fbc9aa8684f1", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "28c78a90-1f33-44b0-b7b0-99afed2cb895_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "6b43586f-f985-4811-aeb4-770c9082b189", + "created_datetime": "2021-06-16T12:33:00.002973-05:00" + }, + "platform": "Illumina", + "file_size": 50469, + "md5sum": "45c10807dfd2ed81b20758869df96bc7", + "file_id": "692cbb6a-2b1d-4568-bebb-1312ac948a16", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "eb3f3494-7057-4afe-b212-e6e9a3_D7_1", + "entity_type": "aliquot", + "case_id": "9c6f433a-ca9e-4590-8a7b-6ddb69cc1398", + "entity_id": "bb577fcd-9387-45cc-b8a9-b644acd79128" + } + ], + "file_name": "4d62ceb5-2038-438c-8ff3-1463f4b4475a.mirnaseq.isoforms.quantification.txt", + "submitter_id": "e9b640c9-1e2f-4a3a-abe6-49e1b278fd9c", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9908389751363121, + "total_reads": 5198545, + "access": "controlled", + "file_name": "bb577fcd-9387-45cc-b8a9-b644acd79128_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.01271383, + "proportion_reads_duplicated": 0, + "submitter_id": "5225ae54-48ae-4c0c-87df-e150b1aacc6a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 52408454, + "created_datetime": "2021-06-16T12:10:08.586740-05:00", + "average_base_quality": 34, + "md5sum": "37f91883d22f574369a4f950541003a7", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "cd30ea37-a5ee-4006-86c3-7f18c1475ab7", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "4d62ceb5-2038-438c-8ff3-1463f4b4475a_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "73a59e16-f156-4549-be4c-0f62bf525d7d", + "created_datetime": "2021-06-16T12:25:29.031627-05:00" + }, + "platform": "Illumina", + "file_size": 358368, + "md5sum": "6b8f8ac5e7d884275d5cb96e4e426682", + "file_id": "a51e5008-ba14-4816-b47d-028ce66ff179", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "dd3a1c3b-6b49-4ec8-b6df-cdf22e_D7", + "entity_type": "aliquot", + "case_id": "b127b826-fab9-4551-9300-efb5542621d3", + "entity_id": "c5c91e46-e54d-4471-ac68-c1df371488e6" + } + ], + "file_name": "845fce1e-5381-4067-b1b2-18917a4d7e8b.mirnaseq.isoforms.quantification.txt", + "submitter_id": "37650819-9d57-4163-8323-a103405b7eea", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9958529360268237, + "total_reads": 8447181, + "access": "controlled", + "file_name": "c5c91e46-e54d-4471-ac68-c1df371488e6_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007937673, + "proportion_reads_duplicated": 0, + "submitter_id": "0b88e9cb-36cc-4bcd-94be-22d7f9ba3d77", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 79643961, + "created_datetime": "2021-06-16T12:09:33.327089-05:00", + "average_base_quality": 34, + "md5sum": "f8c770ffaa6f794df57a6f386b1fc96b", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "f07c5073-c91d-44bf-9381-f9041b92f3ce", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "845fce1e-5381-4067-b1b2-18917a4d7e8b_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "443933ec-2e94-4a3c-b7fc-135ecdef6180", + "created_datetime": "2021-06-16T12:30:37.310961-05:00" + }, + "platform": "Illumina", + "file_size": 604358, + "md5sum": "041100e0b71a58560e5756b0fc75f4da", + "file_id": "fb4b29a1-f456-4652-91d7-8db7dd1ae4cc", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "97cab1b7-a9ba-4c11-9f39-c8c54d_D7", + "entity_type": "aliquot", + "case_id": "aa6ca4cf-aad7-48d5-855b-3aff763ff527", + "entity_id": "4dca8fb1-c0bb-4884-8099-6e64ba48b2a4" + } + ], + "file_name": "5e6966c3-8159-4b05-b9ba-20ec6b83a233.mirnaseq.mirnas.quantification.txt", + "submitter_id": "469781d3-2a69-44a8-821f-9ccf75c081fa", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9934355309230812, + "total_reads": 7865678, + "access": "controlled", + "file_name": "4dca8fb1-c0bb-4884-8099-6e64ba48b2a4_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.0100064, + "proportion_reads_duplicated": 0, + "submitter_id": "5a975ce9-f908-4db7-aaca-d02e374cf4ac", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 82087181, + "created_datetime": "2021-06-16T12:12:45.276159-05:00", + "average_base_quality": 34, + "md5sum": "9d078492015ced52d0c3b1c61f3c788b", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "97a42e8e-3b5b-485e-833a-97f093a8c481", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "5e6966c3-8159-4b05-b9ba-20ec6b83a233_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8350d253-4e87-43c7-9a7e-e93ea19f814f", + "created_datetime": "2021-06-16T12:25:48.147083-05:00" + }, + "platform": "Illumina", + "file_size": 50498, + "md5sum": "eb394c4179623e88e567364d4a85c3c2", + "file_id": "44e7fe01-459e-4b71-9fd6-07647aa4929a", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "dd3a1c3b-6b49-4ec8-b6df-cdf22e_D7", + "entity_type": "aliquot", + "case_id": "b127b826-fab9-4551-9300-efb5542621d3", + "entity_id": "c5c91e46-e54d-4471-ac68-c1df371488e6" + } + ], + "file_name": "845fce1e-5381-4067-b1b2-18917a4d7e8b.mirnaseq.mirnas.quantification.txt", + "submitter_id": "244e53c5-8caa-4269-b0ad-3dafaf1f8a4e", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9958529360268237, + "total_reads": 8447181, + "access": "controlled", + "file_name": "c5c91e46-e54d-4471-ac68-c1df371488e6_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007937673, + "proportion_reads_duplicated": 0, + "submitter_id": "0b88e9cb-36cc-4bcd-94be-22d7f9ba3d77", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 79643961, + "created_datetime": "2021-06-16T12:09:33.327089-05:00", + "average_base_quality": 34, + "md5sum": "f8c770ffaa6f794df57a6f386b1fc96b", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "f07c5073-c91d-44bf-9381-f9041b92f3ce", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "845fce1e-5381-4067-b1b2-18917a4d7e8b_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "443933ec-2e94-4a3c-b7fc-135ecdef6180", + "created_datetime": "2021-06-16T12:30:37.310961-05:00" + }, + "platform": "Illumina", + "file_size": 50772, + "md5sum": "86989081bb2aa84f545feae91f4c4381", + "file_id": "28076d4b-141a-45a6-8633-2c3afcb648f7", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "467256db-a312-4346-9ac0-e49e44_D7", + "entity_type": "aliquot", + "case_id": "b295d458-952a-42af-9f7f-2c07e895990c", + "entity_id": "2ea699d3-67b2-455b-842c-e63a80c7717f" + } + ], + "file_name": "f333f4c2-c44d-4437-92f8-c092d125e018.mirnaseq.isoforms.quantification.txt", + "submitter_id": "9cdff0ea-38d6-4ed6-818f-570cc0e4f255", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9937149558170867, + "total_reads": 3230208, + "access": "controlled", + "file_name": "2ea699d3-67b2-455b-842c-e63a80c7717f_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.008112594, + "proportion_reads_duplicated": 0, + "submitter_id": "1e85a9bc-5207-4e89-8360-b46821d4dfb1", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 43487856, + "created_datetime": "2021-06-16T12:10:03.718033-05:00", + "average_base_quality": 35, + "md5sum": "54596270bff036f83fb9de3c94864faf", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "245479e3-5288-43fc-90b2-770ec3d4966c", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "f333f4c2-c44d-4437-92f8-c092d125e018_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0c2213c1-3dd6-412e-9e36-4561fe85fe76", + "created_datetime": "2021-06-16T12:27:42.890198-05:00" + }, + "platform": "Illumina", + "file_size": 358022, + "md5sum": "d4008190b43e2160db1c52b6a137dc18", + "file_id": "ee00eb65-543d-4894-95ae-6c9519cc4989", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "407c600a-c0ac-41a6-8d87-fd8a3c_D7_1", + "entity_type": "aliquot", + "case_id": "b5327171-0105-403e-9b91-125eecb02389", + "entity_id": "11f40281-5f8f-495a-816c-7dde7a172081" + } + ], + "file_name": "3634fc19-ab86-4e46-b249-b19cb2a12ba4.mirnaseq.isoforms.quantification.txt", + "submitter_id": "0ba3d307-3e2a-4170-9d74-fd76f779ff52", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9927302467122052, + "total_reads": 9002919, + "access": "controlled", + "file_name": "11f40281-5f8f-495a-816c-7dde7a172081_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.01292847, + "proportion_reads_duplicated": 0, + "submitter_id": "0b798db0-f5a0-4846-a316-60847c6c503a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 87640711, + "created_datetime": "2021-06-16T12:10:00.663759-05:00", + "average_base_quality": 34, + "md5sum": "764362b56efeb22b61708699941e2d89", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "edac90ba-dd79-4396-a36e-01650cf1273f", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "3634fc19-ab86-4e46-b249-b19cb2a12ba4_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0a0f863e-4cc6-4fe3-8fc4-0863cf775012", + "created_datetime": "2021-06-16T12:28:47.627113-05:00" + }, + "platform": "Illumina", + "file_size": 477767, + "md5sum": "1027a1cad35a35b4c187fbec45ff1dab", + "file_id": "d6ed2b15-e88c-4d03-9f98-cbfb8dc75d17", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "407c600a-c0ac-41a6-8d87-fd8a3c_D7_1", + "entity_type": "aliquot", + "case_id": "b5327171-0105-403e-9b91-125eecb02389", + "entity_id": "11f40281-5f8f-495a-816c-7dde7a172081" + } + ], + "file_name": "3634fc19-ab86-4e46-b249-b19cb2a12ba4.mirnaseq.mirnas.quantification.txt", + "submitter_id": "1fcd0611-edd2-4ee2-a3af-447d84c2ab89", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9927302467122052, + "total_reads": 9002919, + "access": "controlled", + "file_name": "11f40281-5f8f-495a-816c-7dde7a172081_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.01292847, + "proportion_reads_duplicated": 0, + "submitter_id": "0b798db0-f5a0-4846-a316-60847c6c503a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 87640711, + "created_datetime": "2021-06-16T12:10:00.663759-05:00", + "average_base_quality": 34, + "md5sum": "764362b56efeb22b61708699941e2d89", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "edac90ba-dd79-4396-a36e-01650cf1273f", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "3634fc19-ab86-4e46-b249-b19cb2a12ba4_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0a0f863e-4cc6-4fe3-8fc4-0863cf775012", + "created_datetime": "2021-06-16T12:28:47.627113-05:00" + }, + "platform": "Illumina", + "file_size": 50519, + "md5sum": "38aa9d5845745af581c4e1adf32ca8a8", + "file_id": "08bb344b-b222-4356-88d9-e7fc565166e6", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "f4034d75-d533-47c2-8453-068e37_D7", + "entity_type": "aliquot", + "case_id": "cbbd64b3-258c-4639-9462-d1b08f4ffc25", + "entity_id": "d0181a04-e2c4-4f79-a53d-92b603c814a7" + } + ], + "file_name": "cf0c7a9e-a5f5-45d4-8458-5713fa45f880.mirnaseq.mirnas.quantification.txt", + "submitter_id": "dcbcf007-fff7-4355-b0a5-5580aef8542c", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9930719586049072, + "total_reads": 3846253, + "access": "controlled", + "file_name": "d0181a04-e2c4-4f79-a53d-92b603c814a7_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.008655411, + "proportion_reads_duplicated": 0, + "submitter_id": "9cb44f4a-dfbb-4ecf-bff2-296aa08e29d5", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 44379387, + "created_datetime": "2021-06-16T12:08:13.463174-05:00", + "average_base_quality": 34, + "md5sum": "774cceb5de56ed62d0da1805b75b5eca", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "ca702ded-0644-4957-91f2-99345d822f92", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "cf0c7a9e-a5f5-45d4-8458-5713fa45f880_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7656f22d-6ce6-4ff3-9031-3c669b262785", + "created_datetime": "2021-06-16T12:26:52.908558-05:00" + }, + "platform": "Illumina", + "file_size": 50512, + "md5sum": "5ae263d3c2c0d79c05f3a45cacdd8a7d", + "file_id": "ac655cf8-b05e-424e-b5b0-bd6cdb5a8333", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "35a345a4-e954-4c81-ae3f-7797cd_D7", + "entity_type": "aliquot", + "case_id": "df907ef8-3c26-4c50-8a87-ee8290296117", + "entity_id": "ee595dd8-3993-4632-b2f7-d46ff303a5a9" + } + ], + "file_name": "f39b5490-4d8c-4695-b31d-bc67cdcf7756.mirnaseq.isoforms.quantification.txt", + "submitter_id": "2634b688-7791-41ed-a2d4-223022229376", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9911822940026012, + "total_reads": 6947612, + "access": "controlled", + "file_name": "ee595dd8-3993-4632-b2f7-d46ff303a5a9_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.01115948, + "proportion_reads_duplicated": 0, + "submitter_id": "79f99ff1-b27b-4d92-95d4-5161668027e1", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 73835274, + "created_datetime": "2021-06-16T12:08:50.480737-05:00", + "average_base_quality": 34, + "md5sum": "7f51024124f7f77da5c449948bcd6110", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "159f7f97-2465-4ac9-a9d1-b09c4f147b5a", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "f39b5490-4d8c-4695-b31d-bc67cdcf7756_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "29e11414-9082-4a84-83be-6800c34c0468", + "created_datetime": "2021-06-16T12:26:29.074167-05:00" + }, + "platform": "Illumina", + "file_size": 511677, + "md5sum": "1ce17c98d910bd6fd0484c94ded8e95c", + "file_id": "1e618816-1cf8-4258-8fc1-aeb6bdbd8c44", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "62f5840e-6cd7-4200-b651-645e53_D7_1", + "entity_type": "aliquot", + "case_id": "faf8cebd-72ad-4da2-b55e-73cddd8dafff", + "entity_id": "427f36d5-0947-4b3e-86c7-84e8f365f244" + } + ], + "file_name": "35f668d1-8efd-4d4d-99f7-6d48e11782cd.mirnaseq.isoforms.quantification.txt", + "submitter_id": "3667228a-c300-45d6-aaf7-3b95314a18b3", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.996379575965093, + "total_reads": 5046094, + "access": "controlled", + "file_name": "427f36d5-0947-4b3e-86c7-84e8f365f244_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.006516893, + "proportion_reads_duplicated": 0, + "submitter_id": "12a81e2a-930c-468f-b5e1-169cd9044420", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 60776851, + "created_datetime": "2021-06-16T12:11:22.609189-05:00", + "average_base_quality": 34, + "md5sum": "db706db436f19d534bed874902e528c5", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "d414ca5e-a141-4d3a-927c-fa4e0a6be490", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "35f668d1-8efd-4d4d-99f7-6d48e11782cd_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e8f089a4-04e4-4508-9aed-70946ed7870d", + "created_datetime": "2021-06-16T12:25:41.795412-05:00" + }, + "platform": "Illumina", + "file_size": 430985, + "md5sum": "4fc5a920cdff38bec34f430a53ef215d", + "file_id": "1c9a44c8-07d2-456e-81a3-301d822d3bb2", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "2dc28da8-7ff1-4b9b-b5bd-17cc25_D7_1", + "entity_type": "aliquot", + "case_id": "efc15407-78da-4c08-9fbf-2b02c17894b4", + "entity_id": "1047116f-ef31-4865-953e-713364ec8f64" + } + ], + "file_name": "6a353155-669e-4a1a-b009-c155e6e37e08.mirnaseq.mirnas.quantification.txt", + "submitter_id": "a6a0ed56-dde7-4e3b-9a89-b645f4e6b30e", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9966917833010412, + "total_reads": 5666497, + "access": "controlled", + "file_name": "1047116f-ef31-4865-953e-713364ec8f64_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007840251, + "proportion_reads_duplicated": 0, + "submitter_id": "cf52eab1-d818-4732-98bf-8d286b423be7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 58703292, + "created_datetime": "2021-06-16T12:06:19.987448-05:00", + "average_base_quality": 34, + "md5sum": "519480b07c9ded47fba7d63a4bc38916", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "57fb43fa-24ae-4e46-833e-a4fbb75487c6", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "6a353155-669e-4a1a-b009-c155e6e37e08_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "4209e2e7-ec0a-40d5-a633-6de71ca57018", + "created_datetime": "2021-06-16T12:26:49.962445-05:00" + }, + "platform": "Illumina", + "file_size": 50561, + "md5sum": "992accbd270b47ceece7f79ac0189309", + "file_id": "4d436314-4ba4-48b0-992a-01cbbb449765", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "2dc28da8-7ff1-4b9b-b5bd-17cc25_D7_1", + "entity_type": "aliquot", + "case_id": "efc15407-78da-4c08-9fbf-2b02c17894b4", + "entity_id": "1047116f-ef31-4865-953e-713364ec8f64" + } + ], + "file_name": "6a353155-669e-4a1a-b009-c155e6e37e08.mirnaseq.isoforms.quantification.txt", + "submitter_id": "ba2c94f2-3964-476e-b49c-dc5d042d351f", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9966917833010412, + "total_reads": 5666497, + "access": "controlled", + "file_name": "1047116f-ef31-4865-953e-713364ec8f64_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007840251, + "proportion_reads_duplicated": 0, + "submitter_id": "cf52eab1-d818-4732-98bf-8d286b423be7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 58703292, + "created_datetime": "2021-06-16T12:06:19.987448-05:00", + "average_base_quality": 34, + "md5sum": "519480b07c9ded47fba7d63a4bc38916", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "57fb43fa-24ae-4e46-833e-a4fbb75487c6", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "6a353155-669e-4a1a-b009-c155e6e37e08_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "4209e2e7-ec0a-40d5-a633-6de71ca57018", + "created_datetime": "2021-06-16T12:26:49.962445-05:00" + }, + "platform": "Illumina", + "file_size": 497625, + "md5sum": "c3f2cf0dc9aaa91952b4ee28d828046a", + "file_id": "bc6c9c97-dd99-4561-898d-1742be8c2188", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "3946a96c-e0ae-442f-83b4-a9350e_D7", + "entity_type": "aliquot", + "case_id": "46bab896-cce4-40d2-aee9-006234ec03e2", + "entity_id": "f0f21c6c-6571-4d28-b905-4ecf9e5e648b" + } + ], + "file_name": "af104314-112c-4398-ad24-0fdd90d51e22.mirnaseq.mirnas.quantification.txt", + "submitter_id": "9d0680a8-978c-4cda-8a48-cde182d0b6fe", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9947439592224383, + "total_reads": 6295423, + "access": "controlled", + "file_name": "f0f21c6c-6571-4d28-b905-4ecf9e5e648b_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.009314423, + "proportion_reads_duplicated": 0, + "submitter_id": "66a42f73-fa62-4023-86bd-3b7a579b754f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 67628334, + "created_datetime": "2021-06-16T12:12:42.080042-05:00", + "average_base_quality": 34, + "md5sum": "4af3a572495c9a5fd97ef39a79d4d9cb", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "00595125-5395-4257-b653-d53435ce2d65", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "af104314-112c-4398-ad24-0fdd90d51e22_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b39dc887-03e6-46fa-80d8-9fa234808398", + "created_datetime": "2021-06-16T12:31:34.344130-05:00" + }, + "platform": "Illumina", + "file_size": 50485, + "md5sum": "6900e5094a7108e0cd3b243f34a2f212", + "file_id": "3503c503-da29-426a-8120-1d7b9abfc1a0", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "3a380577-c134-47ba-a1ce-988d7c_D7", + "entity_type": "aliquot", + "case_id": "485a9225-48b0-4f4e-a59a-299046e2e992", + "entity_id": "82a4af05-ea23-43ba-94ce-92923d356d36" + } + ], + "file_name": "f8fbb43d-e2f1-4fb1-9360-e893c46f488c.mirnaseq.mirnas.quantification.txt", + "submitter_id": "a2d3cc66-63c0-4fef-8262-7c641f097061", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9927814908421401, + "total_reads": 7947763, + "access": "controlled", + "file_name": "82a4af05-ea23-43ba-94ce-92923d356d36_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.01350526, + "proportion_reads_duplicated": 0, + "submitter_id": "fcc099cf-1404-4757-855b-5c0d6b4d35d0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 83821306, + "created_datetime": "2021-06-16T12:09:19.169974-05:00", + "average_base_quality": 34, + "md5sum": "1ae443c6379a76044ad8c433b7faaedd", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "4015de92-ca53-4ad8-b777-4c16795e19f9", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "f8fbb43d-e2f1-4fb1-9360-e893c46f488c_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "20b00be4-7ce4-48c5-97c9-dafa2e85a985", + "created_datetime": "2021-06-16T12:26:57.185416-05:00" + }, + "platform": "Illumina", + "file_size": 50480, + "md5sum": "5ce0be3032c006bb8b720747d9aee8dc", + "file_id": "22037193-4a2e-4416-a53b-b52b4515d149", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "3a380577-c134-47ba-a1ce-988d7c_D7", + "entity_type": "aliquot", + "case_id": "485a9225-48b0-4f4e-a59a-299046e2e992", + "entity_id": "82a4af05-ea23-43ba-94ce-92923d356d36" + } + ], + "file_name": "f8fbb43d-e2f1-4fb1-9360-e893c46f488c.mirnaseq.isoforms.quantification.txt", + "submitter_id": "a9f186c8-8559-46b0-83ee-0e26d1294bce", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9927814908421401, + "total_reads": 7947763, + "access": "controlled", + "file_name": "82a4af05-ea23-43ba-94ce-92923d356d36_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.01350526, + "proportion_reads_duplicated": 0, + "submitter_id": "fcc099cf-1404-4757-855b-5c0d6b4d35d0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 83821306, + "created_datetime": "2021-06-16T12:09:19.169974-05:00", + "average_base_quality": 34, + "md5sum": "1ae443c6379a76044ad8c433b7faaedd", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "4015de92-ca53-4ad8-b777-4c16795e19f9", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "f8fbb43d-e2f1-4fb1-9360-e893c46f488c_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "20b00be4-7ce4-48c5-97c9-dafa2e85a985", + "created_datetime": "2021-06-16T12:26:57.185416-05:00" + }, + "platform": "Illumina", + "file_size": 441381, + "md5sum": "036dcd4e5273091db0d3c2fd302e9ad0", + "file_id": "854cc7c3-4d7b-461a-a694-dee51b56da66", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "8e6a9f67-7c53-4386-9ba0-e48101_D7", + "entity_type": "aliquot", + "case_id": "52e4305e-1ff0-4a92-a38a-136696eb8968", + "entity_id": "94b4f277-b651-4fdc-8bff-1a4f418796b6" + } + ], + "file_name": "fa3fc45d-1a7c-44c0-9d70-813916949abd.mirnaseq.isoforms.quantification.txt", + "submitter_id": "16fff1d0-fb41-4354-bd9e-fa940b72096c", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.99716757317934, + "total_reads": 6515261, + "access": "controlled", + "file_name": "94b4f277-b651-4fdc-8bff-1a4f418796b6_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007340932, + "proportion_reads_duplicated": 0, + "submitter_id": "389c9744-2b7b-426d-984c-5a33b8c6c9a0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 63887139, + "created_datetime": "2021-06-16T12:14:21.594894-05:00", + "average_base_quality": 34, + "md5sum": "9df91af8c8a094e2f4994fdbe3ce9dd0", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "f6d694ae-4483-4615-a239-1a25d319b61e", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "fa3fc45d-1a7c-44c0-9d70-813916949abd_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "758e0bd8-394b-495c-b88f-3fbd2f036374", + "created_datetime": "2021-06-16T12:32:28.647068-05:00" + }, + "platform": "Illumina", + "file_size": 482179, + "md5sum": "51770abda7a9ce97c92571d4d627204e", + "file_id": "c0078c23-3f2c-49b8-8252-761b2dab8c5f", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "665f4f0f-130c-4b09-9762-cd0696_D7_1", + "entity_type": "aliquot", + "case_id": "6223da27-571c-4ace-80d7-9245693382f3", + "entity_id": "5ffede82-d033-4087-9736-5aa58fbaba37" + } + ], + "file_name": "89ce0640-08dc-4b4c-8ef5-bc557258478e.mirnaseq.isoforms.quantification.txt", + "submitter_id": "de6760d7-9dcb-416c-9d1b-647c11ece95c", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9977801325945954, + "total_reads": 8703673, + "access": "controlled", + "file_name": "5ffede82-d033-4087-9736-5aa58fbaba37_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.006538871, + "proportion_reads_duplicated": 0, + "submitter_id": "1baac072-0e1b-480e-a367-b5e4b6913dae", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 85576200, + "created_datetime": "2021-06-16T12:11:59.423183-05:00", + "average_base_quality": 34, + "md5sum": "0664af085b5f85b02209a848fb8ed2a1", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "c4e2410d-2ed1-428a-8328-814470e5abd0", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "89ce0640-08dc-4b4c-8ef5-bc557258478e_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "378c4243-1465-4ebd-b968-9d3005f40e68", + "created_datetime": "2021-06-16T12:30:04.061810-05:00" + }, + "platform": "Illumina", + "file_size": 571752, + "md5sum": "22952ca3ca000c239abb620380c30e61", + "file_id": "bfb4ac04-fc6b-4217-b068-1f0307979308", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "665f4f0f-130c-4b09-9762-cd0696_D7_1", + "entity_type": "aliquot", + "case_id": "6223da27-571c-4ace-80d7-9245693382f3", + "entity_id": "5ffede82-d033-4087-9736-5aa58fbaba37" + } + ], + "file_name": "89ce0640-08dc-4b4c-8ef5-bc557258478e.mirnaseq.mirnas.quantification.txt", + "submitter_id": "ebfc24c9-8fd0-4b19-830f-ed9cbb964b46", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9977801325945954, + "total_reads": 8703673, + "access": "controlled", + "file_name": "5ffede82-d033-4087-9736-5aa58fbaba37_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.006538871, + "proportion_reads_duplicated": 0, + "submitter_id": "1baac072-0e1b-480e-a367-b5e4b6913dae", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 85576200, + "created_datetime": "2021-06-16T12:11:59.423183-05:00", + "average_base_quality": 34, + "md5sum": "0664af085b5f85b02209a848fb8ed2a1", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "c4e2410d-2ed1-428a-8328-814470e5abd0", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "89ce0640-08dc-4b4c-8ef5-bc557258478e_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "378c4243-1465-4ebd-b968-9d3005f40e68", + "created_datetime": "2021-06-16T12:30:04.061810-05:00" + }, + "platform": "Illumina", + "file_size": 50674, + "md5sum": "b0ada8d9000ad8f1a37517ec43c67f50", + "file_id": "446e97cb-2597-4ebd-a17e-928a17e3783c", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "9c8e78bf-b03e-4ba0-9909-5ff070_D7", + "entity_type": "aliquot", + "case_id": "6b343732-324e-49a8-bdcb-71c5e4bc6936", + "entity_id": "6848dcbd-484e-4c4a-b8c1-158ec254849f" + } + ], + "file_name": "716a3d4f-ef5a-4d6a-bf51-57053a7aeee3.mirnaseq.mirnas.quantification.txt", + "submitter_id": "bf3625b3-052d-404e-9eeb-4de208ddf63f", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.996729467111059, + "total_reads": 5944597, + "access": "controlled", + "file_name": "6848dcbd-484e-4c4a-b8c1-158ec254849f_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.00554547, + "proportion_reads_duplicated": 0, + "submitter_id": "812da012-c7bd-489c-a740-cb24e464d24f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 71595038, + "created_datetime": "2021-06-16T12:07:41.681830-05:00", + "average_base_quality": 34, + "md5sum": "f4c6e1ab8be214161c61b0e77f8b7a59", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "b0b7d8da-32e4-4f6a-a107-42d5fd24987b", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "716a3d4f-ef5a-4d6a-bf51-57053a7aeee3_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b966a089-7efe-469a-ab14-cf8793e90a86", + "created_datetime": "2021-06-16T12:25:51.191750-05:00" + }, + "platform": "Illumina", + "file_size": 50637, + "md5sum": "066fa94f4a7c58898868b0474ab2a249", + "file_id": "47e44931-2946-4ed8-ad65-4619e4dc85c3", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "49bd51fe-48a1-4828-b66e-b30c38_D7", + "entity_type": "aliquot", + "case_id": "742033a6-ba74-4871-9046-14972d6676e4", + "entity_id": "5dcea5ec-b940-4fdc-aa3f-932f2bcd2f65" + } + ], + "file_name": "c06d76b3-3158-430f-8e4e-59b9ce686909.mirnaseq.isoforms.quantification.txt", + "submitter_id": "02f9740b-e7b9-48fd-bcd0-b97a52a45e28", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9846345414106057, + "total_reads": 4447508, + "access": "controlled", + "file_name": "5dcea5ec-b940-4fdc-aa3f-932f2bcd2f65_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.01452738, + "proportion_reads_duplicated": 0, + "submitter_id": "2384a021-5b9c-431b-8d55-68239074f4ae", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 53569085, + "created_datetime": "2021-06-16T12:08:48.854346-05:00", + "average_base_quality": 34, + "md5sum": "1cbb42e6a0e533815c2305bccd554444", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "10cc2654-c7bc-4e08-bfed-2a272a628712", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "c06d76b3-3158-430f-8e4e-59b9ce686909_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "86659098-a9ff-4676-bc9c-7699e7673ad9", + "created_datetime": "2021-06-16T12:25:43.244570-05:00" + }, + "platform": "Illumina", + "file_size": 432352, + "md5sum": "dd747787c0118ac7b9454a1d366cb9ce", + "file_id": "e67c3fdf-365d-492b-9c4b-ad8e0ae108ad", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "0c87932d-b6fd-4eb5-b86a-a34d07_D7_1", + "entity_type": "aliquot", + "case_id": "8beaf23a-9e0e-4fc1-b604-5de8c857fbd9", + "entity_id": "4621871b-ace6-4436-ba4c-2375317c3844" + } + ], + "file_name": "26f80c3e-311d-4185-95a1-e4ca729f6a2d.mirnaseq.isoforms.quantification.txt", + "submitter_id": "e9305591-e06d-4b01-a110-246f33748957", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9968544489543977, + "total_reads": 5129149, + "access": "controlled", + "file_name": "4621871b-ace6-4436-ba4c-2375317c3844_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007057493, + "proportion_reads_duplicated": 0, + "submitter_id": "bc46c582-43a9-4c86-ba75-184c8385c9bb", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 53437320, + "created_datetime": "2021-06-16T12:06:27.807546-05:00", + "average_base_quality": 34, + "md5sum": "5c93e62a6a3fe2c3cb98284ff5d12919", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "0b0f81ed-7e89-4a86-a483-cd9cb92d24ae", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "26f80c3e-311d-4185-95a1-e4ca729f6a2d_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c051ac30-f71e-41a1-ade6-60b5d12d1cef", + "created_datetime": "2021-06-16T12:32:44.747191-05:00" + }, + "platform": "Illumina", + "file_size": 417528, + "md5sum": "b96e6e7aee57d99b7768e3a353ee6035", + "file_id": "358144e6-6a89-4b0d-89fa-abcc783e5ff2", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "cfb8cb2c-53c6-40d7-8069-a1a804_D7", + "entity_type": "aliquot", + "case_id": "8eee2518-57c0-4ee8-b72d-49c3187d7e1a", + "entity_id": "072edfbd-8e5e-47db-8fbd-ea0773555c80" + } + ], + "file_name": "babd95ad-d3a5-485c-8af0-c036cfff7337.mirnaseq.isoforms.quantification.txt", + "submitter_id": "d6904ce2-3b2c-4a24-a63b-946aacf0eb1e", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9966047772569546, + "total_reads": 8227148, + "access": "controlled", + "file_name": "072edfbd-8e5e-47db-8fbd-ea0773555c80_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.008143755, + "proportion_reads_duplicated": 0, + "submitter_id": "cfcb4853-c41d-4948-8378-48ac4f85e5ff", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 84467362, + "created_datetime": "2021-06-16T12:07:00.963816-05:00", + "average_base_quality": 34, + "md5sum": "9ba0bb9a4564e6076f83fe051cfffbcd", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "8ef99924-fa3f-44b7-ae9e-dc3df533cc4c", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "babd95ad-d3a5-485c-8af0-c036cfff7337_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "38006edb-541a-4b56-8e25-1fe0dcc24d0d", + "created_datetime": "2021-06-16T12:29:26.673390-05:00" + }, + "platform": "Illumina", + "file_size": 539459, + "md5sum": "f206a1d147baddf3d6f5ac914f6ca832", + "file_id": "584111da-24cd-4dca-a630-15bb7b1a0a6d", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "8e17b45e-6a06-4e4e-913d-7b1edb_D7_1", + "entity_type": "aliquot", + "case_id": "99d74447-9236-438c-8543-e876b4daa8bf", + "entity_id": "37e5aa69-51ae-4bad-81d3-67ba8f636a78" + } + ], + "file_name": "4c587f89-6fa3-4d62-9812-98b3a29545a7.mirnaseq.mirnas.quantification.txt", + "submitter_id": "fddd5325-f87f-4628-bc15-8f9895772aef", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9966952068654412, + "total_reads": 4558833, + "access": "controlled", + "file_name": "37e5aa69-51ae-4bad-81d3-67ba8f636a78_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.008219501, + "proportion_reads_duplicated": 0, + "submitter_id": "f064ae58-05e9-441e-b7f0-04ee841be639", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 47856429, + "created_datetime": "2021-06-16T12:14:32.709728-05:00", + "average_base_quality": 34, + "md5sum": "db46bf9b17f4510ca5def845f578a765", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "5d4b162c-9f55-40ff-b3e1-ee126ccbbdc5", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "4c587f89-6fa3-4d62-9812-98b3a29545a7_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c2463a37-d064-4d59-ba07-d543c9c7e351", + "created_datetime": "2021-06-16T12:27:31.298699-05:00" + }, + "platform": "Illumina", + "file_size": 50310, + "md5sum": "d0503ad2a1366f2f42abf851d20a1a2d", + "file_id": "6dcc6a7d-961c-4b77-bae4-35f0d67bdeef", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "8e17b45e-6a06-4e4e-913d-7b1edb_D7_1", + "entity_type": "aliquot", + "case_id": "99d74447-9236-438c-8543-e876b4daa8bf", + "entity_id": "37e5aa69-51ae-4bad-81d3-67ba8f636a78" + } + ], + "file_name": "4c587f89-6fa3-4d62-9812-98b3a29545a7.mirnaseq.isoforms.quantification.txt", + "submitter_id": "882c40d2-5a46-4761-8b11-861a8cf9a77e", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9966952068654412, + "total_reads": 4558833, + "access": "controlled", + "file_name": "37e5aa69-51ae-4bad-81d3-67ba8f636a78_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.008219501, + "proportion_reads_duplicated": 0, + "submitter_id": "f064ae58-05e9-441e-b7f0-04ee841be639", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 47856429, + "created_datetime": "2021-06-16T12:14:32.709728-05:00", + "average_base_quality": 34, + "md5sum": "db46bf9b17f4510ca5def845f578a765", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "5d4b162c-9f55-40ff-b3e1-ee126ccbbdc5", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "4c587f89-6fa3-4d62-9812-98b3a29545a7_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c2463a37-d064-4d59-ba07-d543c9c7e351", + "created_datetime": "2021-06-16T12:27:31.298699-05:00" + }, + "platform": "Illumina", + "file_size": 370681, + "md5sum": "7fe76be4bd6aab6dfadc2055b8e1abaa", + "file_id": "09b9e650-d2d2-4eb2-9a6b-292c277acb75", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "eb3f3494-7057-4afe-b212-e6e9a3_D7_1", + "entity_type": "aliquot", + "case_id": "9c6f433a-ca9e-4590-8a7b-6ddb69cc1398", + "entity_id": "bb577fcd-9387-45cc-b8a9-b644acd79128" + } + ], + "file_name": "4d62ceb5-2038-438c-8ff3-1463f4b4475a.mirnaseq.mirnas.quantification.txt", + "submitter_id": "e0e8078e-f14e-439b-b089-db37449d9e44", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9908389751363121, + "total_reads": 5198545, + "access": "controlled", + "file_name": "bb577fcd-9387-45cc-b8a9-b644acd79128_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.01271383, + "proportion_reads_duplicated": 0, + "submitter_id": "5225ae54-48ae-4c0c-87df-e150b1aacc6a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 52408454, + "created_datetime": "2021-06-16T12:10:08.586740-05:00", + "average_base_quality": 34, + "md5sum": "37f91883d22f574369a4f950541003a7", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "cd30ea37-a5ee-4006-86c3-7f18c1475ab7", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "4d62ceb5-2038-438c-8ff3-1463f4b4475a_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "73a59e16-f156-4549-be4c-0f62bf525d7d", + "created_datetime": "2021-06-16T12:25:29.031627-05:00" + }, + "platform": "Illumina", + "file_size": 50287, + "md5sum": "8cb8dc1d30116aa100383fb5cd4aa334", + "file_id": "d3c086aa-8540-4780-8f81-b6f30088ae39", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "9bb753e1-120d-4ea8-b43c-c8fa80_D7", + "entity_type": "aliquot", + "case_id": "9d33308f-f7cc-420e-9116-b9a95068d045", + "entity_id": "be806298-4aa5-4163-8715-cdb4e2e92beb" + } + ], + "file_name": "11d418df-a910-47ea-8912-4744e1f79fa2.mirnaseq.isoforms.quantification.txt", + "submitter_id": "2226a4a3-c18b-4bc5-9c86-ff1e982b7381", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.995588243884706, + "total_reads": 6676253, + "access": "controlled", + "file_name": "be806298-4aa5-4163-8715-cdb4e2e92beb_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.008806344, + "proportion_reads_duplicated": 0, + "submitter_id": "2689fdf1-ad2f-41fc-8781-03b0d2830756", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 68720309, + "created_datetime": "2021-06-16T12:14:05.266801-05:00", + "average_base_quality": 34, + "md5sum": "38c43be8ff65421ecb548a50f095bce6", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "238b99d9-9540-4eb1-9fa6-b1b60d38e932", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "11d418df-a910-47ea-8912-4744e1f79fa2_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "88bb9b6e-19a8-489e-a301-b56dbad013ca", + "created_datetime": "2021-06-16T12:28:07.221982-05:00" + }, + "platform": "Illumina", + "file_size": 434354, + "md5sum": "fa4d05ad66446a008cd71480c7484864", + "file_id": "d3cfc465-ed6a-4260-9ec5-4142faf686b2", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "9bb753e1-120d-4ea8-b43c-c8fa80_D7", + "entity_type": "aliquot", + "case_id": "9d33308f-f7cc-420e-9116-b9a95068d045", + "entity_id": "be806298-4aa5-4163-8715-cdb4e2e92beb" + } + ], + "file_name": "11d418df-a910-47ea-8912-4744e1f79fa2.mirnaseq.mirnas.quantification.txt", + "submitter_id": "4f32153b-26e9-4974-835a-0cb1d6fb8bbc", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.995588243884706, + "total_reads": 6676253, + "access": "controlled", + "file_name": "be806298-4aa5-4163-8715-cdb4e2e92beb_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.008806344, + "proportion_reads_duplicated": 0, + "submitter_id": "2689fdf1-ad2f-41fc-8781-03b0d2830756", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 68720309, + "created_datetime": "2021-06-16T12:14:05.266801-05:00", + "average_base_quality": 34, + "md5sum": "38c43be8ff65421ecb548a50f095bce6", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "238b99d9-9540-4eb1-9fa6-b1b60d38e932", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "11d418df-a910-47ea-8912-4744e1f79fa2_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "88bb9b6e-19a8-489e-a301-b56dbad013ca", + "created_datetime": "2021-06-16T12:28:07.221982-05:00" + }, + "platform": "Illumina", + "file_size": 50458, + "md5sum": "7530362c59465e7db68dab294cb071bc", + "file_id": "2e426153-d11c-41e9-9a51-548e974a173a", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "51c1c79e-5a8e-4b0a-bf92-1c0cab_D7", + "entity_type": "aliquot", + "case_id": "9d4c57e1-fdca-431e-b628-36a9a16f698d", + "entity_id": "e8fc9dad-c20a-464e-adf7-89954d9358a5" + } + ], + "file_name": "bdfa24c3-1d29-4bde-82b7-840b0cbcde8e.mirnaseq.mirnas.quantification.txt", + "submitter_id": "a13ebed9-0b36-4f47-b4b2-7bf06cdcf23e", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9867779886184872, + "total_reads": 8235812, + "access": "controlled", + "file_name": "e8fc9dad-c20a-464e-adf7-89954d9358a5_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.01560504, + "proportion_reads_duplicated": 0, + "submitter_id": "2f8fcb96-0661-4d1b-8cf9-2030244b7c6f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 85499312, + "created_datetime": "2021-06-16T12:10:55.933711-05:00", + "average_base_quality": 34, + "md5sum": "b7d42826af5c2ddafb6d8e55cf0ed114", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "8e5aec48-4946-4107-bde0-2666d6e494b2", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "bdfa24c3-1d29-4bde-82b7-840b0cbcde8e_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d8bf6fdc-c609-443d-9afb-53a27fbb69f8", + "created_datetime": "2021-06-16T12:32:15.850420-05:00" + }, + "platform": "Illumina", + "file_size": 50688, + "md5sum": "b57bb36d4e62ddf295f1f6e7f9b23bbf", + "file_id": "e278c60f-d08c-407c-9d0d-2d06786fadd7", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "51c1c79e-5a8e-4b0a-bf92-1c0cab_D7", + "entity_type": "aliquot", + "case_id": "9d4c57e1-fdca-431e-b628-36a9a16f698d", + "entity_id": "e8fc9dad-c20a-464e-adf7-89954d9358a5" + } + ], + "file_name": "bdfa24c3-1d29-4bde-82b7-840b0cbcde8e.mirnaseq.isoforms.quantification.txt", + "submitter_id": "9d4064d8-1e7c-4683-affa-da10d9dd290d", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9867779886184872, + "total_reads": 8235812, + "access": "controlled", + "file_name": "e8fc9dad-c20a-464e-adf7-89954d9358a5_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.01560504, + "proportion_reads_duplicated": 0, + "submitter_id": "2f8fcb96-0661-4d1b-8cf9-2030244b7c6f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 85499312, + "created_datetime": "2021-06-16T12:10:55.933711-05:00", + "average_base_quality": 34, + "md5sum": "b7d42826af5c2ddafb6d8e55cf0ed114", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "8e5aec48-4946-4107-bde0-2666d6e494b2", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "bdfa24c3-1d29-4bde-82b7-840b0cbcde8e_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d8bf6fdc-c609-443d-9afb-53a27fbb69f8", + "created_datetime": "2021-06-16T12:32:15.850420-05:00" + }, + "platform": "Illumina", + "file_size": 526885, + "md5sum": "3d4ab4b54c04070fc3488b9b6c13d570", + "file_id": "ec02acc3-0bad-4979-b4a6-9e90d7199957", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "6319b36b-533c-4e86-8e12-80552e_D7", + "entity_type": "aliquot", + "case_id": "a7deae0d-38d2-46e4-a90b-f79f57fd2808", + "entity_id": "c30cbf67-5a54-4e3b-8028-797729663fa4" + } + ], + "file_name": "19b57268-9861-44b9-8a50-243937c472cb.mirnaseq.isoforms.quantification.txt", + "submitter_id": "12fd8b0f-c953-4726-97dc-99c166ef0683", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9885590691294871, + "total_reads": 7914828, + "access": "controlled", + "file_name": "c30cbf67-5a54-4e3b-8028-797729663fa4_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.01420335, + "proportion_reads_duplicated": 0, + "submitter_id": "53a90909-9822-44c6-845c-79f30fe83522", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 92057772, + "created_datetime": "2021-06-16T12:14:40.539378-05:00", + "average_base_quality": 34, + "md5sum": "f92e6104cf015eaf31002bf81a53b382", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "dac53246-1110-47f1-ae45-a83918504db8", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "19b57268-9861-44b9-8a50-243937c472cb_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e2ec8ca4-cd9a-485c-afc3-89a87d2574a8", + "created_datetime": "2021-06-16T12:26:41.475541-05:00" + }, + "platform": "Illumina", + "file_size": 515140, + "md5sum": "e35a34616dfcbddab1e08be3674d89a0", + "file_id": "5dff9145-d069-4830-a997-5aba7fc922f7", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "927f0958-db5a-4bc5-92b7-2a3695_D7", + "entity_type": "aliquot", + "case_id": "aa529cf5-9837-495d-9d5d-6c81460cbac1", + "entity_id": "955b5756-894c-439c-9e82-458aeb0465d1" + } + ], + "file_name": "043c5222-1b0e-40ec-8637-5dfe3a2c9911.mirnaseq.mirnas.quantification.txt", + "submitter_id": "7c8cc3f0-a15c-4f1e-8a3e-04fd5a602f6b", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9959890460748136, + "total_reads": 5590690, + "access": "controlled", + "file_name": "955b5756-894c-439c-9e82-458aeb0465d1_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.008649837, + "proportion_reads_duplicated": 0, + "submitter_id": "4f23df74-c2a4-4cbd-a3d3-5003dd427144", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 55901520, + "created_datetime": "2021-06-16T12:08:37.626837-05:00", + "average_base_quality": 34, + "md5sum": "aedd828e384a6bd5f8b6a328b4b459bd", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "e150016a-f799-4429-95d3-17177a1fac22", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "043c5222-1b0e-40ec-8637-5dfe3a2c9911_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d5aa72d9-d864-4c50-b7ae-54cfe4279e1a", + "created_datetime": "2021-06-16T12:27:15.198091-05:00" + }, + "platform": "Illumina", + "file_size": 50483, + "md5sum": "68316a9ceca8357bce02d2ee8e9dbff4", + "file_id": "8a3226c3-5e82-4c34-a94c-87c36a17efbf", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "927f0958-db5a-4bc5-92b7-2a3695_D7", + "entity_type": "aliquot", + "case_id": "aa529cf5-9837-495d-9d5d-6c81460cbac1", + "entity_id": "955b5756-894c-439c-9e82-458aeb0465d1" + } + ], + "file_name": "043c5222-1b0e-40ec-8637-5dfe3a2c9911.mirnaseq.isoforms.quantification.txt", + "submitter_id": "0867de36-ef68-4b7c-8705-0b6e12482266", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9959890460748136, + "total_reads": 5590690, + "access": "controlled", + "file_name": "955b5756-894c-439c-9e82-458aeb0465d1_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.008649837, + "proportion_reads_duplicated": 0, + "submitter_id": "4f23df74-c2a4-4cbd-a3d3-5003dd427144", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 55901520, + "created_datetime": "2021-06-16T12:08:37.626837-05:00", + "average_base_quality": 34, + "md5sum": "aedd828e384a6bd5f8b6a328b4b459bd", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "e150016a-f799-4429-95d3-17177a1fac22", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "043c5222-1b0e-40ec-8637-5dfe3a2c9911_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d5aa72d9-d864-4c50-b7ae-54cfe4279e1a", + "created_datetime": "2021-06-16T12:27:15.198091-05:00" + }, + "platform": "Illumina", + "file_size": 453791, + "md5sum": "e66daee3372eea8f4551af954177d2b5", + "file_id": "7f24d99d-22b7-43bf-8563-1ee953dbd5be", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "467256db-a312-4346-9ac0-e49e44_D7", + "entity_type": "aliquot", + "case_id": "b295d458-952a-42af-9f7f-2c07e895990c", + "entity_id": "2ea699d3-67b2-455b-842c-e63a80c7717f" + } + ], + "file_name": "f333f4c2-c44d-4437-92f8-c092d125e018.mirnaseq.mirnas.quantification.txt", + "submitter_id": "c1875d76-4332-46fb-9e77-253898cf4498", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9937149558170867, + "total_reads": 3230208, + "access": "controlled", + "file_name": "2ea699d3-67b2-455b-842c-e63a80c7717f_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.008112594, + "proportion_reads_duplicated": 0, + "submitter_id": "1e85a9bc-5207-4e89-8360-b46821d4dfb1", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 43487856, + "created_datetime": "2021-06-16T12:10:03.718033-05:00", + "average_base_quality": 35, + "md5sum": "54596270bff036f83fb9de3c94864faf", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "245479e3-5288-43fc-90b2-770ec3d4966c", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "f333f4c2-c44d-4437-92f8-c092d125e018_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0c2213c1-3dd6-412e-9e36-4561fe85fe76", + "created_datetime": "2021-06-16T12:27:42.890198-05:00" + }, + "platform": "Illumina", + "file_size": 50369, + "md5sum": "18969ed74c8c72e173266dd66e8de741", + "file_id": "0f96d477-50f2-4240-9cfd-5e6b194a671e", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "8120e7d6-bd09-4334-841c-70a214_D7", + "entity_type": "aliquot", + "case_id": "c2126c09-0465-43c1-bae1-a50e83d5f7d0", + "entity_id": "1a81ab02-469c-4f67-83cd-d2391fb30e11" + } + ], + "file_name": "c3634b8c-f0fd-4d28-92b3-77eead7a6102.mirnaseq.mirnas.quantification.txt", + "submitter_id": "11cf53f8-2f96-4362-a5d3-a3f16c03c5c1", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9905036593499971, + "total_reads": 2626696, + "access": "controlled", + "file_name": "1a81ab02-469c-4f67-83cd-d2391fb30e11_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.01097779, + "proportion_reads_duplicated": 0, + "submitter_id": "cfd7276e-e9ba-4d81-b6c5-d0514acc996f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 30616644, + "created_datetime": "2021-06-16T12:08:34.470254-05:00", + "average_base_quality": 35, + "md5sum": "ce7b96dd573c4df419c0b331955e927d", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "abf220e6-facd-4a3e-91eb-59d8ed9118bf", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "c3634b8c-f0fd-4d28-92b3-77eead7a6102_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ffd5f12a-6df3-4fbf-81a2-cb839e24726c", + "created_datetime": "2021-06-16T12:29:52.346340-05:00" + }, + "platform": "Illumina", + "file_size": 50462, + "md5sum": "fd295acbe7d6c3598d1ed919149220a6", + "file_id": "b2013c73-1c5e-427b-9db4-7812b15943a5", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "5b5c81b1-4e73-48d3-9469-108edd_D7", + "entity_type": "aliquot", + "case_id": "b9337dee-3bdb-49b2-90e4-97249e30418d", + "entity_id": "21ff5353-7b06-4e65-850a-eb462bd0c2e8" + } + ], + "file_name": "23749b37-2455-4e3e-b6fc-820519f94e11.mirnaseq.isoforms.quantification.txt", + "submitter_id": "b2fadff3-6041-46c3-a35c-c66895996e87", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9954181876899477, + "total_reads": 7976538, + "access": "controlled", + "file_name": "21ff5353-7b06-4e65-850a-eb462bd0c2e8_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.008507292, + "proportion_reads_duplicated": 0, + "submitter_id": "8f8af4ba-28a6-4838-bc6e-e2d43878de56", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 80801480, + "created_datetime": "2021-06-16T12:08:47.383002-05:00", + "average_base_quality": 34, + "md5sum": "13a7bc8fd43c4ec17a53aa18a5798314", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "2340ed4d-7c29-4e52-939d-6c66f66f698e", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "23749b37-2455-4e3e-b6fc-820519f94e11_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a7b0f972-a59e-425c-9ff9-851828806288", + "created_datetime": "2021-06-16T12:27:12.518283-05:00" + }, + "platform": "Illumina", + "file_size": 546327, + "md5sum": "66122be99b9e565f7335757b4f3f4b85", + "file_id": "d1bb5b6c-c1bd-42e1-a2e5-4d2721d98b14", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "2f901c90-617e-46da-9fac-d68369_D7", + "entity_type": "aliquot", + "case_id": "c3a430fe-641e-4b7b-884e-9735908692d6", + "entity_id": "0b2776ab-5731-491b-8046-521c3c22fded" + } + ], + "file_name": "142e0755-5538-437e-86dd-f7a769446460.mirnaseq.mirnas.quantification.txt", + "submitter_id": "7dc13188-4114-4344-961e-8e1a15b2a483", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9915747027119647, + "total_reads": 4505479, + "access": "controlled", + "file_name": "0b2776ab-5731-491b-8046-521c3c22fded_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.01021715, + "proportion_reads_duplicated": 0, + "submitter_id": "eb25c46d-7784-41f6-9a7b-24939ccc2108", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 54908286, + "created_datetime": "2021-06-16T12:13:58.993485-05:00", + "average_base_quality": 35, + "md5sum": "caa98c9e72854f6885636130eb70a0e7", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "4df198e2-be27-4801-98d5-4962217a6f5d", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "142e0755-5538-437e-86dd-f7a769446460_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "456c7dde-fa86-4979-884c-58d7e9f4a770", + "created_datetime": "2021-06-16T12:32:11.640271-05:00" + }, + "platform": "Illumina", + "file_size": 50513, + "md5sum": "17847ceb42ab2ab354b489174ee563ce", + "file_id": "bac44c7d-55c5-4d25-9b17-c9b23eae2516", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "46c73531-f531-4ec3-97fe-b39d9d_D7_1", + "entity_type": "aliquot", + "case_id": "cee465f1-3162-49de-ba8c-29b2f989a7bb", + "entity_id": "c1968745-1e94-4cea-b3ca-ed59095eda3a" + } + ], + "file_name": "ae729b95-39c6-475f-87aa-03e18fe38015.mirnaseq.isoforms.quantification.txt", + "submitter_id": "2f9f2c7e-1e97-4af1-b54f-bee88e4d6537", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9952515833349745, + "total_reads": 6296204, + "access": "controlled", + "file_name": "c1968745-1e94-4cea-b3ca-ed59095eda3a_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007291906, + "proportion_reads_duplicated": 0, + "submitter_id": "557cf378-9142-42d9-bf14-d1dad933d427", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 74430315, + "created_datetime": "2021-06-16T12:10:49.705163-05:00", + "average_base_quality": 34, + "md5sum": "54fb087fbfd19154211d91262a8e92e5", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "1981a331-87ee-442e-95d4-1ed4cc98b565", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "ae729b95-39c6-475f-87aa-03e18fe38015_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "34c83c1c-fafa-4d98-8775-785f68c68c17", + "created_datetime": "2021-06-16T12:26:00.853209-05:00" + }, + "platform": "Illumina", + "file_size": 472484, + "md5sum": "c7495448da1dba30846efef428a64abf", + "file_id": "fa820dbf-f8f7-4757-8676-43249dce9cb1", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "1c9145ad-1981-4871-aa7e-8b11de_D7", + "entity_type": "aliquot", + "case_id": "caf0bcda-98b4-4ef9-a1b5-10f7a95e08fc", + "entity_id": "02ecf23d-5ea3-4fa3-875e-8020579a4ff3" + } + ], + "file_name": "d383b337-778b-44d3-a692-92c5ab9b77e7.mirnaseq.mirnas.quantification.txt", + "submitter_id": "b3525f83-9bda-414f-8b5f-063c80771f6d", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9941034443274679, + "total_reads": 4043547, + "access": "controlled", + "file_name": "02ecf23d-5ea3-4fa3-875e-8020579a4ff3_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007653467, + "proportion_reads_duplicated": 0, + "submitter_id": "855c3484-8fa9-4ed2-a1f8-e05310f24d96", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 41831311, + "created_datetime": "2021-06-16T12:09:07.953514-05:00", + "average_base_quality": 34, + "md5sum": "6dfa15baead9706ab56a1aaa9c8800f9", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "d52fcae9-c7cc-45b9-b284-14e8e29b630d", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "d383b337-778b-44d3-a692-92c5ab9b77e7_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c55c67e7-04f5-4996-932f-0987859f287a", + "created_datetime": "2021-06-16T12:29:14.791923-05:00" + }, + "platform": "Illumina", + "file_size": 50511, + "md5sum": "08861723fe57fb2276743dde5e372329", + "file_id": "c5dd9710-f55d-4bed-b872-e5f32caffa9b", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "f4034d75-d533-47c2-8453-068e37_D7", + "entity_type": "aliquot", + "case_id": "cbbd64b3-258c-4639-9462-d1b08f4ffc25", + "entity_id": "d0181a04-e2c4-4f79-a53d-92b603c814a7" + } + ], + "file_name": "cf0c7a9e-a5f5-45d4-8458-5713fa45f880.mirnaseq.isoforms.quantification.txt", + "submitter_id": "c5cb2839-4649-4a6f-a088-3529e302760b", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9930719586049072, + "total_reads": 3846253, + "access": "controlled", + "file_name": "d0181a04-e2c4-4f79-a53d-92b603c814a7_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.008655411, + "proportion_reads_duplicated": 0, + "submitter_id": "9cb44f4a-dfbb-4ecf-bff2-296aa08e29d5", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 44379387, + "created_datetime": "2021-06-16T12:08:13.463174-05:00", + "average_base_quality": 34, + "md5sum": "774cceb5de56ed62d0da1805b75b5eca", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "ca702ded-0644-4957-91f2-99345d822f92", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "cf0c7a9e-a5f5-45d4-8458-5713fa45f880_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7656f22d-6ce6-4ff3-9031-3c669b262785", + "created_datetime": "2021-06-16T12:26:52.908558-05:00" + }, + "platform": "Illumina", + "file_size": 426572, + "md5sum": "e3b491f1030bac7d005d9966e7d4051f", + "file_id": "fd7b6aad-84ed-49e0-a763-218ae2b24ebb", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "fbb41c94-aabd-49cc-90b2-882c3e_D7", + "entity_type": "aliquot", + "case_id": "d7e3db60-1891-494b-81cb-5412cab99f5d", + "entity_id": "5ad09903-e194-4d71-87ca-2855863fa867" + } + ], + "file_name": "1796fc0d-475e-4753-9e87-c3d5c354d65e.mirnaseq.isoforms.quantification.txt", + "submitter_id": "3f2ee840-01c3-4a2b-b3c4-3b391d405fef", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.99551473549644, + "total_reads": 4163857, + "access": "controlled", + "file_name": "5ad09903-e194-4d71-87ca-2855863fa867_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.00808295, + "proportion_reads_duplicated": 0, + "submitter_id": "a9d90c0a-f50e-4604-b6f3-ee9c0a716123", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 40626408, + "created_datetime": "2021-06-16T12:13:18.029964-05:00", + "average_base_quality": 34, + "md5sum": "c675913a294f7f028ea67d6d908a25e7", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "983074dd-7bd6-473a-abad-2afebfe778cb", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "1796fc0d-475e-4753-9e87-c3d5c354d65e_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8a88a74c-ed2e-4c81-8f37-c1587a49f050", + "created_datetime": "2021-06-16T12:25:58.152856-05:00" + }, + "platform": "Illumina", + "file_size": 458630, + "md5sum": "cfaee7bdba26f11fb7809ce2bf5a8ffe", + "file_id": "41869ab8-c6a5-4c82-b30f-ec4efb0a3153", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "11b5a745-03a6-4c05-9000-534bf3_D7", + "entity_type": "aliquot", + "case_id": "d8919e26-2ca9-4d13-99b0-9fe03b41ab56", + "entity_id": "848d22d7-03e6-4030-8050-c144906cea0e" + } + ], + "file_name": "787134f0-d02b-4377-85d6-e4bf4b1d09a6.mirnaseq.isoforms.quantification.txt", + "submitter_id": "fccd91f4-f7e9-469e-9225-7267b3a713ab", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9959929688915469, + "total_reads": 8163151, + "access": "controlled", + "file_name": "848d22d7-03e6-4030-8050-c144906cea0e_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.00721002, + "proportion_reads_duplicated": 0, + "submitter_id": "f1412a8e-b276-4dd4-a236-3395c694273c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 85702496, + "created_datetime": "2021-06-16T12:11:17.776358-05:00", + "average_base_quality": 34, + "md5sum": "4c78f2ee4c3221f83ddccf008bcaaaa9", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "3e7c7b1f-ff98-482d-b73b-a1c40bea9750", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "787134f0-d02b-4377-85d6-e4bf4b1d09a6_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "3d8812be-88bb-40b1-a799-401226f1d467", + "created_datetime": "2021-06-16T12:27:06.877885-05:00" + }, + "platform": "Illumina", + "file_size": 525074, + "md5sum": "b51f7888c8e7db7e20ff0e5917685d14", + "file_id": "e311f938-7e19-4f7e-a420-d4306f9f168c", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "11b5a745-03a6-4c05-9000-534bf3_D7", + "entity_type": "aliquot", + "case_id": "d8919e26-2ca9-4d13-99b0-9fe03b41ab56", + "entity_id": "848d22d7-03e6-4030-8050-c144906cea0e" + } + ], + "file_name": "787134f0-d02b-4377-85d6-e4bf4b1d09a6.mirnaseq.mirnas.quantification.txt", + "submitter_id": "ba17d7c8-587b-47d6-9e0b-505eb5cb06a4", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9959929688915469, + "total_reads": 8163151, + "access": "controlled", + "file_name": "848d22d7-03e6-4030-8050-c144906cea0e_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.00721002, + "proportion_reads_duplicated": 0, + "submitter_id": "f1412a8e-b276-4dd4-a236-3395c694273c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 85702496, + "created_datetime": "2021-06-16T12:11:17.776358-05:00", + "average_base_quality": 34, + "md5sum": "4c78f2ee4c3221f83ddccf008bcaaaa9", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "3e7c7b1f-ff98-482d-b73b-a1c40bea9750", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "787134f0-d02b-4377-85d6-e4bf4b1d09a6_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "3d8812be-88bb-40b1-a799-401226f1d467", + "created_datetime": "2021-06-16T12:27:06.877885-05:00" + }, + "platform": "Illumina", + "file_size": 50599, + "md5sum": "e4ba2d96f06e2d43b3947c4c2d83c01b", + "file_id": "c511af7d-cdef-49b0-83f2-4353992db149", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "95c2a5bf-a27b-4c83-8791-160e03_D7", + "entity_type": "aliquot", + "case_id": "dc8e3901-b845-4419-8f76-d31750eacf60", + "entity_id": "24481767-7743-4dd0-ae53-80bb023d7df9" + } + ], + "file_name": "1a87d0c7-667d-42b2-ab04-775adeb5c0ec.mirnaseq.mirnas.quantification.txt", + "submitter_id": "31a375fa-52e5-434c-8e36-8a088c06a195", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9622777272321699, + "total_reads": 5581318, + "access": "controlled", + "file_name": "24481767-7743-4dd0-ae53-80bb023d7df9_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.009558304, + "proportion_reads_duplicated": 0, + "submitter_id": "8ae76275-3672-4308-9ebe-370b0c06b98a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 92259575, + "created_datetime": "2021-06-16T12:11:51.948047-05:00", + "average_base_quality": 35, + "md5sum": "ef21fc8b233e92f3e1543210f11ae85c", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "a6bd00da-2143-4844-ac2e-7b8b01aafacf", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 33, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "1a87d0c7-667d-42b2-ab04-775adeb5c0ec_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "817b50d8-c33a-49bb-9036-64de02847347", + "created_datetime": "2021-06-16T12:27:41.522052-05:00" + }, + "platform": "Illumina", + "file_size": 50445, + "md5sum": "07676426ebc208300c154ccb117d0dc7", + "file_id": "3a693974-f6f0-4d2f-95d2-40ae42cc0cef", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "1772e913-f62e-446a-8cf3-720348_D7", + "entity_type": "aliquot", + "case_id": "e7e2597f-c6a3-4bdc-9daa-d17fc8ab9f76", + "entity_id": "191f0069-d1c2-4c5f-a9b2-a7834b95bec6" + } + ], + "file_name": "2b584c7c-face-4833-a93c-f2c5ad179328.mirnaseq.mirnas.quantification.txt", + "submitter_id": "a7eb7dc9-7401-451d-9430-42d98b7ac554", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9903259895446799, + "total_reads": 3064086, + "access": "controlled", + "file_name": "191f0069-d1c2-4c5f-a9b2-a7834b95bec6_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.01119427, + "proportion_reads_duplicated": 0, + "submitter_id": "9e676c38-5f17-4692-b192-6a1ae7bcde89", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 36406136, + "created_datetime": "2021-06-16T12:12:18.154686-05:00", + "average_base_quality": 35, + "md5sum": "cfcd765a9a96c188d9dd4bf7c9602028", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "5f911f4d-e5e1-461d-96b8-5d7db479bad6", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "2b584c7c-face-4833-a93c-f2c5ad179328_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2a13299e-7873-4bf4-b399-d53a9353b3af", + "created_datetime": "2021-06-16T12:26:47.170237-05:00" + }, + "platform": "Illumina", + "file_size": 50425, + "md5sum": "7648e0f2e9a5536ff832790220a92289", + "file_id": "9962e41a-8e0c-4ba4-b5f9-067481856d99", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "1de8d3d8-fc0e-4be0-8aa7-127c7b_D7_1", + "entity_type": "aliquot", + "case_id": "de970d08-9907-464c-8175-47f6d2be62e0", + "entity_id": "57a667f4-a897-4aa5-9e41-ec94cd78416c" + } + ], + "file_name": "00b91f1b-5db7-47d3-94f6-d463886edf66.mirnaseq.mirnas.quantification.txt", + "submitter_id": "64be8069-38c3-4af4-9b20-6c09e2e6b76a", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9974946487950315, + "total_reads": 8720933, + "access": "controlled", + "file_name": "57a667f4-a897-4aa5-9e41-ec94cd78416c_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.00657056, + "proportion_reads_duplicated": 0, + "submitter_id": "43c1bb28-9d07-4c2b-a54d-7ec8748792e3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 86051883, + "created_datetime": "2021-06-16T12:08:15.118280-05:00", + "average_base_quality": 34, + "md5sum": "26458e279d23a606aff4d4373ea6653f", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "d43a8100-26b6-4205-8412-d7a835041f77", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "00b91f1b-5db7-47d3-94f6-d463886edf66_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b9a3cd71-fa79-4a38-a74f-2ee54a43539e", + "created_datetime": "2021-06-16T12:26:48.591273-05:00" + }, + "platform": "Illumina", + "file_size": 50586, + "md5sum": "9a1bf2220cf9f67c208a19a2ac2e60a9", + "file_id": "de89e7f4-dbaa-4e23-a5ea-0e0732e211b2", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "35a345a4-e954-4c81-ae3f-7797cd_D7", + "entity_type": "aliquot", + "case_id": "df907ef8-3c26-4c50-8a87-ee8290296117", + "entity_id": "ee595dd8-3993-4632-b2f7-d46ff303a5a9" + } + ], + "file_name": "f39b5490-4d8c-4695-b31d-bc67cdcf7756.mirnaseq.mirnas.quantification.txt", + "submitter_id": "46c6eecb-0db5-4910-99b9-6ee2d6e5a0ed", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9911822940026012, + "total_reads": 6947612, + "access": "controlled", + "file_name": "ee595dd8-3993-4632-b2f7-d46ff303a5a9_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.01115948, + "proportion_reads_duplicated": 0, + "submitter_id": "79f99ff1-b27b-4d92-95d4-5161668027e1", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 73835274, + "created_datetime": "2021-06-16T12:08:50.480737-05:00", + "average_base_quality": 34, + "md5sum": "7f51024124f7f77da5c449948bcd6110", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "159f7f97-2465-4ac9-a9d1-b09c4f147b5a", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "f39b5490-4d8c-4695-b31d-bc67cdcf7756_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "29e11414-9082-4a84-83be-6800c34c0468", + "created_datetime": "2021-06-16T12:26:29.074167-05:00" + }, + "platform": "Illumina", + "file_size": 50623, + "md5sum": "a98a935297d5512b52137149cc338863", + "file_id": "189c7f19-f3a0-4639-9600-d2007c83b593", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "62f5840e-6cd7-4200-b651-645e53_D7_1", + "entity_type": "aliquot", + "case_id": "faf8cebd-72ad-4da2-b55e-73cddd8dafff", + "entity_id": "427f36d5-0947-4b3e-86c7-84e8f365f244" + } + ], + "file_name": "35f668d1-8efd-4d4d-99f7-6d48e11782cd.mirnaseq.mirnas.quantification.txt", + "submitter_id": "2f70fb3f-995b-48b5-a9a2-11070d597f38", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.996379575965093, + "total_reads": 5046094, + "access": "controlled", + "file_name": "427f36d5-0947-4b3e-86c7-84e8f365f244_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.006516893, + "proportion_reads_duplicated": 0, + "submitter_id": "12a81e2a-930c-468f-b5e1-169cd9044420", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 60776851, + "created_datetime": "2021-06-16T12:11:22.609189-05:00", + "average_base_quality": 34, + "md5sum": "db706db436f19d534bed874902e528c5", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "d414ca5e-a141-4d3a-927c-fa4e0a6be490", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "35f668d1-8efd-4d4d-99f7-6d48e11782cd_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e8f089a4-04e4-4508-9aed-70946ed7870d", + "created_datetime": "2021-06-16T12:25:41.795412-05:00" + }, + "platform": "Illumina", + "file_size": 50495, + "md5sum": "e01ee4e186130a0b8fae0fe07a6826bb", + "file_id": "be7fb10f-cd4d-49f0-8c7d-2ae0288e79db", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "2563cb02-d58a-4286-8634-7502cd_D7", + "entity_type": "aliquot", + "case_id": "fb3f8ed1-cc6f-406b-8b3d-a5eeff0b4196", + "entity_id": "af3569f7-a1d1-4fd9-9e97-a799dddd9360" + } + ], + "file_name": "0d27e432-da00-4ee3-8246-e4acc95c6369.mirnaseq.mirnas.quantification.txt", + "submitter_id": "3f9cad8d-2309-4dd7-9408-9e014e377553", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9958619544038287, + "total_reads": 6682140, + "access": "controlled", + "file_name": "af3569f7-a1d1-4fd9-9e97-a799dddd9360_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.008090341, + "proportion_reads_duplicated": 0, + "submitter_id": "09f54eb7-b59d-42c2-aa95-105569f21288", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 71826496, + "created_datetime": "2021-06-16T12:10:31.869024-05:00", + "average_base_quality": 34, + "md5sum": "07c928a5440013c7a2cc74d0542b3d40", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "001dc847-33da-4e01-b974-5ddb34448b97", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "0d27e432-da00-4ee3-8246-e4acc95c6369_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2befe951-d4aa-4f7f-83e3-398e095c1ee4", + "created_datetime": "2021-06-16T12:32:54.435312-05:00" + }, + "platform": "Illumina", + "file_size": 50543, + "md5sum": "d92e71faab5b837910af9ad5a1333877", + "file_id": "9495e67b-8cba-4764-8499-d38a07204163", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "2563cb02-d58a-4286-8634-7502cd_D7", + "entity_type": "aliquot", + "case_id": "fb3f8ed1-cc6f-406b-8b3d-a5eeff0b4196", + "entity_id": "af3569f7-a1d1-4fd9-9e97-a799dddd9360" + } + ], + "file_name": "0d27e432-da00-4ee3-8246-e4acc95c6369.mirnaseq.isoforms.quantification.txt", + "submitter_id": "19bcb877-e5b6-46e3-84e9-71348fbb7fcb", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9958619544038287, + "total_reads": 6682140, + "access": "controlled", + "file_name": "af3569f7-a1d1-4fd9-9e97-a799dddd9360_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.008090341, + "proportion_reads_duplicated": 0, + "submitter_id": "09f54eb7-b59d-42c2-aa95-105569f21288", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 71826496, + "created_datetime": "2021-06-16T12:10:31.869024-05:00", + "average_base_quality": 34, + "md5sum": "07c928a5440013c7a2cc74d0542b3d40", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "001dc847-33da-4e01-b974-5ddb34448b97", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "0d27e432-da00-4ee3-8246-e4acc95c6369_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2befe951-d4aa-4f7f-83e3-398e095c1ee4", + "created_datetime": "2021-06-16T12:32:54.435312-05:00" + }, + "platform": "Illumina", + "file_size": 479735, + "md5sum": "afff9b8e67341397faaa33f82989aa7c", + "file_id": "15fd1346-aeab-490a-a74e-4ec792f5b6cb", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "d109a3c0-350e-47f5-bda0-61899c_D7", + "entity_type": "aliquot", + "case_id": "f502e00b-e025-481b-9593-a6f7b363b63b", + "entity_id": "3fb570bb-7bf0-4a74-a705-73adce405953" + } + ], + "file_name": "c6964718-cb93-48e2-ba95-a6d301d1cad7.mirnaseq.mirnas.quantification.txt", + "submitter_id": "6d696a66-4085-4971-a0d4-45fa9ecaf5f3", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9970730792117807, + "total_reads": 7046313, + "access": "controlled", + "file_name": "3fb570bb-7bf0-4a74-a705-73adce405953_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007410926, + "proportion_reads_duplicated": 0, + "submitter_id": "8c1a27c3-45e6-4c67-a466-2c4ed131dd74", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 70424668, + "created_datetime": "2021-06-16T12:08:55.279666-05:00", + "average_base_quality": 34, + "md5sum": "3be4f6efb914c3a71f28282d5d8a9acc", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "d9be6567-f474-432a-8319-a3a93c5a4d15", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "c6964718-cb93-48e2-ba95-a6d301d1cad7_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1fedcf2f-14c3-48a8-b22f-e80f28ba64a1", + "created_datetime": "2021-06-16T12:31:24.451463-05:00" + }, + "platform": "Illumina", + "file_size": 50607, + "md5sum": "a80dc0f9aebb0d56b71110dfaf8f540d", + "file_id": "b9724fa9-156f-46f4-968a-842b30d7fcd0", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "d109a3c0-350e-47f5-bda0-61899c_D7", + "entity_type": "aliquot", + "case_id": "f502e00b-e025-481b-9593-a6f7b363b63b", + "entity_id": "3fb570bb-7bf0-4a74-a705-73adce405953" + } + ], + "file_name": "c6964718-cb93-48e2-ba95-a6d301d1cad7.mirnaseq.isoforms.quantification.txt", + "submitter_id": "e82fe40d-5a5f-45f9-9b38-aa013a022532", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9970730792117807, + "total_reads": 7046313, + "access": "controlled", + "file_name": "3fb570bb-7bf0-4a74-a705-73adce405953_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007410926, + "proportion_reads_duplicated": 0, + "submitter_id": "8c1a27c3-45e6-4c67-a466-2c4ed131dd74", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 70424668, + "created_datetime": "2021-06-16T12:08:55.279666-05:00", + "average_base_quality": 34, + "md5sum": "3be4f6efb914c3a71f28282d5d8a9acc", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "d9be6567-f474-432a-8319-a3a93c5a4d15", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 21, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "c6964718-cb93-48e2-ba95-a6d301d1cad7_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1fedcf2f-14c3-48a8-b22f-e80f28ba64a1", + "created_datetime": "2021-06-16T12:31:24.451463-05:00" + }, + "platform": "Illumina", + "file_size": 517283, + "md5sum": "00deb4b8248b9e573ef6f07aed72431f", + "file_id": "bfd82371-d876-45c5-b3e1-debe5e0d821e", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "e67153d3-61af-49d6-9402-599b39_D7", + "entity_type": "aliquot", + "case_id": "fc1c474a-93d1-4faf-9180-cb4136043ef9", + "entity_id": "52b1158a-0e4f-4e90-b217-2393ec1e23bd" + } + ], + "file_name": "c5b40d79-4bd0-47f1-b91e-269ef363f39a.mirnaseq.mirnas.quantification.txt", + "submitter_id": "500610dc-ba59-4587-aa65-49645b96dd1d", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.99841272299407, + "total_reads": 7684229, + "access": "controlled", + "file_name": "52b1158a-0e4f-4e90-b217-2393ec1e23bd_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005428153, + "proportion_reads_duplicated": 0, + "submitter_id": "e4ea33d8-fb7b-4086-b86a-8f33343a4200", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 78320361, + "created_datetime": "2021-06-16T12:14:13.532880-05:00", + "average_base_quality": 34, + "md5sum": "3c2da5083a01eb2bf533654a2362a122", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "afdd5c3d-9dd5-4c15-843f-ed0ab44d0154", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "c5b40d79-4bd0-47f1-b91e-269ef363f39a_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "83ad79cd-ae4d-43c8-8efd-5983ce082944", + "created_datetime": "2021-06-16T12:32:07.464096-05:00" + }, + "platform": "Illumina", + "file_size": 50613, + "md5sum": "f56bc641bbfe5e9f69434850879d64a8", + "file_id": "64fd2320-1fc3-4c66-9ca4-aa7624f00682", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "558333b0-ea23-4303-9e3c-4932b1_D7", + "entity_type": "aliquot", + "case_id": "f76d41a1-6a21-4641-a5b3-3e008f009d80", + "entity_id": "7377259e-f573-4960-b65a-2b56fed00d8a" + } + ], + "file_name": "9cc3eb7c-4c11-430f-a07c-c87ceacef246.mirnaseq.isoforms.quantification.txt", + "submitter_id": "8057707b-5c42-404f-a0e8-17e0e0dbe3f6", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9905475277822515, + "total_reads": 7761250, + "access": "controlled", + "file_name": "7377259e-f573-4960-b65a-2b56fed00d8a_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.009949421, + "proportion_reads_duplicated": 0, + "submitter_id": "3e1a5062-bf96-4df7-a871-0fb6675810f8", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 83410992, + "created_datetime": "2021-06-16T12:13:50.861425-05:00", + "average_base_quality": 34, + "md5sum": "56cdfdf0fd9b881e556ea32f1597e6f5", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "ae07466d-45f1-4738-9512-3195eea059c1", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "9cc3eb7c-4c11-430f-a07c-c87ceacef246_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "58d41ee3-c1fb-4dcb-bf06-a981442a10a9", + "created_datetime": "2021-06-16T12:29:24.990725-05:00" + }, + "platform": "Illumina", + "file_size": 524075, + "md5sum": "f670b6862185c5f43d9ad794a27abbd2", + "file_id": "3c78781a-b8c5-47dd-812e-ee904e87986b", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "558333b0-ea23-4303-9e3c-4932b1_D7", + "entity_type": "aliquot", + "case_id": "f76d41a1-6a21-4641-a5b3-3e008f009d80", + "entity_id": "7377259e-f573-4960-b65a-2b56fed00d8a" + } + ], + "file_name": "9cc3eb7c-4c11-430f-a07c-c87ceacef246.mirnaseq.mirnas.quantification.txt", + "submitter_id": "00c2bcc5-fcb8-4e42-a3b7-1fe6c3053284", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "e5893336a002bd4dd3b716844bddb28109955adc", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9905475277822515, + "total_reads": 7761250, + "access": "controlled", + "file_name": "7377259e-f573-4960-b65a-2b56fed00d8a_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.009949421, + "proportion_reads_duplicated": 0, + "submitter_id": "3e1a5062-bf96-4df7-a871-0fb6675810f8", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 83410992, + "created_datetime": "2021-06-16T12:13:50.861425-05:00", + "average_base_quality": 34, + "md5sum": "56cdfdf0fd9b881e556ea32f1597e6f5", + "updated_datetime": "2023-07-12T10:37:37.199309-05:00", + "file_id": "ae07466d-45f1-4738-9512-3195eea059c1", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2021-07-14T15:15:21.164559-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-mirnaseq-cwl/blob/e5893336a002bd4dd3b716844bddb28109955adc/workflows/mirnaseq_nograph/etl.cwl", + "submitter_id": "9cc3eb7c-4c11-430f-a07c-c87ceacef246_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "58d41ee3-c1fb-4dcb-bf06-a981442a10a9", + "created_datetime": "2021-06-16T12:29:24.990725-05:00" + }, + "platform": "Illumina", + "file_size": 50632, + "md5sum": "565710504e2ef6ef67dadf0e5c806e2c", + "file_id": "6a77347e-df31-4d21-ba3b-1d9a27d54c9f", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-2391-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "f5033d52-ec36-4e67-88d8-b6d898b81b2f", + "entity_id": "0ee0c708-77c4-4ac3-be13-0d08e6444003" + } + ], + "file_name": "ebfeed3f-5019-43c2-a4e0-9d7e7ec7abbf.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_218_MirnaExpression1e25fa07-6033-4fa1-af71-2d7b93241685_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-2391-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_218_AlignedReads1e25fa07-6033-4fa1-af71-2d7b93241685", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 192617809, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "cd24a3aa721b972d6f98634f16b60107", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4e3e5422-3dd4-40ab-8f6d-7dae836a9fff", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_218_MirnaExpressionWorkflowbb998bc7-ce87-4dbb-b05c-898275e09730_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5f2c2a2b-8081-44ed-9ee4-70e1d342cfdb", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50410, + "md5sum": "9294772e96d8b71b271c221666f06584", + "file_id": "169fe6b4-59bf-4bb9-9abb-8f26ffdaadb7", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-2051-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "02594e5e-8751-47c1-9245-90c66984b665", + "entity_id": "6bc296b8-ac74-4ff9-872d-5f7e4a3d011a" + } + ], + "file_name": "7bf48040-2885-469d-9671-58c0a08cf4b3.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_152_MirnaExpressiond5e5e817-7b73-4a86-a48e-a0cd5288efde_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-2051-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_152_AlignedReadsd5e5e817-7b73-4a86-a48e-a0cd5288efde", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 278893631, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "dde7ec47e5c971e6c1749bb343d39bec", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "0ce1a145-d49b-480e-a798-10872c2c5d3b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_152_MirnaExpressionWorkflow85c9c969-61c3-41ab-b5a8-dda401fc8eae_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1c289f43-5fe4-4f71-a9e2-bfcd13a7b4b9", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50457, + "md5sum": "27979ea58707b6f9b6620d2b6e672b40", + "file_id": "ababbc18-dcca-4c84-895f-95f2c4d4e08d", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-2391-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "f5033d52-ec36-4e67-88d8-b6d898b81b2f", + "entity_id": "0ee0c708-77c4-4ac3-be13-0d08e6444003" + } + ], + "file_name": "ebfeed3f-5019-43c2-a4e0-9d7e7ec7abbf.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_218_MirnaExpression1e25fa07-6033-4fa1-af71-2d7b93241685_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-2391-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_218_AlignedReads1e25fa07-6033-4fa1-af71-2d7b93241685", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 192617809, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "cd24a3aa721b972d6f98634f16b60107", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4e3e5422-3dd4-40ab-8f6d-7dae836a9fff", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_218_MirnaExpressionWorkflowbb998bc7-ce87-4dbb-b05c-898275e09730_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5f2c2a2b-8081-44ed-9ee4-70e1d342cfdb", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 436300, + "md5sum": "99ccebe694d5d2b20b29e24d6290ba03", + "file_id": "2a869aae-9250-437b-add8-9dc53aadb590", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1312-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "66face4a-f35c-4364-90e5-8f28e6372606", + "entity_id": "0d7561dc-7069-41df-ba49-8fcd4df52efb" + } + ], + "file_name": "361d69e3-9759-4729-97d5-4c4d8a6f2496.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_262_MirnaExpression3a7cbc54-7607-425f-af5c-bb1bb8f2ed4f_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1312-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_262_AlignedReads3a7cbc54-7607-425f-af5c-bb1bb8f2ed4f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 152737022, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "f79898d16c708dc4eab98f016b498cb1", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "cd70d5f0-7891-4d15-b72b-f1f58af9b261", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_262_MirnaExpressionWorkflow546641f3-465b-4983-b329-f49620dee3d6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "70fd620f-d81d-4f89-8ca7-bd3ae9182360", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50172, + "md5sum": "22ed8e080cb35051a4b9127fb93e999e", + "file_id": "587a6a5f-4b1a-482f-bc74-1a60d9e36834", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1809-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "bc3e0b74-ea09-46a5-9f61-16bd15ffd883", + "entity_id": "ac764277-4d48-489a-8625-f27541b11258" + } + ], + "file_name": "cdcb27f9-188e-4070-831d-0c98627c7d54.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_445_MirnaExpression7f358154-51a9-4066-87ff-cc6bc8b17a4e_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1809-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_445_AlignedReads7f358154-51a9-4066-87ff-cc6bc8b17a4e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 184284592, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "11d03e320abc3b1e6cf0cbbe0e4839ad", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "216d8e48-00c5-423e-a32f-d4c59432705a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_445_MirnaExpressionWorkflowc3d446ac-e465-4147-b4cc-293ceedff73b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "4b78e199-5bcd-42d4-a5a5-a81fa9c24b01", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50439, + "md5sum": "2ef4d71f6b8b7eecc71c0a4d0a51f4e5", + "file_id": "6c86a9a5-9809-42a4-9a2b-8e4c110bbbbb", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2026-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "2517ca7a-6057-4c19-b7e1-f6d078e9881a", + "entity_id": "ce0fd762-e18f-4cca-a4c4-c064dca62e60" + } + ], + "file_name": "94d6fac8-c2da-42de-9a11-bf39bcb41f6c.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_447_MirnaExpressione01642f6-5d00-49d0-83b9-6f35db7551b0_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2026-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_447_AlignedReadse01642f6-5d00-49d0-83b9-6f35db7551b0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 197663118, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "8019abb90494a9e43368c33642df841b", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "3a332258-de12-4efb-ba9e-5f3eefdf893f", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_447_MirnaExpressionWorkflow4762d4ed-b84b-427e-8bae-5f6071a5fec8_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "4756c572-7edb-49dd-a5b1-906816a37523", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50244, + "md5sum": "11b8925b7cbc48311c7b3c9a8220e40c", + "file_id": "8260f978-dded-4381-8013-d371b0ad1eb3", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1844-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "a36a4440-15ef-4837-904b-380a964d16f1", + "entity_id": "53a60e9f-3541-4fe7-a7ea-87ee888c0446" + } + ], + "file_name": "752e5e18-ec16-4799-bdf1-a0d049192581.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_418_MirnaExpression7a2050b0-acf3-4b56-8c21-985e514e3261_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1844-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_418_AlignedReads7a2050b0-acf3-4b56-8c21-985e514e3261", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 270718735, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "bd8db999940194d162b250eec2e67b3d", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "015d13c0-44cb-4dcc-80ce-f157c8a05f96", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_418_MirnaExpressionWorkflow27dbced4-d805-492b-be88-9cbba0c75ab2_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8ae8acc5-e35f-4fe4-9dd3-68ebb718a676", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50467, + "md5sum": "133498ebb80ae58f91f92e621b0e12b4", + "file_id": "1301d6e7-8c22-4487-a6f4-0fdb0a436ef9", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-2057-01A-02R-A96T-41", + "entity_type": "aliquot", + "case_id": "56c4bd48-ab15-4b49-ae2f-968653052b50", + "entity_id": "4e202877-82e1-448d-91da-463005ea5156" + } + ], + "file_name": "349fde78-3468-4f44-9b7c-db70c772d6fb.mirnaseq.mirnas.quantification.txt", + "submitter_id": "f3fc1c3b-9007-49d2-9ada-3e5afefa2709", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.992311187351175, + "total_reads": 23103047, + "access": "controlled", + "file_name": "4e202877-82e1-448d-91da-463005ea5156_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004345339, + "proportion_reads_duplicated": 0, + "submitter_id": "3a3373ae-53c9-48a4-b09e-a59c47870a48", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 355479177, + "created_datetime": "2024-09-20T11:13:48.902926-05:00", + "average_base_quality": 36, + "md5sum": "28649f3f39122f414b57594b2f1cf5d2", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "7f75457a-3f3c-47ae-b08c-a2ef3ae140d0", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "349fde78-3468-4f44-9b7c-db70c772d6fb_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1cb80f16-5d4c-477c-b291-a9865f8c0504", + "created_datetime": "2024-09-20T11:18:04.556845-05:00" + }, + "file_size": 50892, + "md5sum": "56f0994697c2f6a3662a885ac9e02dde", + "file_id": "0c34e09b-6c66-4b6c-a1ee-fba9833b491c", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0894-01B-01R-1565-13", + "entity_type": "aliquot", + "case_id": "e8372916-7ac7-4535-ae97-0248208224f5", + "entity_id": "3aff2c90-8771-48a1-bdcb-2b3c259dd2fd" + } + ], + "file_name": "236d72f6-5db0-436d-99f4-e9af2a633317.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_436_MirnaExpression979f1575-875c-4574-9466-fdeb9a99463e_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0894-01B-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_436_AlignedReads979f1575-875c-4574-9466-fdeb9a99463e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 219325225, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "41824eaa93fe929b1e3f0bd241efa5a1", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "d96d552b-275b-4250-85db-0557208ca7ee", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_436_MirnaExpressionWorkflowb63cfc41-3c7e-46bd-b2fa-a34b69e118d2_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b463c364-3280-485f-9e10-4732fac1ab0d", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 444321, + "md5sum": "cafda8c426df31431103fa2514f4ed37", + "file_id": "648af1ff-5e30-4526-81dc-5bcaae684f8d", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1907-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "7ab3765f-910a-41c9-86cc-08534d2a4e4b", + "entity_id": "6d9a1fe4-7131-487c-a7ff-0cf8a53919ed" + } + ], + "file_name": "97f89216-7155-4125-8743-9dfa065f18a9.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_43_MirnaExpression5a187cd9-04b2-4841-bacb-85230061713c_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1907-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_43_AlignedReads5a187cd9-04b2-4841-bacb-85230061713c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 230039960, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "f97e443d93b1b90c34df8019d10a8d1b", + "updated_datetime": "2023-07-12T10:33:27.414833-05:00", + "file_id": "3d522325-863c-429c-8252-4e3eac6700fb", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_43_MirnaExpressionWorkflow27e76f44-3da5-4a73-86e5-62cd39965e67_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b420bfe6-82e6-46f8-89a3-02bc7d663d2d", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 393785, + "md5sum": "c39b9b8491c876ab0c3012e2a5ae7a0e", + "file_id": "5f0c376f-b16a-4b43-b85d-d65d5f72d73a", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1530-01A-02R-1569-13", + "entity_type": "aliquot", + "case_id": "42b3dfa3-152f-4ab7-ac9f-988c7f473bea", + "entity_id": "b3ad87d3-1240-4fc9-8e29-14a9a5186319" + } + ], + "file_name": "ea542578-b842-4114-bc06-c4b52a52c53f.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_334_MirnaExpression02a7d609-62cd-4e5f-b2df-04df653108b0_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "a5da7b29-8821-5178-a3f5-4f7c5716ed63", + "entity_submitter_id": "TCGA-04-1530-01A-02R-1569-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29697", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "b3ad87d3-1240-4fc9-8e29-14a9a5186319", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "ab9af6b8-ce6d-5843-b620-aed63ee35cf0", + "entity_submitter_id": "TCGA-04-1530-01A-02R-1569-13", + "notes": "RNA-seq:HIGH rRNA CONTENT;LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8853", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "b3ad87d3-1240-4fc9-8e29-14a9a5186319", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1530-01A-02R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_334_AlignedReads02a7d609-62cd-4e5f-b2df-04df653108b0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 149872400, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "291fa55a1e2060eb17046f285b2f0a50", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a0c57983-291f-41ac-b7a5-33d634cccc98", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_334_MirnaExpressionWorkflowb8791113-6eac-4d85-8fa0-e916f0724525_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2fdad501-9495-4053-91f0-10f7b9972220", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 256870, + "md5sum": "7facf84f077d6019ea5d08e01e0ca96b", + "file_id": "06053d8d-30a0-46af-a839-98253b289060", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1021-01B-01R-1564-13", + "entity_type": "aliquot", + "case_id": "b923ac70-70ea-4a82-8466-46350c5803bf", + "entity_id": "9819f772-6987-47d5-8ab4-235ac2b993e2" + } + ], + "file_name": "31c47104-601c-4210-af14-ba1a8cbb339f.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_191_MirnaExpression35350344-e526-49e4-b573-9ec221b15c3f_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "e64e96f8-35da-5af1-ba0f-f26f151b749c", + "entity_submitter_id": "TCGA-23-1021-01B-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8749", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "9819f772-6987-47d5-8ab4-235ac2b993e2", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "eaa82aef-9590-5a6f-84bd-16a526cae935", + "entity_submitter_id": "TCGA-23-1021-01B-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29763", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "9819f772-6987-47d5-8ab4-235ac2b993e2", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1021-01B-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_191_AlignedReads35350344-e526-49e4-b573-9ec221b15c3f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 204380515, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "69a88e55999b2f14542220c5612bcd57", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "758c2559-230d-4e3e-bc98-64aa0804da72", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_191_MirnaExpressionWorkflow2f6051da-e967-45de-a40b-634043b82175_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "54c4ff59-515d-43d0-98a1-ca4930d8b039", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50301, + "md5sum": "3444e80b3031c1d47c58545f34fcbdcd", + "file_id": "c538acad-2c04-4842-bdd5-1a32225485d1", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1425-01A-02R-1566-13", + "entity_type": "aliquot", + "case_id": "b120b701-c194-43d7-a491-3206fac38ec1", + "entity_id": "f580e84b-b405-43dc-9dae-4588cedf435f" + } + ], + "file_name": "ce5e1133-e1d1-4724-ad06-b034eaec4694.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_31_MirnaExpressionca37532d-3b43-4b3d-9802-f6d66c53c37d_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1425-01A-02R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_31_AlignedReadsca37532d-3b43-4b3d-9802-f6d66c53c37d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 104690023, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "e0a14d6b00cb6aade1567883783b106b", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "52250260-cc7b-40d5-9101-d024c8e52074", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_31_MirnaExpressionWorkflow10332056-6238-4868-bcba-0e5106abbe5e_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1d357cb6-4e52-4bc2-acdd-61e390d35bc5", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50123, + "md5sum": "7545619a72a9bb328f9319cf46f2f1d5", + "file_id": "0fecc1cc-5400-45ef-a5e2-4f68f138d8cf", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1315-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "635f5335-b008-428e-b005-615776a6643f", + "entity_id": "b6908d33-80c8-4fc0-bd1d-829ec3161527" + } + ], + "file_name": "e28327dd-1ac7-45df-b812-841bdc8d0216.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_253_MirnaExpressionc9f78af4-eb11-4886-a54d-28c2c1dd4765_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1315-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_253_AlignedReadsc9f78af4-eb11-4886-a54d-28c2c1dd4765", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 202634271, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "ab55b2e9cb48ac94f1fc46e97b78980c", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "f1cfd1f2-aeca-40fc-a579-2cd04836c748", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_253_MirnaExpressionWorkflow18e21a5d-5399-43a0-9161-e1c3526c5281_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "94576692-787b-422c-a335-d57d7868623b", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 418857, + "md5sum": "a51502417a496c7f58c3d7f981fd898e", + "file_id": "743b876e-2c59-42c6-919e-8932b5d4fecc", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-36-1575-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "6ea9877f-eb8d-4ee9-af4c-32a78474d9a6", + "entity_id": "a28ef775-c78b-416f-afeb-89ba265440f0" + } + ], + "file_name": "016a9518-4721-410d-ac2f-2a17e9f0b4a9.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_471_MirnaExpressiond81c3721-34f4-4740-a517-4e265c17e619_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-36-1575-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_471_AlignedReadsd81c3721-34f4-4740-a517-4e265c17e619", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 216123140, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "c18911a6b72d414f941f45cc302351c1", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "74f8410a-8b3c-4eff-b61f-486978ede573", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_471_MirnaExpressionWorkflowecdf377b-650e-4134-bce1-dd7c1c83bf33_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "924baadc-4ebb-40f3-b524-18b1e10e5513", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 406344, + "md5sum": "86a999d9d5e9c3a8073db7fedb5d76a2", + "file_id": "eef85b85-6bf1-4d54-b333-32f4864f3414", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1762-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "5495b18a-10ec-427b-83b8-03ef4b587b13", + "entity_id": "c3559ae3-3355-4f38-9c07-e557e435fcbd" + } + ], + "file_name": "f2526cd8-37c9-4d76-9bdc-37922ed52392.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_457_MirnaExpression7b1392d5-b23d-46fe-a51d-d6af841612e2_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1762-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_457_AlignedReads7b1392d5-b23d-46fe-a51d-d6af841612e2", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 216455114, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "2b98fc1e7968415aad7052a53d378ad9", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "1bde72d2-170a-4fff-9da8-db26cdc93dfa", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_457_MirnaExpressionWorkflow5c517e05-2445-415f-ad9d-5cf37767a745_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2dd6c24f-41f0-4c2d-9827-b9f0347846d5", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50472, + "md5sum": "040ef22c152cd10719225ea22fd294f8", + "file_id": "1582fe39-77d4-4513-8c38-c6a03663b6db", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1356-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "8652ddee-98f4-4584-b450-e6f2f5c9d7ec", + "entity_id": "dc4a5c2f-8b96-4d3b-9553-a02510ba445f" + } + ], + "file_name": "a3ec233d-445d-4343-8dac-5e6cd05150f9.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_46_MirnaExpression86f24999-ddec-4f60-8f15-86c6e1afa459_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "28aec078-76cc-5a53-af83-085deca0785c", + "entity_submitter_id": "TCGA-04-1356-01A-01R-1569-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29694", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "dc4a5c2f-8b96-4d3b-9553-a02510ba445f", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "d8ca77b7-9d67-555e-8443-60b38b312062", + "entity_submitter_id": "TCGA-04-1356-01A-01R-1569-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8822", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "dc4a5c2f-8b96-4d3b-9553-a02510ba445f", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1356-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_46_AlignedReads86f24999-ddec-4f60-8f15-86c6e1afa459", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 249228719, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "0bb548b01e03a664b26ce23700588f51", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "83091cd3-6afe-4f1c-a57c-1deed6bf57d5", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_46_MirnaExpressionWorkflowc1267e98-7b0f-467d-a90d-2bcb220cf5b6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1c5fa909-3f56-46ee-a22d-d5a19172994e", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 457138, + "md5sum": "a3ea9abba929deddb5e8269fa4e12cb0", + "file_id": "a74d82b8-d012-4917-8b78-08d1cc70abb0", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1500-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "a285786d-120e-4c88-b48b-8111f4413988", + "entity_id": "6f6b6c6d-992a-4f19-b286-fadbf8bfbb47" + } + ], + "file_name": "16c0520b-4f7b-4391-b128-cb23d2c125a8.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_250_MirnaExpressionac0ff84c-6e3a-4157-ac7f-19cd9366e3bb_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1500-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_250_AlignedReadsac0ff84c-6e3a-4157-ac7f-19cd9366e3bb", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 228436359, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "a7744c3696fcfb334d9aa08210b1d2bb", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "7ce1eeee-86e0-4c30-a52e-a54dadfbded5", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_250_MirnaExpressionWorkflowb80444d6-6f25-4274-975c-27e499393ec4_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2deebe3f-cab3-4864-b299-01e8c15870e7", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50310, + "md5sum": "bfc5339ba9c95fecc8660f4ee2ef0061", + "file_id": "7ff14709-523f-4911-a539-ca7e524d97f0", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1500-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "a285786d-120e-4c88-b48b-8111f4413988", + "entity_id": "b8e1123f-1248-4122-a7c6-da6f3d3772ce" + } + ], + "file_name": "dbbf6bfa-3730-4771-9984-9dece56aef63.mirnaseq.isoforms.quantification.txt", + "submitter_id": "f271e822-3d81-44a2-8ac5-18449ba012e8", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9910061974629996, + "total_reads": 22897434, + "access": "controlled", + "file_name": "b8e1123f-1248-4122-a7c6-da6f3d3772ce_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004880804, + "proportion_reads_duplicated": 0, + "submitter_id": "562db230-7243-4a23-b627-ff4d373217aa", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 377538528, + "created_datetime": "2024-09-20T11:13:44.185109-05:00", + "average_base_quality": 36, + "md5sum": "565defec78a661cfe36076425a884b1b", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "2236c860-0f08-4120-a611-ed4b15affbc7", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 33, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "dbbf6bfa-3730-4771-9984-9dece56aef63_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "309dfb00-195d-4fa0-bdd3-41d3b89e9484", + "created_datetime": "2024-09-20T11:18:19.730498-05:00" + }, + "file_size": 550959, + "md5sum": "8156196d887722e1835561f5f483907f", + "file_id": "8c1bf7f3-99b6-4f99-b0de-4090d05b619d", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1500-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "a285786d-120e-4c88-b48b-8111f4413988", + "entity_id": "b8e1123f-1248-4122-a7c6-da6f3d3772ce" + } + ], + "file_name": "dbbf6bfa-3730-4771-9984-9dece56aef63.mirnaseq.mirnas.quantification.txt", + "submitter_id": "b9387022-1b8f-4a9b-a61e-cb421a75dd24", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9910061974629996, + "total_reads": 22897434, + "access": "controlled", + "file_name": "b8e1123f-1248-4122-a7c6-da6f3d3772ce_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004880804, + "proportion_reads_duplicated": 0, + "submitter_id": "562db230-7243-4a23-b627-ff4d373217aa", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 377538528, + "created_datetime": "2024-09-20T11:13:44.185109-05:00", + "average_base_quality": 36, + "md5sum": "565defec78a661cfe36076425a884b1b", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "2236c860-0f08-4120-a611-ed4b15affbc7", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 33, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "dbbf6bfa-3730-4771-9984-9dece56aef63_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "309dfb00-195d-4fa0-bdd3-41d3b89e9484", + "created_datetime": "2024-09-20T11:18:19.730498-05:00" + }, + "file_size": 50617, + "md5sum": "a29bb5d0f12d2bc3525ad0731d91924d", + "file_id": "2c1c5abd-96b2-4909-9d11-fe7e0454d529", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-2647-01A-01R-A96U-41", + "entity_type": "aliquot", + "case_id": "246404ae-3bc4-4db7-aee3-0346ca3f7322", + "entity_id": "2e310a0f-4e15-4781-8543-384e7cf0144f" + } + ], + "file_name": "8dd59f52-54b9-4486-aade-09ce66c266e1.mirnaseq.mirnas.quantification.txt", + "submitter_id": "ce7c6b92-b44c-405b-9566-ef9c85fc13f0", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9928019734950022, + "total_reads": 29711755, + "access": "controlled", + "file_name": "2e310a0f-4e15-4781-8543-384e7cf0144f_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004649904, + "proportion_reads_duplicated": 0, + "submitter_id": "15efe404-bc15-4c9a-b196-41572922b4ec", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 467831452, + "created_datetime": "2024-09-20T11:13:53.678348-05:00", + "average_base_quality": 36, + "md5sum": "a868855fb05b05035a94b3762267bd2e", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "f02cde4e-c99b-4b97-8ff4-751e0f2f2b60", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 32, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "8dd59f52-54b9-4486-aade-09ce66c266e1_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "848d5c2f-0f1d-438c-9919-06f0b8a76b59", + "created_datetime": "2024-09-20T11:17:24.353281-05:00" + }, + "file_size": 50867, + "md5sum": "b67fa42b37249c0057297f8147a3ee9b", + "file_id": "f552232f-57a6-4a27-80cb-906db98e71df", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-2647-01A-01R-A96U-41", + "entity_type": "aliquot", + "case_id": "246404ae-3bc4-4db7-aee3-0346ca3f7322", + "entity_id": "2e310a0f-4e15-4781-8543-384e7cf0144f" + } + ], + "file_name": "8dd59f52-54b9-4486-aade-09ce66c266e1.mirnaseq.isoforms.quantification.txt", + "submitter_id": "fcafeccb-bcee-44d3-99ec-355ed9caab0c", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9928019734950022, + "total_reads": 29711755, + "access": "controlled", + "file_name": "2e310a0f-4e15-4781-8543-384e7cf0144f_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004649904, + "proportion_reads_duplicated": 0, + "submitter_id": "15efe404-bc15-4c9a-b196-41572922b4ec", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 467831452, + "created_datetime": "2024-09-20T11:13:53.678348-05:00", + "average_base_quality": 36, + "md5sum": "a868855fb05b05035a94b3762267bd2e", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "f02cde4e-c99b-4b97-8ff4-751e0f2f2b60", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 32, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "8dd59f52-54b9-4486-aade-09ce66c266e1_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "848d5c2f-0f1d-438c-9919-06f0b8a76b59", + "created_datetime": "2024-09-20T11:17:24.353281-05:00" + }, + "file_size": 636932, + "md5sum": "450fa915429474655d0d585c53cc884e", + "file_id": "87669eae-e2fb-45e8-a6ea-e5227c59455d", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1122-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "d2c0d320-d1c5-4eed-af4f-15540e60db0b", + "entity_id": "54b75801-ad36-49a1-b0c2-edc0053b897e" + } + ], + "file_name": "adf346ae-77e4-402a-bddf-5bf2fb83eec8.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_149_MirnaExpressionb8b3973e-4f6a-476f-9dfb-b51ee7c8f89e_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1122-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_149_AlignedReadsb8b3973e-4f6a-476f-9dfb-b51ee7c8f89e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 259016653, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "e46fbd95b10e9f4139f70f30285e498a", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a1b4e9dc-0396-4a8e-8c7b-258b2f31e7fc", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_149_MirnaExpressionWorkflow7107c537-4d0c-4cfe-80fc-0b22f9084987_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a4617cd8-fb94-47f8-b302-ee4b9554c3d3", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50407, + "md5sum": "fbb627b9143c1c8a3946be78aa54078d", + "file_id": "8e449c21-9dc3-4efc-960a-4d659f609c31", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1492-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "63c6a89b-b28c-434a-a632-5de6545db731", + "entity_id": "3991212e-874f-4c0c-a822-4a149ecda1b2" + } + ], + "file_name": "17cbc4eb-a468-48be-838d-712bbf28b4ed.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_169_MirnaExpression8a93151e-8cc7-480e-bb89-c1ac3d21701d_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "52613ab8-018a-5339-a0c1-b1f389be9280", + "entity_submitter_id": "TCGA-13-1492-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8799", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "3991212e-874f-4c0c-a822-4a149ecda1b2", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "a24e89ad-9497-5778-9c84-50cd2585f0be", + "entity_submitter_id": "TCGA-13-1492-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29753", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "3991212e-874f-4c0c-a822-4a149ecda1b2", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1492-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_169_AlignedReads8a93151e-8cc7-480e-bb89-c1ac3d21701d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 196455930, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "83d1a864118f4a68cbf2a86bcac91ec8", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6ea62438-65ad-44f0-af18-5a3d0c435d87", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_169_MirnaExpressionWorkflowb6faf9a8-acea-4e2d-9016-658dd26efd56_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "18ba969d-698f-4916-a756-9f1a91446061", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50349, + "md5sum": "f0e2548624d6dfaef61a7e449be7a2b9", + "file_id": "bd92bd17-fe74-4979-ba3a-2bc940a50b75", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1122-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "d2c0d320-d1c5-4eed-af4f-15540e60db0b", + "entity_id": "54b75801-ad36-49a1-b0c2-edc0053b897e" + } + ], + "file_name": "adf346ae-77e4-402a-bddf-5bf2fb83eec8.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_149_MirnaExpressionb8b3973e-4f6a-476f-9dfb-b51ee7c8f89e_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1122-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_149_AlignedReadsb8b3973e-4f6a-476f-9dfb-b51ee7c8f89e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 259016653, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "e46fbd95b10e9f4139f70f30285e498a", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a1b4e9dc-0396-4a8e-8c7b-258b2f31e7fc", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_149_MirnaExpressionWorkflow7107c537-4d0c-4cfe-80fc-0b22f9084987_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a4617cd8-fb94-47f8-b302-ee4b9554c3d3", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 424655, + "md5sum": "4c8c21209277c25d13f1e2b056b12fa5", + "file_id": "5bf59a88-9b74-4a82-9aa6-fcdef70ba703", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1844-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "a36a4440-15ef-4837-904b-380a964d16f1", + "entity_id": "53a60e9f-3541-4fe7-a7ea-87ee888c0446" + } + ], + "file_name": "752e5e18-ec16-4799-bdf1-a0d049192581.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_418_MirnaExpression7a2050b0-acf3-4b56-8c21-985e514e3261_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1844-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_418_AlignedReads7a2050b0-acf3-4b56-8c21-985e514e3261", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 270718735, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "bd8db999940194d162b250eec2e67b3d", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "015d13c0-44cb-4dcc-80ce-f157c8a05f96", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_418_MirnaExpressionWorkflow27dbced4-d805-492b-be88-9cbba0c75ab2_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8ae8acc5-e35f-4fe4-9dd3-68ebb718a676", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 410030, + "md5sum": "635f23cf8b3d5ff45061177c0038077e", + "file_id": "0679ff9c-a11a-4d39-8ba2-50929d905217", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-2643-01A-01R-A96U-41", + "entity_type": "aliquot", + "case_id": "5554a003-da6f-4ddf-9f05-6785987ac46c", + "entity_id": "99d05e91-b9c3-49c9-9d97-f12dec4cc00e" + } + ], + "file_name": "dc4a1da0-916b-4886-b9ba-10752e37d90c.mirnaseq.mirnas.quantification.txt", + "submitter_id": "31dafce8-e1e1-4acf-9311-02a4e981a144", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9932233075812418, + "total_reads": 26448596, + "access": "controlled", + "file_name": "99d05e91-b9c3-49c9-9d97-f12dec4cc00e_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004118802, + "proportion_reads_duplicated": 0, + "submitter_id": "75293ede-354f-44d9-a0e4-8af2a1d83fad", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 434298961, + "created_datetime": "2024-09-20T11:12:34.061050-05:00", + "average_base_quality": 36, + "md5sum": "b567e465d31240a968e3d5a02f9ab292", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "1157a974-b674-4f07-af1d-ebbdfcc68cac", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 32, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "dc4a1da0-916b-4886-b9ba-10752e37d90c_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1f13a03d-34aa-4d97-bdab-73159dbe1fd4", + "created_datetime": "2024-09-20T11:17:52.423601-05:00" + }, + "file_size": 50837, + "md5sum": "cd9265001a15a8858f3c0801a766d677", + "file_id": "1d2b8ec0-7593-4b40-8e03-04f3160ebeaa", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1504-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "cd49126a-ec15-43fa-9e43-3f7460d43f2b", + "entity_id": "4eb038e4-6e3c-40c5-abde-c446204e6cb6" + } + ], + "file_name": "6fc0d0fc-268d-4f5b-90d8-fc8fba9442af.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_155_MirnaExpression58801fb5-d62b-47fd-bb9f-7a487bfee1c9_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1504-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_155_AlignedReads58801fb5-d62b-47fd-bb9f-7a487bfee1c9", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 617903851, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "42b51bf61122b716cd02a628da9b7d89", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "8b7859ed-395a-449d-8e4b-7d385d0ffa43", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_155_MirnaExpressionWorkflowa2668653-3f52-4e74-a9c5-fa55f445e0b7_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d360737e-cee1-4407-805a-f28446648efb", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 382652, + "md5sum": "9dbfe2ebc1d8b9b2f97e511e6ea97fa1", + "file_id": "7b545c1c-c67a-48a7-9c29-e6e9ce02b8e1", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1494-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "f50ee039-1da9-43d9-ac01-657ec77a7f32", + "entity_id": "34955431-94b4-4c76-8196-f12932c29d9a" + } + ], + "file_name": "7615d3ba-55f9-4b35-981d-558823435049.mirnaseq.mirnas.quantification.txt", + "submitter_id": "cc582cc8-9b02-4b3a-b8b1-c45f699a3972", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9814574412761367, + "total_reads": 23492281, + "access": "controlled", + "file_name": "34955431-94b4-4c76-8196-f12932c29d9a_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.006539862, + "proportion_reads_duplicated": 0, + "submitter_id": "497e0716-c561-4d59-9f61-cb1673f8c829", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 411171637, + "created_datetime": "2024-09-20T11:13:39.453731-05:00", + "average_base_quality": 36, + "md5sum": "4f3d2a0499207125dcaec32943f0940e", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "289665ec-a7cb-4eb7-93ca-df4256711030", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "7615d3ba-55f9-4b35-981d-558823435049_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c0787f24-04a8-430d-b539-c0b3e0e029fa", + "created_datetime": "2024-09-20T11:18:10.227985-05:00" + }, + "file_size": 50807, + "md5sum": "c7048a4b32fb0f75229d1edcefc4815a", + "file_id": "e50c39bb-4f25-40b7-9269-4247acf0b1cd", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1693-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "6fb71a0c-bc50-48c8-acfa-db94be1e151a", + "entity_id": "7e5d2390-1e04-4e46-aa48-4b0131076007" + } + ], + "file_name": "339ab544-050a-47bc-b59a-e1635a203c33.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_278_MirnaExpression3d8cff0f-4ba0-4427-8bd8-e4cd01b4f7f3_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1693-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_278_AlignedReads3d8cff0f-4ba0-4427-8bd8-e4cd01b4f7f3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 187342366, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "3b7a7391b85aa3007bb48c508971bbaf", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c9bb85a7-1f30-4acf-aae5-1bd0954a9432", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_278_MirnaExpressionWorkflow9e9b7e15-f8c6-4970-9384-940d80cbc298_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "78d98eb9-e43b-4e3b-96ae-29ebe9eb3846", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 382410, + "md5sum": "01fe4ed53325fb272e1abb7b67bd78f5", + "file_id": "07f1474a-5345-4aa6-8066-c8b434da2b91", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1349-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "4b930a10-4b12-4428-84f9-3255b4a3bc4f", + "entity_id": "398474b9-1ca6-414a-ada9-31c435f34a74" + } + ], + "file_name": "39598a1c-cfa9-4660-b39b-0b17fc87443e.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_206_MirnaExpressionee66b38f-1633-4b70-93b5-cf41f809ab30_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1349-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_206_AlignedReadsee66b38f-1633-4b70-93b5-cf41f809ab30", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 218508872, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "e11a9bb10793ad5de935ab14f2739643", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c47e2b81-625a-41e1-8de1-7c22b917e884", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_206_MirnaExpressionWorkflowd371b9b2-1a55-407c-b863-3593b545239a_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "99ab0fe3-49e3-439f-b693-5784989cffaf", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50344, + "md5sum": "478ca941466dbe82105635a00239bda3", + "file_id": "437cbda2-9bde-4075-8f3e-b49f56c50efd", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1693-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "6fb71a0c-bc50-48c8-acfa-db94be1e151a", + "entity_id": "7e5d2390-1e04-4e46-aa48-4b0131076007" + } + ], + "file_name": "339ab544-050a-47bc-b59a-e1635a203c33.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_278_MirnaExpression3d8cff0f-4ba0-4427-8bd8-e4cd01b4f7f3_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1693-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_278_AlignedReads3d8cff0f-4ba0-4427-8bd8-e4cd01b4f7f3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 187342366, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "3b7a7391b85aa3007bb48c508971bbaf", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c9bb85a7-1f30-4acf-aae5-1bd0954a9432", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_278_MirnaExpressionWorkflow9e9b7e15-f8c6-4970-9384-940d80cbc298_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "78d98eb9-e43b-4e3b-96ae-29ebe9eb3846", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50306, + "md5sum": "1369fd06d8aeb6335bc14cc07b39b2be", + "file_id": "214aaadb-7bbd-413c-97cc-230b3ca8c2b8", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-A5FT-01A-11R-A407-13", + "entity_type": "aliquot", + "case_id": "f3618472-32dc-4c90-a407-90050f68be85", + "entity_id": "30d1276f-9f3b-4f53-b4f9-6e3aa8c715e4" + } + ], + "file_name": "c7448ff7-9f40-4a67-9bd1-3d990508124e.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_6_MirnaExpression4e2d338f-aa99-4898-83d2-927770ee5ccb_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-A5FT-01A-11R-A407-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_6_AlignedReads4e2d338f-aa99-4898-83d2-927770ee5ccb", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 192703433, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "d25e7040de27dd266cbd3fd08bc8ab7c", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "62e2f4ac-d862-4bff-8689-2527e1b96316", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_6_MirnaExpressionWorkflow22ba28e2-c148-4f51-953b-0fcb47f2aeac_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "3168098d-0e03-452a-b7e5-15357a93f651", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 430688, + "md5sum": "0c2c34f0a756b2067eedd4362f4291da", + "file_id": "d8ed7ff7-13d7-4f52-bc66-9ee72170d0e1", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1551-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "499a9b57-ee1a-4012-bbab-c6ad955b5e0a", + "entity_id": "0f5f479c-c83b-404b-bd17-ebb2aa5b0dc8" + } + ], + "file_name": "e6b4b4d2-566b-41b2-808f-c8a3c6538e1e.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_279_MirnaExpressiondc38cf0d-b9ac-4d9b-9b3c-d96887a51b69_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1551-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_279_AlignedReadsdc38cf0d-b9ac-4d9b-9b3c-d96887a51b69", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 164995857, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "bc2f8d90f9ab5d0653b29d3745467a97", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "9d60887a-a3c9-4fc9-b02f-fd6c7c6ddf23", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_279_MirnaExpressionWorkflow8f773cb8-70c0-4ead-92fa-50ea5fc5b5c7_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ca4e982b-339a-48ba-a3f7-4c2a008bc94c", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50252, + "md5sum": "1bec7d927fceef7f5d3100dc40a4ad27", + "file_id": "fc327603-49fa-40b8-a5f5-2ad39b692b61", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-10-0931-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "e07a61e2-bcd2-4a96-80df-97e04aafbd32", + "entity_id": "3dbc3349-abcf-4e54-879e-1de74ee2b334" + } + ], + "file_name": "13f40071-fafc-412e-9edf-e67ab7b8bc79.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_61_MirnaExpressioncb85c4ba-54c4-4941-b6e4-5ca08fe6df35_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-10-0931-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "submitter_id": "8751", + "classification": "CenterNotification", + "entity_id": "3dbc3349-abcf-4e54-879e-1de74ee2b334", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "03c518d4-788c-59d4-9bb9-1818d52cfb54", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "e07a61e2-bcd2-4a96-80df-97e04aafbd32", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-10-0931" + }, + { + "entity_submitter_id": "TCGA-10-0931-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29708", + "classification": "CenterNotification", + "entity_id": "3dbc3349-abcf-4e54-879e-1de74ee2b334", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "815fd70d-8e57-53e3-88b3-fb182011eb92", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "e07a61e2-bcd2-4a96-80df-97e04aafbd32", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-10-0931" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-10-0931-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_61_AlignedReadscb85c4ba-54c4-4941-b6e4-5ca08fe6df35", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 112379693, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "d1bc82d6bf6b83b35eeace845eba1c69", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c3c43de9-5181-4acd-81e3-6617b5ea9676", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_61_MirnaExpressionWorkflowc8f44918-51ef-4660-8d0f-a3ee337301ea_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7a44f117-5400-463a-8fda-c254f8c88364", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 256448, + "md5sum": "65bd7d50bc848139f71c7303e2eeba35", + "file_id": "37295617-671d-453d-b931-328746174d8f", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1509-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "fe402983-70da-44db-b7b1-c32702ddde26", + "entity_id": "6e57a2e1-2894-421d-bdeb-7e532a78bdeb" + } + ], + "file_name": "559df187-6d48-49d4-825d-80d9d0cbf8c0.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_216_MirnaExpressionf25005d0-0798-4b35-95a5-7032e64d9786_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "5aad1f26-918d-5e5b-bc6c-d5f6a9a7ea80", + "entity_submitter_id": "TCGA-13-1509-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29758", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "6e57a2e1-2894-421d-bdeb-7e532a78bdeb", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "c5efb64e-643e-5365-86bb-9fd1c0dc6850", + "entity_submitter_id": "TCGA-13-1509-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8788", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "6e57a2e1-2894-421d-bdeb-7e532a78bdeb", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1509-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_216_AlignedReadsf25005d0-0798-4b35-95a5-7032e64d9786", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 187758565, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "9099051d0848bab36e6160d9931a09c7", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a804beba-3d2b-47db-ac90-a8e34e8c74e2", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_216_MirnaExpressionWorkflowfb17557c-c077-41f2-9b57-bc8e302dc1d6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "337480a0-a36b-4b31-9b11-c64fb58d4248", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50362, + "md5sum": "3a8c7bbe36381a99b43bdabefc14abc0", + "file_id": "318c24fd-c0f9-4a11-a96e-52f4ec489942", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1509-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "fe402983-70da-44db-b7b1-c32702ddde26", + "entity_id": "6e57a2e1-2894-421d-bdeb-7e532a78bdeb" + } + ], + "file_name": "559df187-6d48-49d4-825d-80d9d0cbf8c0.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_216_MirnaExpressionf25005d0-0798-4b35-95a5-7032e64d9786_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "5aad1f26-918d-5e5b-bc6c-d5f6a9a7ea80", + "entity_submitter_id": "TCGA-13-1509-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29758", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "6e57a2e1-2894-421d-bdeb-7e532a78bdeb", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "c5efb64e-643e-5365-86bb-9fd1c0dc6850", + "entity_submitter_id": "TCGA-13-1509-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8788", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "6e57a2e1-2894-421d-bdeb-7e532a78bdeb", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1509-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_216_AlignedReadsf25005d0-0798-4b35-95a5-7032e64d9786", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 187758565, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "9099051d0848bab36e6160d9931a09c7", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a804beba-3d2b-47db-ac90-a8e34e8c74e2", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_216_MirnaExpressionWorkflowfb17557c-c077-41f2-9b57-bc8e302dc1d6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "337480a0-a36b-4b31-9b11-c64fb58d4248", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 348422, + "md5sum": "3add54fc3946bb267655a5e00a903fb8", + "file_id": "3a088a2d-d66e-4167-af9b-6983a606b287", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1913-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "8516d4f2-0b98-4847-99c6-4d7269fa4af2", + "entity_id": "45f0c8e0-7d83-4979-bdf5-7417942c47f2" + } + ], + "file_name": "2fa90483-1efb-47b1-a949-f30f703d2cae.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_361_MirnaExpression401fc30b-c06d-47c6-b70a-9b8d0a0bd114_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1913-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_361_AlignedReads401fc30b-c06d-47c6-b70a-9b8d0a0bd114", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 305275531, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "2a3a61379a96f5cc5c58833fc65e190d", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6c88e9da-380a-4f00-a282-655c8e80d6db", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_361_MirnaExpressionWorkflowf9b5a999-d606-4ec1-925b-ce2c443d04ed_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a3ec4681-7fad-435f-a5c7-cb4f67d79e76", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50222, + "md5sum": "23432646ff6c04c6a1c5a384a42c0f65", + "file_id": "83c20325-b38b-41e9-85d7-e8e2cde9bc95", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1913-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "8516d4f2-0b98-4847-99c6-4d7269fa4af2", + "entity_id": "45f0c8e0-7d83-4979-bdf5-7417942c47f2" + } + ], + "file_name": "2fa90483-1efb-47b1-a949-f30f703d2cae.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_361_MirnaExpression401fc30b-c06d-47c6-b70a-9b8d0a0bd114_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1913-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_361_AlignedReads401fc30b-c06d-47c6-b70a-9b8d0a0bd114", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 305275531, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "2a3a61379a96f5cc5c58833fc65e190d", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6c88e9da-380a-4f00-a282-655c8e80d6db", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_361_MirnaExpressionWorkflowf9b5a999-d606-4ec1-925b-ce2c443d04ed_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a3ec4681-7fad-435f-a5c7-cb4f67d79e76", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 365929, + "md5sum": "7024b83c41a6cda8c6db7018ad4c3721", + "file_id": "a94569be-d9b7-4e26-9f1f-667e904de734", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-0970-01B-01R-1565-13", + "entity_type": "aliquot", + "case_id": "95e58015-a7c0-4bdc-bf64-7617d24d0784", + "entity_id": "b8ca62bf-dd6f-4984-b2c5-4d077d46d783" + } + ], + "file_name": "a83edf78-2e81-4c38-a0d9-31ecde1f0ac1.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_422_MirnaExpression0e786cf6-b679-40f1-89dc-fbdc837209f6_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "8b3e1ebb-3ace-5b24-bd79-ba10300d0897", + "entity_submitter_id": "TCGA-24-0970-01B-01R-1565-13", + "notes": "RNA-seq:HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8796", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "b8ca62bf-dd6f-4984-b2c5-4d077d46d783", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "af4bc8e5-2614-52bd-814e-141b92b58741", + "entity_submitter_id": "TCGA-24-0970-01B-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29777", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "b8ca62bf-dd6f-4984-b2c5-4d077d46d783", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-0970-01B-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_422_AlignedReads0e786cf6-b679-40f1-89dc-fbdc837209f6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 295033473, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "0e31dbb8b84dc1c0684b2f376ba9885b", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "7846d801-1f46-44a2-90c1-f80e69137f46", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_422_MirnaExpressionWorkflow89be2294-a370-4fb6-8ee1-63fb8bb8b301_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f1c75ea4-2096-401d-ba22-6529d4e09a23", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 501089, + "md5sum": "91a525f3b1695061f89eef4853f8931c", + "file_id": "8cbf8ad9-5e5d-4f9a-897d-28ac0d03ee42", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1323-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "2ee36d9d-128b-4761-aa1a-a637da106f3d", + "entity_id": "cd401b89-ae05-4775-94b0-6800f88652b0" + } + ], + "file_name": "04276a5a-23dd-467f-b8c8-60ce5e892f0c.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_146_MirnaExpression92ef646e-4f6d-40b5-8f36-26415db429ce_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1323-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_146_AlignedReads92ef646e-4f6d-40b5-8f36-26415db429ce", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 242134059, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "165caccd2acba7d9cf4359d2ad5c640b", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "23d90167-bb53-4aaa-81ee-4419c23e3b07", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_146_MirnaExpressionWorkflow02e3d8e7-c9cf-47c0-aa3e-4b07ef2f6db6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "663c2ddc-a7d4-4a0c-87cf-362de6599a1b", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50425, + "md5sum": "4e7d7e61ee4afc25e14e8e3be28d3148", + "file_id": "9e5e5d58-4a95-4f72-a643-4e6d879f94cb", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-2404-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "22178c3c-6b04-46d8-8041-dc83fa195029", + "entity_id": "05ab6bb9-0cb1-47f1-8dd2-92a48239e82e" + } + ], + "file_name": "bb5d455e-c711-4ef2-8246-eade36c730e9.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_204_MirnaExpression095c0ceb-c54c-4932-90f5-d2f88f4b9f96_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-2404-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_204_AlignedReads095c0ceb-c54c-4932-90f5-d2f88f4b9f96", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 280392771, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "ef0f2c06958e984ab64e01c3793058ea", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "28389883-048e-4206-a932-839ff9f17693", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_204_MirnaExpressionWorkflowbd7d1737-9153-46e8-8285-dec8f0cc1d0d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8c52777b-bdd6-4cc2-89a8-b6ab6cc3ccfe", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50460, + "md5sum": "6df69180ad984114ecac7be846ba3ff4", + "file_id": "77547e97-d16a-4493-9fd3-ba4507807ccb", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-30-1718-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "ad2939e6-b8b8-475a-90e2-6a369c3d3167", + "entity_id": "5abce979-686d-40c4-acd7-ef9cc5acf26f" + } + ], + "file_name": "194917a1-5909-421f-8264-71c03bbe61a5.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_265_MirnaExpressionc7fd2864-7a69-4931-b233-767a155ed0db_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-30-1718-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_265_AlignedReadsc7fd2864-7a69-4931-b233-767a155ed0db", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 249395033, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "fdd4192528d1227dd0a2f13c5e2e8b71", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "887136bc-dc6c-4b55-9891-6feb7ba7fae2", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_265_MirnaExpressionWorkflow171bd720-70af-4932-a0cd-7695bb499950_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "fff86d63-0ae5-48e4-a3d9-0d93c7f18368", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50263, + "md5sum": "b98ac9f37a63d32e7a7ab30af2c57a2f", + "file_id": "30512297-a9be-4281-9b72-103c8cbb630c", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-30-1718-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "ad2939e6-b8b8-475a-90e2-6a369c3d3167", + "entity_id": "5abce979-686d-40c4-acd7-ef9cc5acf26f" + } + ], + "file_name": "194917a1-5909-421f-8264-71c03bbe61a5.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_265_MirnaExpressionc7fd2864-7a69-4931-b233-767a155ed0db_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-30-1718-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_265_AlignedReadsc7fd2864-7a69-4931-b233-767a155ed0db", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 249395033, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "fdd4192528d1227dd0a2f13c5e2e8b71", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "887136bc-dc6c-4b55-9891-6feb7ba7fae2", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_265_MirnaExpressionWorkflow171bd720-70af-4932-a0cd-7695bb499950_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "fff86d63-0ae5-48e4-a3d9-0d93c7f18368", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 345873, + "md5sum": "cd80af873083887bc7d88fb9c9c49bef", + "file_id": "9a8cef9b-1b02-4bf7-ab30-ee9d50737e8c", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-30-1857-01A-02R-1569-13", + "entity_type": "aliquot", + "case_id": "45baebac-32ae-4093-9eba-488b95c1a58d", + "entity_id": "7fc46368-c523-4936-84e3-bb3f77db7c48" + } + ], + "file_name": "5559a822-52f4-4c51-9b17-d87fbe81538d.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_388_MirnaExpression626e63a8-6090-47b7-af13-f3487591fd9a_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "33f1b673-f562-532c-82cd-8daaa09d62f8", + "entity_submitter_id": "TCGA-30-1857-01A-02R-1569-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29801", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "7fc46368-c523-4936-84e3-bb3f77db7c48", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "668e6423-57b1-5ea9-8a51-b1ef3f12710e", + "entity_submitter_id": "TCGA-30-1857-01A-02R-1569-13", + "notes": "mRNA-seq: LOW 5'/3' COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "25421", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "7fc46368-c523-4936-84e3-bb3f77db7c48", + "created_datetime": "2015-02-16T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-30-1857-01A-02R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_388_AlignedReads626e63a8-6090-47b7-af13-f3487591fd9a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 309836273, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "5b69c927e552d7621d6bdd31fdbf239c", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "e2e7bb4b-1b4a-45ec-a861-bd145d0aed95", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_388_MirnaExpressionWorkflow7e9f1083-c645-4e20-a514-d1a20eb93a2a_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0d02a334-e4f1-44c4-8fa8-10fcac216541", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50400, + "md5sum": "37a2b07f5946caf42bc4bbee3b7603d8", + "file_id": "b5652f88-4777-4ab2-9f74-a078e3c062c6", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-30-1857-01A-02R-1569-13", + "entity_type": "aliquot", + "case_id": "45baebac-32ae-4093-9eba-488b95c1a58d", + "entity_id": "7fc46368-c523-4936-84e3-bb3f77db7c48" + } + ], + "file_name": "5559a822-52f4-4c51-9b17-d87fbe81538d.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_388_MirnaExpression626e63a8-6090-47b7-af13-f3487591fd9a_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "33f1b673-f562-532c-82cd-8daaa09d62f8", + "entity_submitter_id": "TCGA-30-1857-01A-02R-1569-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29801", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "7fc46368-c523-4936-84e3-bb3f77db7c48", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "668e6423-57b1-5ea9-8a51-b1ef3f12710e", + "entity_submitter_id": "TCGA-30-1857-01A-02R-1569-13", + "notes": "mRNA-seq: LOW 5'/3' COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "25421", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "7fc46368-c523-4936-84e3-bb3f77db7c48", + "created_datetime": "2015-02-16T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-30-1857-01A-02R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_388_AlignedReads626e63a8-6090-47b7-af13-f3487591fd9a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 309836273, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "5b69c927e552d7621d6bdd31fdbf239c", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "e2e7bb4b-1b4a-45ec-a861-bd145d0aed95", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_388_MirnaExpressionWorkflow7e9f1083-c645-4e20-a514-d1a20eb93a2a_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0d02a334-e4f1-44c4-8fa8-10fcac216541", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 433993, + "md5sum": "584580f5983cebb01130f0084d409632", + "file_id": "470f2c2b-b5d5-4803-82b0-77cc9c954ffd", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1469-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "cd6e5d3d-1c86-40dd-9cb3-b2e2075dec56", + "entity_id": "7b6fe6e3-145b-46e6-884e-fcec23514674" + } + ], + "file_name": "1243e3ec-e09f-48fe-a2fd-2035eb202af1.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_227_MirnaExpression79b2a22b-973b-438e-9588-d11aed94cdbd_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1469-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_227_AlignedReads79b2a22b-973b-438e-9588-d11aed94cdbd", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 213493277, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "b3bcac4d408398e57858bca3170a31ec", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "025e9754-55ec-4ecf-99d6-2fa779bad9fc", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_227_MirnaExpressionWorkflowb5ba7bfc-a1f8-4743-8508-e88d58fbb0b0_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0f87802d-670a-4e3a-ad58-28a52c5a6658", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50385, + "md5sum": "4c70072e723b6c65170eecf1efd3155e", + "file_id": "9bc38484-a132-4af8-91db-bc425e47b0d9", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1426-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "c8acee1b-6854-409b-86ab-bf69dbe22ab6", + "entity_id": "8cd9abeb-c09e-4281-a8c8-1b426796d51e" + } + ], + "file_name": "cc60786c-32d5-4a8d-9439-dfd61847580b.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_87_MirnaExpressioneb7a1c28-4e67-4da1-9240-4b9e499ad9e3_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "62ed837b-0ba3-56c5-954c-1767e7833996", + "entity_submitter_id": "TCGA-24-1426-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8800", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "8cd9abeb-c09e-4281-a8c8-1b426796d51e", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "964cb4d7-e44c-58d4-9abd-9d522817f764", + "entity_submitter_id": "TCGA-24-1426-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29782", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "8cd9abeb-c09e-4281-a8c8-1b426796d51e", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1426-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_87_AlignedReadseb7a1c28-4e67-4da1-9240-4b9e499ad9e3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 165086064, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "4398e0649490788d04707e6e12945f27", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5a5ca2e2-313e-49b8-a4b9-787e665c35b2", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_87_MirnaExpressionWorkflowbf9e2e30-04bf-4132-ab42-c739871fbf0a_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "9356e003-4d63-46a1-9e9b-92f8690730a2", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50332, + "md5sum": "e50523a8bd39db8ffa4ea14dbd98e0fb", + "file_id": "0d2c14c5-424f-4f03-8e0b-ca890c3e7fe0", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1426-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "c8acee1b-6854-409b-86ab-bf69dbe22ab6", + "entity_id": "8cd9abeb-c09e-4281-a8c8-1b426796d51e" + } + ], + "file_name": "cc60786c-32d5-4a8d-9439-dfd61847580b.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_87_MirnaExpressioneb7a1c28-4e67-4da1-9240-4b9e499ad9e3_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "62ed837b-0ba3-56c5-954c-1767e7833996", + "entity_submitter_id": "TCGA-24-1426-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8800", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "8cd9abeb-c09e-4281-a8c8-1b426796d51e", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "964cb4d7-e44c-58d4-9abd-9d522817f764", + "entity_submitter_id": "TCGA-24-1426-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29782", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "8cd9abeb-c09e-4281-a8c8-1b426796d51e", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1426-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_87_AlignedReadseb7a1c28-4e67-4da1-9240-4b9e499ad9e3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 165086064, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "4398e0649490788d04707e6e12945f27", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5a5ca2e2-313e-49b8-a4b9-787e665c35b2", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_87_MirnaExpressionWorkflowbf9e2e30-04bf-4132-ab42-c739871fbf0a_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "9356e003-4d63-46a1-9e9b-92f8690730a2", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 362845, + "md5sum": "8090db028d73cc121f039bf741234e21", + "file_id": "39f448d2-5eea-4b93-9627-1ece99fbfa01", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-1667-01C-01R-1566-13", + "entity_type": "aliquot", + "case_id": "32d4d200-1fdf-44ed-b81f-1954a9c93926", + "entity_id": "9b7a1eb0-014f-4cd6-bde8-fd96131fac3e" + } + ], + "file_name": "4cbbf25f-4fc6-4590-96d1-832a6ab2708b.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_226_MirnaExpressiona18c2237-e392-4c61-865a-cecefa244dda_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-1667-01C-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_226_AlignedReadsa18c2237-e392-4c61-865a-cecefa244dda", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 200380778, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "d947adde26bda7efe0d65882fb57bee6", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "3b42fb71-abd8-4f1c-9362-d3b300015792", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_226_MirnaExpressionWorkflowda936d54-9d61-4575-a09f-1d28cf38b543_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f5402182-74f4-438d-93f1-8a1da19e8777", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 342590, + "md5sum": "5242f069fd04dbbd104fcd60c883f4f3", + "file_id": "d428a6c3-3134-4f19-8a32-52d2c16fdad7", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2038-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "17181157-c9e2-4bd6-8653-f5dce56f9053", + "entity_id": "372a8471-dff3-44c0-9393-94ad511a7374" + } + ], + "file_name": "1f1e8c1b-1eb8-4efd-bf25-0c8c7e939c30.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_23_MirnaExpression71d2011f-9a31-433f-87df-190c562ad5a6_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2038-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_23_AlignedReads71d2011f-9a31-433f-87df-190c562ad5a6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 192008514, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "e3f967fb79c1939634ec03db96016b69", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "edc0e6ee-3acd-4c1b-8326-d74adf55fb28", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_23_MirnaExpressionWorkflow05440115-88f4-4e98-92fc-ce7fcf969b44_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5afc6381-3628-4213-a189-2b707ddda71c", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50230, + "md5sum": "dd7296c6b1522eeae38e337ff4278311", + "file_id": "8b26ec22-3cb8-4486-86e0-e80602059be4", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1365-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "0484a929-7a7f-4926-8d25-470ddab082ec", + "entity_id": "2535da6b-39f0-41de-afd3-82cb37916b95" + } + ], + "file_name": "78c9c71a-7ed8-4e63-8b06-aa8c5f8a1f16.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_50_MirnaExpression7baa5594-b5b6-427f-8bd8-a671c214ac6c_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1365-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_50_AlignedReads7baa5594-b5b6-427f-8bd8-a671c214ac6c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 131855407, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "98c3412a98d9bfd16f0fbbaf907efab4", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "42854b8b-dcfa-426e-9e37-b46de0f652f4", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_50_MirnaExpressionWorkflowcbc85c05-3ae2-4d43-992f-795a55596cd3_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "386d5d2e-fb32-4a11-bcc6-3c76fd3a3c2a", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50259, + "md5sum": "b64b8d81be7eb14eedae57d5f0d06493", + "file_id": "772bdecb-a6b4-4a38-9705-ae6abec09fcd", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1477-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "13f5814c-1f99-4ffa-84a4-3bbd8979faae", + "entity_id": "eb7fbe7d-ca45-4f35-b384-0d396349da06" + } + ], + "file_name": "ef2cb396-9fe1-41ef-a637-86c1d0cf669b.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_407_MirnaExpression60f5165f-50bc-4bb0-8a4a-aa6ace3987e5_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "f2ce1574-f4c0-5f07-9665-a7844967e5f9", + "entity_submitter_id": "TCGA-13-1477-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8840", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "eb7fbe7d-ca45-4f35-b384-0d396349da06", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "f38d6971-195e-563f-8bb0-561999742565", + "entity_submitter_id": "TCGA-13-1477-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29746", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "eb7fbe7d-ca45-4f35-b384-0d396349da06", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1477-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_407_AlignedReads60f5165f-50bc-4bb0-8a4a-aa6ace3987e5", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 162123731, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "2c6f7249adfbe6aef49fa807e7a50f83", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b090364a-7e30-4c50-9021-6a5a4d5bd655", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_407_MirnaExpressionWorkflow23a47183-f420-4c72-9bd2-9cc6af337647_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8d69c0de-524b-453a-934c-e734eec3c516", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50189, + "md5sum": "f6a87ab671cabc878b8f6938b655016c", + "file_id": "b94311f6-1f4d-4276-b3e9-f4df893610ef", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1337-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "d1e974e7-dd68-40cc-ad06-2b57d964e5a1", + "entity_id": "42faaf19-95dd-426c-96d5-f3363c2e12ab" + } + ], + "file_name": "3832b832-ddf2-4632-8be7-03946e864a96.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_443_MirnaExpression51569497-ee48-4f6d-b1a1-1006bda21d8a_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "103a53d6-c5a2-504a-bf75-a93447c0ab3c", + "entity_submitter_id": "TCGA-04-1337-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8774", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "42faaf19-95dd-426c-96d5-f3363c2e12ab", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "c42280ba-a58b-5d87-b030-fd678bbd3cab", + "entity_submitter_id": "TCGA-04-1337-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29688", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "42faaf19-95dd-426c-96d5-f3363c2e12ab", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1337-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_443_AlignedReads51569497-ee48-4f6d-b1a1-1006bda21d8a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 115353830, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "d5247d9780200ea15d05616e307ccc13", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "f7dabb4d-9f91-43d1-bb5a-a494c043cae1", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_443_MirnaExpressionWorkflowd7c28431-8e91-40f3-bfd0-c3d4d67c9eeb_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "bb9ba44a-e4fb-4065-9efb-e8d1d8175113", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50187, + "md5sum": "8bc9cd84ee5f99091fce6eb75c634503", + "file_id": "746fc39b-e56d-4d2d-8de2-9c09246fa275", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-57-1582-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "4ea50685-3b63-440a-b037-597ef2529e7d", + "entity_id": "cb7a4405-b9a5-4e1a-825f-c3ee205c8a90" + } + ], + "file_name": "03e488fc-8516-48db-8824-485ee1ddb6ed.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_359_MirnaExpression9e5dbd4f-f457-4d26-ad58-3603e4747729_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-57-1582-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_359_AlignedReads9e5dbd4f-f457-4d26-ad58-3603e4747729", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 188145300, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "f875ee691f86c1023d0dce53c4de8c5d", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "bf97a1b6-836a-4b73-bca2-32cf0681aa6a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_359_MirnaExpressionWorkflow3fbff85e-e8d1-48f3-8984-c2a13a4cd4b4_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "621e7fce-810a-4fdd-8078-6d98b8eb1b25", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50308, + "md5sum": "ecb4ce656c9e49cbe347421be9cd0e16", + "file_id": "ec4c5e1b-a371-4e8a-9e3d-e02a8d161b26", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-57-1582-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "4ea50685-3b63-440a-b037-597ef2529e7d", + "entity_id": "cb7a4405-b9a5-4e1a-825f-c3ee205c8a90" + } + ], + "file_name": "03e488fc-8516-48db-8824-485ee1ddb6ed.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_359_MirnaExpression9e5dbd4f-f457-4d26-ad58-3603e4747729_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-57-1582-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_359_AlignedReads9e5dbd4f-f457-4d26-ad58-3603e4747729", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 188145300, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "f875ee691f86c1023d0dce53c4de8c5d", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "bf97a1b6-836a-4b73-bca2-32cf0681aa6a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_359_MirnaExpressionWorkflow3fbff85e-e8d1-48f3-8984-c2a13a4cd4b4_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "621e7fce-810a-4fdd-8078-6d98b8eb1b25", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 379680, + "md5sum": "8dd658470363e3d033859bafe5c02e0b", + "file_id": "56c06b99-b03b-48ab-b3e6-4fa0b08292a9", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1634-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "15556b28-c6bd-455a-87b6-4b7b3e33d0e4", + "entity_id": "d10f0cee-d755-43cc-8d3d-8974cea0defb" + } + ], + "file_name": "72502bda-8a92-4683-8407-ed1bf1fe638f.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_473_MirnaExpression666dda4b-135b-4a76-bad0-fb7790dcd994_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1634-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_473_AlignedReads666dda4b-135b-4a76-bad0-fb7790dcd994", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 105921099, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "bd6edf3b64cfc3ba076952425230aecd", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a9930077-18b5-4bde-a9cb-491af1a0f95e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_473_MirnaExpressionWorkflow85f897bb-c413-4f2f-bcd6-6878c9b10f59_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "54ce930c-552b-4d8e-9734-dee377c52f48", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50116, + "md5sum": "8afe45b05943219ec143fa4902c7c5cb", + "file_id": "83f9806a-57d1-4254-ab77-0de03fec70c1", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1510-01A-02R-1565-13", + "entity_type": "aliquot", + "case_id": "dac96910-0cb2-44ea-b108-2d6d51b07112", + "entity_id": "b75db551-4254-4736-a089-0a38890e7778" + } + ], + "file_name": "c771d5ee-c270-4c69-a740-290d0962846a.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_102_MirnaExpression7fc70d9e-dded-4b40-ab0a-975872497c33_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "210a55a3-41e5-5aad-bccd-a7df7d870438", + "entity_submitter_id": "TCGA-13-1510-01A-02R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29759", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "b75db551-4254-4736-a089-0a38890e7778", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "4cef724e-ec96-5a83-a27e-1824ae2e7b80", + "entity_submitter_id": "TCGA-13-1510-01A-02R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8793", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "b75db551-4254-4736-a089-0a38890e7778", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1510-01A-02R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_102_AlignedReads7fc70d9e-dded-4b40-ab0a-975872497c33", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 183464096, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "7dc220a238e9069b0d940bb17206faf0", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c23392c6-be52-48ae-8a14-8bfe155a735e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_102_MirnaExpressionWorkflowe9185153-eba8-424c-8f17-27e79a2e98f8_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "95160f45-0a26-4d82-8f9f-10a7dfb64b99", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50142, + "md5sum": "1feecf86425cd0fe0f4148b7b292c1fd", + "file_id": "41b5189a-45ab-44bb-8420-ed88dd4250f7", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1911-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "93095c36-2263-438f-a619-a4a4d6ae13c7", + "entity_id": "1ec9cbc3-fd76-4d44-be24-8ff296d3c4c9" + } + ], + "file_name": "9f76cbf7-4885-49b9-950f-94b693afdb2b.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_280_MirnaExpression295f4429-615c-4f97-a0e1-304dd5b39fee_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "5f3da0b2-a969-568e-9182-7cd830e7e92b", + "entity_submitter_id": "TCGA-61-1911-01A-01R-1567-13", + "notes": "RNA-seq:INSUFFICIENT INPUT MATERIAL,LOW SEQUENCE YIELD/DIVERSITY;LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8813", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "1ec9cbc3-fd76-4d44-be24-8ff296d3c4c9", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "97d1b82a-bd8d-59de-baf3-f8826ec5d5b0", + "entity_submitter_id": "TCGA-61-1911-01A-01R-1567-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29805", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "1ec9cbc3-fd76-4d44-be24-8ff296d3c4c9", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1911-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_280_AlignedReads295f4429-615c-4f97-a0e1-304dd5b39fee", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 191438599, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "4c9e6a9d960b1de02598e06afbddc273", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "fe8f47db-02e3-489e-ad0a-4cf0ed212e9f", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_280_MirnaExpressionWorkflow8a5a9920-df0f-4541-8659-2d5eaa916ab0_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7ed51331-2702-4d98-ab82-77fb2fc0e033", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 348421, + "md5sum": "ba4f3f44ae10df969b3f6487f4c3ef94", + "file_id": "df1af27d-3a50-4a27-824f-9a0dca8593d5", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1312-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "66face4a-f35c-4364-90e5-8f28e6372606", + "entity_id": "0d7561dc-7069-41df-ba49-8fcd4df52efb" + } + ], + "file_name": "361d69e3-9759-4729-97d5-4c4d8a6f2496.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_262_MirnaExpression3a7cbc54-7607-425f-af5c-bb1bb8f2ed4f_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1312-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_262_AlignedReads3a7cbc54-7607-425f-af5c-bb1bb8f2ed4f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 152737022, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "f79898d16c708dc4eab98f016b498cb1", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "cd70d5f0-7891-4d15-b72b-f1f58af9b261", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_262_MirnaExpressionWorkflow546641f3-465b-4983-b329-f49620dee3d6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "70fd620f-d81d-4f89-8ca7-bd3ae9182360", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 315059, + "md5sum": "a94284957e4f4f73cdf7751e6f728526", + "file_id": "daa1fd49-c356-4f30-a143-43071589ce52", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1763-01A-02R-1567-13", + "entity_type": "aliquot", + "case_id": "242da7d0-8c6a-4395-9a0d-aa36e7c25ce6", + "entity_id": "af63aa43-ab5f-44c5-85cf-01d84be261a3" + } + ], + "file_name": "789ae3f2-df58-48b1-b017-4f47f761ad57.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_241_MirnaExpression64fcf846-a521-44fa-b945-1b8adeebf040_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1763-01A-02R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_241_AlignedReads64fcf846-a521-44fa-b945-1b8adeebf040", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 168331924, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "77ec0d4721a00667bf97cb25757635ae", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c9a05973-e7a1-45f2-9543-0e107438887e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_241_MirnaExpressionWorkflowe0ffc2ac-cdf4-4930-8b73-fb096aa0d055_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2bc84f6a-9e29-4fc7-86f9-25ad4e3ad7b7", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 343849, + "md5sum": "3db59a9df308a1e01a6c2da42b3bb7f8", + "file_id": "6c5196e4-ad15-4949-bc43-0338226f776f", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-2392-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "7413c891-f74e-456f-bc70-69c83fb53c70", + "entity_id": "95b7a71d-8cf5-4660-ac1d-52a888cd2f20" + } + ], + "file_name": "21a6b0ca-53c3-4e0a-9a03-9db95a3c9606.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_259_MirnaExpression52b8857b-5121-418f-87d2-37bdd3122a6b_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-2392-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_259_AlignedReads52b8857b-5121-418f-87d2-37bdd3122a6b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 217469507, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "cc8f2aad2baa892ccaf165389880efeb", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "70576fef-54ba-4be5-96bc-023cc1bdb6d5", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_259_MirnaExpressionWorkflow9ef69404-8136-40bd-851c-4d7684d06a19_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "76e64d4c-ac07-4254-a4ca-18c53c993d58", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50501, + "md5sum": "1419beee5f15ad0f9d8191f61be21b60", + "file_id": "e5e971e1-6802-4ded-9be9-24a36df725eb", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1119-01A-02R-1565-13", + "entity_type": "aliquot", + "case_id": "2dfd8a0e-e642-49b3-abd7-f0334927eebb", + "entity_id": "a0e6000c-2e04-4e12-bce6-ef9c29f04252" + } + ], + "file_name": "59a2fe2e-bad3-4ab8-845e-aa53f920426f.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_377_MirnaExpression1ab5bc3e-8a28-459a-8a07-b4c79b6defe2_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "763ddc4c-f1ea-5127-bd14-cb3f451b0190", + "entity_submitter_id": "TCGA-23-1119-01A-02R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29774", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "a0e6000c-2e04-4e12-bce6-ef9c29f04252", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "84eda76e-1365-51b4-9226-b3b0d30c8008", + "entity_submitter_id": "TCGA-23-1119-01A-02R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8779", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "a0e6000c-2e04-4e12-bce6-ef9c29f04252", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1119-01A-02R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_377_AlignedReads1ab5bc3e-8a28-459a-8a07-b4c79b6defe2", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 188195133, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "1ebbb9f221199c7b4a233015f3e2f548", + "updated_datetime": "2023-07-12T10:33:27.414833-05:00", + "file_id": "cd014c72-794e-43dc-b1b7-b391d84c6217", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_377_MirnaExpressionWorkflow7e191f57-f701-44e4-84e4-6d6df52e3cfb_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d553e2da-b403-48c4-9a34-5f501aa0d82a", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 392422, + "md5sum": "1f29e1abff329f0eb8b7d531fdaf1d80", + "file_id": "2c7ef23b-feb5-4393-ba66-21c75bbead85", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1809-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "bc3e0b74-ea09-46a5-9f61-16bd15ffd883", + "entity_id": "ac764277-4d48-489a-8625-f27541b11258" + } + ], + "file_name": "cdcb27f9-188e-4070-831d-0c98627c7d54.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_445_MirnaExpression7f358154-51a9-4066-87ff-cc6bc8b17a4e_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1809-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_445_AlignedReads7f358154-51a9-4066-87ff-cc6bc8b17a4e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 184284592, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "11d03e320abc3b1e6cf0cbbe0e4839ad", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "216d8e48-00c5-423e-a32f-d4c59432705a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_445_MirnaExpressionWorkflowc3d446ac-e465-4147-b4cc-293ceedff73b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "4b78e199-5bcd-42d4-a5a5-a81fa9c24b01", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 404780, + "md5sum": "ed946fc2cc490b33bf266b75f48f7cd4", + "file_id": "c6d8311d-60b1-4bbf-9447-eff1ef28749d", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0894-01B-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "e8372916-7ac7-4535-ae97-0248208224f5", + "entity_id": "1c78775f-db19-44e1-a55f-a19d52315630" + } + ], + "file_name": "10de2e1a-a9db-4b56-9ab3-a2a56673b386.mirnaseq.mirnas.quantification.txt", + "submitter_id": "8de59fc6-aaf2-41f0-aa59-24fb0a8db5ee", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9909683996178293, + "total_reads": 19130718, + "access": "controlled", + "file_name": "1c78775f-db19-44e1-a55f-a19d52315630_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004899943, + "proportion_reads_duplicated": 0, + "submitter_id": "0e28c5d4-ec80-464b-bf74-1799f0d72e97", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 320358443, + "created_datetime": "2024-09-20T11:13:04.922157-05:00", + "average_base_quality": 36, + "md5sum": "afb5e47bd1357ac338ad2d18ebc9347b", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "5a03e7cc-d8c5-46a1-ba4d-16a0a90ecbe7", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "10de2e1a-a9db-4b56-9ab3-a2a56673b386_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "21453ba4-a3de-4f5e-b914-ed51f745072d", + "created_datetime": "2024-09-20T11:16:40.791068-05:00" + }, + "file_size": 50782, + "md5sum": "a314965f53aeab3970c510ace4ceeb3a", + "file_id": "eb3a5b1d-012e-4492-b7ef-635cae03400b", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0894-01B-01R-1565-13", + "entity_type": "aliquot", + "case_id": "e8372916-7ac7-4535-ae97-0248208224f5", + "entity_id": "3aff2c90-8771-48a1-bdcb-2b3c259dd2fd" + } + ], + "file_name": "236d72f6-5db0-436d-99f4-e9af2a633317.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_436_MirnaExpression979f1575-875c-4574-9466-fdeb9a99463e_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0894-01B-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_436_AlignedReads979f1575-875c-4574-9466-fdeb9a99463e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 219325225, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "41824eaa93fe929b1e3f0bd241efa5a1", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "d96d552b-275b-4250-85db-0557208ca7ee", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_436_MirnaExpressionWorkflowb63cfc41-3c7e-46bd-b2fa-a34b69e118d2_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b463c364-3280-485f-9e10-4732fac1ab0d", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50425, + "md5sum": "234ae454d38dfec6fedcd8ce5a939d43", + "file_id": "c403d70f-14b7-4745-9249-36802ccd4a0c", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-1665-01B-01R-1566-13", + "entity_type": "aliquot", + "case_id": "9d25cd0e-0a3e-4ee0-b1a3-58ffab348c9d", + "entity_id": "c06f72e0-e59f-4cbb-8233-1eb6637ea23f" + } + ], + "file_name": "c479012a-ab8b-434c-b88e-9bc28931adbe.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_390_MirnaExpressionb964be69-cdfb-482a-b499-d31a59850a5f_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "c03a7905-50cf-524c-8d29-84e8f266b158", + "entity_submitter_id": "TCGA-09-1665-01B-01R-1566-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29704", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "c06f72e0-e59f-4cbb-8233-1eb6637ea23f", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "c47aab6e-7aef-55cf-b364-92e95cfc04c2", + "entity_submitter_id": "TCGA-09-1665-01B-01R-1566-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8844", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "c06f72e0-e59f-4cbb-8233-1eb6637ea23f", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-1665-01B-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_390_AlignedReadsb964be69-cdfb-482a-b499-d31a59850a5f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 78483016, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "54788ef90c8f85384a13248068929684", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "9d1a849d-17f8-449b-ba6b-4ff888818978", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_390_MirnaExpressionWorkflowd9d563ed-0ba4-460a-ac48-4bb6d93aebef_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d886fc9f-2d2d-4e51-897e-7250e7d4e6ba", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 267119, + "md5sum": "f31660ecd3e4769cae2f9fa141772f18", + "file_id": "39c684d5-228f-46de-a7b6-28c82aa95623", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1530-01A-02R-1569-13", + "entity_type": "aliquot", + "case_id": "42b3dfa3-152f-4ab7-ac9f-988c7f473bea", + "entity_id": "b3ad87d3-1240-4fc9-8e29-14a9a5186319" + } + ], + "file_name": "ea542578-b842-4114-bc06-c4b52a52c53f.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_334_MirnaExpression02a7d609-62cd-4e5f-b2df-04df653108b0_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "a5da7b29-8821-5178-a3f5-4f7c5716ed63", + "entity_submitter_id": "TCGA-04-1530-01A-02R-1569-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29697", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "b3ad87d3-1240-4fc9-8e29-14a9a5186319", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "ab9af6b8-ce6d-5843-b620-aed63ee35cf0", + "entity_submitter_id": "TCGA-04-1530-01A-02R-1569-13", + "notes": "RNA-seq:HIGH rRNA CONTENT;LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8853", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "b3ad87d3-1240-4fc9-8e29-14a9a5186319", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1530-01A-02R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_334_AlignedReads02a7d609-62cd-4e5f-b2df-04df653108b0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 149872400, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "291fa55a1e2060eb17046f285b2f0a50", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a0c57983-291f-41ac-b7a5-33d634cccc98", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_334_MirnaExpressionWorkflowb8791113-6eac-4d85-8fa0-e916f0724525_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2fdad501-9495-4053-91f0-10f7b9972220", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50164, + "md5sum": "c3f2caf02f9b6fa3b348b4883b143350", + "file_id": "3e058459-7cdb-442b-aad6-085eef32e4d7", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2104-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "05263959-c4f5-4540-b6d2-d8c8a128861f", + "entity_id": "721a8fc8-bb54-4ec3-a19c-340c35f05280" + } + ], + "file_name": "746f7449-4911-49d8-8672-a867477eda73.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_15_MirnaExpression9598dc9c-298b-4ab2-afb3-5d4f3d244288_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2104-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_15_AlignedReads9598dc9c-298b-4ab2-afb3-5d4f3d244288", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 171760506, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "d31fcb1a7b3b131ed8102a2f7329b7d4", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5d8c4c52-ac47-4083-a2fc-e9f2e76a6f62", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_15_MirnaExpressionWorkflowb34da9f6-c796-48f1-bf50-b1484ada7d2c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "16f804b8-6393-46e7-ad44-6ef5f9f34a75", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50319, + "md5sum": "5e6db8efa7efaeef0257031966456695", + "file_id": "9a2ee7b4-fc1c-431b-956b-393f244a6483", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-59-2355-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "708eec28-2348-4e15-b98c-8c6f9d057b1e", + "entity_id": "866c7355-e2ec-4816-953f-7bf791033283" + } + ], + "file_name": "4522e86d-a860-4ab8-a8e8-8001d3287255.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_127_MirnaExpressionff5bb6c4-edbd-4f17-afda-23d9edfdd171_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-59-2355-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_127_AlignedReadsff5bb6c4-edbd-4f17-afda-23d9edfdd171", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 186158213, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "3584cd5a54ab69ea8de6c61edb33373a", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "05c2f235-5f51-4356-b543-b5a0a252132e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_127_MirnaExpressionWorkflow495830ab-d926-4202-b015-ebae60c6e06b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c9f6f2c3-a79f-4fff-b8b8-c1c12c9174de", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50357, + "md5sum": "e7fcd869301545e07e6a3f5aea932c83", + "file_id": "a27c0d81-a245-4e8b-8c14-626897a39ee2", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1762-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "5495b18a-10ec-427b-83b8-03ef4b587b13", + "entity_id": "c3559ae3-3355-4f38-9c07-e557e435fcbd" + } + ], + "file_name": "f2526cd8-37c9-4d76-9bdc-37922ed52392.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_457_MirnaExpression7b1392d5-b23d-46fe-a51d-d6af841612e2_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1762-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_457_AlignedReads7b1392d5-b23d-46fe-a51d-d6af841612e2", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 216455114, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "2b98fc1e7968415aad7052a53d378ad9", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "1bde72d2-170a-4fff-9da8-db26cdc93dfa", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_457_MirnaExpressionWorkflow5c517e05-2445-415f-ad9d-5cf37767a745_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2dd6c24f-41f0-4c2d-9827-b9f0347846d5", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 449111, + "md5sum": "29cdf3e9e5b43421762630fe2dbc47d8", + "file_id": "7770d350-5822-43cf-9bb7-0284daf6d6ed", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-36-1575-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "6ea9877f-eb8d-4ee9-af4c-32a78474d9a6", + "entity_id": "a28ef775-c78b-416f-afeb-89ba265440f0" + } + ], + "file_name": "016a9518-4721-410d-ac2f-2a17e9f0b4a9.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_471_MirnaExpressiond81c3721-34f4-4740-a517-4e265c17e619_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-36-1575-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_471_AlignedReadsd81c3721-34f4-4740-a517-4e265c17e619", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 216123140, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "c18911a6b72d414f941f45cc302351c1", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "74f8410a-8b3c-4eff-b61f-486978ede573", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_471_MirnaExpressionWorkflowecdf377b-650e-4134-bce1-dd7c1c83bf33_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "924baadc-4ebb-40f3-b524-18b1e10e5513", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50335, + "md5sum": "f25eaa6ea94a0c3e7965aea3af5db0cf", + "file_id": "d5d5fa4d-491b-4425-af2d-40e8d196d140", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1356-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "8652ddee-98f4-4584-b450-e6f2f5c9d7ec", + "entity_id": "dc4a5c2f-8b96-4d3b-9553-a02510ba445f" + } + ], + "file_name": "a3ec233d-445d-4343-8dac-5e6cd05150f9.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_46_MirnaExpression86f24999-ddec-4f60-8f15-86c6e1afa459_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "28aec078-76cc-5a53-af83-085deca0785c", + "entity_submitter_id": "TCGA-04-1356-01A-01R-1569-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29694", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "dc4a5c2f-8b96-4d3b-9553-a02510ba445f", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "d8ca77b7-9d67-555e-8443-60b38b312062", + "entity_submitter_id": "TCGA-04-1356-01A-01R-1569-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8822", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "dc4a5c2f-8b96-4d3b-9553-a02510ba445f", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1356-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_46_AlignedReads86f24999-ddec-4f60-8f15-86c6e1afa459", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 249228719, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "0bb548b01e03a664b26ce23700588f51", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "83091cd3-6afe-4f1c-a57c-1deed6bf57d5", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_46_MirnaExpressionWorkflowc1267e98-7b0f-467d-a90d-2bcb220cf5b6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1c5fa909-3f56-46ee-a22d-d5a19172994e", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50396, + "md5sum": "af0f0c70c2a51a1a07c3ce1f4bd02de4", + "file_id": "99bb2ec2-13f3-4179-bb90-b8b54ec97cc1", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-2643-01A-01R-A96U-41", + "entity_type": "aliquot", + "case_id": "5554a003-da6f-4ddf-9f05-6785987ac46c", + "entity_id": "99d05e91-b9c3-49c9-9d97-f12dec4cc00e" + } + ], + "file_name": "dc4a1da0-916b-4886-b9ba-10752e37d90c.mirnaseq.isoforms.quantification.txt", + "submitter_id": "eb66f909-d13f-4fdd-8204-d5f7b3e8f37e", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9932233075812418, + "total_reads": 26448596, + "access": "controlled", + "file_name": "99d05e91-b9c3-49c9-9d97-f12dec4cc00e_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004118802, + "proportion_reads_duplicated": 0, + "submitter_id": "75293ede-354f-44d9-a0e4-8af2a1d83fad", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 434298961, + "created_datetime": "2024-09-20T11:12:34.061050-05:00", + "average_base_quality": 36, + "md5sum": "b567e465d31240a968e3d5a02f9ab292", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "1157a974-b674-4f07-af1d-ebbdfcc68cac", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 32, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "dc4a1da0-916b-4886-b9ba-10752e37d90c_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1f13a03d-34aa-4d97-bdab-73159dbe1fd4", + "created_datetime": "2024-09-20T11:17:52.423601-05:00" + }, + "file_size": 608370, + "md5sum": "571b73a6c888dd231984e46c75816162", + "file_id": "6d0a8794-9e1a-4f4e-846f-0bcb1c384bac", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1492-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "63c6a89b-b28c-434a-a632-5de6545db731", + "entity_id": "3991212e-874f-4c0c-a822-4a149ecda1b2" + } + ], + "file_name": "17cbc4eb-a468-48be-838d-712bbf28b4ed.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_169_MirnaExpression8a93151e-8cc7-480e-bb89-c1ac3d21701d_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "52613ab8-018a-5339-a0c1-b1f389be9280", + "entity_submitter_id": "TCGA-13-1492-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8799", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "3991212e-874f-4c0c-a822-4a149ecda1b2", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "a24e89ad-9497-5778-9c84-50cd2585f0be", + "entity_submitter_id": "TCGA-13-1492-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29753", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "3991212e-874f-4c0c-a822-4a149ecda1b2", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1492-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_169_AlignedReads8a93151e-8cc7-480e-bb89-c1ac3d21701d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 196455930, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "83d1a864118f4a68cbf2a86bcac91ec8", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6ea62438-65ad-44f0-af18-5a3d0c435d87", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_169_MirnaExpressionWorkflowb6faf9a8-acea-4e2d-9016-658dd26efd56_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "18ba969d-698f-4916-a756-9f1a91446061", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 411466, + "md5sum": "b2eae207b1a9bdc015639950bc793669", + "file_id": "3cd73a9b-868a-4717-a44c-a84411a6d7e5", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1494-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "f50ee039-1da9-43d9-ac01-657ec77a7f32", + "entity_id": "34955431-94b4-4c76-8196-f12932c29d9a" + } + ], + "file_name": "7615d3ba-55f9-4b35-981d-558823435049.mirnaseq.isoforms.quantification.txt", + "submitter_id": "bf197f00-a9a6-4619-b072-eff1c8df3f7d", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9814574412761367, + "total_reads": 23492281, + "access": "controlled", + "file_name": "34955431-94b4-4c76-8196-f12932c29d9a_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.006539862, + "proportion_reads_duplicated": 0, + "submitter_id": "497e0716-c561-4d59-9f61-cb1673f8c829", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 411171637, + "created_datetime": "2024-09-20T11:13:39.453731-05:00", + "average_base_quality": 36, + "md5sum": "4f3d2a0499207125dcaec32943f0940e", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "289665ec-a7cb-4eb7-93ca-df4256711030", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "7615d3ba-55f9-4b35-981d-558823435049_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c0787f24-04a8-430d-b539-c0b3e0e029fa", + "created_datetime": "2024-09-20T11:18:10.227985-05:00" + }, + "file_size": 464639, + "md5sum": "66aea516b20c7082434c617e0ed9bf64", + "file_id": "6d212166-e6b7-473e-89bf-052351a38c33", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1494-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "f50ee039-1da9-43d9-ac01-657ec77a7f32", + "entity_id": "8636edee-0160-4b47-b4f7-6191385df3e5" + } + ], + "file_name": "6aeec5ae-b247-4f8a-b00f-a60c87b9c57c.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_220_MirnaExpression96d9a3a2-f389-4da9-9a51-05800b9eade3_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1494-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_220_AlignedReads96d9a3a2-f389-4da9-9a51-05800b9eade3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 470865567, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "60466ce6f36796e2a3457e2b3b33337f", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "dde25aab-4688-4f5d-96b4-6bd0fb1c8b8c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_220_MirnaExpressionWorkflow0b8375e2-054d-450c-873a-23b54d538a36_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "af72164c-9ac1-4caa-8fce-e49b27b7c3a0", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50175, + "md5sum": "0214c3ff4018a01813414fa2e066bc39", + "file_id": "d1640998-a089-4aa2-93c6-c397c1317021", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1499-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "b25570ed-baca-4e3f-87c6-2ef18119ba49", + "entity_id": "1f677d4c-6feb-4a3a-9f12-ba1d43920a80" + } + ], + "file_name": "d78a635f-6a46-4c82-a6cb-20f133148214.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_416_MirnaExpression066b2759-9bee-45b7-aee7-489279875968_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "7a1a3234-d1b3-5763-a749-3e71a84495e3", + "entity_submitter_id": "TCGA-13-1499-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8792", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "1f677d4c-6feb-4a3a-9f12-ba1d43920a80", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "e2f50d89-54ee-512f-83e9-6c0d7ce28cd6", + "entity_submitter_id": "TCGA-13-1499-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29756", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "1f677d4c-6feb-4a3a-9f12-ba1d43920a80", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1499-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_416_AlignedReads066b2759-9bee-45b7-aee7-489279875968", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 177924853, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "f9e7e748fc3d4e5a461c7ffda49fe5cb", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b08fb423-8a30-4a93-be17-e4ec113f2eb7", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_416_MirnaExpressionWorkflow82e18a43-959f-4769-a1ed-71b4ead6cd5b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "41c78d55-dbbc-49a8-95e1-2a8bc8a32f7f", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 405536, + "md5sum": "d431c2a02921c62f6fda65c60fd3320b", + "file_id": "6fab8519-c2f6-4f58-b3e2-82d926ea334f", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2113-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "71faa2c1-0d5b-4dcc-bdf9-f2405f29907c", + "entity_id": "d5752594-1a2c-47c8-a40b-bffd5b6b7e71" + } + ], + "file_name": "07a1428c-f519-4818-853f-a9a20dc111a8.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_402_MirnaExpression17e7fcfe-a9ae-40fe-a8c6-f4105dc5c64d_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2113-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_402_AlignedReads17e7fcfe-a9ae-40fe-a8c6-f4105dc5c64d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 233050073, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "d28c69571b961fdf7a5f01347d857193", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "7cabf9c5-5e52-4942-9fa2-39af318e5bd0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_402_MirnaExpressionWorkflowf26b88e4-a085-4c69-9ccc-a100e5260bef_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c639cbd3-31a6-4324-89bf-2e54aeaf2741", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50369, + "md5sum": "22a5ac78fb1b120e582f9641793ddd37", + "file_id": "1985946c-99a2-4b98-84a0-b8044cdd8d55", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0894-01B-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "e8372916-7ac7-4535-ae97-0248208224f5", + "entity_id": "1c78775f-db19-44e1-a55f-a19d52315630" + } + ], + "file_name": "10de2e1a-a9db-4b56-9ab3-a2a56673b386.mirnaseq.isoforms.quantification.txt", + "submitter_id": "0341381e-ec48-4d2a-b3e0-f78759e451e1", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9909683996178293, + "total_reads": 19130718, + "access": "controlled", + "file_name": "1c78775f-db19-44e1-a55f-a19d52315630_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004899943, + "proportion_reads_duplicated": 0, + "submitter_id": "0e28c5d4-ec80-464b-bf74-1799f0d72e97", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 320358443, + "created_datetime": "2024-09-20T11:13:04.922157-05:00", + "average_base_quality": 36, + "md5sum": "afb5e47bd1357ac338ad2d18ebc9347b", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "5a03e7cc-d8c5-46a1-ba4d-16a0a90ecbe7", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "10de2e1a-a9db-4b56-9ab3-a2a56673b386_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "21453ba4-a3de-4f5e-b914-ed51f745072d", + "created_datetime": "2024-09-20T11:16:40.791068-05:00" + }, + "file_size": 642166, + "md5sum": "0123dd93f4e88ddd7be2313272dbf735", + "file_id": "ed56e779-e1cd-421e-9f33-ac0246acee71", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1907-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "7ab3765f-910a-41c9-86cc-08534d2a4e4b", + "entity_id": "6d9a1fe4-7131-487c-a7ff-0cf8a53919ed" + } + ], + "file_name": "97f89216-7155-4125-8743-9dfa065f18a9.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_43_MirnaExpression5a187cd9-04b2-4841-bacb-85230061713c_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1907-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_43_AlignedReads5a187cd9-04b2-4841-bacb-85230061713c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 230039960, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "f97e443d93b1b90c34df8019d10a8d1b", + "updated_datetime": "2023-07-12T10:33:27.414833-05:00", + "file_id": "3d522325-863c-429c-8252-4e3eac6700fb", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_43_MirnaExpressionWorkflow27e76f44-3da5-4a73-86e5-62cd39965e67_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b420bfe6-82e6-46f8-89a3-02bc7d663d2d", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50364, + "md5sum": "67ee065d9e46f38658d48fca5513d2a7", + "file_id": "01aa4e23-5399-491e-98c7-9465e6cd4021", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-30-1861-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "0724f800-e873-45d0-bc56-809d0ec4f6e9", + "entity_id": "32a58029-c8aa-4647-a932-bbf57e82fc48" + } + ], + "file_name": "dc302f21-11d9-458d-a09a-2e6f0699a04f.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_49_MirnaExpressiond25d9685-e9ee-443b-b48e-fd73e3b2a2a6_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-30-1861-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_49_AlignedReadsd25d9685-e9ee-443b-b48e-fd73e3b2a2a6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 211713342, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "7e4aa04c93e824b59e05b78cec357e82", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "2d59d3c5-e3ab-440b-be71-d34b443210b9", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_49_MirnaExpressionWorkflow1d9d2637-aa4d-4f07-9973-8c3a1b1af482_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "60e6f260-19dd-4287-90c8-424dc34ebf29", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 415352, + "md5sum": "156094c51caeabfc9b1648be6cf5614e", + "file_id": "4118a2ce-c4c2-4f54-8a28-d96838b0a1ff", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1021-01B-01R-1564-13", + "entity_type": "aliquot", + "case_id": "b923ac70-70ea-4a82-8466-46350c5803bf", + "entity_id": "9819f772-6987-47d5-8ab4-235ac2b993e2" + } + ], + "file_name": "31c47104-601c-4210-af14-ba1a8cbb339f.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_191_MirnaExpression35350344-e526-49e4-b573-9ec221b15c3f_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "e64e96f8-35da-5af1-ba0f-f26f151b749c", + "entity_submitter_id": "TCGA-23-1021-01B-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8749", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "9819f772-6987-47d5-8ab4-235ac2b993e2", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "eaa82aef-9590-5a6f-84bd-16a526cae935", + "entity_submitter_id": "TCGA-23-1021-01B-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29763", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "9819f772-6987-47d5-8ab4-235ac2b993e2", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1021-01B-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_191_AlignedReads35350344-e526-49e4-b573-9ec221b15c3f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 204380515, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "69a88e55999b2f14542220c5612bcd57", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "758c2559-230d-4e3e-bc98-64aa0804da72", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_191_MirnaExpressionWorkflow2f6051da-e967-45de-a40b-634043b82175_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "54c4ff59-515d-43d0-98a1-ca4930d8b039", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 378475, + "md5sum": "c5d48cee57bcec4f336418376b76c32a", + "file_id": "540b4c23-e4fd-4ff2-ab72-51d62e29f193", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-20-1682-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "94bd4c68-4bfc-4db3-9365-97c867747133", + "entity_id": "f03d023b-cba8-413d-a88d-0378ee7b7748" + } + ], + "file_name": "e9d2b04c-c3eb-4d71-9a33-420badc763ee.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_182_MirnaExpression4b29c1ee-bff3-41d5-9db3-74a22f95efb6_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-20-1682-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_182_AlignedReads4b29c1ee-bff3-41d5-9db3-74a22f95efb6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 134079610, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "5b2c9f1b450cfc595644a65473198c5d", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c865bf3e-6836-493f-93b0-eb1527df1548", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_182_MirnaExpressionWorkflow1b07004f-18e2-4300-81b5-137173a0903c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8723c297-647e-4c8a-92dc-efa171791a44", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 312112, + "md5sum": "111d0f3beedd4aafc748cafdf57b2548", + "file_id": "9b724340-c5a8-4c66-b02b-e8cea413e0b6", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-31-1944-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "6fee41dc-b8a9-4347-8085-b7e05f813ad0", + "entity_id": "c8a1ec95-a4b3-4fb2-b135-1c7616db9ab2" + } + ], + "file_name": "80d179ee-dafe-46d2-9a8c-94dda800da7b.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_192_MirnaExpression82e8880f-496b-4ff1-a9b9-c08eaef1a6e4_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-31-1944-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_192_AlignedReads82e8880f-496b-4ff1-a9b9-c08eaef1a6e4", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 305866261, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "ea1cec3d3c95406f60d1a3d99ec4b68a", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "80a84a69-fedb-4e60-a91c-86757c521a40", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_192_MirnaExpressionWorkflowf0530d0f-560a-4f70-a265-0fac75104d12_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "af3f4cb8-1087-47e9-ac2c-234a90c6a67c", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50376, + "md5sum": "c7c0af2e57d92900a9e8f605c9e6a75a", + "file_id": "d12a963e-04d1-4400-80c9-06d267060e31", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1500-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "a285786d-120e-4c88-b48b-8111f4413988", + "entity_id": "6f6b6c6d-992a-4f19-b286-fadbf8bfbb47" + } + ], + "file_name": "16c0520b-4f7b-4391-b128-cb23d2c125a8.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_250_MirnaExpressionac0ff84c-6e3a-4157-ac7f-19cd9366e3bb_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1500-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_250_AlignedReadsac0ff84c-6e3a-4157-ac7f-19cd9366e3bb", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 228436359, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "a7744c3696fcfb334d9aa08210b1d2bb", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "7ce1eeee-86e0-4c30-a52e-a54dadfbded5", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_250_MirnaExpressionWorkflowb80444d6-6f25-4274-975c-27e499393ec4_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2deebe3f-cab3-4864-b299-01e8c15870e7", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 394239, + "md5sum": "50a097a3581be39fee5062927e2f2215", + "file_id": "e66dac04-6db9-4329-9345-c1b231e3e6ef", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1324-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "c73244fd-d486-439f-a94f-fb0bd4e9ac8f", + "entity_id": "790c6d79-9f7d-4e9a-89db-43b26fe16816" + } + ], + "file_name": "dbc68340-b121-4f8b-86f6-5baee0ae60c2.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_444_MirnaExpressionbdee8668-6543-4cba-8558-c9dca9272796_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1324-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_444_AlignedReadsbdee8668-6543-4cba-8558-c9dca9272796", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 319382100, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "adf5606a05c4b1910f36a2f8884e288e", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "3dfd5345-93c7-49cd-b781-de6bf46966f5", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_444_MirnaExpressionWorkflow575a5ae0-b816-49cd-8155-1c43163ff6b7_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b78cc004-a51a-4fb8-b7ba-771842e5fa0c", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 420538, + "md5sum": "e689235b09502edebdc440516a7ffc79", + "file_id": "dc53cd21-5c98-4b0b-9c90-e071475c6c45", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-0975-01A-02R-1565-13", + "entity_type": "aliquot", + "case_id": "6a57948c-0dc5-4ea2-8043-380f26763752", + "entity_id": "a16723c4-d5b1-40a0-9890-570351738879" + } + ], + "file_name": "a92eccd8-fc46-47e6-96b5-a614b12857d8.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_466_MirnaExpression358c6f53-1a29-43db-9a38-cbce92d92874_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-0975-01A-02R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_466_AlignedReads358c6f53-1a29-43db-9a38-cbce92d92874", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 92882003, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "d15f1212cef5042b73540e7bd841c896", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "430f9b43-5438-42d3-bd91-38fd61479868", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_466_MirnaExpressionWorkflow9ab35bc3-f784-4376-b8f3-6a0adcb7e49b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a23b977e-7009-4d3d-a3c0-e9b5374d44be", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50110, + "md5sum": "9105d06ccee7e8defd651af3725b79dc", + "file_id": "dd21112b-50fc-4163-944d-6023f9ca10c2", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1123-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "60cce7ac-d27d-44a6-9873-ecf91da5e906", + "entity_id": "71543abc-9f15-48d9-994d-e7b963a4d8f3" + } + ], + "file_name": "1c61adad-e43a-44a0-b6bb-69cbcc639f10.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_365_MirnaExpressionc8f8e113-1cc7-4312-949b-9c59908e396b_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1123-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_365_AlignedReadsc8f8e113-1cc7-4312-949b-9c59908e396b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 194307451, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "b7470082a936b8d11a2f08570e3c5777", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "7dd2c0a7-0483-4227-a013-0ec441245755", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_365_MirnaExpressionWorkflowe2b7e5ea-627e-4aa8-989b-a07929e30e7b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "104e230c-4c47-4f37-908e-c90a78506ed9", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 437831, + "md5sum": "d610e1d6629c1cbd13eaaca5565ce70a", + "file_id": "e34e143e-1714-4e36-8e21-fec8f50aa0fc", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1317-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "78777a80-cc6c-46c9-a14a-837ac7943719", + "entity_id": "423f3c95-8bf5-4c2c-8b7a-343d9af1d0bf" + } + ], + "file_name": "7ea6581d-bb19-49e0-a430-7796d0b651c6.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_42_MirnaExpressionbf5146ad-789a-4fb7-b2bb-35c4e5c61dce_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1317-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_42_AlignedReadsbf5146ad-789a-4fb7-b2bb-35c4e5c61dce", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 183790966, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "31455f6fc48d4b95cf0f61def6d01e0f", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "d5aee73a-c717-4043-82c4-839a471c3d67", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_42_MirnaExpressionWorkflowd12e3c48-dcf5-4963-a06a-98104790e2ae_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "bee8eb14-a8b4-406c-a14a-11402b71867e", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 339860, + "md5sum": "7da6bed3c8b0df0488663a9a38fb00e0", + "file_id": "2937c19d-9b16-4cba-94e4-e7e631721099", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1504-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "cd49126a-ec15-43fa-9e43-3f7460d43f2b", + "entity_id": "4eb038e4-6e3c-40c5-abde-c446204e6cb6" + } + ], + "file_name": "6fc0d0fc-268d-4f5b-90d8-fc8fba9442af.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_155_MirnaExpression58801fb5-d62b-47fd-bb9f-7a487bfee1c9_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1504-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_155_AlignedReads58801fb5-d62b-47fd-bb9f-7a487bfee1c9", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 617903851, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "42b51bf61122b716cd02a628da9b7d89", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "8b7859ed-395a-449d-8e4b-7d385d0ffa43", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_155_MirnaExpressionWorkflowa2668653-3f52-4e74-a9c5-fa55f445e0b7_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d360737e-cee1-4407-805a-f28446648efb", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50281, + "md5sum": "68f89483ff9711c06ea52c6b5fdac48c", + "file_id": "a6ec192a-7f6c-4f03-b667-155f48837164", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1494-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "f50ee039-1da9-43d9-ac01-657ec77a7f32", + "entity_id": "8636edee-0160-4b47-b4f7-6191385df3e5" + } + ], + "file_name": "6aeec5ae-b247-4f8a-b00f-a60c87b9c57c.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_220_MirnaExpression96d9a3a2-f389-4da9-9a51-05800b9eade3_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1494-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_220_AlignedReads96d9a3a2-f389-4da9-9a51-05800b9eade3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 470865567, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "60466ce6f36796e2a3457e2b3b33337f", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "dde25aab-4688-4f5d-96b4-6bd0fb1c8b8c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_220_MirnaExpressionWorkflow0b8375e2-054d-450c-873a-23b54d538a36_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "af72164c-9ac1-4caa-8fce-e49b27b7c3a0", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 267613, + "md5sum": "67005702befebba39c51ce26af1eaf9c", + "file_id": "28e8e375-97f3-484f-8def-2b9bf4c5d00a", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2003-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "33dc48d8-2e01-482b-944c-ac10da727ec9", + "entity_id": "bc200f3a-6d31-4480-8785-987f14cfa319" + } + ], + "file_name": "28bfb2b0-4e14-44e5-ad3a-e1d7ca3e4efd.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_326_MirnaExpression94683c88-dd6e-4783-a454-5d9c090b3890_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2003-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_326_AlignedReads94683c88-dd6e-4783-a454-5d9c090b3890", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 190656071, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "77c7a580f87e2d3fa3e63c88dcf45281", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "5767849c-7ca8-431a-9a5e-585bae74dc13", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_326_MirnaExpressionWorkflow9d8448f6-b61d-4a20-b047-88147a159278_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e74f653e-df46-4433-acec-e3ef765eecb8", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50369, + "md5sum": "a7ea7fd53c8c5ef0cd2c463e1761287e", + "file_id": "122033cd-ead2-4d19-be67-a3c061f98d22", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1349-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "4b930a10-4b12-4428-84f9-3255b4a3bc4f", + "entity_id": "3befd649-a80c-40ac-87c4-84c13b8ba0ed" + } + ], + "file_name": "5c324295-219b-491d-9d05-2030b839eb82.mirnaseq.isoforms.quantification.txt", + "submitter_id": "397bd55e-b0a5-42db-9f90-d1bb8b53a04b", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9895681699661999, + "total_reads": 25887500, + "access": "controlled", + "file_name": "3befd649-a80c-40ac-87c4-84c13b8ba0ed_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004657032, + "proportion_reads_duplicated": 0, + "submitter_id": "45db5f70-e529-4c9b-9fc7-5c4b44dede36", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 426225234, + "created_datetime": "2024-09-20T11:14:16.425631-05:00", + "average_base_quality": 36, + "md5sum": "abad65f56d8cb14aaa1acc04efa1c22b", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "fcfd5b8c-370c-405b-9842-79534a6691f9", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 32, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "5c324295-219b-491d-9d05-2030b839eb82_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "79ca76ad-c209-47cf-aa4b-09701aab0bf7", + "created_datetime": "2024-09-20T11:18:15.652445-05:00" + }, + "file_size": 561387, + "md5sum": "30f6fd20a857356f4ce5c6e1e48f8ba1", + "file_id": "f811e056-bfbd-47af-996b-8b08a4c1cb64", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1107-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "acb7ec56-8a47-495f-a11b-2c9fb5d8fe95", + "entity_id": "2b25b605-1d45-499e-99ed-ad9b4a7722a5" + } + ], + "file_name": "e45dce70-fc80-4eaa-af26-d934d73f6c1a.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_319_MirnaExpressionced1f103-a709-4b34-874e-ca3a34fbd3d2_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "3811e141-1b20-5629-9ce0-6d30ac4aded4", + "entity_submitter_id": "TCGA-23-1107-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29769", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "2b25b605-1d45-499e-99ed-ad9b4a7722a5", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "58ed4979-58bc-595b-8b8c-e58b0e4e448e", + "entity_submitter_id": "TCGA-23-1107-01A-01R-1564-13", + "notes": "RNA-seq:INSUFFICIENT INPUT MATERIAL,LOW SEQUENCE YIELD/DIVERSITY;LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8753", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "2b25b605-1d45-499e-99ed-ad9b4a7722a5", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1107-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_319_AlignedReadsced1f103-a709-4b34-874e-ca3a34fbd3d2", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 195291867, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "6453083b1ee7f47da89b4685465ca7b6", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "54d857cf-be82-4a7e-a9ef-81b8427ca944", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_319_MirnaExpressionWorkflow5e746ea1-57fe-4683-b190-c80be6bc6101_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "3bf8362f-ae65-4d96-b88f-1dec978f2f00", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 337190, + "md5sum": "3662f88fa7e374113e55c5aa330a545f", + "file_id": "2406fe1d-7348-4ffc-9ec3-004662365c94", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1107-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "acb7ec56-8a47-495f-a11b-2c9fb5d8fe95", + "entity_id": "2b25b605-1d45-499e-99ed-ad9b4a7722a5" + } + ], + "file_name": "e45dce70-fc80-4eaa-af26-d934d73f6c1a.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_319_MirnaExpressionced1f103-a709-4b34-874e-ca3a34fbd3d2_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "3811e141-1b20-5629-9ce0-6d30ac4aded4", + "entity_submitter_id": "TCGA-23-1107-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29769", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "2b25b605-1d45-499e-99ed-ad9b4a7722a5", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "58ed4979-58bc-595b-8b8c-e58b0e4e448e", + "entity_submitter_id": "TCGA-23-1107-01A-01R-1564-13", + "notes": "RNA-seq:INSUFFICIENT INPUT MATERIAL,LOW SEQUENCE YIELD/DIVERSITY;LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8753", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "2b25b605-1d45-499e-99ed-ad9b4a7722a5", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1107-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_319_AlignedReadsced1f103-a709-4b34-874e-ca3a34fbd3d2", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 195291867, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "6453083b1ee7f47da89b4685465ca7b6", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "54d857cf-be82-4a7e-a9ef-81b8427ca944", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_319_MirnaExpressionWorkflow5e746ea1-57fe-4683-b190-c80be6bc6101_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "3bf8362f-ae65-4d96-b88f-1dec978f2f00", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50223, + "md5sum": "2b57f77d9e034e33c1698e6ad03809e3", + "file_id": "4b239b18-ecf6-4df9-ae9e-a630f798f11d", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1649-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "314e446d-3a57-4c91-ac2e-4fc211456ee6", + "entity_id": "56acc28e-4bab-468b-9248-e04dbb8de865" + } + ], + "file_name": "ef8f508b-f166-4877-84f1-5b49c70de398.mirnaseq.mirnas.quantification.txt", + "submitter_id": "72687d85-df82-47ff-8e69-5ca0121d3d86", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9921242519594125, + "total_reads": 33413461, + "access": "controlled", + "file_name": "56acc28e-4bab-468b-9248-e04dbb8de865_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004632426, + "proportion_reads_duplicated": 0, + "submitter_id": "9d131774-38f8-4fd0-bcbf-12f6b6c3c854", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 516639496, + "created_datetime": "2024-09-20T11:13:32.923192-05:00", + "average_base_quality": 36, + "md5sum": "c6ab38abad0b26e311e18006b79efa5b", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "25540b12-e6fb-4eb0-90c7-e2601816e019", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 33, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "ef8f508b-f166-4877-84f1-5b49c70de398_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d5904f5b-9e9e-4a9b-842c-9863abd6dc59", + "created_datetime": "2024-09-20T11:17:33.992941-05:00" + }, + "file_size": 50685, + "md5sum": "04a80d65dfa599f7106092c264e14867", + "file_id": "d0d62f71-204d-490e-b29c-7f4f7a42fb72", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1649-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "314e446d-3a57-4c91-ac2e-4fc211456ee6", + "entity_id": "173e872e-1ec9-467d-840a-260dd81371e8" + } + ], + "file_name": "67b376d2-5852-4bab-8ec9-afc8b803b186.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_177_MirnaExpression51c5ef67-9cc2-41b6-96b8-b7c72f9b9a8c_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1649-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_177_AlignedReads51c5ef67-9cc2-41b6-96b8-b7c72f9b9a8c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 203509889, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "bf6b70cb1c20bff112c224aaf5255e8d", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "483a6771-ca4f-4752-975f-3bae10f5266e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_177_MirnaExpressionWorkflowceb78ed1-55eb-4bec-b571-94a2b3c9759d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "47bdd434-a495-4c67-be31-38e65fb7939d", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 363691, + "md5sum": "8c7d14bea90892a37c13c3edaf262416", + "file_id": "53c9d0c1-a0fd-4bf9-8839-35a5d6b65aa0", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1649-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "314e446d-3a57-4c91-ac2e-4fc211456ee6", + "entity_id": "56acc28e-4bab-468b-9248-e04dbb8de865" + } + ], + "file_name": "ef8f508b-f166-4877-84f1-5b49c70de398.mirnaseq.isoforms.quantification.txt", + "submitter_id": "a38d1dba-ef19-4e75-a1fd-28e5aafc876d", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9921242519594125, + "total_reads": 33413461, + "access": "controlled", + "file_name": "56acc28e-4bab-468b-9248-e04dbb8de865_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004632426, + "proportion_reads_duplicated": 0, + "submitter_id": "9d131774-38f8-4fd0-bcbf-12f6b6c3c854", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 516639496, + "created_datetime": "2024-09-20T11:13:32.923192-05:00", + "average_base_quality": 36, + "md5sum": "c6ab38abad0b26e311e18006b79efa5b", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "25540b12-e6fb-4eb0-90c7-e2601816e019", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 33, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "ef8f508b-f166-4877-84f1-5b49c70de398_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d5904f5b-9e9e-4a9b-842c-9863abd6dc59", + "created_datetime": "2024-09-20T11:17:33.992941-05:00" + }, + "file_size": 544727, + "md5sum": "513f5517b44a649edfe631a1c9fda9f4", + "file_id": "0edbe6b2-dce8-4853-a3a8-7bd0001e778a", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2026-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "2517ca7a-6057-4c19-b7e1-f6d078e9881a", + "entity_id": "ce0fd762-e18f-4cca-a4c4-c064dca62e60" + } + ], + "file_name": "94d6fac8-c2da-42de-9a11-bf39bcb41f6c.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_447_MirnaExpressione01642f6-5d00-49d0-83b9-6f35db7551b0_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2026-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_447_AlignedReadse01642f6-5d00-49d0-83b9-6f35db7551b0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 197663118, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "8019abb90494a9e43368c33642df841b", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "3a332258-de12-4efb-ba9e-5f3eefdf893f", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_447_MirnaExpressionWorkflow4762d4ed-b84b-427e-8bae-5f6071a5fec8_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "4756c572-7edb-49dd-a5b1-906816a37523", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 309966, + "md5sum": "c5b9bd1bf7a86069594ff18d95540940", + "file_id": "7f3b1945-4b83-4e8e-87e5-113e74f183c0", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1551-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "499a9b57-ee1a-4012-bbab-c6ad955b5e0a", + "entity_id": "0f5f479c-c83b-404b-bd17-ebb2aa5b0dc8" + } + ], + "file_name": "e6b4b4d2-566b-41b2-808f-c8a3c6538e1e.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_279_MirnaExpressiondc38cf0d-b9ac-4d9b-9b3c-d96887a51b69_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1551-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_279_AlignedReadsdc38cf0d-b9ac-4d9b-9b3c-d96887a51b69", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 164995857, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "bc2f8d90f9ab5d0653b29d3745467a97", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "9d60887a-a3c9-4fc9-b02f-fd6c7c6ddf23", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_279_MirnaExpressionWorkflow8f773cb8-70c0-4ead-92fa-50ea5fc5b5c7_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ca4e982b-339a-48ba-a3f7-4c2a008bc94c", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 330233, + "md5sum": "d97808d504fae0b8fb6c8fb50823b322", + "file_id": "9c6d98a4-a294-4205-b60e-649a5ee306ef", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-10-0931-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "e07a61e2-bcd2-4a96-80df-97e04aafbd32", + "entity_id": "3dbc3349-abcf-4e54-879e-1de74ee2b334" + } + ], + "file_name": "13f40071-fafc-412e-9edf-e67ab7b8bc79.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_61_MirnaExpressioncb85c4ba-54c4-4941-b6e4-5ca08fe6df35_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-10-0931-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "submitter_id": "8751", + "classification": "CenterNotification", + "entity_id": "3dbc3349-abcf-4e54-879e-1de74ee2b334", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "03c518d4-788c-59d4-9bb9-1818d52cfb54", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "e07a61e2-bcd2-4a96-80df-97e04aafbd32", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-10-0931" + }, + { + "entity_submitter_id": "TCGA-10-0931-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29708", + "classification": "CenterNotification", + "entity_id": "3dbc3349-abcf-4e54-879e-1de74ee2b334", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "815fd70d-8e57-53e3-88b3-fb182011eb92", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "e07a61e2-bcd2-4a96-80df-97e04aafbd32", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-10-0931" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-10-0931-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_61_AlignedReadscb85c4ba-54c4-4941-b6e4-5ca08fe6df35", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 112379693, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "d1bc82d6bf6b83b35eeace845eba1c69", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c3c43de9-5181-4acd-81e3-6617b5ea9676", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_61_MirnaExpressionWorkflowc8f44918-51ef-4660-8d0f-a3ee337301ea_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7a44f117-5400-463a-8fda-c254f8c88364", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50199, + "md5sum": "e88176b7479182de5226df573932a6f2", + "file_id": "c37e3704-3e98-4de0-9139-cee6f05d2607", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-30-1891-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3", + "entity_id": "690d1437-2a05-4263-8fa7-8f4481893b83" + } + ], + "file_name": "b495eb0f-a0b2-4017-8989-86f9bc116742.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_211_MirnaExpression5bc20651-e9ab-43ca-b7a7-179f3dffc450_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-30-1891-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_211_AlignedReads5bc20651-e9ab-43ca-b7a7-179f3dffc450", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 165658252, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "b4282769de177e5874e0b096cb6299fa", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "0fd78924-9e34-442d-a984-bf9249245098", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_211_MirnaExpressionWorkflowceb10a24-fa40-4671-89c2-1bdd43ba8afb_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d2b1ca89-807a-458d-87c2-55b836b54aab", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 299634, + "md5sum": "9e49dfd9469d76b0fb9c00a3a7badeff", + "file_id": "8f641439-1a90-446f-8b2e-eafd6913b25e", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1625-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "88d61634-913c-435a-8d25-e019c8dab7da", + "entity_id": "921fab94-5522-4c08-8e02-13fb6ea2d388" + } + ], + "file_name": "d1a64a3b-7d3b-4636-8d2a-baf56068b1dd.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_228_MirnaExpressiona261391a-745c-4b87-a50f-46387d4f2d51_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1625-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_228_AlignedReadsa261391a-745c-4b87-a50f-46387d4f2d51", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 155704001, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "80a778753487db8dfc31202a9a3518b3", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "e0d41efe-d51a-4d7b-ba47-e17e0d10c616", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_228_MirnaExpressionWorkflowe182e5b6-acae-4bb3-9f4c-a439c8653fd5_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "90b08641-5971-416f-bde9-a43683684179", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 374694, + "md5sum": "757e318183eeb1a3c478ef339a637166", + "file_id": "d4107eda-8358-4d6d-a80f-8ce225c836d8", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1316-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "58427bce-6b81-4083-aeda-25f59e292bbc", + "entity_id": "6cb5e275-1284-482b-a4e9-933acf9aad44" + } + ], + "file_name": "f7df30ab-bdd8-4ddd-becd-4843a779586f.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_371_MirnaExpression3b91b829-1e21-40b8-9ea2-ef4b1ebc66cc_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1316-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_371_AlignedReads3b91b829-1e21-40b8-9ea2-ef4b1ebc66cc", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 217326482, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "083b6bb8736ce59d2ed3e6b04ed4d0fd", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "bf2eb26f-314e-4068-87b1-0dc649e7ec94", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_371_MirnaExpressionWorkflowd58228fd-0a28-40b6-af14-aaed212d3ba5_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "da6a3464-ceaa-455b-bc6a-760fb496701a", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50247, + "md5sum": "e859212c447eb01f91229bad74122b45", + "file_id": "e2ab2ccb-5fcd-4582-b9fb-818d75afc1d7", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1124-01A-01R-A96U-41", + "entity_type": "aliquot", + "case_id": "8a6d2ce3-cc57-451b-9b07-8263782aa23f", + "entity_id": "51804220-0077-40ce-a454-8481834d96b7" + } + ], + "file_name": "ca58ca71-b14f-4a77-9f63-2b02ff9a99d8.mirnaseq.isoforms.quantification.txt", + "submitter_id": "696ae83d-fe22-4d52-be26-238c023bea53", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9924457043189334, + "total_reads": 33190255, + "access": "controlled", + "file_name": "51804220-0077-40ce-a454-8481834d96b7_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.00367498, + "proportion_reads_duplicated": 0, + "submitter_id": "3091d5c7-5442-465a-84c5-87b1abab0db1", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 527795205, + "created_datetime": "2024-09-20T11:12:57.124601-05:00", + "average_base_quality": 36, + "md5sum": "bb1aa2a46406416f33ff3edbcb697997", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "71f9fbba-fc4b-4c66-9f82-5bf4548f360e", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 32, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "ca58ca71-b14f-4a77-9f63-2b02ff9a99d8_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "00fa24d9-5012-460e-a6e7-c3c6b27a3c7e", + "created_datetime": "2024-09-20T11:17:27.202125-05:00" + }, + "file_size": 701092, + "md5sum": "af6ed08cc215530a574399d778503294", + "file_id": "e19c5b94-d54c-4277-b28f-276de7a39220", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1124-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "8a6d2ce3-cc57-451b-9b07-8263782aa23f", + "entity_id": "9309e1c6-f225-4bdd-a958-c49173bbe1c4" + } + ], + "file_name": "8fc1da04-3059-4d14-9e79-0b4f5046ea78.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_346_MirnaExpression46cad067-24ea-4ebd-a4c1-6b40ef343ff0_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1124-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_346_AlignedReads46cad067-24ea-4ebd-a4c1-6b40ef343ff0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 207964969, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "15174b3470d2c0521f676b8f320c0f5f", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "af3fb70e-4edd-432f-84dd-ef9d181931a7", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_346_MirnaExpressionWorkflowcdcda324-b709-47f0-8793-e986a929b23e_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2c71feea-fbc0-42b9-b36a-6f4539253c54", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50438, + "md5sum": "7c2581f5fe89149044e067fc45747f9c", + "file_id": "d4e04ab6-8aeb-4359-a402-006b4f3e562a", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-0970-01B-01R-1565-13", + "entity_type": "aliquot", + "case_id": "95e58015-a7c0-4bdc-bf64-7617d24d0784", + "entity_id": "b8ca62bf-dd6f-4984-b2c5-4d077d46d783" + } + ], + "file_name": "a83edf78-2e81-4c38-a0d9-31ecde1f0ac1.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_422_MirnaExpression0e786cf6-b679-40f1-89dc-fbdc837209f6_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "8b3e1ebb-3ace-5b24-bd79-ba10300d0897", + "entity_submitter_id": "TCGA-24-0970-01B-01R-1565-13", + "notes": "RNA-seq:HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8796", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "b8ca62bf-dd6f-4984-b2c5-4d077d46d783", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "af4bc8e5-2614-52bd-814e-141b92b58741", + "entity_submitter_id": "TCGA-24-0970-01B-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29777", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "b8ca62bf-dd6f-4984-b2c5-4d077d46d783", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-0970-01B-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_422_AlignedReads0e786cf6-b679-40f1-89dc-fbdc837209f6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 295033473, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "0e31dbb8b84dc1c0684b2f376ba9885b", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "7846d801-1f46-44a2-90c1-f80e69137f46", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_422_MirnaExpressionWorkflow89be2294-a370-4fb6-8ee1-63fb8bb8b301_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f1c75ea4-2096-401d-ba22-6529d4e09a23", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50515, + "md5sum": "3f3b27d996e518d998a0ad055ee6246f", + "file_id": "01beca46-2c42-4d07-a143-7b2dc70b9130", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1362-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "1d192835-524e-429d-bf74-3c4727acb446", + "entity_id": "802ea3c6-e07f-49a1-a1c2-8f90e3197e62" + } + ], + "file_name": "4550f3de-3329-4313-b52a-9fbe5d5e7074.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_172_MirnaExpression55476582-04c3-4d42-b160-3fcf67f59f17_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1362-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_172_AlignedReads55476582-04c3-4d42-b160-3fcf67f59f17", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 146936998, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "4cfbe79a0303842fe9ec769cab9bef4e", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "0ad910a0-d524-4d81-8e75-4e95e4a13275", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_172_MirnaExpressionWorkflow0baa0cdc-fee8-4761-ad53-a84b8e0088b2_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1c8dcb8a-cc57-4cb3-9c64-bf4cb40867dc", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 348317, + "md5sum": "dd1adc25e86892ab7482d1f4f75b6cb4", + "file_id": "da7b7c7e-4a4e-4211-ab07-81ba87195290", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1362-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "1d192835-524e-429d-bf74-3c4727acb446", + "entity_id": "802ea3c6-e07f-49a1-a1c2-8f90e3197e62" + } + ], + "file_name": "4550f3de-3329-4313-b52a-9fbe5d5e7074.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_172_MirnaExpression55476582-04c3-4d42-b160-3fcf67f59f17_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1362-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_172_AlignedReads55476582-04c3-4d42-b160-3fcf67f59f17", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 146936998, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "4cfbe79a0303842fe9ec769cab9bef4e", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "0ad910a0-d524-4d81-8e75-4e95e4a13275", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_172_MirnaExpressionWorkflow0baa0cdc-fee8-4761-ad53-a84b8e0088b2_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1c8dcb8a-cc57-4cb3-9c64-bf4cb40867dc", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50315, + "md5sum": "eb952a7cf8bfaa4f01b83b3841cad718", + "file_id": "e459d790-888c-47d5-bb77-9200d814f359", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2030-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "d2ccefea-c1d6-465f-97b1-e51e29c5f1f8", + "entity_id": "82f66166-e81f-4fee-a9a7-bd3ffd6b5d22" + } + ], + "file_name": "0ebefb69-8b60-46e6-9165-53cdd735ba91.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_212_MirnaExpression3f82b265-127b-4c50-bb28-79f43917038d_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2030-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_212_AlignedReads3f82b265-127b-4c50-bb28-79f43917038d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 260570502, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "fc4fe629cd9354db3c574388ecb34d88", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4f793bed-8a20-404a-b950-27a86334db01", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_212_MirnaExpressionWorkflow1daf7e4b-7b51-4117-ab26-1b5aaed6f133_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ea140da4-bb45-4f3e-9109-8551f4e2d8cd", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 428133, + "md5sum": "eccc5b3841a1509b5ae3dbf1e7da37a1", + "file_id": "9afdd9ea-0432-483d-84b5-6da9f492a9ec", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2036-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "c9226204-cb61-40b8-8a94-a7e71c14ea3a", + "entity_id": "788ade22-382b-49ca-b2b1-447a2072d0ea" + } + ], + "file_name": "3446bcfb-1b6a-4863-a481-f19e4474d9b0.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_430_MirnaExpressionae0fe71b-0b7f-4424-81fe-abd8dfb82e35_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-24-2036", + "notes": "Prior malignancy breast cancer treated with systemic treatment per path report.", + "submitter_id": "11931", + "classification": "Notification", + "entity_id": "c9226204-cb61-40b8-8a94-a7e71c14ea3a", + "created_datetime": "2012-11-10T00:00:00", + "annotation_id": "60110db8-dd2e-5801-9e6c-22527b3ebfdc", + "entity_type": "case", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "c9226204-cb61-40b8-8a94-a7e71c14ea3a", + "state": "released", + "category": "History of unacceptable prior treatment related to a prior/other malignancy", + "status": "Approved", + "case_submitter_id": "TCGA-24-2036" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2036-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_430_AlignedReadsae0fe71b-0b7f-4424-81fe-abd8dfb82e35", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 351624265, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "dd58839dd6c8ffb346213984a94990df", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "206df246-2cb7-4b22-85c7-7115b94e35ad", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_430_MirnaExpressionWorkflow85458f75-10f3-49fb-83ca-151a76610f89_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "93ce1cb9-6ace-4876-bc26-16345f8d65ed", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 479522, + "md5sum": "df8ae9338973b3d8e07a107e3f8db886", + "file_id": "7b765771-fc1a-4fdf-994b-391cfbf39bea", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1654-01A-02R-A96R-41", + "entity_type": "aliquot", + "case_id": "ff33db70-91d4-4dbb-a4fc-d81a128d0f32", + "entity_id": "537ddbae-a538-469a-930e-1de90f3ec351" + } + ], + "file_name": "c2fa8708-4e91-4ae7-8376-9e560c930943.mirnaseq.isoforms.quantification.txt", + "submitter_id": "274cc76f-694b-4605-a292-4d821e58ec31", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9880531211804667, + "total_reads": 22740835, + "access": "controlled", + "file_name": "537ddbae-a538-469a-930e-1de90f3ec351_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.00416334, + "proportion_reads_duplicated": 0, + "submitter_id": "b4647250-59a7-4e35-a826-a2e4d2795053", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 387405870, + "created_datetime": "2024-09-20T11:14:22.955671-05:00", + "average_base_quality": 36, + "md5sum": "d03c294b7e192781fb7d0eb1948285c0", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "d14c9517-5ebf-4ec2-af9d-fecccc65ada8", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 30, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "c2fa8708-4e91-4ae7-8376-9e560c930943_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5aff8912-17be-4c31-8b9a-1c9e3f5b00ba", + "created_datetime": "2024-09-20T11:16:42.067233-05:00" + }, + "file_size": 544562, + "md5sum": "fd0cb794a0ac9fc8a149ad42aa211ca5", + "file_id": "377c2c62-7394-4d26-ad5e-d8bf0437b339", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1654-01A-02R-A96R-41", + "entity_type": "aliquot", + "case_id": "ff33db70-91d4-4dbb-a4fc-d81a128d0f32", + "entity_id": "537ddbae-a538-469a-930e-1de90f3ec351" + } + ], + "file_name": "c2fa8708-4e91-4ae7-8376-9e560c930943.mirnaseq.mirnas.quantification.txt", + "submitter_id": "57923aa4-c4ec-4ba1-b93a-14e186e5ff19", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9880531211804667, + "total_reads": 22740835, + "access": "controlled", + "file_name": "537ddbae-a538-469a-930e-1de90f3ec351_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.00416334, + "proportion_reads_duplicated": 0, + "submitter_id": "b4647250-59a7-4e35-a826-a2e4d2795053", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 387405870, + "created_datetime": "2024-09-20T11:14:22.955671-05:00", + "average_base_quality": 36, + "md5sum": "d03c294b7e192781fb7d0eb1948285c0", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "d14c9517-5ebf-4ec2-af9d-fecccc65ada8", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 30, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "c2fa8708-4e91-4ae7-8376-9e560c930943_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5aff8912-17be-4c31-8b9a-1c9e3f5b00ba", + "created_datetime": "2024-09-20T11:16:42.067233-05:00" + }, + "file_size": 50611, + "md5sum": "f8e5cf03712bd55c02b443c3e79ed343", + "file_id": "ec60fb3c-6601-4535-bdf1-9415d279c332", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-59-2348-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "20cf00ea-d7da-42bb-bce7-f005f0b952eb", + "entity_id": "7162d809-ff1a-4346-bb00-c8086386ec46" + } + ], + "file_name": "4508c46a-7ecc-4031-9936-4c4746ce5a8d.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_362_MirnaExpressiond1d6798a-fd47-483a-900b-062f32c981ec_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-59-2348-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_362_AlignedReadsd1d6798a-fd47-483a-900b-062f32c981ec", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 329195522, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "fad56af3c5b47884f613d71417513dca", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "72a4a90d-f1a6-4fd7-89a7-6f2a9a7063de", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_362_MirnaExpressionWorkflow13f6afe5-ff18-4b79-9036-ac05867fba6f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b1bd80b4-9ef2-4192-8249-7ee2e4297b66", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 437192, + "md5sum": "3f2f0d473982897dab6e683dec23e462", + "file_id": "9ab0c07f-e104-4ead-a7b7-70e503fbca27", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1842-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "09c77947-a333-4392-b18d-a6c1f08764a1", + "entity_id": "6cb78602-e09f-4dbc-b3e5-684ebe77bddc" + } + ], + "file_name": "5b3bd1e9-bde7-4821-8694-53bffd484b15.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_281_MirnaExpression8d482c93-9eb9-4668-9c13-afd2f8778f66_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1842-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_281_AlignedReads8d482c93-9eb9-4668-9c13-afd2f8778f66", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 144133683, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "63c8a060b3963439bac3f06c97a9c53e", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "d81be9be-5eb5-4b29-8c09-70def79945a9", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_281_MirnaExpressionWorkflow710a15f3-00f0-4d1f-b6ae-a7cd1b285edb_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "6b51e6c0-4362-44fe-87c3-5deca86e59f1", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50380, + "md5sum": "bf20e3ef4b2005ecf8904e829d9f5877", + "file_id": "18a28a39-8b0d-44a3-9aa7-a1075c9ed2fc", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1545-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "f2ec64f5-a414-4c34-99c7-d59bc4e831e0", + "entity_id": "e2fcba09-755d-425d-ab4d-cede8ef86e48" + } + ], + "file_name": "806e63e0-463e-4370-acf8-a2787c33c683.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_292_MirnaExpression36431b6e-3dd2-4d95-908c-02a13f3f6c48_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1545-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_292_AlignedReads36431b6e-3dd2-4d95-908c-02a13f3f6c48", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 64999024, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "58a3a80c0adf3e367f809bfaf3d7c6e2", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "3aa5ffd6-73bd-413e-99b2-369b4a860d2c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_292_MirnaExpressionWorkflow8a0966c3-9406-40ad-ae3c-89350e043954_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "309cad62-388e-4bc2-a65a-c7738fabb4a3", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 235545, + "md5sum": "0b5cb3ee95f4e40658f8b9f78958ceae", + "file_id": "0149edd7-6eb1-482b-9e20-6633ea66e2bd", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1118-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "700e91bb-d675-41b2-bbbd-935767c7b447", + "entity_id": "9e73d9f4-dd7c-439f-a8c5-236311e3facf" + } + ], + "file_name": "a8ec968d-7115-4b59-acaa-6f878023cb7f.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_438_MirnaExpression0df1c7a9-ca3d-4139-bed2-8bd9a96a0f0c_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "d34ba96d-c960-5750-a1a4-e63b012840fb", + "entity_submitter_id": "TCGA-23-1118-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29773", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "9e73d9f4-dd7c-439f-a8c5-236311e3facf", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "d7b340fc-4835-54f8-80b6-6e6fd1f69b3e", + "entity_submitter_id": "TCGA-23-1118-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8775", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "9e73d9f4-dd7c-439f-a8c5-236311e3facf", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1118-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_438_AlignedReads0df1c7a9-ca3d-4139-bed2-8bd9a96a0f0c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 130374382, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "ee39b9b37d68eaa7bb4df26f47929c34", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "dba569b1-9373-475c-a5a9-decb41afc377", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_438_MirnaExpressionWorkflowbd367cd5-cea2-4418-a9a9-75013469ab5a_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c7dd3e37-1a5e-496f-b592-6652e40b6435", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 280100, + "md5sum": "ff3c10cfc36001ebf9269e169f0f9c07", + "file_id": "8dfb3609-c6c5-43ff-8b1f-a5c4fdba334a", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1877-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "077079c3-6877-467b-b9cc-5c650aae4f07", + "entity_id": "39639797-675b-4f3c-9959-7e3344bea0d1" + } + ], + "file_name": "f1b000fe-541d-49a5-acdc-2dbd16c2d4a3.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_174_MirnaExpressione9db2204-1c12-4d05-b045-8d6c604f65c9_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "724936e2-30f2-535b-bdb2-ac294d55ead6", + "entity_submitter_id": "TCGA-25-1877-01A-01R-1567-13", + "notes": "RNA-seq:HIGH rRNA CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8858", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "39639797-675b-4f3c-9959-7e3344bea0d1", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "d05c7da0-6577-5724-937a-01ad606dba9b", + "entity_submitter_id": "TCGA-25-1877-01A-01R-1567-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29791", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "39639797-675b-4f3c-9959-7e3344bea0d1", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1877-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_174_AlignedReadse9db2204-1c12-4d05-b045-8d6c604f65c9", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 160609416, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "9040a5febfa1e08245996138988b3f19", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "730199a0-8aec-4b61-9080-2881a6f01efb", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_174_MirnaExpressionWorkflow13fb99a1-7b1a-453f-a95c-da67b7e3388b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d4e717a6-689b-40e2-91dd-123b83b09761", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50344, + "md5sum": "a9bcbfb7d54954559199ef783fa453a7", + "file_id": "3d59f933-afd4-43cd-a5ef-d019132c0ff8", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1871-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "ff844242-7559-4b07-b09e-69ea40e5ac6b", + "entity_id": "efcc36b2-e351-4875-b743-df58480bc9fb" + } + ], + "file_name": "2ebc4202-1053-45da-a924-10e8ff9ad6a2.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_168_MirnaExpression0beff94b-50f0-4d3f-92f0-cbb44fa2a108_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1871-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_168_AlignedReads0beff94b-50f0-4d3f-92f0-cbb44fa2a108", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 202493990, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "7ba7964d43578ecc4d9e1bd3169a7f55", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "397a27a8-fb79-49c5-84a8-b9f707a8e26a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_168_MirnaExpressionWorkflow2fc16217-55d9-4785-9ed5-23dbb5961849_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d8e5aa05-a527-4dae-acc7-a61acf6b5225", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 309160, + "md5sum": "aebdba071056a761ef58f8210feb2d5a", + "file_id": "0749ee5a-e14f-4064-94f5-d18e0741dae3", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1632-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "c435627c-159d-4a6d-a819-30abac24bf4d", + "entity_id": "12c78d62-6045-4f77-bd84-9ab5a38f4635" + } + ], + "file_name": "bff56eb3-0abb-43be-97a3-545d9c748a79.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_393_MirnaExpression11f124a1-e665-4399-a862-5d59e6000d48_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1632-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_393_AlignedReads11f124a1-e665-4399-a862-5d59e6000d48", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 178568819, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "c41e340595de0de358374e2eaeb7d1b2", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "01b565cd-af17-4c5b-81fd-e48555a19c33", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_393_MirnaExpressionWorkflow0aa8643d-d16a-4750-9c2d-60d01fd33ca2_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f76d8acc-e6f1-47d8-b99a-d8001e17c1c8", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50234, + "md5sum": "3cef0061b8280ebd0b150ce797d3474c", + "file_id": "698687e9-beab-4106-a37e-f4b2679239e7", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1412-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "44493c23-82e9-4d9f-8e3c-7b3f9ae44970", + "entity_id": "70281de6-94a4-490f-aecc-6f56f28c7862" + } + ], + "file_name": "02d34874-3343-4c91-9ed9-47af1e8b544a.mirnaseq.isoforms.quantification.txt", + "submitter_id": "4459bc51-939e-4d93-a564-6c6cc5080ec7", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9866779759898339, + "total_reads": 18995537, + "access": "controlled", + "file_name": "70281de6-94a4-490f-aecc-6f56f28c7862_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004831843, + "proportion_reads_duplicated": 0, + "submitter_id": "95f24e39-fb2c-4070-bf34-3010880582f1", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 334760114, + "created_datetime": "2024-09-20T11:12:32.527256-05:00", + "average_base_quality": 36, + "md5sum": "18405f888371b0f10d1b7384f86b7ce4", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "b5ac1498-6c84-4c8a-8864-38a3f7b988d4", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 32, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "02d34874-3343-4c91-9ed9-47af1e8b544a_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "9be5cbd7-7f35-4e61-b41e-77f24b32f59f", + "created_datetime": "2024-09-20T11:16:36.815350-05:00" + }, + "file_size": 585600, + "md5sum": "2a10e9763f12bc559b929d9c98a1f171", + "file_id": "fff1c70c-54a0-4b31-bed3-4ff245c67dce", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0886-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "91de8a74-a1e6-46b6-a06e-70aedf2c3eaf", + "entity_id": "eac4bb8e-83fe-4fdf-822d-8fb126b1da1e" + } + ], + "file_name": "05987e47-7fa5-4323-ab5f-9810d51a7deb.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_129_MirnaExpression75ef23ab-283d-4a4b-9099-6eef5f1d2a31_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-0886-01A-01R-1569-13", + "notes": "RNA-seq:HIGH rRNA CONTENT;LOW 5/3 COVERAGE RATIO", + "submitter_id": "8852", + "classification": "CenterNotification", + "entity_id": "eac4bb8e-83fe-4fdf-822d-8fb126b1da1e", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "1b5a0a89-f4d8-5480-9431-92f5ef8d8f3b", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "91de8a74-a1e6-46b6-a06e-70aedf2c3eaf", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-13-0886" + }, + { + "entity_submitter_id": "TCGA-13-0886-01A-01R-1569-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29729", + "classification": "CenterNotification", + "entity_id": "eac4bb8e-83fe-4fdf-822d-8fb126b1da1e", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "bbff108a-2f4e-5216-8ff8-72b73cad3f7d", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "91de8a74-a1e6-46b6-a06e-70aedf2c3eaf", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-13-0886" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0886-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_129_AlignedReads75ef23ab-283d-4a4b-9099-6eef5f1d2a31", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 98740157, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "a989b4420f3f038d3a3ed0c133aa3916", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "84416cdd-8dc1-404c-afa0-378b1f576876", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_129_MirnaExpressionWorkflowb5a82ea2-9b43-4081-a248-eb519a81afc7_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "428baf50-5fad-4208-b93f-b3abf045588c", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 300711, + "md5sum": "b010863d221c060fb1ee152826c29a0d", + "file_id": "6e66c78a-7762-41b6-862e-f39cec4d56d4", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0886-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "91de8a74-a1e6-46b6-a06e-70aedf2c3eaf", + "entity_id": "eac4bb8e-83fe-4fdf-822d-8fb126b1da1e" + } + ], + "file_name": "05987e47-7fa5-4323-ab5f-9810d51a7deb.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_129_MirnaExpression75ef23ab-283d-4a4b-9099-6eef5f1d2a31_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-0886-01A-01R-1569-13", + "notes": "RNA-seq:HIGH rRNA CONTENT;LOW 5/3 COVERAGE RATIO", + "submitter_id": "8852", + "classification": "CenterNotification", + "entity_id": "eac4bb8e-83fe-4fdf-822d-8fb126b1da1e", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "1b5a0a89-f4d8-5480-9431-92f5ef8d8f3b", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "91de8a74-a1e6-46b6-a06e-70aedf2c3eaf", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-13-0886" + }, + { + "entity_submitter_id": "TCGA-13-0886-01A-01R-1569-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29729", + "classification": "CenterNotification", + "entity_id": "eac4bb8e-83fe-4fdf-822d-8fb126b1da1e", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "bbff108a-2f4e-5216-8ff8-72b73cad3f7d", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "91de8a74-a1e6-46b6-a06e-70aedf2c3eaf", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-13-0886" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0886-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_129_AlignedReads75ef23ab-283d-4a4b-9099-6eef5f1d2a31", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 98740157, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "a989b4420f3f038d3a3ed0c133aa3916", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "84416cdd-8dc1-404c-afa0-378b1f576876", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_129_MirnaExpressionWorkflowb5a82ea2-9b43-4081-a248-eb519a81afc7_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "428baf50-5fad-4208-b93f-b3abf045588c", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50233, + "md5sum": "edbe5dd2fdc240cb7b0a6984baeb202a", + "file_id": "ac692ebf-646f-434d-a55f-e65bf4d0cf3b", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1648-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "cddce77f-21e6-4124-9f03-96fb5ca7cefa", + "entity_id": "9248aa41-9572-4b91-8e00-13aa0e3dce12" + } + ], + "file_name": "04f92f91-dfa4-45e5-8817-612c170610aa.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_455_MirnaExpression344a0dd6-6a75-4ed8-8691-eced550797dc_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "68c2a82b-ff94-5185-9844-a26844d03d8e", + "entity_submitter_id": "TCGA-04-1648-01A-01R-1567-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8814", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "9248aa41-9572-4b91-8e00-13aa0e3dce12", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "865906e0-6159-5f51-9b55-7fde665bd5ac", + "entity_submitter_id": "TCGA-04-1648-01A-01R-1567-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29700", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "9248aa41-9572-4b91-8e00-13aa0e3dce12", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1648-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_455_AlignedReads344a0dd6-6a75-4ed8-8691-eced550797dc", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 473921488, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "730d352e0e1391378f0e109fbcc2f2f7", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "3b6c8ddd-cd01-4ae3-a92a-6e505434db45", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_455_MirnaExpressionWorkflowd2faf22a-8c23-41ea-a97e-2c802cf02c29_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8c8e0f07-88ff-4f8a-a64d-ce9768716e7f", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50549, + "md5sum": "f74fcf8bb7a3d39a227b4963c9f0c4ea", + "file_id": "648ee215-024f-4df8-a46a-25465eb29312", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-30-1853-01A-02R-1567-13", + "entity_type": "aliquot", + "case_id": "5d603bba-62e6-48fb-b8fc-401109abcaee", + "entity_id": "fc32468d-de77-4e0e-b1a2-203ac119cb02" + } + ], + "file_name": "ff73a433-5f3b-41e0-aa7e-7415665ff3de.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_157_MirnaExpressionafd84e42-2137-432b-a09b-9ac417f5f5af_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "4d2ade16-2783-5def-879f-4cc25245b1fa", + "entity_submitter_id": "TCGA-30-1853-01A-02R-1567-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29800", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "fc32468d-de77-4e0e-b1a2-203ac119cb02", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "f70aa6d9-c1fb-535c-b519-dcea499dfbab", + "entity_submitter_id": "TCGA-30-1853-01A-02R-1567-13", + "notes": "RNA-seq:INSUFFICIENT INPUT MATERIAL,LOW SEQUENCE YIELD/DIVERSITY;LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8817", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "fc32468d-de77-4e0e-b1a2-203ac119cb02", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-30-1853-01A-02R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_157_AlignedReadsafd84e42-2137-432b-a09b-9ac417f5f5af", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 124011699, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "284480ff83a2dc60cd19713c179be306", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "7352a258-c592-4aa1-bddd-7a2a8fbfa926", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_157_MirnaExpressionWorkflowa39c8b1c-2319-4da4-a6cc-e1c2318841c6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f8b66a9a-26d6-4711-9628-0885a2f6044a", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 241076, + "md5sum": "9d0851f6614950fb314958a0f33828b1", + "file_id": "fec3a211-7980-400c-a15c-cb12a6be2add", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1738-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "72c40fba-f502-489b-ad87-843f52655894", + "entity_id": "1ca9af90-a8db-4f7e-b17a-0bf32fed98c7" + } + ], + "file_name": "fd49b73a-7479-4275-8069-491d0a62f439.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_299_MirnaExpression212df360-d493-4696-bf6d-470dcb29d5bb_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1738-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_299_AlignedReads212df360-d493-4696-bf6d-470dcb29d5bb", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 117896184, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "e803951724742215943ccb2a261f8b40", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "af310da8-4dc2-4b15-b8cd-bd468f58b88e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_299_MirnaExpressionWorkflow696507af-3470-4577-b295-3fe781cbb810_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "db3da142-6276-4157-82b2-42599111e47d", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 278972, + "md5sum": "d4bf8e770352adf43aae26cc94dc9cd2", + "file_id": "1e1c6cca-fa7d-433e-b50d-f3556879ffef", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-30-1853-01A-02R-1567-13", + "entity_type": "aliquot", + "case_id": "5d603bba-62e6-48fb-b8fc-401109abcaee", + "entity_id": "fc32468d-de77-4e0e-b1a2-203ac119cb02" + } + ], + "file_name": "ff73a433-5f3b-41e0-aa7e-7415665ff3de.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_157_MirnaExpressionafd84e42-2137-432b-a09b-9ac417f5f5af_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "4d2ade16-2783-5def-879f-4cc25245b1fa", + "entity_submitter_id": "TCGA-30-1853-01A-02R-1567-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29800", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "fc32468d-de77-4e0e-b1a2-203ac119cb02", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "f70aa6d9-c1fb-535c-b519-dcea499dfbab", + "entity_submitter_id": "TCGA-30-1853-01A-02R-1567-13", + "notes": "RNA-seq:INSUFFICIENT INPUT MATERIAL,LOW SEQUENCE YIELD/DIVERSITY;LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8817", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "fc32468d-de77-4e0e-b1a2-203ac119cb02", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-30-1853-01A-02R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_157_AlignedReadsafd84e42-2137-432b-a09b-9ac417f5f5af", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 124011699, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "284480ff83a2dc60cd19713c179be306", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "7352a258-c592-4aa1-bddd-7a2a8fbfa926", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_157_MirnaExpressionWorkflowa39c8b1c-2319-4da4-a6cc-e1c2318841c6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f8b66a9a-26d6-4711-9628-0885a2f6044a", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50066, + "md5sum": "17503928b5b72af608511054b23dee4f", + "file_id": "14f9ac7a-e3f6-4363-9cd5-6ebeda9be45d", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1777-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "5ced5b58-fab4-4bcd-b706-d6e49ce0cfc5", + "entity_id": "cbeba637-1a32-45f1-83f3-614725665436" + } + ], + "file_name": "fb3178bf-1785-4dad-b4d1-e09541819db4.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_41_MirnaExpression37c637ab-a739-4195-80e8-ed3653229716_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "1c49fb88-29e2-53af-95c7-6b529b14f562", + "entity_submitter_id": "TCGA-29-1777-01A-01R-1567-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29798", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "cbeba637-1a32-45f1-83f3-614725665436", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "3b168213-06a8-5893-bf59-930502184542", + "entity_submitter_id": "TCGA-29-1777-01A-01R-1567-13", + "notes": "RNA-seq:INSUFFICIENT INPUT MATERIAL,LOW SEQUENCE YIELD/DIVERSITY", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8857", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "cbeba637-1a32-45f1-83f3-614725665436", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1777-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_41_AlignedReads37c637ab-a739-4195-80e8-ed3653229716", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 138194447, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "f74e64cd254501e79e8a16ac67fc1b86", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "9102a404-281d-4b2d-9823-2c4d616f0384", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_41_MirnaExpressionWorkflow05829626-9ebe-4673-bb68-4a24dd14a934_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0319a74e-29e0-44b9-bd45-add20127d7dd", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 219524, + "md5sum": "7bfbd8d44c80c28ca36eef35fa1bf872", + "file_id": "d8da707e-4eb4-440d-b7b4-d6fd332b5a36", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1409-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "18e0e996-8f23-4f53-94a5-dde38b550863", + "entity_id": "850f50c3-4d01-4838-bd3a-641942bb2855" + } + ], + "file_name": "897f330c-09c1-4a3b-afcb-bba15eaf9367.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_449_MirnaExpression13cbadf2-35b6-4cc2-8763-adc746d4dfeb_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "9e631c30-7896-5ddf-b58c-f945df28618b", + "entity_submitter_id": "TCGA-13-1409-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29745", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "850f50c3-4d01-4838-bd3a-641942bb2855", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "b04f9286-324d-50b2-8dd0-0fbe3f32c395", + "entity_submitter_id": "TCGA-13-1409-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8794", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "850f50c3-4d01-4838-bd3a-641942bb2855", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1409-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_449_AlignedReads13cbadf2-35b6-4cc2-8763-adc746d4dfeb", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 292762048, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "9aef7108bf1427e78c42767147a047a6", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c5fededb-fe5a-4319-8635-ef05f2b2b6e8", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_449_MirnaExpressionWorkflow2269e98a-54ac-4aa2-96f1-ed681f3aec69_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "eaf1d10b-e0e3-4c1e-980f-6de650972302", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 379728, + "md5sum": "502cb0caaedfee0cc8f74e57b979b26e", + "file_id": "09dd2f4d-bd6c-4a56-8fff-69c9b99d0b49", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1409-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "18e0e996-8f23-4f53-94a5-dde38b550863", + "entity_id": "850f50c3-4d01-4838-bd3a-641942bb2855" + } + ], + "file_name": "897f330c-09c1-4a3b-afcb-bba15eaf9367.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_449_MirnaExpression13cbadf2-35b6-4cc2-8763-adc746d4dfeb_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "9e631c30-7896-5ddf-b58c-f945df28618b", + "entity_submitter_id": "TCGA-13-1409-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29745", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "850f50c3-4d01-4838-bd3a-641942bb2855", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "b04f9286-324d-50b2-8dd0-0fbe3f32c395", + "entity_submitter_id": "TCGA-13-1409-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8794", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "850f50c3-4d01-4838-bd3a-641942bb2855", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1409-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_449_AlignedReads13cbadf2-35b6-4cc2-8763-adc746d4dfeb", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 292762048, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "9aef7108bf1427e78c42767147a047a6", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c5fededb-fe5a-4319-8635-ef05f2b2b6e8", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_449_MirnaExpressionWorkflow2269e98a-54ac-4aa2-96f1-ed681f3aec69_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "eaf1d10b-e0e3-4c1e-980f-6de650972302", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50277, + "md5sum": "939ff002bf7542582450b3257a9fead0", + "file_id": "1fc34605-bf80-42da-be83-030277643a5d", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1483-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "611600a6-43ec-4029-9682-cd6d6a3312ec", + "entity_id": "1120f746-aeb6-457a-946e-46ed665a9211" + } + ], + "file_name": "02bcc8b6-df8d-459f-b1fa-92fefc2b113a.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_54_MirnaExpressione57ed92c-c44b-49d9-9234-a1a4468f725b_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "2695da00-c645-53b7-a5f4-a8cda973460a", + "entity_submitter_id": "TCGA-13-1483-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29748", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "1120f746-aeb6-457a-946e-46ed665a9211", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "790fb456-cc99-51fe-bfa0-cce531ae4d6a", + "entity_submitter_id": "TCGA-13-1483-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8798", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "1120f746-aeb6-457a-946e-46ed665a9211", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1483-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_54_AlignedReadse57ed92c-c44b-49d9-9234-a1a4468f725b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 154142448, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "e1030588a0989bdd8f82e03e8422cab1", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5cc49fc5-7d14-4df4-980e-dd3eb3feb3d4", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_54_MirnaExpressionWorkflowdd49dbf1-07f3-42fa-9154-30904af075e7_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "095ebdb6-85ee-4478-bb57-d0c8451de766", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50254, + "md5sum": "c8ecf5c848f4803ec0881b15fa300f5c", + "file_id": "7eafee1c-92c2-46a0-8775-35b27cd2627a", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1483-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "611600a6-43ec-4029-9682-cd6d6a3312ec", + "entity_id": "1120f746-aeb6-457a-946e-46ed665a9211" + } + ], + "file_name": "02bcc8b6-df8d-459f-b1fa-92fefc2b113a.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_54_MirnaExpressione57ed92c-c44b-49d9-9234-a1a4468f725b_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "2695da00-c645-53b7-a5f4-a8cda973460a", + "entity_submitter_id": "TCGA-13-1483-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29748", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "1120f746-aeb6-457a-946e-46ed665a9211", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "790fb456-cc99-51fe-bfa0-cce531ae4d6a", + "entity_submitter_id": "TCGA-13-1483-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8798", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "1120f746-aeb6-457a-946e-46ed665a9211", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1483-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_54_AlignedReadse57ed92c-c44b-49d9-9234-a1a4468f725b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 154142448, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "e1030588a0989bdd8f82e03e8422cab1", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5cc49fc5-7d14-4df4-980e-dd3eb3feb3d4", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_54_MirnaExpressionWorkflowdd49dbf1-07f3-42fa-9154-30904af075e7_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "095ebdb6-85ee-4478-bb57-d0c8451de766", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 342213, + "md5sum": "14c80870b84474cac7c7685fcdd37ecf", + "file_id": "edfd0211-a379-4ba8-9de8-8f3c46a5699c", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1471-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "ceb19678-b453-4529-b6cb-d02f9cb101b4", + "entity_id": "a30e415d-8fe3-4d1d-b183-381ab431bb4a" + } + ], + "file_name": "4357992e-4034-49ba-bf2e-2b37f5adffd5.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_247_MirnaExpressionc9456ddd-7625-4f70-817a-73257cb3d2e1_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "8f400c47-069f-5c0b-8fb7-d4506de5c883", + "entity_submitter_id": "TCGA-24-1471-01A-01R-1566-13", + "notes": "RNA-seq:HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:32:20.747393-05:00", + "submitter_id": "8821", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "a30e415d-8fe3-4d1d-b183-381ab431bb4a", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "fd35613f-b23c-5b16-a2c5-43d0fa4526d4", + "entity_submitter_id": "TCGA-24-1471-01A-01R-1566-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29786", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "a30e415d-8fe3-4d1d-b183-381ab431bb4a", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1471-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_247_AlignedReadsc9456ddd-7625-4f70-817a-73257cb3d2e1", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 159452749, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "b7a7488eb6b16a2c5e6213e9e3ea338e", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4a6dab8a-900c-46c3-a457-69fb75e1968e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_247_MirnaExpressionWorkflow64317c1f-8462-4b24-aa72-b43ec2e3dd7e_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "25b5f79e-c90e-45fc-8ff3-44ee17a40c63", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50163, + "md5sum": "95b6dc38f61db9a5464ce88531d34d75", + "file_id": "aae72e78-97b7-43b2-ba9c-4c2c0dcdd37e", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1776-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "7472b3ba-9b15-4d97-8708-a2dd82ca0f45", + "entity_id": "50867fed-2fda-4c45-aa08-042087e7daa9" + } + ], + "file_name": "d7b2fdac-3937-4545-b7b6-2beb70c362aa.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_235_MirnaExpression8de85a6d-5780-426e-9355-77ace5658ea6_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1776-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_235_AlignedReads8de85a6d-5780-426e-9355-77ace5658ea6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 135368397, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "27018b74b7e00aea4540cc9ac26a4498", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "bf990672-5a0e-4988-90e2-57249ca21ac8", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_235_MirnaExpressionWorkflow265c57e2-9cc3-4ad0-8fbc-2bbdf07c4bc3_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "939fed6a-d4ee-44bb-8350-f33b2b99d256", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 260351, + "md5sum": "fc33d11f9a78ecb4b125cf163356ffcb", + "file_id": "141c7cc5-aa53-4e24-ae9b-61ec8692d006", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1361-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "a6aad7f9-8444-4c2f-8e4b-b19fd453544f", + "entity_id": "746ba0b0-f7a4-4f43-9961-97dccc756e71" + } + ], + "file_name": "489e1313-1bd0-4e09-a6b9-937559ae3a00.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_462_MirnaExpressiondaf8da37-52e9-4ccb-9030-e0c05916b98c_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "7a7291eb-981f-50ba-b11c-2e19ff8aedf3", + "entity_submitter_id": "TCGA-04-1361-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29695", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "746ba0b0-f7a4-4f43-9961-97dccc756e71", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "d60793ee-d4ed-5b80-aac9-68faea6f1abe", + "entity_submitter_id": "TCGA-04-1361-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8785", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "746ba0b0-f7a4-4f43-9961-97dccc756e71", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1361-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_462_AlignedReadsdaf8da37-52e9-4ccb-9030-e0c05916b98c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 122703042, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "7a766a1b84906e942e1a750ff04eed21", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "feccaf32-63ee-4147-b3cb-9068b8e2982f", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_462_MirnaExpressionWorkflow06df7a3e-3498-468a-82a3-37c79baaa9ed_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a723e787-c9c5-41fa-8b43-12a7ed8ceb4a", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 304440, + "md5sum": "f3b5f0aaf79d744c47dcda3225f0dd74", + "file_id": "ca40773b-570a-45a2-934b-735e9e803991", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1623-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "808eb134-9c7d-43bb-b86c-2f3259193954", + "entity_id": "3e4f0ca7-8428-47df-80a3-3bc9153aedfa" + } + ], + "file_name": "0b0796b2-4d6f-4c54-886f-0ccf4128ab2a.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_200_MirnaExpression84527575-3270-46ef-910b-4ecd27f7ef3c_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1623-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_200_AlignedReads84527575-3270-46ef-910b-4ecd27f7ef3c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 191243598, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "6140c7fe067ee0bee7d0d07683e329f7", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "ccf26c6f-1ff2-41eb-a0e2-b3508c7ec517", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_200_MirnaExpressionWorkflow6e847f9b-63f9-4b2d-8b92-d49157f1a247_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1e1b96e3-d76f-4980-a6aa-406d5c3ab047", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50325, + "md5sum": "5b072233e8b50022d33f93bace028599", + "file_id": "d68531b5-e558-437e-a85d-dc0e2e00567e", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0884-01B-01R-1565-13", + "entity_type": "aliquot", + "case_id": "63a75e0b-9241-4f0e-9236-01a2e2c05b7e", + "entity_id": "5339b819-0e19-4b7d-a098-6f58afc07180" + } + ], + "file_name": "d2504e2b-bc9a-47f7-a612-257d386b536c.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_348_MirnaExpression8aa5e14a-bfb8-4d34-9d82-0d89ea9c06a7_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "0c0009b2-08e5-50d2-9917-14a00aedeaca", + "entity_submitter_id": "TCGA-13-0884-01B-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8839", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "5339b819-0e19-4b7d-a098-6f58afc07180", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "925638bf-f70b-55a3-8f49-2b41dcaa8474", + "entity_submitter_id": "TCGA-13-0884-01B-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29727", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "5339b819-0e19-4b7d-a098-6f58afc07180", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0884-01B-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_348_AlignedReads8aa5e14a-bfb8-4d34-9d82-0d89ea9c06a7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 213569103, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "ec1f1098ce6a3d7b33659ff56f36a2ca", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "1f2ce710-a589-4772-9623-43d13db734a7", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_348_MirnaExpressionWorkflow10053d71-db73-4c1c-a82b-cbff89e547a3_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "212741f4-3882-4c7a-9737-1ed7236e7aaa", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50268, + "md5sum": "74dc0f7e0865ba091010241c80df0daf", + "file_id": "fdb44278-8fff-4f6c-b130-b255f841af9a", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1623-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "808eb134-9c7d-43bb-b86c-2f3259193954", + "entity_id": "3e4f0ca7-8428-47df-80a3-3bc9153aedfa" + } + ], + "file_name": "0b0796b2-4d6f-4c54-886f-0ccf4128ab2a.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_200_MirnaExpression84527575-3270-46ef-910b-4ecd27f7ef3c_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1623-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_200_AlignedReads84527575-3270-46ef-910b-4ecd27f7ef3c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 191243598, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "6140c7fe067ee0bee7d0d07683e329f7", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "ccf26c6f-1ff2-41eb-a0e2-b3508c7ec517", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_200_MirnaExpressionWorkflow6e847f9b-63f9-4b2d-8b92-d49157f1a247_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1e1b96e3-d76f-4980-a6aa-406d5c3ab047", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 380529, + "md5sum": "afec0fd2de1a54c93c8c7f39e324d6ee", + "file_id": "506df437-3a4c-4ba6-9b6d-276042d20c6d", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2271-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "a8c4a333-6b67-44c8-9000-516f8ccea788", + "entity_id": "f3581696-e1db-4d0f-9ce7-5fb0f5c08906" + } + ], + "file_name": "3db3c77d-c171-4020-82af-1643d1b18c0b.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_121_MirnaExpression03ccf273-4595-443e-bbb8-91114ee971e8_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2271-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_121_AlignedReads03ccf273-4595-443e-bbb8-91114ee971e8", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 257196941, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "b3b9a096fc4bb44c74c23236bd503166", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "18612d79-1bf4-4c14-aef7-a04c4bc103f7", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_121_MirnaExpressionWorkflow3fb0c25f-d625-463d-98c4-54de83b565bc_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "4ba45a88-faf5-403b-aa65-05b7a933e33c", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50407, + "md5sum": "69ba0bd4d31bdc56f19e8586f888bd9b", + "file_id": "c6b24881-995d-4914-8ba3-652f4d7097c5", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-36-1568-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "de548bdd-14ca-486b-bd16-a6fbdd5b50d2", + "entity_id": "4e539c62-454a-4b1c-bde1-6951ee12d109" + } + ], + "file_name": "019f69d3-6dc9-4677-88d7-cee7b4dd77fb.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_209_MirnaExpression23be9351-8e81-48e9-872a-d4c393ba217d_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-36-1568-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_209_AlignedReads23be9351-8e81-48e9-872a-d4c393ba217d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 129972899, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "6f7857ac78c99ad17c5660689aab9ef0", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "922b0bdd-3e80-45dc-898f-741631863ee6", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_209_MirnaExpressionWorkflowa038b518-08f0-4f59-8e1e-18f147a587cc_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "87b60469-03bf-47a0-aa2e-bf20c8737eaf", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50275, + "md5sum": "51379f1072ed1a258808ac3ce6b4d36c", + "file_id": "a9bbfa84-1366-4c36-9e6e-4b4b47900909", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1733-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "04ecaf38-0232-4dcd-9242-308a22cc1331", + "entity_id": "e6f856bf-0694-4c21-aecc-0d8dd54761f1" + } + ], + "file_name": "bc22897c-a0dc-45f7-b4ec-4b8e957bf512.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_115_MirnaExpression472bf0aa-9d1c-4542-9bed-84775119810d_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1733-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_115_AlignedReads472bf0aa-9d1c-4542-9bed-84775119810d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 194646082, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "ce526b0fed62dfeda1955c1a22981d23", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "c97320c1-857e-4378-9433-9b8a53a34c72", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_115_MirnaExpressionWorkflow78b1972b-8ba9-4eac-a7bb-c566462635a4_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "46304f9e-6d50-4df6-9cc5-2d14e493b234", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50322, + "md5sum": "0823ea67a2329c91f33ec6d650cea863", + "file_id": "74918167-80f0-48da-8f0f-2a696baeb75c", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0757-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "2c69f3a4-c26c-4fbb-a1c0-b1f57554c43a", + "entity_id": "58944ef1-c315-40cc-883a-2aaaaf0462e3" + } + ], + "file_name": "0e767624-17df-43ee-b43d-8b7d4282cc2a.mirnaseq.mirnas.quantification.txt", + "submitter_id": "c24c8b31-07fe-4dc7-ae15-4c60f2fdaf95", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9851600127787983, + "total_reads": 23038160, + "access": "controlled", + "file_name": "58944ef1-c315-40cc-883a-2aaaaf0462e3_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003866954, + "proportion_reads_duplicated": 0, + "submitter_id": "4d61b1b9-fd3f-4fab-8b69-074b35c6ed4e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 430891956, + "created_datetime": "2024-09-20T11:12:58.694690-05:00", + "average_base_quality": 36, + "md5sum": "ffcbb1ef37b04833c425febd2b57a6d6", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "691fcc3e-13e5-4331-a129-11feaf1862d4", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 34, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "0e767624-17df-43ee-b43d-8b7d4282cc2a_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "bfc61db5-b040-4399-a051-c6a16d482dbe", + "created_datetime": "2024-09-20T11:16:53.391310-05:00" + }, + "file_size": 50813, + "md5sum": "a8c9cf3ba5e504666ae4165bc03949c3", + "file_id": "55397fcb-1bbb-4206-a788-0398cccf9807", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2092-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "c183d3fb-2eee-44f8-890e-b9bf907141e6", + "entity_id": "0ed6e7a9-cdaa-48dc-962f-219f1eb39c1a" + } + ], + "file_name": "365478d2-32f1-4773-b997-a39d13a606c5.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_186_MirnaExpressiona59f62a6-0b4d-4002-a088-579cbc72f029_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2092-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_186_AlignedReadsa59f62a6-0b4d-4002-a088-579cbc72f029", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 116691330, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "a98450eaf187f15efa0ae0e1850e2b57", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "31aa13d7-bce5-41c8-95af-c8a596b648a4", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_186_MirnaExpressionWorkflow86c3a5c6-a9c0-4911-8db8-983ddac8609b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "edaa6f97-6912-4da8-8fc6-988c564f2b47", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 302864, + "md5sum": "ad1504d2ff74b3c39c5e80063541c176", + "file_id": "d22f8693-adfb-452a-9cbb-1c71ad7d4ab8", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1628-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "3f917550-89a6-404b-94df-938c99121411", + "entity_id": "a3083fd8-f5d0-486b-bf3d-31ae094b1cbf" + } + ], + "file_name": "966888b8-9194-44b5-a7e8-feb9a82ef136.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_133_MirnaExpression3fef76eb-0b55-4f27-9b3c-c9240ed1995e_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1628-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_133_AlignedReads3fef76eb-0b55-4f27-9b3c-c9240ed1995e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 203655398, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "849e5378efea81ee0507086b5b818197", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "7880dbf3-186f-45ab-a53f-6bf6a74e7eaa", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_133_MirnaExpressionWorkflow8097e3a3-6ddb-45fe-8c9e-5437b56c9fa2_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0d04f3c2-083f-4439-9111-34eb0dcbfd46", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 363583, + "md5sum": "06dd80d10e97260f38acfd2267a5a0df", + "file_id": "75266a65-7bb1-40c4-b9d2-1bb73136e02b", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1761-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "374ea8df-ecc4-44b0-b519-33efa5078018", + "entity_id": "c4446f6f-fae9-414c-8bae-7c78bb894982" + } + ], + "file_name": "f19b41a9-5103-42af-9bb0-dfe33cc75ee2.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_423_MirnaExpressionc31a6db5-2f07-4ec6-a8bf-83bbc15f5c78_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1761-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_423_AlignedReadsc31a6db5-2f07-4ec6-a8bf-83bbc15f5c78", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 108920278, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "470c52bc7b310e780eea18953232951c", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "eb9ed074-2b7b-4d8b-ae7f-bc668889dbc0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_423_MirnaExpressionWorkflow74ffc66c-4ed5-48f5-a760-83d47585fbc3_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "bc445215-0b9e-48e6-829b-7df6352bfc0d", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 307379, + "md5sum": "20f4a66ee66b98c5d4c43a93eee38564", + "file_id": "a49256fa-3afe-4edf-8a95-0982163111f2", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1761-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "374ea8df-ecc4-44b0-b519-33efa5078018", + "entity_id": "c4446f6f-fae9-414c-8bae-7c78bb894982" + } + ], + "file_name": "f19b41a9-5103-42af-9bb0-dfe33cc75ee2.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_423_MirnaExpressionc31a6db5-2f07-4ec6-a8bf-83bbc15f5c78_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1761-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_423_AlignedReadsc31a6db5-2f07-4ec6-a8bf-83bbc15f5c78", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 108920278, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "470c52bc7b310e780eea18953232951c", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "eb9ed074-2b7b-4d8b-ae7f-bc668889dbc0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_423_MirnaExpressionWorkflow74ffc66c-4ed5-48f5-a760-83d47585fbc3_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "bc445215-0b9e-48e6-829b-7df6352bfc0d", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50233, + "md5sum": "5340650d2b7023819cee1bed7985e9c8", + "file_id": "5ccb60ce-6cf1-4bae-a3f0-bc979b6df86b", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0755-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "2956e414-f167-438f-8747-a46fe0723622", + "entity_id": "a8f27c8f-3077-481c-bc2d-853f905f45de" + } + ], + "file_name": "3a891c6d-b223-4873-b6b1-5bb2f9ac6788.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_374_MirnaExpression5eefd40b-c547-4b2b-83b5-618473acd485_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0755-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_374_AlignedReads5eefd40b-c547-4b2b-83b5-618473acd485", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 144306091, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "0c7d8b6e35d26e0fc69b30ba74096a3c", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "6f3191ef-e7ae-43b0-97ad-a386b4c02280", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_374_MirnaExpressionWorkflowd97bf514-e6a0-4873-bc12-54b039ecb3b5_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "46c9db02-d1bc-4f68-9374-5d449c1c617f", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50197, + "md5sum": "4d358e0e17fa53b5915f656eab3f7cec", + "file_id": "3e477070-a8d4-4c0d-8e84-b36a108ceafa", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1728-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "07fbdb3c-8337-4319-8255-f2363f8a031e", + "entity_id": "bf909020-d6a1-49f1-8007-4192d39abd04" + } + ], + "file_name": "e3ad30ce-354c-4032-9cf1-a725c1e45cb2.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_271_MirnaExpressiona60eb722-9fc2-4f73-b25c-a3c2976a4dbd_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1728-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_271_AlignedReadsa60eb722-9fc2-4f73-b25c-a3c2976a4dbd", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 121497925, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "6dab3de8827b3d7164ee587e98f320a0", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "0d880647-c415-451d-b8bb-172d859efbd6", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_271_MirnaExpressionWorkflow1ef7921c-2588-4b37-97a9-f8b4e69828ac_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e21ceff2-e497-4362-8839-433b5be23dbf", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50254, + "md5sum": "4458cb7586d4e024d736e67dd848355b", + "file_id": "9373543a-3529-40bf-af53-6671ca260ad2", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0755-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "2956e414-f167-438f-8747-a46fe0723622", + "entity_id": "dc2e0ade-3265-4182-bc56-a0913d95660e" + } + ], + "file_name": "b8909fc8-4eda-433c-afff-7c5aba6913c8.mirnaseq.isoforms.quantification.txt", + "submitter_id": "30683b52-9bc4-4ecf-842a-4d079a9b627c", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9883867277841375, + "total_reads": 28199029, + "access": "controlled", + "file_name": "dc2e0ade-3265-4182-bc56-a0913d95660e_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003842993, + "proportion_reads_duplicated": 0, + "submitter_id": "c1e3d2af-e1b8-4e46-b988-ffa27d261e27", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 463072739, + "created_datetime": "2024-09-20T11:13:14.481641-05:00", + "average_base_quality": 36, + "md5sum": "570dc74894ef6600568544c9547765cc", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "3371fac7-0a27-4fe2-b460-4ea63e446e50", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 38, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "b8909fc8-4eda-433c-afff-7c5aba6913c8_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "611d0c31-b5cf-44e3-9c69-f3818d010959", + "created_datetime": "2024-09-20T11:16:39.515219-05:00" + }, + "file_size": 552714, + "md5sum": "855adf22b0a09cfbe3faff1bf082b117", + "file_id": "713136b4-69e6-4807-8965-0db0c5f947ff", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1728-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "07fbdb3c-8337-4319-8255-f2363f8a031e", + "entity_id": "bf909020-d6a1-49f1-8007-4192d39abd04" + } + ], + "file_name": "e3ad30ce-354c-4032-9cf1-a725c1e45cb2.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_271_MirnaExpressiona60eb722-9fc2-4f73-b25c-a3c2976a4dbd_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1728-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_271_AlignedReadsa60eb722-9fc2-4f73-b25c-a3c2976a4dbd", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 121497925, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "6dab3de8827b3d7164ee587e98f320a0", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "0d880647-c415-451d-b8bb-172d859efbd6", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_271_MirnaExpressionWorkflow1ef7921c-2588-4b37-97a9-f8b4e69828ac_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e21ceff2-e497-4362-8839-433b5be23dbf", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 328709, + "md5sum": "74bd67040a5755e8c0b4aede05e95d7c", + "file_id": "ee20715f-b12d-4662-8eb3-7f43e2e88e9a", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-0979-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "9a30dee8-962a-49db-a85a-c39515c91b68", + "entity_id": "639429a9-c1d3-410d-828a-c3b44d648609" + } + ], + "file_name": "60748b7b-a395-407d-a980-aa0e16f7adb9.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_358_MirnaExpression6443b09f-8600-48ed-bbef-8f0418d52cf7_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "51a41ba4-f8df-5543-94b1-4606f5302919", + "entity_submitter_id": "TCGA-24-0979-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8803", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "639429a9-c1d3-410d-828a-c3b44d648609", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "d8cad179-5f4c-5198-aa62-da4f4235a71a", + "entity_submitter_id": "TCGA-24-0979-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29778", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "639429a9-c1d3-410d-828a-c3b44d648609", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-0979-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_358_AlignedReads6443b09f-8600-48ed-bbef-8f0418d52cf7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 146135199, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "16d9864d0389618bb97b3e27f659d434", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6b0b763f-0320-41a5-90cf-bcb03a807b99", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_358_MirnaExpressionWorkflow068918eb-60bb-4303-9f6f-42869437266e_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c1adf070-0abe-479d-852d-59d80d35b7e5", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 320808, + "md5sum": "f605f5e79eba459c154dcb0f8af6c9c0", + "file_id": "9fc61eaa-e32c-4171-98b2-595bc279bf54", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0761-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "00630714-7ab3-44e1-afff-186300edae44", + "entity_id": "59913645-a235-4609-bf9a-79122544be5f" + } + ], + "file_name": "915f8cfc-2ef6-409d-8b9f-15de72b598ee.mirnaseq.isoforms.quantification.txt", + "submitter_id": "7e8c3141-4fef-4887-b793-b160cbdd56cb", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9883166949349393, + "total_reads": 27100465, + "access": "controlled", + "file_name": "59913645-a235-4609-bf9a-79122544be5f_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003047207, + "proportion_reads_duplicated": 0, + "submitter_id": "fe44fd35-ccf5-4d82-9c7d-85738b589e11", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 442786179, + "created_datetime": "2024-09-20T11:13:50.497709-05:00", + "average_base_quality": 36, + "md5sum": "8b3f401119f63ccb040a9b6eadd3c7f0", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "98dd1776-b50a-41b3-8efa-d858bb9bf0f9", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 39, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "915f8cfc-2ef6-409d-8b9f-15de72b598ee_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2b34745b-e2cb-424f-8e3a-a896ac39129e", + "created_datetime": "2024-09-20T11:18:14.362633-05:00" + }, + "file_size": 456484, + "md5sum": "70410e82fbf1a24c9436d2ec30414cd7", + "file_id": "a1f7fe29-d1bd-4df2-8f4c-ed5a49fe954b", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1314-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "0b2ea4b7-98bb-4190-b682-2c75b447c90a", + "entity_id": "b571f7cf-e9b8-493f-822b-a489f114420b" + } + ], + "file_name": "d0dd6aca-e647-4165-867c-6035a1610d56.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_217_MirnaExpression9381978f-be42-4728-a171-716ddec37f41_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1314-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_217_AlignedReads9381978f-be42-4728-a171-716ddec37f41", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 203896082, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "4d496eaa77fedcd17d6240ce19088774", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "d8ee3a79-f5fe-4baf-8658-5be362553684", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_217_MirnaExpressionWorkflow3610826d-d859-4b3e-a2a7-4093ba8f45e0_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1359fa23-fa27-4d18-ad7b-8ddac9a4c528", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 383625, + "md5sum": "9e56e5f4b79306230d793efb525b0dad", + "file_id": "e0724ccc-0cd1-408d-9102-cd056ac06a1c", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1427-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "02d9aa2e-b16a-48ea-a420-5daed9fd51a6", + "entity_id": "5a505632-422c-4083-b867-82a7a503b314" + } + ], + "file_name": "5413501f-5f3b-4705-914f-dde9a3fb43a1.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_332_MirnaExpression9e4b4ee2-3330-4bf7-be86-cbb5384b3843_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1427-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_332_AlignedReads9e4b4ee2-3330-4bf7-be86-cbb5384b3843", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 146871332, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "84b9d5934b4d0d5eee59cf19c09a4136", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "47a13d48-bca0-4464-be31-caa5a6399065", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_332_MirnaExpressionWorkflowfdc5aa77-c803-4b42-88bf-fe7131c06068_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e490c37e-229f-4cb0-9a83-21f4d1eca445", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50217, + "md5sum": "00b83920e4f234caa55256f9fc9686f6", + "file_id": "bbb4ccff-f7d2-4775-97e6-99ad9a668a9e", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0904-01A-02R-1564-13", + "entity_type": "aliquot", + "case_id": "0b519c08-9f23-4ceb-9a13-e16509ca55d7", + "entity_id": "ac0ae6de-d7fb-4b8e-8f2f-2f52d942859c" + } + ], + "file_name": "53567b54-bb81-4dc7-9161-8206b11d87c7.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_106_MirnaExpressiond46dfd5d-cf6d-4441-ae5b-1a2007507553_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0904-01A-02R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_106_AlignedReadsd46dfd5d-cf6d-4441-ae5b-1a2007507553", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 116294524, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "2b75d97c1eef4d5d8aba93073283be3c", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6a1840ae-53a8-4e58-a011-fc3ac03e898d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_106_MirnaExpressionWorkflow1b86890c-1760-4503-a14b-0f10b13730c1_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d80afa33-c244-4ea8-9a04-a55c294859d6", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 258932, + "md5sum": "ff7846e938501e9aaa465f59dcd809fc", + "file_id": "1346e045-d8f8-4ad4-a4ea-469bbc3506b6", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0720-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "0d23fa5b-95f8-4626-a4d2-c72ad3cc553b", + "entity_id": "1fe43034-df2b-4bef-be77-07dbb68083a4" + } + ], + "file_name": "11615736-838b-423e-a967-a38e14598395.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_136_MirnaExpression92ddeca9-5699-4120-9321-e05bc9d8fbc4_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "13ecc7fc-476c-5421-ab99-364e74adb396", + "entity_submitter_id": "TCGA-13-0720-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29714", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "1fe43034-df2b-4bef-be77-07dbb68083a4", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "e4726e9f-49d0-533a-987c-cbb7c31fe9a9", + "entity_submitter_id": "TCGA-13-0720-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8836", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "1fe43034-df2b-4bef-be77-07dbb68083a4", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0720-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_136_AlignedReads92ddeca9-5699-4120-9321-e05bc9d8fbc4", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 152796939, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "78cb34d1f1f104abccdc30afce5412b9", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5bb778fb-9526-40da-813f-a2603764e687", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_136_MirnaExpressionWorkflow1480a30e-6242-4f16-b895-c337f3b19caa_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7c36625e-df5a-411a-8d7b-d20be90a25d0", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 306977, + "md5sum": "31b5bcde3a4d37ddfa2fb6f6f1c2648b", + "file_id": "0a96f59a-239e-4a06-9f58-28244e6af1a8", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1698-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "18d21132-a795-4551-83ba-66483de423a2", + "entity_id": "74970c45-4cc5-4952-9846-ce2d959437ea" + } + ], + "file_name": "b783c167-e867-48c6-a3fd-778e7dc01b97.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_70_MirnaExpressionf613ab22-1f90-42eb-b4d7-fce328282ced_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1698-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_70_AlignedReadsf613ab22-1f90-42eb-b4d7-fce328282ced", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 125697706, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "f51ba8c4e9736b076e646b0400100d03", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "c89b7e4d-a24c-4444-b7eb-cb8e47bd7f1e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_70_MirnaExpressionWorkflow4feb0ca7-3311-4deb-8550-47a0790dd0c8_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e629d4d1-8e30-4456-a022-de133ee4a357", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50340, + "md5sum": "b88c98a8b1eaf05a50e7cb9c8ba31abe", + "file_id": "d8dcb7f6-cc78-4c6e-9112-7e12a5d6dc2e", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1403-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "0d5e232d-5aa2-4f6f-be58-ffd5f15ee0b8", + "entity_id": "3217dd54-d41c-4c63-8bab-ff2c4baaee10" + } + ], + "file_name": "bf743280-5e6c-4f89-b1da-e55dc5cd36b5.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_131_MirnaExpression78f0cc36-e7cc-4c3e-8263-7592ad81a7f6_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1403-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_131_AlignedReads78f0cc36-e7cc-4c3e-8263-7592ad81a7f6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 176389823, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "e9ceac9b2eb586d61fe6b3e66ce04978", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "be409fe0-cb6b-431b-bbf2-43af1372cb0f", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_131_MirnaExpressionWorkflow98fab324-4177-4c40-95f3-5c09f2567c4b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b32354dc-12f5-416c-b527-8667f60a6920", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 356627, + "md5sum": "d6332c0cd29d4401e6504f1ed6f0a1a2", + "file_id": "8c893d02-fed5-4158-8141-a2cce8ea077d", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1418-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "195ecf43-06bd-4ffe-8d8b-a766f3f7179b", + "entity_id": "4e701e9f-9127-4d61-8a72-7e440b969fbe" + } + ], + "file_name": "d7183242-925f-40f8-bbac-86aa98ee8c0a.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_439_MirnaExpressionb8dae6d0-df09-4517-83cb-c9ce6121f39a_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1418-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_439_AlignedReadsb8dae6d0-df09-4517-83cb-c9ce6121f39a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 200498683, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "1e05c2950e27a2ac7f57b005bcad2530", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "de59f715-75cd-413a-8948-46a66d18ed48", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_439_MirnaExpressionWorkflow5dabe765-7e9e-4dc7-b554-a7bbc2d278c5_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d2002c2b-94f2-4873-90ff-d84368a3e77b", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 358657, + "md5sum": "92b810f2faa557ab7448d0d808ed6af4", + "file_id": "8cc99141-780e-432d-8110-fe1b6aeb7ab3", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0797-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "0de910b1-edaf-47e4-a265-727ee12ac1c3", + "entity_id": "9bd35257-52b8-4277-9cc9-48c5f316932b" + } + ], + "file_name": "9022a525-9cb2-4b84-843f-dc9cefa38015.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_419_MirnaExpression777d0dcb-2ab7-424e-8391-31b2a2f39155_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "73128dcf-acda-5961-921d-222af8fec2ff", + "entity_submitter_id": "TCGA-13-0797-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29725", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "9bd35257-52b8-4277-9cc9-48c5f316932b", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "73ece34d-b26f-5b8a-93e2-e067aea85058", + "entity_submitter_id": "TCGA-13-0797-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8769", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "9bd35257-52b8-4277-9cc9-48c5f316932b", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0797-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_419_AlignedReads777d0dcb-2ab7-424e-8391-31b2a2f39155", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 95642222, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "fe59f2b390053bc1255c6766e76921da", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "471431ec-1d7b-4c98-af05-206cf286189a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_419_MirnaExpressionWorkflowaaac8462-fe1b-415b-9e10-06ef87b35af8_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "fb5d4c6e-dc35-4284-88ee-7d5fc16a621a", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50130, + "md5sum": "db1298f61b219731a7a03f779a311382", + "file_id": "558a24d8-e1a1-4213-bee8-fc2a4f258087", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-30-1860-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "563853a2-9ac2-48be-adf3-1e547ee2b274", + "entity_id": "1b8eed7b-173e-4e38-80a4-a3a0aea469a1" + } + ], + "file_name": "4be0bc41-6fb3-4cec-85af-b8c1b4555c57.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_260_MirnaExpression4d9c8562-4875-4ce6-becb-d34741e8f5c2_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-30-1860-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_260_AlignedReads4d9c8562-4875-4ce6-becb-d34741e8f5c2", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 227985146, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "0efe8e39e85e61bca2fecc2987ba7e86", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "46e38a2a-af6c-46f1-9401-a697276757ed", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_260_MirnaExpressionWorkflowc05fe2bb-607a-4e46-b187-ef0610d62b84_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d64a5c0a-18c2-4005-9b3c-b2a9952d697e", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 366363, + "md5sum": "d96d460fd0423fb1bc56676dbf9129a3", + "file_id": "e6d30df3-1d96-4dcc-9c07-af947f96f56c", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-30-1860-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "563853a2-9ac2-48be-adf3-1e547ee2b274", + "entity_id": "1b8eed7b-173e-4e38-80a4-a3a0aea469a1" + } + ], + "file_name": "4be0bc41-6fb3-4cec-85af-b8c1b4555c57.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_260_MirnaExpression4d9c8562-4875-4ce6-becb-d34741e8f5c2_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-30-1860-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_260_AlignedReads4d9c8562-4875-4ce6-becb-d34741e8f5c2", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 227985146, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "0efe8e39e85e61bca2fecc2987ba7e86", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "46e38a2a-af6c-46f1-9401-a697276757ed", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_260_MirnaExpressionWorkflowc05fe2bb-607a-4e46-b187-ef0610d62b84_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d64a5c0a-18c2-4005-9b3c-b2a9952d697e", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50265, + "md5sum": "0bd65838242cdd228b763d5598d8f66a", + "file_id": "ff462e0b-0d77-4110-a39f-c67f4ef9bb57", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0887-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "14c58def-60ee-48e0-a74b-da4eb77ef344", + "entity_id": "def55de4-e4eb-4693-aa54-889cd0f88051" + } + ], + "file_name": "c5a0784c-2ce1-4384-bac7-6aeb9edc7432.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_368_MirnaExpressione01f4b3a-83b0-4dfc-8cc9-692185496e69_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-0887-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29730", + "classification": "CenterNotification", + "entity_id": "def55de4-e4eb-4693-aa54-889cd0f88051", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "3c58d3dc-f811-5bec-9677-9c44bbb54065", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "14c58def-60ee-48e0-a74b-da4eb77ef344", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-13-0887" + }, + { + "entity_submitter_id": "TCGA-13-0887-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "submitter_id": "8772", + "classification": "CenterNotification", + "entity_id": "def55de4-e4eb-4693-aa54-889cd0f88051", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "80dd61d7-21fd-58b1-96c1-09c586b1e204", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "14c58def-60ee-48e0-a74b-da4eb77ef344", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-13-0887" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0887-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_368_AlignedReadse01f4b3a-83b0-4dfc-8cc9-692185496e69", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 95007657, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "cf33460ce0f8fc55df896f83f46b4bb1", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "d153d246-a363-45a1-9705-a287d9a304ff", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_368_MirnaExpressionWorkflow48f52d47-74b8-45d5-b7e6-6be8fb0c09c6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "147bed8d-ca5e-49b7-80ab-ce8b82aaa92b", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 255938, + "md5sum": "8503c2d288db45a20b4f676babd58a22", + "file_id": "071c6f53-b51e-4bc2-9f52-92fae71dd391", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-1668-01B-01R-1566-13", + "entity_type": "aliquot", + "case_id": "0e475b3d-be3c-431a-ab12-5a867ea8f6cd", + "entity_id": "66894abe-8af5-4fd9-9a59-cf24e57fc07f" + } + ], + "file_name": "c2ea5a5f-f436-48d8-8382-a878bdafc579.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_150_MirnaExpression227d8d55-ce57-4a97-a1be-a2db2752a1bf_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-1668-01B-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_150_AlignedReads227d8d55-ce57-4a97-a1be-a2db2752a1bf", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 127676770, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "c7b87050158723928a5f4b50f0ab5a32", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "d9bd5174-9403-48c4-82e9-5579f1c1b29a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_150_MirnaExpressionWorkflow6b0f10f5-2230-47e3-a51c-9f450403de73_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "406255da-5adc-4cea-8d4f-e2505ced1b59", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 365330, + "md5sum": "05352a0db85a1b25b813ffbc17f5f5fa", + "file_id": "bd4612aa-7e3b-478f-a1d6-f58a04e2b9fd", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-0369-01A-01R-A96S-41", + "entity_type": "aliquot", + "case_id": "1d9893c8-0de3-4b07-b0ba-a53019b23eb4", + "entity_id": "0f1e7e93-ad04-458f-b4ce-d8bf7f7879a0" + } + ], + "file_name": "2646e3fe-22b6-4e1e-ba95-abc58316d18d.mirnaseq.mirnas.quantification.txt", + "submitter_id": "9d7db932-2155-49e9-aa9a-3ee5acfa8b99", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9869284286302724, + "total_reads": 28761347, + "access": "controlled", + "file_name": "0f1e7e93-ad04-458f-b4ce-d8bf7f7879a0_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.00473808, + "proportion_reads_duplicated": 0, + "submitter_id": "17340c90-1d15-47d3-b62a-aa90db1f05d0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 486214580, + "created_datetime": "2024-09-20T11:12:38.867750-05:00", + "average_base_quality": 36, + "md5sum": "8f162e8b7df9b8e6c6387ded57c67ada", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "af12f251-18ee-4835-86d1-ba8b3371f483", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 32, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "2646e3fe-22b6-4e1e-ba95-abc58316d18d_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "dd77c498-19a8-43e0-b072-ba544b16d69d", + "created_datetime": "2024-09-20T11:17:45.881704-05:00" + }, + "file_size": 51088, + "md5sum": "710c25798ad71d9d8bbd99f4749511f1", + "file_id": "e657a856-0f13-463c-adc2-fe60a38d9761", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1542-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "0c1a2e7d-e7e4-481e-a012-ef214c444497", + "entity_id": "2988eb13-a2c0-4cd2-a559-76f0cce2689b" + } + ], + "file_name": "f9dda829-1102-4e7f-adfd-83c62255a88e.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_488_MirnaExpression055cd30f-0b40-484f-a823-1cd774fac914_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "6b6d6b5c-61e4-5ce7-8597-fc3645663814", + "entity_submitter_id": "TCGA-04-1542-01A-01R-1566-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29699", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "2988eb13-a2c0-4cd2-a559-76f0cce2689b", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "7988dfcb-46e7-5fef-99a2-9fc609b1dc0d", + "entity_submitter_id": "TCGA-04-1542-01A-01R-1566-13", + "notes": "RNA-seq:INSUFFICIENT INPUT MATERIAL,LOW SEQUENCE YIELD/DIVERSITY;LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8810", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "2988eb13-a2c0-4cd2-a559-76f0cce2689b", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1542-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_488_AlignedReads055cd30f-0b40-484f-a823-1cd774fac914", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 149226760, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "7d31659fa56d4bd2fe1ab20da32f3ded", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "ec3ed187-8321-4045-8b16-288a3aabffc7", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_488_MirnaExpressionWorkflow4d5f54a5-05ed-4f99-9b41-907d4e1e61fc_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7463317e-ab8c-4052-baee-4c4c92faa536", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50227, + "md5sum": "155bb48b65275304df7f5d9e7f595841", + "file_id": "f69d4aab-6f75-4953-9c68-a0c10c433ca6", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1741-01A-02R-1567-13", + "entity_type": "aliquot", + "case_id": "16ced1b8-64d5-4498-82df-4d37bfe5b310", + "entity_id": "92d5764e-c576-47cd-a6bd-68ed0365c213" + } + ], + "file_name": "3b5bae0c-4394-4bd0-880f-cc3d038f8214.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_324_MirnaExpression0bf809e5-a24a-4787-b3ca-ab2e148cb5cb_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1741-01A-02R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_324_AlignedReads0bf809e5-a24a-4787-b3ca-ab2e148cb5cb", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 194561153, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "44df3c08d4e8b7e908cea1de9f768d2b", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4f1f78c7-f142-4082-8f51-f085cf26ca31", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_324_MirnaExpressionWorkflow0bef8542-5959-4924-887c-cef06fe2f90f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "417b1c29-425d-46bf-ad74-96bb058a7c9d", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 375176, + "md5sum": "1a8d3d361f122f56d7a8cf13c36dc299", + "file_id": "b18c3fa9-5d39-486d-b9fd-3427c5cd0f11", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2088-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "242943fe-1fa0-4a12-8f7e-9c6c4af1194d", + "entity_id": "62fdea50-f152-4f43-9130-a93079b5e61f" + } + ], + "file_name": "c5cc47b3-ea62-42f0-85d0-c97e438b8a57.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_40_MirnaExpressione8f43d05-e0f5-48df-a38d-e3ca6c551ce2_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2088-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_40_AlignedReadse8f43d05-e0f5-48df-a38d-e3ca6c551ce2", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 502385605, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "05f041f292db22e7fd02b8729f220c40", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "9f39d484-91e3-4c86-bf90-32003d837213", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_40_MirnaExpressionWorkflow67790975-964b-4908-929f-c3a60cc82949_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "4791376a-6bbb-4618-9eec-9bf6cf58153b", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 574007, + "md5sum": "826d6a4edde0049dccb7e5b93efe6ac9", + "file_id": "cf5a9a35-be08-4f50-aca3-dc74d871d45d", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1336-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "538acb2a-c4ca-4656-a91c-841a42dbf15f", + "entity_id": "e7d98e24-1335-44de-bb34-594d346ad85a" + } + ], + "file_name": "8183655e-9600-41fd-b25b-fcf643b549e3.mirnaseq.mirnas.quantification.txt", + "submitter_id": "101f313f-13fb-4492-9727-e1de5180c20e", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9852078688076575, + "total_reads": 24647902, + "access": "controlled", + "file_name": "e7d98e24-1335-44de-bb34-594d346ad85a_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005102179, + "proportion_reads_duplicated": 0, + "submitter_id": "a117ef0f-9797-4791-b480-268a7cc685eb", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 435695733, + "created_datetime": "2024-09-20T11:13:19.048408-05:00", + "average_base_quality": 36, + "md5sum": "b8879de3758d40a2eb3ab3e206daa4c6", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "a16f734a-af04-408f-987b-d707b5a66ddc", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "8183655e-9600-41fd-b25b-fcf643b549e3_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "faa01b53-3642-4cbd-8fd8-83fb6ac942ed", + "created_datetime": "2024-09-20T11:18:00.636337-05:00" + }, + "file_size": 50694, + "md5sum": "ce18f4072e2c5523570267327dbecbec", + "file_id": "3a064502-3fcb-49e2-b4b1-80704772de5c", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2288-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "28ed2d42-5b4c-4bca-b2b2-6b2a6d3c42cf", + "entity_id": "dbc2cfac-df65-4750-af39-37760bad1057" + } + ], + "file_name": "e293bbbd-e6e5-47fd-8cec-0288d5490710.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_128_MirnaExpressiona7ef5431-4fdf-4656-926d-650e64d10289_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2288-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_128_AlignedReadsa7ef5431-4fdf-4656-926d-650e64d10289", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 298908258, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "71a93eaad9260d31000f0f9a29eabf21", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "be091af0-4de1-4f73-a75d-7b9e01d64398", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_128_MirnaExpressionWorkflowf2046a92-5a14-484d-89d1-8dc7a7d2305f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "3fccea3a-57c2-412b-8909-2245e6e2b985", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 471689, + "md5sum": "a5ef01aa53c470de8d16f3f702f0f9da", + "file_id": "dab809ce-1a88-44f1-b02e-125a80f7c554", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0885-01A-02R-1569-13", + "entity_type": "aliquot", + "case_id": "2a924999-1fbf-470a-97bd-fd2276a9a366", + "entity_id": "e0f48d4d-4c10-4b83-9a13-9427a08371d3" + } + ], + "file_name": "3ab8c815-ea19-4446-929e-3d949f49816a.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_243_MirnaExpression63c996a2-b99e-4342-afc0-912a2a18fb06_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-0885-01A-02R-1569-13", + "notes": "RNA-seq:HIGH rRNA CONTENT;LOW 5/3 COVERAGE RATIO", + "submitter_id": "8851", + "classification": "CenterNotification", + "entity_id": "e0f48d4d-4c10-4b83-9a13-9427a08371d3", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "6b31a069-a8db-5c2d-b107-950deafd4000", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "case_id": "2a924999-1fbf-470a-97bd-fd2276a9a366", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-13-0885" + }, + { + "entity_submitter_id": "TCGA-13-0885-01A-02R-1569-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29728", + "classification": "CenterNotification", + "entity_id": "e0f48d4d-4c10-4b83-9a13-9427a08371d3", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "f1061044-874a-577e-8c72-ceeadf8db609", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "2a924999-1fbf-470a-97bd-fd2276a9a366", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-13-0885" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0885-01A-02R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_243_AlignedReads63c996a2-b99e-4342-afc0-912a2a18fb06", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 93726714, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "90cb4d422e967268303a4c26c237749f", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "bc235d71-4fcb-4f57-b66c-ae27bad12aa8", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_243_MirnaExpressionWorkflowb66b9581-6d5b-4c3f-bbc4-fd32594a2788_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "799e13a5-76f9-4588-9368-de268a2647dc", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50118, + "md5sum": "696038804cc21e10ba4d08778b722c75", + "file_id": "b5109358-bfe3-4fe3-93be-b123fa43a85e", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1567-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "2cb50c2d-e749-4172-b101-d975507435c5", + "entity_id": "97c0b20f-ee65-42b2-af2d-92dcf48b2cd5" + } + ], + "file_name": "e76fb1d8-6e19-4842-9ad4-67dfdcdc94df.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_459_MirnaExpressionf1804adb-efab-4fa9-926b-7fe2e186298f_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1567-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_459_AlignedReadsf1804adb-efab-4fa9-926b-7fe2e186298f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 176502796, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "786e837c01d146ce2993c1f0bced8e0d", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "0acd8f76-93b2-458c-a0f2-281e21b24ef3", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_459_MirnaExpressionWorkflow0b9431f4-334c-437d-b5dd-ec82505e4a57_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ffec27b5-ad51-4fef-86e9-83928dc2f530", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50297, + "md5sum": "e677b1c15ebcc7680ed883dff06b7847", + "file_id": "7ccd08d1-d672-4ba7-b51a-2585de6786ef", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1118-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "700e91bb-d675-41b2-bbbd-935767c7b447", + "entity_id": "9e73d9f4-dd7c-439f-a8c5-236311e3facf" + } + ], + "file_name": "a8ec968d-7115-4b59-acaa-6f878023cb7f.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_438_MirnaExpression0df1c7a9-ca3d-4139-bed2-8bd9a96a0f0c_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "d34ba96d-c960-5750-a1a4-e63b012840fb", + "entity_submitter_id": "TCGA-23-1118-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29773", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "9e73d9f4-dd7c-439f-a8c5-236311e3facf", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "d7b340fc-4835-54f8-80b6-6e6fd1f69b3e", + "entity_submitter_id": "TCGA-23-1118-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8775", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "9e73d9f4-dd7c-439f-a8c5-236311e3facf", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1118-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_438_AlignedReads0df1c7a9-ca3d-4139-bed2-8bd9a96a0f0c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 130374382, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "ee39b9b37d68eaa7bb4df26f47929c34", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "dba569b1-9373-475c-a5a9-decb41afc377", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_438_MirnaExpressionWorkflowbd367cd5-cea2-4418-a9a9-75013469ab5a_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c7dd3e37-1a5e-496f-b592-6652e40b6435", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50214, + "md5sum": "f804d0b699fdead90d14b0966876946a", + "file_id": "97c33585-8397-47b1-b394-03da70e9b3cc", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0726-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "32960bc7-839a-42c5-9460-3917fa578ffc", + "entity_id": "3dd100f9-9261-4e1c-9bbb-95a2c56abfb6" + } + ], + "file_name": "cf786f9c-b120-4c44-a85e-b50b481927d0.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_315_MirnaExpression292f46b4-972a-4194-a241-47fb5c0d391b_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "88bd5ee5-9674-51ca-8f56-d1861c97f3f0", + "entity_submitter_id": "TCGA-13-0726-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29717", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "3dd100f9-9261-4e1c-9bbb-95a2c56abfb6", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "9339836d-11da-5ec6-b970-52ed8f5a91d8", + "entity_submitter_id": "TCGA-13-0726-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8758", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "3dd100f9-9261-4e1c-9bbb-95a2c56abfb6", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0726-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_315_AlignedReads292f46b4-972a-4194-a241-47fb5c0d391b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 116606964, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "ce32b5cf32f8e4b1f6ff91eba7b0ed85", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "bea79cb2-272a-4d2e-a5b0-12c325ac16fa", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_315_MirnaExpressionWorkflowb6e1e747-8805-4f2e-913b-4540e3124c56_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "4b33cfeb-6e74-4876-8fed-5d539bb329ac", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50245, + "md5sum": "dd9ef4eeeb1ef3f6ae0dbbcf6e2ccacc", + "file_id": "6e46f9f0-1ad9-4a33-ae6c-064c96b2c6cf", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-2043-01A-01R-A96S-41", + "entity_type": "aliquot", + "case_id": "2e05cd3a-a55f-43b8-b2a9-72fb742b89c9", + "entity_id": "37aec7ef-8912-4f2f-9e3d-a6fb8ce6c912" + } + ], + "file_name": "582804b9-a867-454e-a222-ff9042a7e75b.mirnaseq.mirnas.quantification.txt", + "submitter_id": "c519dcf9-11a1-4a5b-8941-2f6e4ccbad11", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9903050679106473, + "total_reads": 22028210, + "access": "controlled", + "file_name": "37aec7ef-8912-4f2f-9e3d-a6fb8ce6c912_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.002274874, + "proportion_reads_duplicated": 0, + "submitter_id": "80e03aef-ca71-4978-802e-165c9a4efa7d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 341046437, + "created_datetime": "2024-09-20T11:13:20.729530-05:00", + "average_base_quality": 36, + "md5sum": "da104bbb275daf09e2e840acc6a1bfd4", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "f23bed31-aaae-481a-a3c3-7485407bdcf2", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 41, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "582804b9-a867-454e-a222-ff9042a7e75b_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "57a76a5d-9c4e-4423-b602-6bccac8df8f1", + "created_datetime": "2024-09-20T11:18:13.021456-05:00" + }, + "file_size": 50583, + "md5sum": "4d9732685039fff442e840dfbea37908", + "file_id": "1d9bab23-1565-416e-9924-52b98fe7fea8", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1695-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "33d36b64-4688-40a7-9a4f-7cd3d4cc683d", + "entity_id": "33f1dda6-7601-48c6-b46d-f0ba759e4048" + } + ], + "file_name": "afee93af-90d1-4442-bc99-42f96251d3ce.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_38_MirnaExpression39e8c9f7-cd6a-4da6-8f0c-916f0de8349f_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1695-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_38_AlignedReads39e8c9f7-cd6a-4da6-8f0c-916f0de8349f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 304937289, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "0b257724406faec4a79e3740e03b5698", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "35009406-eb42-4eb3-bacd-ad9779b11f64", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_38_MirnaExpressionWorkflow12713085-147a-4c5b-9d28-d0d79f5e87b9_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b90b1424-9411-4925-b68a-487197c8edce", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 383955, + "md5sum": "b7c427abf06ad6cdb1456f3df3fed4a6", + "file_id": "13b1976c-006d-446c-a890-38d445b72fbb", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-1664-01A-01R-A96S-41", + "entity_type": "aliquot", + "case_id": "3438c018-9856-4628-ae59-7d365713647f", + "entity_id": "527346ea-e584-433b-8887-96284a206d0f" + } + ], + "file_name": "f0bd2687-335b-4172-a7ff-78686e992977.mirnaseq.isoforms.quantification.txt", + "submitter_id": "bf2527af-005f-4d9d-85d8-62d1115022ef", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9901263072514582, + "total_reads": 25984098, + "access": "controlled", + "file_name": "527346ea-e584-433b-8887-96284a206d0f_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.00511115, + "proportion_reads_duplicated": 0, + "submitter_id": "a29b4f96-9293-4939-b338-07494b8c9ffc", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 414219219, + "created_datetime": "2024-09-20T11:13:22.203271-05:00", + "average_base_quality": 36, + "md5sum": "b38471520684a2112756a15791d196d6", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "7ed556c9-a80d-4f04-85c7-b1388e0b49b8", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 32, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "f0bd2687-335b-4172-a7ff-78686e992977_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c645da05-7b27-44a9-a1dc-b89bb6186d2b", + "created_datetime": "2024-09-20T11:17:29.816674-05:00" + }, + "file_size": 657729, + "md5sum": "bc09ff3bbae3be47cfefede63c9531a5", + "file_id": "4a8c7159-25ec-4013-a7a3-41164011b8ec", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-1664-01A-01R-A96S-41", + "entity_type": "aliquot", + "case_id": "3438c018-9856-4628-ae59-7d365713647f", + "entity_id": "527346ea-e584-433b-8887-96284a206d0f" + } + ], + "file_name": "f0bd2687-335b-4172-a7ff-78686e992977.mirnaseq.mirnas.quantification.txt", + "submitter_id": "d6fea7df-e09b-4cca-9e13-8e1261c8f0b5", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9901263072514582, + "total_reads": 25984098, + "access": "controlled", + "file_name": "527346ea-e584-433b-8887-96284a206d0f_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.00511115, + "proportion_reads_duplicated": 0, + "submitter_id": "a29b4f96-9293-4939-b338-07494b8c9ffc", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 414219219, + "created_datetime": "2024-09-20T11:13:22.203271-05:00", + "average_base_quality": 36, + "md5sum": "b38471520684a2112756a15791d196d6", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "7ed556c9-a80d-4f04-85c7-b1388e0b49b8", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 32, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "f0bd2687-335b-4172-a7ff-78686e992977_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c645da05-7b27-44a9-a1dc-b89bb6186d2b", + "created_datetime": "2024-09-20T11:17:29.816674-05:00" + }, + "file_size": 50886, + "md5sum": "fca413e58b67dd4376f1d3baabad636e", + "file_id": "6e65a090-65b0-4ad4-a482-6f276445fc60", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-36-1576-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "3445c524-5a37-40b6-8614-956d76eed939", + "entity_id": "55b6bd7c-e77d-4019-93e9-b5410e4807b2" + } + ], + "file_name": "1c5456eb-85f7-44f3-b3fb-578f1d1fbf12.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_30_MirnaExpression9a2f9c45-def6-41d9-a157-0a86408944e5_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-36-1576-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_30_AlignedReads9a2f9c45-def6-41d9-a157-0a86408944e5", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 173161411, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "9e2b06446eea9a7a34264b9a9dede52a", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "da569206-4aa0-4548-b765-d64a4dce6ec4", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_30_MirnaExpressionWorkflow8e36f155-9ddf-4a86-b278-0fa15a891dff_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "6d167f88-269c-4cb0-af1b-018ef05acd56", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50362, + "md5sum": "732d720c1679d5b3f7a510e6f5c43846", + "file_id": "7a30318f-5e7c-4be3-86cc-870c9cbba730", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1430-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "3018efe7-13a1-47ae-a726-8fc967c73841", + "entity_id": "4c19d12e-0160-4d01-b621-65335156488b" + } + ], + "file_name": "70be7adb-395b-4a0a-b5c9-eb91bbed64c0.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_295_MirnaExpression590e67b5-9fa0-4bdc-8189-74cab76f836c_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1430-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_295_AlignedReads590e67b5-9fa0-4bdc-8189-74cab76f836c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 225758890, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "e5489eb23bb2221f4c55c641746373b8", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "e7933f64-26a7-4e46-bba0-1cc829496653", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_295_MirnaExpressionWorkflow74f548ce-22ca-4dfc-b204-f334b6364a88_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e8d13a3c-9d54-4576-beeb-313343349c23", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 349892, + "md5sum": "77c5237d748e877027c3f0f6da415aa1", + "file_id": "ed0e8a31-3cec-4b21-a168-202808b8e34e", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1464-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "4160e048-f0b0-40f5-805b-e277a5893a3b", + "entity_id": "6eb0fbff-f1b8-4544-91e2-cd593b631ead" + } + ], + "file_name": "ea46c685-c7b0-4e28-85f1-f426f294defa.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_389_MirnaExpression101eb964-ad66-4f1f-8ae6-7214954a04aa_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "39e67607-cc2a-52eb-a9e0-7b7ea1a107ab", + "entity_submitter_id": "TCGA-24-1464-01A-01R-1566-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8855", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "6eb0fbff-f1b8-4544-91e2-cd593b631ead", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "a7a16910-0ea5-5e64-99cb-ff6645f8daee", + "entity_submitter_id": "TCGA-24-1464-01A-01R-1566-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29784", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "6eb0fbff-f1b8-4544-91e2-cd593b631ead", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1464-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_389_AlignedReads101eb964-ad66-4f1f-8ae6-7214954a04aa", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 144296635, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "264d3c0b4329df9daeb8f7fc434f969c", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "04c5b914-6708-4473-9f78-9848ee9e912a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_389_MirnaExpressionWorkflowb92d6255-73b4-45a4-9a91-51fceb2b9dbb_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "78cfd16e-55da-4c3e-9fd9-368fd89404b8", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 356361, + "md5sum": "a8575d9c72ecd133c157faabc1b6a679", + "file_id": "e1e80eaf-5a9d-4a50-b58b-5367b95a30f1", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-20-0991-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "36595b52-2b5f-4e87-80eb-37c29109e92a", + "entity_id": "70004d87-7c1b-40e6-b246-04bb349dca6c" + } + ], + "file_name": "04c31914-f7f5-4e02-9103-16244fab1da0.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_432_MirnaExpressionb32cd071-7f27-4d91-89f4-970249cb0451_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "19b43312-23d8-5ec1-aa4e-816411d61874", + "entity_submitter_id": "TCGA-20-0991-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29761", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "70004d87-7c1b-40e6-b246-04bb349dca6c", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "d649fb82-3d8e-553d-98ff-4e5c8cb4fb98", + "entity_submitter_id": "TCGA-20-0991-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:32:20.747393-05:00", + "submitter_id": "8834", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "70004d87-7c1b-40e6-b246-04bb349dca6c", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-20-0991-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_432_AlignedReadsb32cd071-7f27-4d91-89f4-970249cb0451", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 148127399, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "34a22f4c822825fda857f03a931d9748", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b5aa30ea-8717-4d38-8e4a-a9c22601a39c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_432_MirnaExpressionWorkflow5ecc56b8-9e2b-4770-8b3a-0effdfe866b6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8821ee20-677c-4ebe-b9c2-1f8d5676f47d", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50145, + "md5sum": "1cad18d94eb7695c33c1d47c35d8c6e7", + "file_id": "859a2fac-23ed-4d1c-bc3e-a9422bc8a095", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1507-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "502e8d02-2953-4514-a2e1-6179dd94da73", + "entity_id": "41a5fa6b-4594-4ef8-b841-fe75c17a13c2" + } + ], + "file_name": "904a2b2e-0c5d-48f6-8781-820b6774988d.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_207_MirnaExpressioncd89371e-c5ee-4ca6-ae21-34c91153b6e7_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1507-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_207_AlignedReadscd89371e-c5ee-4ca6-ae21-34c91153b6e7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 212348076, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "8c2a81da86fb776581166790a691b2ee", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "2c5d2233-3aa8-4141-9c49-3a7ded372128", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_207_MirnaExpressionWorkflowffb3e7fa-3899-4c58-b926-7f9dc7e45042_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1a87587f-bf86-45c9-9c2e-cf632d9552ad", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50227, + "md5sum": "44577ce70151612b1399ff45a054f926", + "file_id": "dda487bf-0537-4c57-9fa4-7de9e67c2e9f", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1507-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "502e8d02-2953-4514-a2e1-6179dd94da73", + "entity_id": "41a5fa6b-4594-4ef8-b841-fe75c17a13c2" + } + ], + "file_name": "904a2b2e-0c5d-48f6-8781-820b6774988d.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_207_MirnaExpressioncd89371e-c5ee-4ca6-ae21-34c91153b6e7_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1507-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_207_AlignedReadscd89371e-c5ee-4ca6-ae21-34c91153b6e7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 212348076, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "8c2a81da86fb776581166790a691b2ee", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "2c5d2233-3aa8-4141-9c49-3a7ded372128", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_207_MirnaExpressionWorkflowffb3e7fa-3899-4c58-b926-7f9dc7e45042_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1a87587f-bf86-45c9-9c2e-cf632d9552ad", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 320499, + "md5sum": "cf877aae5ce2745686a9ae6cb168add7", + "file_id": "bf630875-14ab-4068-9239-88e845db38ac", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0912-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "58d34254-4f5b-40a4-9e9f-7160062fb2a4", + "entity_id": "aa17ea30-39b3-48b0-a6a7-1fac94c1e5ae" + } + ], + "file_name": "e8b194c8-164b-436a-8015-b02f3c4c7ca4.mirnaseq.isoforms.quantification.txt", + "submitter_id": "1475c200-be73-4fd9-b5c0-04f3c632b5e6", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9908476605845634, + "total_reads": 28336908, + "access": "controlled", + "file_name": "aa17ea30-39b3-48b0-a6a7-1fac94c1e5ae_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.00370706, + "proportion_reads_duplicated": 0, + "submitter_id": "b9b49e82-ff37-42ba-8f30-6403d5f256a7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 462698119, + "created_datetime": "2024-09-20T11:14:09.731864-05:00", + "average_base_quality": 36, + "md5sum": "74b984ef3b21a99454bf84b6f38d1b0a", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "e23cfa78-4546-4c44-ac84-1a7dcca64575", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 34, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "e8b194c8-164b-436a-8015-b02f3c4c7ca4_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "39e239bc-9b06-415a-9dd5-b08abead4f2a", + "created_datetime": "2024-09-20T11:18:18.300041-05:00" + }, + "file_size": 569520, + "md5sum": "22cfdf712597819a0d960b557146370c", + "file_id": "d2f8027a-7da6-438b-b8da-be3e1fd07648", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0923-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "378f7ea2-86b4-4072-80b8-e12d67193106", + "entity_id": "b75de387-11ae-4d46-81a1-54d15ecae42a" + } + ], + "file_name": "f2f6aaba-38b2-45c8-a8b2-3b1c09cc099d.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_171_MirnaExpression30b3d7db-04c3-4be9-a6cb-78c08a1d0a8c_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-0923-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29741", + "classification": "CenterNotification", + "entity_id": "b75de387-11ae-4d46-81a1-54d15ecae42a", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "0d640086-2fc6-5f6d-ba39-d4198129acf6", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "378f7ea2-86b4-4072-80b8-e12d67193106", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-13-0923" + }, + { + "entity_submitter_id": "TCGA-13-0923-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "submitter_id": "8820", + "classification": "CenterNotification", + "entity_id": "b75de387-11ae-4d46-81a1-54d15ecae42a", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "62a4fac7-504a-5a94-859a-3e0c1a93d45a", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "378f7ea2-86b4-4072-80b8-e12d67193106", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-13-0923" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0923-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_171_AlignedReads30b3d7db-04c3-4be9-a6cb-78c08a1d0a8c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 123181861, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "3ead9ad7082eddcf29eeea6f2db4b7c3", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "ed23cf36-1121-4f3a-a972-d50563402212", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_171_MirnaExpressionWorkflowbd9b4b07-da41-485f-b8f0-2f4e2761da89_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "44889a98-0384-4e6d-9772-3c2375ac1e52", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 246375, + "md5sum": "57a97df7d53effc04ed599ffbc8cabfb", + "file_id": "a461e853-3ccf-4587-a133-438cffdb6f66", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0912-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "58d34254-4f5b-40a4-9e9f-7160062fb2a4", + "entity_id": "aa17ea30-39b3-48b0-a6a7-1fac94c1e5ae" + } + ], + "file_name": "e8b194c8-164b-436a-8015-b02f3c4c7ca4.mirnaseq.mirnas.quantification.txt", + "submitter_id": "28ffc036-784d-4d8e-95c0-123239b48304", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9908476605845634, + "total_reads": 28336908, + "access": "controlled", + "file_name": "aa17ea30-39b3-48b0-a6a7-1fac94c1e5ae_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.00370706, + "proportion_reads_duplicated": 0, + "submitter_id": "b9b49e82-ff37-42ba-8f30-6403d5f256a7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 462698119, + "created_datetime": "2024-09-20T11:14:09.731864-05:00", + "average_base_quality": 36, + "md5sum": "74b984ef3b21a99454bf84b6f38d1b0a", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "e23cfa78-4546-4c44-ac84-1a7dcca64575", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 34, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "e8b194c8-164b-436a-8015-b02f3c4c7ca4_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "39e239bc-9b06-415a-9dd5-b08abead4f2a", + "created_datetime": "2024-09-20T11:18:18.300041-05:00" + }, + "file_size": 50604, + "md5sum": "d5a939f79e30b09543e0277eb34b72cd", + "file_id": "7bee1728-318b-4487-8151-41b4b264ff84", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0919-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "45957be6-e4df-4245-acf8-39dfc118ee19", + "entity_id": "36e20dfd-0d88-47bd-bf1f-164e069019d1" + } + ], + "file_name": "944015fa-f996-4d2a-8954-6a5e43e9f614.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_246_MirnaExpressioncb54f89f-833a-49cb-be12-a29b53f47d80_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-0919-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "submitter_id": "8773", + "classification": "CenterNotification", + "entity_id": "36e20dfd-0d88-47bd-bf1f-164e069019d1", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "2f3f1b55-a116-5bad-8919-b758dc51b3d0", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "45957be6-e4df-4245-acf8-39dfc118ee19", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-13-0919" + }, + { + "entity_submitter_id": "TCGA-13-0919-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29740", + "classification": "CenterNotification", + "entity_id": "36e20dfd-0d88-47bd-bf1f-164e069019d1", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "4b740dcc-3854-5c99-b78a-7ad1ff0f077a", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "45957be6-e4df-4245-acf8-39dfc118ee19", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-13-0919" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0919-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_246_AlignedReadscb54f89f-833a-49cb-be12-a29b53f47d80", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 126927659, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "e24ffa94d5de14016f6a56c0177985f8", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "878011da-3ae9-4baf-81d8-4a9841f671f9", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_246_MirnaExpressionWorkflow9dbf1c7b-4906-4129-9108-95fc879b6f90_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "186602e8-a782-4006-acfe-bc6a0675f15a", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 362027, + "md5sum": "0a29ee56183315310011d1963f52c98b", + "file_id": "4ab97375-4843-4190-9616-933d47ba7b71", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2023-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "5201ee13-2aed-4641-9169-4d5ee07a23da", + "entity_id": "11fd4bb1-0f8d-4830-a7f0-83897a5df11d" + } + ], + "file_name": "4d9c130c-9fc7-4880-bcfb-d61f226f7715.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_224_MirnaExpression38163e2b-e58c-4f45-a986-ae9083149063_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2023-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_224_AlignedReads38163e2b-e58c-4f45-a986-ae9083149063", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 131516015, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "2d86a9278c90010837c282a632dc3afd", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "05ce0a96-1e46-44e5-a6cf-6663511a16fe", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_224_MirnaExpressionWorkflow3a2b228d-bd9c-4238-b66f-0baab84769b8_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a38a86a2-9219-4353-8a43-4b192a565f05", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 330983, + "md5sum": "bcbf9a35b41b9fd0f83b912dfa952670", + "file_id": "fe6f5e33-9ef6-42e8-9aae-b13f3eafa5b8", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-30-1862-01A-02R-1568-13", + "entity_type": "aliquot", + "case_id": "58f5a54e-de50-4cca-afa1-cc331d8b3479", + "entity_id": "ab0701bc-0bc5-4008-a75b-5f665ef9c14a" + } + ], + "file_name": "8370472f-92b2-4e55-a091-7c7e1193972f.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_12_MirnaExpression7c7083f2-896d-4d8b-a95b-676355d3270e_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-30-1862-01A-02R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_12_AlignedReads7c7083f2-896d-4d8b-a95b-676355d3270e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 177280513, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "d47503affde64ad26ca77624ab8db8d4", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "286b5c64-01df-4895-8e74-d1ca93776cd0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_12_MirnaExpressionWorkflow06d7c06a-7f5b-4654-bd0c-d1f72e4d2fd3_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "20dd0587-b3aa-43d0-a8fd-3cceb313f0b6", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50257, + "md5sum": "95b671ee35c38dbdcbca3412dae225df", + "file_id": "770e4bf4-83eb-419d-ba75-1e5104122059", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1485-01A-02R-1565-13", + "entity_type": "aliquot", + "case_id": "49bfd0fe-48ce-49db-9f76-ce2310410950", + "entity_id": "50f08f95-3c5a-4d6b-bacc-ccb4a3a720b8" + } + ], + "file_name": "ff9781e6-32b9-4e36-ae48-02fbab715683.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_26_MirnaExpressionbd541b62-f8b2-4b22-8eb8-c7dd6f2c06e6_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "4423eafd-054b-50b3-96f7-79269f96786e", + "entity_submitter_id": "TCGA-13-1485-01A-02R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29749", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "50f08f95-3c5a-4d6b-bacc-ccb4a3a720b8", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "738ccb9e-d1a7-5307-a7b2-43fa2185e504", + "entity_submitter_id": "TCGA-13-1485-01A-02R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8805", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "50f08f95-3c5a-4d6b-bacc-ccb4a3a720b8", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1485-01A-02R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_26_AlignedReadsbd541b62-f8b2-4b22-8eb8-c7dd6f2c06e6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 111801648, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "cd86ef5001b776cd25298428a80a0258", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "d4382eb7-4dfe-4ac9-82e5-b561ca2dfea1", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_26_MirnaExpressionWorkflowb55d6973-b41b-4bb9-af08-903d67561de5_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "3eab2701-3c3b-40ab-9d75-c6da4d71653c", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50135, + "md5sum": "c8497782f27085d94f4414fb1f371ec0", + "file_id": "4943704b-5079-4140-876c-411134a1a3e8", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1604-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "65435f50-a35d-49e3-a36e-b95d9e274ca0", + "entity_id": "a658045c-93a6-4aac-abbb-1cd6093b7735" + } + ], + "file_name": "17d4b1e1-79b3-4b97-988f-d617f8d9b8eb.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_81_MirnaExpressionefacdc46-b8dd-48c9-97f6-bcd39d6f3534_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1604-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_81_AlignedReadsefacdc46-b8dd-48c9-97f6-bcd39d6f3534", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 174039917, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "6a4297ec8b22ea05b187ed480fa38928", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4915d66a-df6b-4dd5-853d-26eaa5cb0790", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_81_MirnaExpressionWorkflow2d3b8028-bcff-4513-970c-8d94df647ff2_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "975da856-835d-4085-bd52-ebe756155210", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 360738, + "md5sum": "e26ce8f2e303dbed92fd93ce61e1ab02", + "file_id": "76190eca-4aba-4693-beec-3ef93bb82c39", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1419-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "5e18b17d-4626-4b6d-8ac6-e560cee0376c", + "entity_id": "7bf43d51-2714-419e-a52f-863ca54c90e5" + } + ], + "file_name": "a00d8c58-4840-41a0-bb3b-a1d63f9dfeb1.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_48_MirnaExpression9c91e9a0-b118-4ad8-a670-51dc6a3aa661_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1419-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_48_AlignedReads9c91e9a0-b118-4ad8-a670-51dc6a3aa661", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 315353021, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "a711e5ff7699e4a561a4e37924f48916", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c31102a1-a8ef-412c-9d3f-fa45295f61b4", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_48_MirnaExpressionWorkflowd3bed088-8427-449a-878f-113692210dc0_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e3b68582-a2d1-4426-b49b-fdce56435db3", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 424532, + "md5sum": "74aadd08a5b0743c258eeeb9decc6304", + "file_id": "e4104ac6-aab9-4aba-b0cc-fcf5022f31c0", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0883-01A-02R-1569-13", + "entity_type": "aliquot", + "case_id": "5c159ab5-8475-4d93-89b8-b6befed4a5b3", + "entity_id": "1cc5dd24-87c4-4b49-851f-618d0ca98875" + } + ], + "file_name": "ba4b8482-d750-496f-bb94-f6d568549f1a.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_196_MirnaExpressionaca7a201-f0d0-4e30-a161-602deda30e0c_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0883-01A-02R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_196_AlignedReadsaca7a201-f0d0-4e30-a161-602deda30e0c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 144519986, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "75934925a9207b343313ea519818ac53", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "f2083e71-36de-42db-987e-054ea1ce5c0e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_196_MirnaExpressionWorkflowab9838cc-3863-47f8-8e52-a5b2e8c5f06c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "05bb0438-a0c7-4fb0-bee1-85975bcb9307", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50150, + "md5sum": "b6b484fe265ed5f4e36dc49258211b9b", + "file_id": "7658fe2e-48e4-45f6-971f-67708df10da1", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1626-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "662d77d1-1a43-427a-813b-e11edd30868e", + "entity_id": "daaba89d-acd3-4670-a618-89e5973b03f4" + } + ], + "file_name": "737d462a-812a-4a04-aea6-df3f52134493.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_410_MirnaExpressiona2684b6a-e804-446f-b9f7-090e14a9f1c8_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1626-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_410_AlignedReadsa2684b6a-e804-446f-b9f7-090e14a9f1c8", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 95480026, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "22839128e4f708827d21ffe160acc2e4", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "97041aa7-8f6a-43d3-9e44-88b719c84380", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_410_MirnaExpressionWorkflow4706bf53-5e8d-42d0-a364-e520a7eb43b4_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5869248d-5fea-461c-a785-ef8a10d57d5e", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 282806, + "md5sum": "bc868a1f2004be1a6dc8ed32358fb2fd", + "file_id": "fd33f27e-7a60-4c98-b688-3a3c5b78132f", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1626-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "662d77d1-1a43-427a-813b-e11edd30868e", + "entity_id": "daaba89d-acd3-4670-a618-89e5973b03f4" + } + ], + "file_name": "737d462a-812a-4a04-aea6-df3f52134493.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_410_MirnaExpressiona2684b6a-e804-446f-b9f7-090e14a9f1c8_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1626-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_410_AlignedReadsa2684b6a-e804-446f-b9f7-090e14a9f1c8", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 95480026, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "22839128e4f708827d21ffe160acc2e4", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "97041aa7-8f6a-43d3-9e44-88b719c84380", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_410_MirnaExpressionWorkflow4706bf53-5e8d-42d0-a364-e520a7eb43b4_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5869248d-5fea-461c-a785-ef8a10d57d5e", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50210, + "md5sum": "87ada29c60c9f0e417945ba865b39c99", + "file_id": "af94f688-7fba-42a0-a062-26cfaa8dbf89", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-0365-01A-02R-A96S-41", + "entity_type": "aliquot", + "case_id": "7621ed77-98bc-4b4e-8011-e18fcd014071", + "entity_id": "082ee901-86be-4dd1-921c-0dd79d0e43f0" + } + ], + "file_name": "856f2c41-9a3c-4b2d-a1cf-20579979dbf9.mirnaseq.isoforms.quantification.txt", + "submitter_id": "61e2274c-a551-403a-a37b-debda0a90264", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9919099436822444, + "total_reads": 32711886, + "access": "controlled", + "file_name": "082ee901-86be-4dd1-921c-0dd79d0e43f0_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004247292, + "proportion_reads_duplicated": 0, + "submitter_id": "0fba1e04-ecd2-4da7-81fa-525ceea5da79", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 499726000, + "created_datetime": "2024-09-20T11:13:47.380288-05:00", + "average_base_quality": 36, + "md5sum": "fb4ed1aa6972b2f95afa4669e580a701", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "c795e90c-1cad-49cd-af7c-eef1c8e23cf3", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 34, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "856f2c41-9a3c-4b2d-a1cf-20579979dbf9_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "198f03ed-c246-4813-8356-7eb0bcf5080c", + "created_datetime": "2024-09-20T11:17:25.757345-05:00" + }, + "file_size": 570546, + "md5sum": "28ab761b9b38af789bc8b3852505a5f9", + "file_id": "f886a80e-b427-47b6-86ce-6ed50c941a84", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1369-01A-02R-A96R-41", + "entity_type": "aliquot", + "case_id": "6c43727d-631a-40fb-b1a1-242a12889eaa", + "entity_id": "08df850e-45ea-4c3d-864f-0d3753e36c7a" + } + ], + "file_name": "34b98361-cb2b-4b22-90d5-f575b91bc525.mirnaseq.mirnas.quantification.txt", + "submitter_id": "4f0ee9c3-aedd-4fc5-ac67-77fc4bcb6410", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9898744644717418, + "total_reads": 28931013, + "access": "controlled", + "file_name": "08df850e-45ea-4c3d-864f-0d3753e36c7a_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004219099, + "proportion_reads_duplicated": 0, + "submitter_id": "b71ccaad-dd45-4bb9-a943-cb3cf86f9095", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 473911194, + "created_datetime": "2024-09-20T11:14:19.610123-05:00", + "average_base_quality": 36, + "md5sum": "7909aa48f0ce067ede44375af97c236b", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "64b25e41-48f3-4ec8-b9de-32ae814a2fb9", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 33, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "34b98361-cb2b-4b22-90d5-f575b91bc525_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2d459387-69cc-46b0-a596-34bf88771626", + "created_datetime": "2024-09-20T11:16:59.763370-05:00" + }, + "file_size": 50843, + "md5sum": "401d638470466d37f20ad25d45e25813", + "file_id": "b2033c32-0d03-465f-ab4c-e090c9aa14d6", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1548-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "66c92b9e-de3c-4d1a-bb69-46ffbc6caf33", + "entity_id": "77b1c06b-46ef-4c8c-8a82-37f83e3c48cf" + } + ], + "file_name": "6e773590-88c4-4b6f-a4c4-e88cf0fd8185.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_328_MirnaExpression70ce0b12-cfe4-4b14-a00e-bd5e1a33302d_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1548-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_328_AlignedReads70ce0b12-cfe4-4b14-a00e-bd5e1a33302d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 107356162, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "638d133b55c38f4420996d6849d39f8f", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "f4002cd0-2d93-45ad-bcdb-dab7c0653427", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_328_MirnaExpressionWorkflow36406d31-1e9c-4594-9c8e-d8057ad6fbe3_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7d6530d5-ec35-44af-b372-b08674ca68a8", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 283385, + "md5sum": "68bdfc14e77897457d0e090c2c6db4da", + "file_id": "48ea8efd-a5a1-449c-ae00-a9e96fea68b0", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1616-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "5d7027f5-60a0-47ab-a79d-667c9acc0e54", + "entity_id": "c334b353-0652-49fb-8cd6-5bcf8485e5d0" + } + ], + "file_name": "0cb0d80c-c3cb-4981-b07e-b8babe1ec06e.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_97_MirnaExpression35e61948-6108-445d-8d71-897a74b38911_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1616-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_97_AlignedReads35e61948-6108-445d-8d71-897a74b38911", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 126726606, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "0107c69bcc04ec9a01b980bfff1ee279", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6d7ba0f3-1ee6-40a0-9f6c-5689260b3218", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_97_MirnaExpressionWorkflow328bcfb8-ee5a-41d7-a9ad-3eb466ffbc58_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0ea69c92-3df8-4cd7-a317-2ee618e3aab6", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 386000, + "md5sum": "e6db453603e98bfe8c464d26e18fae2d", + "file_id": "26aa3460-07f4-4b32-8754-df154b4e4d0d", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-0364-01A-02R-1564-13", + "entity_type": "aliquot", + "case_id": "6746533a-8d0b-4ebc-87ec-49c8738121a8", + "entity_id": "2d0702a8-bf85-458e-879c-ebc03a2aa3d1" + } + ], + "file_name": "c254a61e-36be-48c2-a015-1c10496ae642.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_339_MirnaExpressionb873afe5-40ba-4a07-8bf2-cd3a252f9117_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-0364-01A-02R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_339_AlignedReadsb873afe5-40ba-4a07-8bf2-cd3a252f9117", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 127463053, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "d1418138996aaa48c3e1597be5c2bb8d", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5f8d2909-a1b3-46bc-a87d-0a9cffd232f1", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_339_MirnaExpressionWorkflow79e8408d-c255-4c0b-b48c-a7321a1c37df_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "fdd22401-567b-4f42-9229-3efb760503c6", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50104, + "md5sum": "aeaca8b301c2b913664988c9213547a3", + "file_id": "7d586b64-5f18-475e-a015-ff21a7b8d327", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1121-01A-01R-A96U-41", + "entity_type": "aliquot", + "case_id": "81005bae-686a-4598-8994-49d90ebac56f", + "entity_id": "4ff7e436-94c9-4cae-847c-ff21b5311689" + } + ], + "file_name": "d51c919f-6b47-4881-8b11-05b39a2d2111.mirnaseq.isoforms.quantification.txt", + "submitter_id": "92fe19a6-1058-4f00-88c3-30066ef2541a", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9892753294986186, + "total_reads": 26494800, + "access": "controlled", + "file_name": "4ff7e436-94c9-4cae-847c-ff21b5311689_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005148863, + "proportion_reads_duplicated": 0, + "submitter_id": "c4b75791-dc4a-491a-8a1d-65b23c191b58", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 460942898, + "created_datetime": "2024-09-20T11:14:11.214025-05:00", + "average_base_quality": 36, + "md5sum": "3c7d8cd9e4994115fd9a8861dd5b6b9f", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "fa081233-8529-40c2-afd2-2ec96bab6bc7", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "d51c919f-6b47-4881-8b11-05b39a2d2111_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "20448496-aa21-417c-bf01-31cd7c61efb7", + "created_datetime": "2024-09-20T11:17:51.173492-05:00" + }, + "file_size": 641242, + "md5sum": "2777c1f907edf191a09f05b66f18e8e9", + "file_id": "bfca5067-1c69-44e2-a3eb-13ce8c6c47e7", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1846-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "67f526f1-def5-43b4-bc89-154baae190fc", + "entity_id": "4b073708-9525-4340-90dc-ede08ee24977" + } + ], + "file_name": "25df78ef-0889-4866-8802-34ca0f2e31ce.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_367_MirnaExpressionf73cfa4b-5501-42ff-86ff-87156fc02fae_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1846-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_367_AlignedReadsf73cfa4b-5501-42ff-86ff-87156fc02fae", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 210984854, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "5f8e927e682f6e1f739dfbd94b0b9357", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "9658028d-4267-4375-a328-08fca53870d6", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_367_MirnaExpressionWorkflow285d424c-fdf9-4fad-82ef-fd3b9b21236c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "3138be7e-256a-4e91-903e-18f5d6183d53", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 412116, + "md5sum": "4efe55e725d2d3c4fb737846c8fb68fa", + "file_id": "2c6c56fb-a13e-43fa-bf21-ae1bd8fdb8d6", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1846-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "67f526f1-def5-43b4-bc89-154baae190fc", + "entity_id": "4b073708-9525-4340-90dc-ede08ee24977" + } + ], + "file_name": "25df78ef-0889-4866-8802-34ca0f2e31ce.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_367_MirnaExpressionf73cfa4b-5501-42ff-86ff-87156fc02fae_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1846-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_367_AlignedReadsf73cfa4b-5501-42ff-86ff-87156fc02fae", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 210984854, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "5f8e927e682f6e1f739dfbd94b0b9357", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "9658028d-4267-4375-a328-08fca53870d6", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_367_MirnaExpressionWorkflow285d424c-fdf9-4fad-82ef-fd3b9b21236c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "3138be7e-256a-4e91-903e-18f5d6183d53", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50431, + "md5sum": "a61acb3f049dd907d52a253156cc8be1", + "file_id": "1d09c662-1fa5-4f66-a082-2d3a49f46dbd", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1552-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "62379be5-13f0-474b-94d3-6f944ec4ee96", + "entity_id": "990bcb1f-7269-4020-8ea5-8ba338b390b8" + } + ], + "file_name": "86760094-294f-4fbb-b768-4381f658bead.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_427_MirnaExpression220f50ce-2e02-46ee-81d6-e4976532a147_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1552-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_427_AlignedReads220f50ce-2e02-46ee-81d6-e4976532a147", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 143219702, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "d1f18ae9180fa89b0dcdc1de5cef4878", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b3a9db71-6bd2-4fc9-864f-668dfe357580", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_427_MirnaExpressionWorkflowc955ea6e-b843-448b-94f6-16899127e55c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f3f025ca-5d63-4185-be07-734d36c7b52a", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50134, + "md5sum": "17cae01d7d432a5c7f55977334d1d957", + "file_id": "9dd1af73-78fd-4e08-9f29-c62fd62ff7d7", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1901-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "7a75d318-b301-4f77-a97f-4d6784d27216", + "entity_id": "c09d4397-2ada-4990-a1ff-2aa161728d60" + } + ], + "file_name": "f1847183-2dd6-4047-8a21-32ba9bf93ad3.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_258_MirnaExpressiondabb724a-1011-44b9-a506-a9fc052885b7_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1901-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_258_AlignedReadsdabb724a-1011-44b9-a506-a9fc052885b7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 129199284, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "f37309201665545facd716cd1268bffa", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "f6f5f9e7-fb5f-4161-96ed-983b7f6a9c71", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_258_MirnaExpressionWorkflowb1bb6dd1-7e52-4435-b563-765743998d34_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e71b67df-9286-4ea8-868f-355bdff21d15", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50240, + "md5sum": "88835a6ae1402e49cc3eee56838cfc4a", + "file_id": "9d45b5b2-21dc-4bf9-9dd7-dc208af1c6d8", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2110-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "88180134-710f-46ea-9b06-5e5d860d6d9f", + "entity_id": "6561cdb8-8499-41a6-8a79-ef0119e34c66" + } + ], + "file_name": "275d247a-f015-43c8-aff3-aebff9c36816.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_450_MirnaExpressionab100cb2-4f9b-4d01-9e53-b0b3effbdd0a_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2110-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_450_AlignedReadsab100cb2-4f9b-4d01-9e53-b0b3effbdd0a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 183321157, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "7884706fd2136740dde19857d9394ae5", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "9d8de54f-842e-4424-b150-8a5ba1524081", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_450_MirnaExpressionWorkflowe6dff4fa-fe5d-4eb7-a4c9-593263d25143_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2e26f7d3-867b-49f3-b1f1-cf762270ef67", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50321, + "md5sum": "4ec7661c1ddcfe618fec124e6896a5c9", + "file_id": "037b3457-6c4a-4073-9c93-00ca75a6b8ab", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1644-01B-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "6f592f17-e00b-4d04-a45b-d9d4cf4c3075", + "entity_id": "f6594cb1-3d1c-40db-9e83-ae6237eb1ee5" + } + ], + "file_name": "286f0db7-60b7-42bd-9161-585384c38fe6.mirnaseq.mirnas.quantification.txt", + "submitter_id": "3d1a2e59-4e32-4a14-a734-39aa78fb5b68", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9892300329818606, + "total_reads": 26861735, + "access": "controlled", + "file_name": "f6594cb1-3d1c-40db-9e83-ae6237eb1ee5_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005973278, + "proportion_reads_duplicated": 0, + "submitter_id": "aadfb7c9-e609-4bd8-83f7-4d0d529f7203", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 451414818, + "created_datetime": "2024-09-20T11:13:15.931529-05:00", + "average_base_quality": 36, + "md5sum": "097b304057566cfdad80468161864369", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "5415dda5-a34c-4e02-8eda-b4ded21bb1d9", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 30, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "286f0db7-60b7-42bd-9161-585384c38fe6_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "3fef2e01-3dc8-4148-8d8e-0c892575fba6", + "created_datetime": "2024-09-20T11:17:06.122035-05:00" + }, + "file_size": 50822, + "md5sum": "66eb8df211c6dacdcc3b3c03d7801ea7", + "file_id": "0afa9f53-0f04-4d4d-9dbc-27a0a92abfd4", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1696-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "8a98a6e6-b763-4824-858b-fd2738e6c9a3", + "entity_id": "23c4ab1a-f8ce-47be-ab03-abfc66ea70ef" + } + ], + "file_name": "760328e5-3c89-458d-8546-00d1468a8987.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_480_MirnaExpression0f20db11-1d86-473e-ab9e-2c00f53d459a_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1696-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_480_AlignedReads0f20db11-1d86-473e-ab9e-2c00f53d459a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 182735540, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "a06eb6302a2c023b4b2776352f8813a3", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "648fa444-3c9f-4543-b226-399d8220036e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_480_MirnaExpressionWorkflowc0fbea9a-03f0-4382-8d8c-8be700c9eca4_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1cc48fd8-6af4-4761-9eff-a8e6e3ee98e1", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50206, + "md5sum": "83f54557d2182ea9077fa01944e6b0c3", + "file_id": "6e8e6c90-54a7-4590-a1c9-fcd51a792920", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1110-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "9fb1ba57-2007-4477-b000-2d36f163efd2", + "entity_id": "d93e1f93-20d0-493f-8b54-939fa4ba64f9" + } + ], + "file_name": "36f5501e-6be3-4f70-b981-645a3044b652.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_484_MirnaExpressiondef1c2fc-d28a-4da4-8a35-c6b175ad93c4_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "13bd9455-2529-5519-adc4-941b1e088c0c", + "entity_submitter_id": "TCGA-23-1110-01A-01R-1564-13", + "notes": "RNA-seq:INSUFFICIENT INPUT MATERIAL,LOW SEQUENCE YIELD/DIVERSITY", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8762", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "d93e1f93-20d0-493f-8b54-939fa4ba64f9", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "1b62fa7b-170d-5421-8b7e-a3b0901f1d77", + "entity_submitter_id": "TCGA-23-1110-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29770", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "d93e1f93-20d0-493f-8b54-939fa4ba64f9", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1110-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_484_AlignedReadsdef1c2fc-d28a-4da4-8a35-c6b175ad93c4", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 205858087, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "6ddcbe543359111d4e010afa98d9918e", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "f198b93e-9505-4455-a831-cc61aadd80cd", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_484_MirnaExpressionWorkflowf77ec01f-82fa-4a08-8521-81a83be1c4d6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "23cf9586-a52b-46d9-9763-e78dd8e6ce1c", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50147, + "md5sum": "09cac98848de9e1b819efa5566459f18", + "file_id": "3728332b-48dc-4cd2-a195-14c15061acda", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-10-0937-01A-02R-1564-13", + "entity_type": "aliquot", + "case_id": "a5030259-cf9c-4a58-8710-b9da8ee59320", + "entity_id": "6392a07a-79e2-4272-abfe-329d1029bb09" + } + ], + "file_name": "868dd709-e0d7-4aca-bd4d-bcd22f828508.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_74_MirnaExpression289bcb44-a743-4e98-937f-d6b70253b8c9_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-10-0937-01A-02R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29711", + "classification": "CenterNotification", + "entity_id": "6392a07a-79e2-4272-abfe-329d1029bb09", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "bbc3e1c3-3622-571b-bb9d-a535db19f870", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "a5030259-cf9c-4a58-8710-b9da8ee59320", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-10-0937" + }, + { + "entity_submitter_id": "TCGA-10-0937-01A-02R-1564-13", + "notes": "RNA-seq:INSUFFICIENT INPUT MATERIAL,LOW SEQUENCE YIELD/DIVERSITY;LOW 5/3 COVERAGE RATIO", + "submitter_id": "8828", + "classification": "CenterNotification", + "entity_id": "6392a07a-79e2-4272-abfe-329d1029bb09", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "e855e762-20a5-57c5-9902-90f5bd43f45e", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "a5030259-cf9c-4a58-8710-b9da8ee59320", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-10-0937" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-10-0937-01A-02R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_74_AlignedReads289bcb44-a743-4e98-937f-d6b70253b8c9", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 48530862, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "cec71134f54270ba7f7a6e4e48929b4f", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "e777e1c4-02e3-4386-bbb4-3d12653b9826", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_74_MirnaExpressionWorkflow06273e78-d7b0-411d-bf82-e4248e963a3b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "072e9648-695d-4f04-9cf6-f32ea549505f", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 185697, + "md5sum": "82c400eb7a635d6103f016573013708f", + "file_id": "ddc91a71-288d-43a5-b068-7ec0786e0973", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-10-0937-01A-02R-1564-13", + "entity_type": "aliquot", + "case_id": "a5030259-cf9c-4a58-8710-b9da8ee59320", + "entity_id": "6392a07a-79e2-4272-abfe-329d1029bb09" + } + ], + "file_name": "868dd709-e0d7-4aca-bd4d-bcd22f828508.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_74_MirnaExpression289bcb44-a743-4e98-937f-d6b70253b8c9_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-10-0937-01A-02R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29711", + "classification": "CenterNotification", + "entity_id": "6392a07a-79e2-4272-abfe-329d1029bb09", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "bbc3e1c3-3622-571b-bb9d-a535db19f870", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "a5030259-cf9c-4a58-8710-b9da8ee59320", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-10-0937" + }, + { + "entity_submitter_id": "TCGA-10-0937-01A-02R-1564-13", + "notes": "RNA-seq:INSUFFICIENT INPUT MATERIAL,LOW SEQUENCE YIELD/DIVERSITY;LOW 5/3 COVERAGE RATIO", + "submitter_id": "8828", + "classification": "CenterNotification", + "entity_id": "6392a07a-79e2-4272-abfe-329d1029bb09", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "e855e762-20a5-57c5-9902-90f5bd43f45e", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "a5030259-cf9c-4a58-8710-b9da8ee59320", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-10-0937" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-10-0937-01A-02R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_74_AlignedReads289bcb44-a743-4e98-937f-d6b70253b8c9", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 48530862, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "cec71134f54270ba7f7a6e4e48929b4f", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "e777e1c4-02e3-4386-bbb4-3d12653b9826", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_74_MirnaExpressionWorkflow06273e78-d7b0-411d-bf82-e4248e963a3b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "072e9648-695d-4f04-9cf6-f32ea549505f", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50042, + "md5sum": "01e428795c2eb629736a32599593ccd9", + "file_id": "8ec2e302-bc00-42e9-8bd0-38b4e3cf2857", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1845-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "a782352e-c4bb-4c3e-ba82-456a47c3689a", + "entity_id": "78b612c0-5323-46e9-962e-497ad3c877c1" + } + ], + "file_name": "f1c88ee9-a82c-4feb-b5cf-5d2eb23e7d03.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_375_MirnaExpression835319b0-0d35-4414-be57-ab32ac206029_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "0c9a35a5-0325-578f-8053-1fcc829c371a", + "entity_submitter_id": "TCGA-24-1845-01A-01R-1567-13", + "notes": "RNA-seq:HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8815", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "78b612c0-5323-46e9-962e-497ad3c877c1", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "920ec917-1199-57a4-b472-cb955eb66b51", + "entity_submitter_id": "TCGA-24-1845-01A-01R-1567-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29788", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "78b612c0-5323-46e9-962e-497ad3c877c1", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1845-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_375_AlignedReads835319b0-0d35-4414-be57-ab32ac206029", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 195658031, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "ec2e6c78fc7823dc29d656f2868dd8e5", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "0b22e519-66ea-4279-82c4-1c9259446435", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_375_MirnaExpressionWorkflow60515809-9ef7-40a2-a339-26a714155262_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "9bdd530c-a113-4216-88e7-0bdbb2656cfb", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50205, + "md5sum": "b28f341530237365c92e0e2abcb6733e", + "file_id": "396a5915-cf25-4842-a149-af9a4184c40e", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1342-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "8727855e-120a-4216-a803-8cc6cd1159be", + "entity_id": "2a74ee8b-923a-4141-a0bd-ad1206a329f2" + } + ], + "file_name": "c618942d-7a4a-4648-8e97-d7fb6b43f83a.mirnaseq.isoforms.quantification.txt", + "submitter_id": "fa0e6a57-1cc4-4d5b-a38c-84326253af9e", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9885270628725634, + "total_reads": 27695785, + "access": "controlled", + "file_name": "2a74ee8b-923a-4141-a0bd-ad1206a329f2_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004546058, + "proportion_reads_duplicated": 0, + "submitter_id": "90d57c4d-14dc-48cd-a3f0-c4f2d9285e04", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 490160974, + "created_datetime": "2024-09-20T11:12:44.054974-05:00", + "average_base_quality": 36, + "md5sum": "6728b74e77c60e9c7787a20028196b65", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "3187d8fb-21ab-402b-b580-6adfd6083350", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "c618942d-7a4a-4648-8e97-d7fb6b43f83a_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "631e5e40-4d4a-4b26-bd2f-7b8a28ac9958", + "created_datetime": "2024-09-20T11:16:35.336620-05:00" + }, + "file_size": 676063, + "md5sum": "78c1ba77e4813181800b8dd8509dff39", + "file_id": "92992a4b-3f11-45ba-8fb8-37612f599729", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1342-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "8727855e-120a-4216-a803-8cc6cd1159be", + "entity_id": "1f163f79-9521-44c3-a825-124b11bbad60" + } + ], + "file_name": "c473c1ff-0a58-4860-b1b8-c1a346df8642.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_323_MirnaExpression44ceb403-27a8-47c2-878c-ba208325430d_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1342-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_323_AlignedReads44ceb403-27a8-47c2-878c-ba208325430d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 175836080, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "4e8e2921293c71fcfb2dcc0e4c8a74aa", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "ac31bcef-2dc9-4d62-af66-a0567ee87505", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_323_MirnaExpressionWorkflowb8133a74-dd70-4658-a5be-2e1df07debc0_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "bde1282b-1b5e-4cfd-9906-bd7d3638c8b3", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50221, + "md5sum": "c03cec43425237d357e62252eb529a65", + "file_id": "c52f328a-2b99-4a4a-bc3a-f147cf2ce44b", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1024-01A-02R-1564-13", + "entity_type": "aliquot", + "case_id": "8ac6ce06-ab50-4ab4-a469-9f8bf01be963", + "entity_id": "467ceace-18c4-436b-a8f6-842794c5dfa5" + } + ], + "file_name": "846f785e-0fb7-4fd6-a36a-8e642d050c71.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_448_MirnaExpressionfa3135ca-cbd3-48e8-a2e2-2bb854f73df9_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "55c9cdda-a944-5046-b2af-e9b0f0450370", + "entity_submitter_id": "TCGA-23-1024-01A-02R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29765", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "467ceace-18c4-436b-a8f6-842794c5dfa5", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "5e477f5d-b1a6-5085-abd8-178005c3d6b0", + "entity_submitter_id": "TCGA-23-1024-01A-02R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8766", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "467ceace-18c4-436b-a8f6-842794c5dfa5", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1024-01A-02R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_448_AlignedReadsfa3135ca-cbd3-48e8-a2e2-2bb854f73df9", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 146989243, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "5a6e5eea0d1a9375ddc2606d4daa626d", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "ed5fdf3e-2370-46b6-87ca-de94c3eed836", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_448_MirnaExpressionWorkflow521fb6a9-ad79-447e-ab5a-0a2e664c7221_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c92314f2-c0f8-470a-b2c5-abfbd9a5a0e5", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50382, + "md5sum": "9d8da90b3bd67162c3432be892ac990c", + "file_id": "00abfcab-9fb2-4052-963d-6c4a5c7f6b3e", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0911-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "8cad4217-5699-4735-9be3-fc0015a8d262", + "entity_id": "d47147ed-fdb1-4921-9db7-1e0aae32aacb" + } + ], + "file_name": "55fb058b-a120-400d-8e69-4e9ab4dbe5a1.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_394_MirnaExpression4298f537-9874-4ff5-9be9-bac4bfdfdb3f_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-0911-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29738", + "classification": "CenterNotification", + "entity_id": "d47147ed-fdb1-4921-9db7-1e0aae32aacb", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "0f2bc2eb-4e91-5534-a85e-8089fb8eeb2c", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "case_id": "8cad4217-5699-4735-9be3-fc0015a8d262", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-13-0911" + }, + { + "entity_submitter_id": "TCGA-13-0911-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "submitter_id": "8752", + "classification": "CenterNotification", + "entity_id": "d47147ed-fdb1-4921-9db7-1e0aae32aacb", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "b957073b-d817-5657-9d1a-6dae6a8a9518", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "8cad4217-5699-4735-9be3-fc0015a8d262", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-13-0911" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0911-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_394_AlignedReads4298f537-9874-4ff5-9be9-bac4bfdfdb3f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 191174802, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "50f307a465849c33bf301de6c8581276", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "bce5b08b-c863-4f63-8046-a7adc65cb08a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_394_MirnaExpressionWorkflow1b9e0693-c674-4c4c-af56-bdc43e67251a_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "73e496b7-be83-430d-81fa-f6640f37155e", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50283, + "md5sum": "855e970cd458769ad5fac6e8da7c2489", + "file_id": "002e645a-37e2-4b4d-8f54-bc0a79c2d778", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1488-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "a85f6f9c-1e1d-44fc-85eb-3b2d96cfbc61", + "entity_id": "fbd513d6-46e8-48f7-9dc3-f7369ad0f3c7" + } + ], + "file_name": "3265cc80-54d0-4103-9b24-2fff0e770cae.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_59_MirnaExpression3b5e4f4d-e9ff-42c1-b01f-b63e3692707c_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "3eba3caf-4dd1-5ca6-9e31-695d22e8420f", + "entity_submitter_id": "TCGA-13-1488-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8783", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "fbd513d6-46e8-48f7-9dc3-f7369ad0f3c7", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "eedc2d06-b744-5c8e-9c40-afff7222e409", + "entity_submitter_id": "TCGA-13-1488-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29751", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "fbd513d6-46e8-48f7-9dc3-f7369ad0f3c7", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1488-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_59_AlignedReads3b5e4f4d-e9ff-42c1-b01f-b63e3692707c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 206916877, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "5289be18a5f55daf2e54ae7bd2862897", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "bedf8cd0-f000-4f0d-ab0c-9f7267e4f93d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_59_MirnaExpressionWorkflow3251ca7e-79f7-4946-9eff-0af5531bd577_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e77ae211-baef-4c1c-aa72-7808997383d4", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 359238, + "md5sum": "73eaad2329c9321a05ee0a6ee16cc291", + "file_id": "63f905c5-54e4-4726-b6df-d64de5b7f144", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1329-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "955c80be-53df-4565-9303-a7abf96a2f81", + "entity_id": "5cf09ce6-44b1-4f0e-89ac-3ea302d684d8" + } + ], + "file_name": "dd3f7c1a-dc74-49a5-add6-d5565e1c5b89.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_164_MirnaExpression3b15bb57-4fbe-4937-a371-7e50f1dc8f8f_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1329-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_164_AlignedReads3b15bb57-4fbe-4937-a371-7e50f1dc8f8f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 293423194, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "e4ab04e90ba7693dcaf9d9991af57124", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b838fb86-4b52-4168-915d-8a4b3fb71e68", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_164_MirnaExpressionWorkflow81a652b9-47e2-4ce9-b7e3-97f22c824140_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c0a45513-fedc-4c4d-aa40-52a7b2318cfd", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 397840, + "md5sum": "02d986db13ec16860a0d40c7e53cb3bd", + "file_id": "1c47c3fc-7536-42e7-b131-19369a9f2895", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1341-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "92badeb5-a50e-4a62-a67e-6a8a59c948ab", + "entity_id": "d525e6af-f667-4891-97ee-856e6052982f" + } + ], + "file_name": "91114485-7448-4dc5-aba6-fef4e091ea97.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_360_MirnaExpression52b8950e-4847-4f50-8037-c2f15054ce7d_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "036fdd13-a4d6-54f7-b8d4-553d1b602d44", + "entity_submitter_id": "TCGA-04-1341-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29690", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "d525e6af-f667-4891-97ee-856e6052982f", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "5debaaf7-57b9-5c8b-981e-5e23c95c834d", + "entity_submitter_id": "TCGA-04-1341-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8748", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "d525e6af-f667-4891-97ee-856e6052982f", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1341-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_360_AlignedReads52b8950e-4847-4f50-8037-c2f15054ce7d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 154638552, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "fdcbc7b02f3cc27a46ea038431401571", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4475206f-3613-46aa-8b5c-d17483006a9c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_360_MirnaExpressionWorkflow2d32a31d-f435-455e-a75b-b4d1d619b00d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e86c4c1b-76a2-41f0-b00c-7a0aff8aa675", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50235, + "md5sum": "1a4d94032c01ace1d4a2b48ec81a1197", + "file_id": "ed7d35dd-d306-4610-a0b3-d5c69637bd51", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-10-0930-01A-02R-A96S-41", + "entity_type": "aliquot", + "case_id": "99f1ae02-86ec-4d93-8cd4-650bf6f02c10", + "entity_id": "fdec15df-85b8-4439-8677-da26ba15b47f" + } + ], + "file_name": "ca8b1b15-238e-4763-9f26-71f5e71d7ac0.mirnaseq.isoforms.quantification.txt", + "submitter_id": "77bcf3a7-37b4-4478-9ac5-1d506dd60f9e", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9897463163045241, + "total_reads": 30083920, + "access": "controlled", + "file_name": "fdec15df-85b8-4439-8677-da26ba15b47f_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003737508, + "proportion_reads_duplicated": 0, + "submitter_id": "62d6f862-ea2f-4ab5-93ce-305c3e59b28d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 490735157, + "created_datetime": "2024-09-20T11:14:12.823486-05:00", + "average_base_quality": 36, + "md5sum": "3c3d693c0fdce1ad84f7f10bd65a3b1d", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "7a8469e6-f8e1-479a-81a7-e7ab6e086ef0", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 35, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "ca8b1b15-238e-4763-9f26-71f5e71d7ac0_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "94676c58-68f6-4e7b-8973-a646b378ac4c", + "created_datetime": "2024-09-20T11:17:04.628899-05:00" + }, + "file_size": 532803, + "md5sum": "6f7490973563f075e23df4edb33500b3", + "file_id": "a94d4214-0bc3-4255-9fce-038beed9e173", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-20-0990-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "c9524775-6b50-4793-8858-24b6a6d3e4e6", + "entity_id": "67af5b15-53e8-4069-af1d-149c909c76db" + } + ], + "file_name": "681ecf0b-0418-444e-98f5-148f1a957b2b.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_194_MirnaExpression100bc05a-a8cd-454f-8b84-13560bb60a95_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-20-0990-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_194_AlignedReads100bc05a-a8cd-454f-8b84-13560bb60a95", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 95626220, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "8a17bc5abdcaca83b07e32978d2acd1c", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "f6574963-6932-43e2-834a-341d37f0f173", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_194_MirnaExpressionWorkflowe4e5b8f6-6211-4fc5-98d5-03c55e8e0a5f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b6670896-d250-4507-adab-a9aeccc3c0e5", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 49989, + "md5sum": "0abdfb9eadc82083b9af897efd0c140d", + "file_id": "fce682ec-c221-439d-8423-a41bf0801537", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2094-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "b31d85cc-d2e2-4bd1-9986-d6bbe30e657f", + "entity_id": "c6e1c591-3225-482a-8350-112b664a37e6" + } + ], + "file_name": "d3c4a9cf-95c5-4df0-b9a7-c32d6d6a8816.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_476_MirnaExpressiond0ef844b-32c0-478e-ba76-949f6dc45806_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2094-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_476_AlignedReadsd0ef844b-32c0-478e-ba76-949f6dc45806", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 157052175, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "a1df2b805cb682ae54c629ed3c0e2a31", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "69d654fd-5fac-47fe-926e-7112adb26f65", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_476_MirnaExpressionWorkflowec07ce25-f5d4-4596-9e4f-b2c6a910d84f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "3f9e0439-5521-448b-91e5-77ea80cda050", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50366, + "md5sum": "966fcb65864a761234a3e341884dad12", + "file_id": "2fabb2d2-ffd2-4fa0-accf-360cbcf0002b", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-2066-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "bcb87812-94e3-4dc0-867e-d049b44a2690", + "entity_id": "f5c6ab1d-af6e-462f-932e-2acbd09bbb31" + } + ], + "file_name": "90e3be7b-f6b6-48a9-84c5-84d3c05be565.mirnaseq.isoforms.quantification.txt", + "submitter_id": "b24075e9-a2f8-4a58-8148-777db1f3f5d3", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9922674731109821, + "total_reads": 20260130, + "access": "controlled", + "file_name": "f5c6ab1d-af6e-462f-932e-2acbd09bbb31_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004316194, + "proportion_reads_duplicated": 0, + "submitter_id": "07a8b888-b2ca-4748-aac9-d37321db140c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 339993912, + "created_datetime": "2024-09-20T11:14:21.299288-05:00", + "average_base_quality": 36, + "md5sum": "dcd6d09dd50f79e560238390bbec226c", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "ee98b59b-3aa4-435f-820b-bdd174975e18", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 28, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "90e3be7b-f6b6-48a9-84c5-84d3c05be565_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "684713a6-a3fa-42e9-920a-b56bcc12f81c", + "created_datetime": "2024-09-20T11:16:44.888042-05:00" + }, + "file_size": 649783, + "md5sum": "876af167b19a830c239c9626f37dc23d", + "file_id": "85563830-5c01-481d-8fcd-e00002cb8dc8", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-2066-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "bcb87812-94e3-4dc0-867e-d049b44a2690", + "entity_id": "f5c6ab1d-af6e-462f-932e-2acbd09bbb31" + } + ], + "file_name": "90e3be7b-f6b6-48a9-84c5-84d3c05be565.mirnaseq.mirnas.quantification.txt", + "submitter_id": "7a1bf859-e7fc-42c5-aef1-9f50a0c24ebb", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9922674731109821, + "total_reads": 20260130, + "access": "controlled", + "file_name": "f5c6ab1d-af6e-462f-932e-2acbd09bbb31_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004316194, + "proportion_reads_duplicated": 0, + "submitter_id": "07a8b888-b2ca-4748-aac9-d37321db140c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 339993912, + "created_datetime": "2024-09-20T11:14:21.299288-05:00", + "average_base_quality": 36, + "md5sum": "dcd6d09dd50f79e560238390bbec226c", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "ee98b59b-3aa4-435f-820b-bdd174975e18", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 28, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "90e3be7b-f6b6-48a9-84c5-84d3c05be565_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "684713a6-a3fa-42e9-920a-b56bcc12f81c", + "created_datetime": "2024-09-20T11:16:44.888042-05:00" + }, + "file_size": 50846, + "md5sum": "697e4af72cdaaf2f42122588818b83eb", + "file_id": "f7033493-97a5-4ca8-85fc-e912993c845a", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2254-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "9af2248a-d86a-4277-93b4-8eba5a39bd3c", + "entity_id": "e496319b-df71-44a0-bfa6-90f50ae54654" + } + ], + "file_name": "1bf32c47-f557-4ce2-ae6f-043cf41d11f4.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_363_MirnaExpressioncd381781-429c-4631-a81a-a306d8f86bc7_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2254-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_363_AlignedReadscd381781-429c-4631-a81a-a306d8f86bc7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 286761937, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "bfb38a9e96cdd0cac8a4eff4d9a86d31", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "14282a41-fd4a-45c9-a603-406e09e9c22b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_363_MirnaExpressionWorkflow5da40c6f-20d4-4ed2-940f-8d850d71a277_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "704ff165-5efd-488d-aa43-07c43953f555", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50476, + "md5sum": "82f950eeecfdfd106c0200a1be6552cb", + "file_id": "eb182f4a-9502-4905-902a-947b14b3ce8b", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1627-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "cbe3309e-9b7b-4f62-87b5-0f5ed4218ada", + "entity_id": "0fc68715-c7fc-4481-a5bf-68a281f5ec64" + } + ], + "file_name": "07708b3c-5a20-4964-883c-f508935a5676.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_421_MirnaExpression0ab4ca10-7871-4909-bf3b-8b491ce160dd_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1627-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_421_AlignedReads0ab4ca10-7871-4909-bf3b-8b491ce160dd", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 141013538, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "788262337b552f04be1d217f89fc9701", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "7c53cfa1-5f62-4d3c-bb68-55fd793dc033", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_421_MirnaExpressionWorkflow61b711f1-c86e-4bd9-8308-050f1796e721_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "6ca110ea-c2c8-43a9-9387-8d012057667f", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50246, + "md5sum": "2c987e4302e737b8bce53aa91ddcb052", + "file_id": "4bd81eb2-ecf5-4e90-a432-2871196415a1", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0792-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "c11cae7e-91cd-4470-a9d8-188a4f6b8fa1", + "entity_id": "a1440677-d6e4-4f16-9627-cdb503e81234" + } + ], + "file_name": "594f25dc-c106-4f7c-bb4c-ec5e177c219b.mirnaseq.isoforms.quantification.txt", + "submitter_id": "cb1b888b-b473-48da-abba-521187818193", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9894170099237038, + "total_reads": 26474087, + "access": "controlled", + "file_name": "a1440677-d6e4-4f16-9627-cdb503e81234_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004615108, + "proportion_reads_duplicated": 0, + "submitter_id": "6382854f-2b0e-4f09-ac1a-f33512b623b7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 459537829, + "created_datetime": "2024-09-20T11:13:56.713277-05:00", + "average_base_quality": 36, + "md5sum": "26171e9b836dc4760567b66b00aa1dae", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "9a419efc-5847-46c8-9f74-cee644de8f04", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "594f25dc-c106-4f7c-bb4c-ec5e177c219b_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "44de8ec9-f9e1-4f39-810d-02d656ab5bf7", + "created_datetime": "2024-09-20T11:17:09.575047-05:00" + }, + "file_size": 546677, + "md5sum": "0121a14f01045db634a2692ad7d23abb", + "file_id": "ce3ff3b7-f76b-4393-8e63-e4c00289676a", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1560-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "afd92922-b8dc-48bd-a9c0-bc8d95855eb7", + "entity_id": "a7ea40ed-6cfb-42b7-92b7-64d6ba988414" + } + ], + "file_name": "a5d90be4-0242-4d83-a54a-a973b638b4c4.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_398_MirnaExpressiond599b3e9-2492-4a0a-9bd3-adede573edaf_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1560-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_398_AlignedReadsd599b3e9-2492-4a0a-9bd3-adede573edaf", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 133222211, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "0b4a6fdfa00c0dc36d69fdee7cbb144d", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "e3aba15a-cbee-4595-8219-2bb6549d2c27", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_398_MirnaExpressionWorkflow719806dc-3a85-48ff-bf67-fb485cd8efff_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "3751f1d0-ac22-467f-9289-32e5df40731d", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50240, + "md5sum": "dc6e3adbf2a2a446a347f6c427d37c3c", + "file_id": "960cf19f-243e-41b6-83bd-71415b28e303", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1410-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "c3f9ee36-d34f-472b-ac7f-801a0d400aa4", + "entity_id": "fdda1428-ad6b-4337-a959-83bae1f9664b" + } + ], + "file_name": "369c3679-4d68-42f4-9cdf-6a4ce5765762.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_36_MirnaExpressione8be8d7b-bbb0-4a86-9169-c334584820d3_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1410-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_36_AlignedReadse8be8d7b-bbb0-4a86-9169-c334584820d3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 180905441, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "0750c170bff6b018ff25b07ecc2a896e", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "985a5d90-381a-480f-93c1-1fee5c80fe02", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_36_MirnaExpressionWorkflow14aba172-33fe-471f-b0e3-38d5af8a3e12_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "4fc1860c-3932-4cbb-8ac0-3dfb851551d5", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 373505, + "md5sum": "d10d77070e5497e33878aa754b087353", + "file_id": "ed610477-f2bb-4276-8316-f8e2aeba9418", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1428-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "9c744ff8-1cde-4176-b6d7-0ab62bf42620", + "entity_id": "30b9b778-1422-4842-ae99-658b8b1d7605" + } + ], + "file_name": "fdccf2b5-8b46-4b15-9f97-a674fb12f84a.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_411_MirnaExpression0b5ceb97-71aa-4fee-ac4b-8ce4b9a6077e_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1428-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_411_AlignedReads0b5ceb97-71aa-4fee-ac4b-8ce4b9a6077e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 136269994, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "c5678262dedd145116e96497c4aac7ff", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "62e6b36d-2bbe-4ccc-aa5a-d10d9d49550a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_411_MirnaExpressionWorkflowc00e6440-d2ee-4abe-9016-e65df705bf6c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "be74d307-6350-4ffc-a05a-86fcb2d4020b", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 244651, + "md5sum": "314f8cbc572915b64177754e8d43dd59", + "file_id": "f36dcdec-67f0-4888-8df7-6e326617451c", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1343-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "b7715ff6-57a6-4513-9447-aa8bc93f16d4", + "entity_id": "e7aeb2b8-2a2d-4175-94f4-0192bd467fed" + } + ], + "file_name": "8154f10d-7460-49cd-b309-829ef0d1ac24.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_463_MirnaExpressionce1751d5-6e15-4b12-809d-372acaac7116_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "3c3289ea-09db-59de-b1f8-4c5d2c9afa9d", + "entity_submitter_id": "TCGA-04-1343-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29691", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "e7aeb2b8-2a2d-4175-94f4-0192bd467fed", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "6f9f1b44-9c9a-58ad-b02e-37730add72d9", + "entity_submitter_id": "TCGA-04-1343-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8757", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "e7aeb2b8-2a2d-4175-94f4-0192bd467fed", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1343-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_463_AlignedReadsce1751d5-6e15-4b12-809d-372acaac7116", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 184566825, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "2289dbcef7b60f973e2e5dd4c4e0b71f", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "734b1520-b581-480b-85f4-b1c59b2c08a0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_463_MirnaExpressionWorkflow550eba4d-a0f6-4bf0-98d4-55c6c54e5b7e_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "6375410b-ffea-4f18-bb02-a7be814cc6ba", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50379, + "md5sum": "9fee77fada9be1bfc499d5b6e21f7fed", + "file_id": "c6f3a5f1-c7a5-4a42-8649-e01745cd21a3", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1032-01A-02R-1564-13", + "entity_type": "aliquot", + "case_id": "d1976840-35f7-4423-8458-12fb32a52b33", + "entity_id": "494182b5-dc71-4f11-add9-c29d2378768d" + } + ], + "file_name": "4ae7b146-68b1-46b7-b973-9eb2128baacc.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_269_MirnaExpression0eb1f783-d7a3-4f06-a7b7-7dfe23f54bd9_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "487ebc7e-d36c-509b-b97a-5bc879840be0", + "entity_submitter_id": "TCGA-23-1032-01A-02R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29768", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "494182b5-dc71-4f11-add9-c29d2378768d", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "f105bc54-c61c-5a4b-ad8e-41c3beabaebd", + "entity_submitter_id": "TCGA-23-1032-01A-02R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8750", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "494182b5-dc71-4f11-add9-c29d2378768d", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1032-01A-02R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_269_AlignedReads0eb1f783-d7a3-4f06-a7b7-7dfe23f54bd9", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 143375392, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "a30788616d5aaf5d295752552aeb44d9", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "9ca5140e-b163-4241-9a57-0dc6c3a41813", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_269_MirnaExpressionWorkflow2a00f384-bb6e-4682-8a08-0265f5b97077_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "43ea592b-e634-4c9a-a434-000ec4d319f1", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50284, + "md5sum": "43428be63bf8bdfaa274f8a8bc7aea6a", + "file_id": "0695d33b-04ec-4919-92ec-5604cf29794e", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1026-01B-01R-1569-13", + "entity_type": "aliquot", + "case_id": "c6ede8ae-881c-47a0-a0ef-745ed4b7764a", + "entity_id": "973907c7-f259-4d1a-b9df-68db1837af91" + } + ], + "file_name": "1bd07a8c-6095-4534-9c70-d88bda1cd148.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_270_MirnaExpressione88f6285-f2e4-4b2a-99e0-4ed2a7cb2437_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1026-01B-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_270_AlignedReadse88f6285-f2e4-4b2a-99e0-4ed2a7cb2437", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 256458137, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "7d56843f8d89fde24751fd8f30fd3914", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "8203c661-0ae4-4490-b5c7-5e94d9d949d6", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_270_MirnaExpressionWorkflow7d81d7c1-61b7-460f-a363-f36927e8e44d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ebf3f791-8454-40ba-87e9-213501980194", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50360, + "md5sum": "9ef2c486df36dae06aedae948403936f", + "file_id": "e37a2297-74e9-4d92-9088-d7c668ba321e", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1646-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "d38ca631-ed5c-4182-a647-625060726fa7", + "entity_id": "81ec3b61-6074-4923-9ad1-ced45ae0d9d8" + } + ], + "file_name": "b4f43a86-3068-4016-bdd9-3e02f07e354d.mirnaseq.mirnas.quantification.txt", + "submitter_id": "992a6a2c-48f2-4e12-be90-f21bd28687e4", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9905774871639327, + "total_reads": 20645342, + "access": "controlled", + "file_name": "81ec3b61-6074-4923-9ad1-ced45ae0d9d8_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004613178, + "proportion_reads_duplicated": 0, + "submitter_id": "b77b2650-f045-4196-abad-8e6a669436e3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 326983297, + "created_datetime": "2024-09-20T11:13:23.759921-05:00", + "average_base_quality": 36, + "md5sum": "bc36e7215af950b5b86283f8f92ede6a", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "8554156d-b0e4-43fb-a5f8-600101551a2c", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "b4f43a86-3068-4016-bdd9-3e02f07e354d_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "510fdedd-059d-40bc-95cd-0d19771b3765", + "created_datetime": "2024-09-20T11:17:28.410942-05:00" + }, + "file_size": 50559, + "md5sum": "e3ff3fa75af3002660c792d2c385c2e6", + "file_id": "893de126-594c-42f6-a9d3-28e810429baf", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0910-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "b783f33b-734a-4801-bf39-b559a2035c6f", + "entity_id": "d0369513-eacb-47c0-8b80-da610f7d477f" + } + ], + "file_name": "bda2d3fd-a28f-4b5d-aff9-267d757b3872.mirnaseq.isoforms.quantification.txt", + "submitter_id": "61f36a80-d681-486e-b4b8-4508cbe17e96", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9902386618805149, + "total_reads": 25295200, + "access": "controlled", + "file_name": "d0369513-eacb-47c0-8b80-da610f7d477f_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004870239, + "proportion_reads_duplicated": 0, + "submitter_id": "41caa1f1-8dca-47b5-ae59-c8c786928e3e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 412708899, + "created_datetime": "2024-09-20T11:12:42.414180-05:00", + "average_base_quality": 36, + "md5sum": "4324dd00f201eb3c4944db09b3482594", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "1dd2f277-cf81-4138-973f-c36e823e0fcf", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 33, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "bda2d3fd-a28f-4b5d-aff9-267d757b3872_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c81613c2-d45b-4d06-ab2c-edc524969458", + "created_datetime": "2024-09-20T11:17:15.743260-05:00" + }, + "file_size": 591586, + "md5sum": "0a2d4124b30c5e52caf3a3f0da40365a", + "file_id": "ac6c979b-06f3-4285-bac5-f6ccc38ce617", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1843-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "9ec86cbd-8c74-4697-90da-529ab91ab835", + "entity_id": "c50cf5af-3375-4748-9894-1f9521f746da" + } + ], + "file_name": "d72ae1bb-2005-4654-b2f1-a815e7a9aeb6.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_364_MirnaExpression5f3b489e-8763-4217-9afb-09bd69023a63_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1843-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_364_AlignedReads5f3b489e-8763-4217-9afb-09bd69023a63", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 136269561, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "0139d597af920c0c7278ccf1adfafab0", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "9c0c1293-15bd-4210-9fb8-533360951376", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_364_MirnaExpressionWorkflow5b0cd515-e4ef-4372-846c-05e48ee8a6e7_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "44a2f4ba-0a21-4f96-8f08-4c597ad3fd84", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 294053, + "md5sum": "62d06b022018efb1375d07e824eebc3e", + "file_id": "9eb61833-ab14-4281-ae2f-0e605eab7610", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0910-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "b783f33b-734a-4801-bf39-b559a2035c6f", + "entity_id": "71baee64-10da-4993-89d8-a9d9a964a230" + } + ], + "file_name": "191aa531-3494-42fa-8996-af204937fa87.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_53_MirnaExpression355fcb1d-20e1-41b9-8c7a-19fd6b23de3c_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0910-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_53_AlignedReads355fcb1d-20e1-41b9-8c7a-19fd6b23de3c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 139194705, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "fdc25a3d93a2332129d0ed75890bd262", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c2251c32-8020-415d-b9b1-412567359866", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_53_MirnaExpressionWorkflowb7343ff0-9039-4c6e-bcea-5d4ebf645784_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e4b56a41-6220-434e-a484-a3ddfe953f7c", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 320705, + "md5sum": "75060c25c4efc9b319ab52ce810fdadc", + "file_id": "880498b0-e4ae-484c-bb27-eb7e6b98f64f", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0799-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "b9418c6d-94f7-4db4-a1e4-f384b09d54cb", + "entity_id": "a3fb40bd-3e6a-4a4b-89fb-5a9d5fb67ee3" + } + ], + "file_name": "7076fbac-331c-4a9e-b6ca-a0e3d175fe3a.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_355_MirnaExpression1fa9990c-eaea-41ff-82ce-e49a9e95b1a8_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0799-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_355_AlignedReads1fa9990c-eaea-41ff-82ce-e49a9e95b1a8", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 130732752, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "e127e529dfa4c54b2ce6ffd77627ea97", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "3a6df5a7-7a37-461b-9e18-20fe58526fe9", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_355_MirnaExpressionWorkflow6dcb104a-99b0-4878-b950-cff1fb62e56c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "215015f3-e3ad-446f-93d8-5ce7f91f53c0", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50179, + "md5sum": "7b11215f7eef7574968c06615a40f7e0", + "file_id": "ed1b33f8-0ae7-45b1-a04d-bdcb09dcb52b", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1110-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "9fb1ba57-2007-4477-b000-2d36f163efd2", + "entity_id": "d93e1f93-20d0-493f-8b54-939fa4ba64f9" + } + ], + "file_name": "36f5501e-6be3-4f70-b981-645a3044b652.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_484_MirnaExpressiondef1c2fc-d28a-4da4-8a35-c6b175ad93c4_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "13bd9455-2529-5519-adc4-941b1e088c0c", + "entity_submitter_id": "TCGA-23-1110-01A-01R-1564-13", + "notes": "RNA-seq:INSUFFICIENT INPUT MATERIAL,LOW SEQUENCE YIELD/DIVERSITY", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8762", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "d93e1f93-20d0-493f-8b54-939fa4ba64f9", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "1b62fa7b-170d-5421-8b7e-a3b0901f1d77", + "entity_submitter_id": "TCGA-23-1110-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29770", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "d93e1f93-20d0-493f-8b54-939fa4ba64f9", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1110-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_484_AlignedReadsdef1c2fc-d28a-4da4-8a35-c6b175ad93c4", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 205858087, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "6ddcbe543359111d4e010afa98d9918e", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "f198b93e-9505-4455-a831-cc61aadd80cd", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_484_MirnaExpressionWorkflowf77ec01f-82fa-4a08-8521-81a83be1c4d6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "23cf9586-a52b-46d9-9763-e78dd8e6ce1c", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 338614, + "md5sum": "a885d08b9d4bd0c9d34dfaa9e73216cf", + "file_id": "9caddb2b-ae73-4e6a-8f34-bbf7c076ef20", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1638-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "c75c915f-ef4b-4c19-8ace-995e6c6015fd", + "entity_id": "09a5f9ce-9024-431d-b7a2-b1c8d26b2680" + } + ], + "file_name": "8e007476-d52c-4896-93ca-d55dcbb14bfe.mirnaseq.mirnas.quantification.txt", + "submitter_id": "7fde8696-fee7-4d2c-8649-8aac4354165c", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9845040651872149, + "total_reads": 26626080, + "access": "controlled", + "file_name": "09a5f9ce-9024-431d-b7a2-b1c8d26b2680_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007508148, + "proportion_reads_duplicated": 0, + "submitter_id": "5d1abab2-e583-4de7-ac63-7d2fdbafaf86", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 444043857, + "created_datetime": "2024-09-20T11:14:14.252948-05:00", + "average_base_quality": 36, + "md5sum": "ef207ff967dca5c6420f9b57ef737ace", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "edbdbe37-8c89-4d04-8115-0b77e0bc5aa1", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 32, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "8e007476-d52c-4896-93ca-d55dcbb14bfe_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d78d1641-fd29-432c-9eed-8dca3cbaf4cd", + "created_datetime": "2024-09-20T11:16:49.141786-05:00" + }, + "file_size": 50491, + "md5sum": "5330f921ba82135564a636e6c7644bcd", + "file_id": "b83882d6-dcc9-4ae7-a7e5-1db4fc98a22e", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-3P-A9WA-01A-11R-A407-13", + "entity_type": "aliquot", + "case_id": "e35b2813-427e-4e83-95f6-4f0281f42a59", + "entity_id": "3280e41e-de2e-4a4a-b7b7-06fd06def017" + } + ], + "file_name": "ca74d2ee-20e5-4a73-ad1b-033c7be2cd89.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_5_MirnaExpression593805b9-72a1-4d54-8412-5af06457818a_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-3P-A9WA-01A-11R-A407-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_5_AlignedReads593805b9-72a1-4d54-8412-5af06457818a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 142105285, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "8a08f373a4bff10641b22054d3d4d572", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "de993d76-f923-450f-b980-bb0cecdc43b0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_5_MirnaExpressionWorkflow2161e86e-0faa-4d54-8e3f-72b6779f7b82_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8aa8051f-510b-4bd6-a021-e94e0da1c89a", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 375416, + "md5sum": "cbcd9a2177e2e8e8fa85e8048a63723d", + "file_id": "dfa6aeaf-5a47-4f2b-ba43-97ab8fbc66c7", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-2077-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "ef57bc45-858f-4d4e-8407-b7eadfa43be5", + "entity_id": "16c61c5a-a9b3-4022-9b79-d593e3519794" + } + ], + "file_name": "6792b31d-008b-4c0b-8122-6ef29bb85707.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_95_MirnaExpression65c0787e-2190-43e4-95e7-39703970a6f1_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-2077-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_95_AlignedReads65c0787e-2190-43e4-95e7-39703970a6f1", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 202957231, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "fceb96c05580e7e142d726d4886029d6", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "ed46eef9-9947-417d-b740-fd81b15fa1b8", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_95_MirnaExpressionWorkflow9ab4d453-6a45-44b3-a6cd-3b882c97a14c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0bf2c354-9542-4bc8-91d2-c2cd48f4f94d", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 452751, + "md5sum": "95585fc8b63aaf742c4e316da2c266fa", + "file_id": "fd768792-25f4-4a8c-8ae7-524f0223e299", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-30-1867-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "f9824a6e-7a97-445c-8846-df8d8cddedaa", + "entity_id": "46a4ecb1-723d-47dd-be19-d2a343d9e6b9" + } + ], + "file_name": "1af7f065-5d17-44eb-b134-2ccaf0c4d7f3.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_290_MirnaExpression9dac8613-da8c-4860-9e50-fee244f9b54e_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-30-1867-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_290_AlignedReads9dac8613-da8c-4860-9e50-fee244f9b54e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 156323317, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "13673f50fb89e5ca541a325768a66120", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "34ed0bf6-6098-4b14-a4cc-df7cc2e9e21a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_290_MirnaExpressionWorkflowf4371923-1ba2-4128-94d0-f5e7ee0e66e8_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "98580b91-0796-4e6d-a478-420aceac7f97", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50334, + "md5sum": "0b9c761fea3007e0d7b04af3591c2ec9", + "file_id": "e4995657-4555-4db6-af97-6a7a9965fec7", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0889-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "e3712e5a-4575-440f-89d1-8db9498baa88", + "entity_id": "4a3ae1ed-9ecc-4473-bb32-b745e9ab7da8" + } + ], + "file_name": "5bc471e6-be47-4551-aa40-bd6c7633015f.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_340_MirnaExpression741723ed-fcb1-4334-beff-e64435fcd9db_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0889-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_340_AlignedReads741723ed-fcb1-4334-beff-e64435fcd9db", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 107598488, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "535343eea5926ec35f400560ee8eaa1b", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "48e0b528-bd5f-4311-8d74-7b897d3cd9c9", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_340_MirnaExpressionWorkflowdd183bce-b2d5-432f-8e6e-9dec8006524d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "01b66055-86c6-4f8b-8f3c-ffd00878da46", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 239480, + "md5sum": "602dba1a98680d83153fe22a471a9a54", + "file_id": "c91f17ce-f661-4daf-ad00-40fbc3646abe", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-36-1581-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "ef5e85cf-2d82-4d52-a02c-fed5c76e4cec", + "entity_id": "d84c76a9-dbee-4720-8639-91382101b27a" + } + ], + "file_name": "15c8eaef-0c38-4b40-a768-24e1ac2f8452.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_32_MirnaExpression48b22bb9-a04f-4c92-9cb6-a5830ae25ff1_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-36-1581-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_32_AlignedReads48b22bb9-a04f-4c92-9cb6-a5830ae25ff1", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 121321023, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "971329b35f3fa2b8584f1f51503f110e", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "feb5622d-5022-46ed-a941-986b9bc9fc72", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_32_MirnaExpressionWorkflow5e5a7523-f12d-48fa-9068-235dfad0562e_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "47483e8a-5c4e-435f-af07-ee7bed3cc7d6", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 328035, + "md5sum": "dce9f4fddf2ef16eded4c2f5f10e00b3", + "file_id": "ff51df62-9f04-4ff2-b88c-c587483f19df", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1407-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "f2dcf4cc-609d-4532-a90d-6ae2bbb53365", + "entity_id": "2afc4437-8c6b-4f79-804c-b37ed04c4c77" + } + ], + "file_name": "4cda8aa2-fae8-4313-a537-d2c50a4d800d.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_160_MirnaExpressionb7d2eb44-efb7-495e-b95e-8b72b5594d31_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "4918b758-b200-5fcb-a6ee-ec68b7bea1c0", + "entity_submitter_id": "TCGA-13-1407-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29743", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "2afc4437-8c6b-4f79-804c-b37ed04c4c77", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "aaa2bc7b-8fe7-5511-82d0-3845650456f5", + "entity_submitter_id": "TCGA-13-1407-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8786", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "2afc4437-8c6b-4f79-804c-b37ed04c4c77", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1407-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_160_AlignedReadsb7d2eb44-efb7-495e-b95e-8b72b5594d31", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 297379011, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "015469324c3d0cabf72761cba3107347", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "f64e3711-cd56-47b7-a1a3-81e946cded48", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_160_MirnaExpressionWorkflowd7b46785-68fd-41f7-acf8-112bc17aa458_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "4f24add5-61d8-4e81-99e9-a16990e16353", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50364, + "md5sum": "6f393fe544dba0fb1103526cd1ef40e8", + "file_id": "7600b412-7756-4cee-81ec-a7cc9e3a075f", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-2408-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "fdd4adb8-9295-480a-9352-305b5eb51187", + "entity_id": "75e1b9b7-2d3a-4073-81f5-2b5093ecd53b" + } + ], + "file_name": "bb5c7469-2fc8-40ec-9dd8-b6922dd8d68c.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_214_MirnaExpression6e28478f-f20c-4e87-bb64-b54525f04f73_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-2408-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_214_AlignedReads6e28478f-f20c-4e87-bb64-b54525f04f73", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 258108769, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "eb38f6c446db29a56e05de3898b2165e", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b0ced7d4-1204-4d9d-a79b-1ba2bd673467", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_214_MirnaExpressionWorkflow3c4c5ab8-8185-4896-9c98-b4cc5af676f3_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b897a783-0d3d-467d-95bc-4ea33ae41633", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 442288, + "md5sum": "5c3f3fa6b0dba5fd74fb9ff45af7cbcb", + "file_id": "c97bde8a-a531-4e62-bd5b-9477ef061c19", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1482-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "f3af727e-b592-4828-94f5-22008666cf8c", + "entity_id": "197bc1c2-fb72-422a-b6b0-d07cf5b737ef" + } + ], + "file_name": "56d7e454-061d-4af1-b72e-154ce9d395ea.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_156_MirnaExpressionc8c45415-177e-4c34-8acb-60ad18f97c61_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "2064d2a8-3132-5ac4-ab9d-333952c68d0a", + "entity_submitter_id": "TCGA-13-1482-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29747", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "197bc1c2-fb72-422a-b6b0-d07cf5b737ef", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "780388a8-b273-5344-bc59-fff11acb315d", + "entity_submitter_id": "TCGA-13-1482-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:32:20.747393-05:00", + "submitter_id": "8795", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "197bc1c2-fb72-422a-b6b0-d07cf5b737ef", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1482-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_156_AlignedReadsc8c45415-177e-4c34-8acb-60ad18f97c61", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 246715463, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "b062413b50883756299642b948d861c8", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5c10425a-f83a-473c-8031-74adb30c6d0c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_156_MirnaExpressionWorkflowb1a8f968-05a3-40e5-b32c-c78ab4617171_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2f4531d9-d0da-4b92-9fb1-0d8f5ae6f1bb", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 444173, + "md5sum": "14b6ab6dad927c4f85462f4759433ee9", + "file_id": "5622b72e-2094-49e3-af6c-576fc4b8a7cf", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0760-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "d8d13aa4-45d5-4e1a-a6cf-895bdf05e7b2", + "entity_id": "12f60ee0-fb87-4ac8-9e91-e6d643064c6d" + } + ], + "file_name": "681d1081-ed19-4553-b1ef-6a5e7e6fb236.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_300_MirnaExpression48c7b25c-0bbd-4273-97ce-e99690555543_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "83264592-915f-50d1-ae17-2f318b14d8b7", + "entity_submitter_id": "TCGA-13-0760-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8825", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "12f60ee0-fb87-4ac8-9e91-e6d643064c6d", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "c7c64838-e6c2-59b6-af1c-42cd0f1cf464", + "entity_submitter_id": "TCGA-13-0760-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29719", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "12f60ee0-fb87-4ac8-9e91-e6d643064c6d", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0760-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_300_AlignedReads48c7b25c-0bbd-4273-97ce-e99690555543", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 140872179, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "3b900bbbffe9b57947654a681b1d9ba0", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "d386364f-e435-4d9e-96a3-a8d00dfaffa2", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_300_MirnaExpressionWorkflow625a72d6-da05-4b97-8050-da5879843607_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d5dd2fda-461d-4371-a3b1-b6dbfbf9307a", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 228372, + "md5sum": "dcb3f741dbca9513702c77319dbf0590", + "file_id": "8b40177a-6262-4ba3-9c9b-aff27359e741", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-10-0926-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "e641aed9-1dd8-4c30-b231-f12b20a76df0", + "entity_id": "14bb2756-5d32-4e77-9eec-4e5d44b663b2" + } + ], + "file_name": "000550a4-db6b-43ec-86c6-796522f7861f.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_142_MirnaExpression081dde4a-67e1-4b02-8c79-d0a76e97bde4_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-10-0926-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "submitter_id": "8831", + "classification": "CenterNotification", + "entity_id": "14bb2756-5d32-4e77-9eec-4e5d44b663b2", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "4e74875f-e7b4-5db4-a6d7-d1296b827ccd", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "e641aed9-1dd8-4c30-b231-f12b20a76df0", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-10-0926" + }, + { + "entity_submitter_id": "TCGA-10-0926-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29706", + "classification": "CenterNotification", + "entity_id": "14bb2756-5d32-4e77-9eec-4e5d44b663b2", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "db075754-2538-5187-845f-1528d93389e5", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "e641aed9-1dd8-4c30-b231-f12b20a76df0", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-10-0926" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-10-0926-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_142_AlignedReads081dde4a-67e1-4b02-8c79-d0a76e97bde4", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 104970189, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "cf92ca36a56ae5b6c68795691a8b4ca8", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6de542f4-94f3-4016-a134-40aa74a7586a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_142_MirnaExpressionWorkflowf21805de-adde-457c-a270-dcb180a43371_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "940a3e27-7c16-4466-a0b1-0f2b25b94c22", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 215980, + "md5sum": "dea46853441dcfe918784f815a1348d2", + "file_id": "fa70f247-d457-4898-97ce-dc02d127dbbc", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-36-1578-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "f65f2e78-c001-4ef3-ae88-3e4f83c7aceb", + "entity_id": "7ecb58fe-e2fe-4dc8-996b-2b959da43566" + } + ], + "file_name": "4022b5bd-4978-42e8-8130-b57b3a46b7ea.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_415_MirnaExpression5ba1fa19-37c3-4cf8-a400-864ff2cc4f15_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-36-1578-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_415_AlignedReads5ba1fa19-37c3-4cf8-a400-864ff2cc4f15", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 179833595, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "61808f04b131889b14bb5db8467e1121", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "53e6dc2a-6e19-43a7-a956-e171ff780d6e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_415_MirnaExpressionWorkflow7a33cea8-a3d0-4f52-b768-8e8b93d13486_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "915f591c-187e-4a35-92bf-f95b538293f7", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50361, + "md5sum": "3fc4fafdeeb1c53f229c0bf4eab1f6ba", + "file_id": "1b7d678a-bdeb-4582-a2eb-418f17dbd355", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-36-1578-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "f65f2e78-c001-4ef3-ae88-3e4f83c7aceb", + "entity_id": "7ecb58fe-e2fe-4dc8-996b-2b959da43566" + } + ], + "file_name": "4022b5bd-4978-42e8-8130-b57b3a46b7ea.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_415_MirnaExpression5ba1fa19-37c3-4cf8-a400-864ff2cc4f15_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-36-1578-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_415_AlignedReads5ba1fa19-37c3-4cf8-a400-864ff2cc4f15", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 179833595, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "61808f04b131889b14bb5db8467e1121", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "53e6dc2a-6e19-43a7-a956-e171ff780d6e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_415_MirnaExpressionWorkflow7a33cea8-a3d0-4f52-b768-8e8b93d13486_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "915f591c-187e-4a35-92bf-f95b538293f7", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 408015, + "md5sum": "69f24cda66a32803f94c5fafe3d45bb0", + "file_id": "dc312f6b-dd33-40fd-8a33-856abaf86380", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0723-01A-02R-A96T-41", + "entity_type": "aliquot", + "case_id": "ff530f28-0ec0-4494-bb54-44bb055bae1c", + "entity_id": "a31ca9f9-e269-45e7-880d-c346a344e967" + } + ], + "file_name": "a723662d-3d41-4c77-8a58-f14af07fdca0.mirnaseq.mirnas.quantification.txt", + "submitter_id": "c61005a5-88e1-43a9-ae2e-f2f66fd781c1", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9844172731633697, + "total_reads": 25255015, + "access": "controlled", + "file_name": "a31ca9f9-e269-45e7-880d-c346a344e967_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004404059, + "proportion_reads_duplicated": 0, + "submitter_id": "f8a0b85f-80c1-48e9-9779-9e49c38a17c2", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 457329308, + "created_datetime": "2024-09-20T11:12:52.213114-05:00", + "average_base_quality": 36, + "md5sum": "96a3fa2da783b4663448ae6888348fb6", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "a26145cf-fc30-42be-b69a-71b782456ff1", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "a723662d-3d41-4c77-8a58-f14af07fdca0_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "88f5557d-5184-4fac-9af5-99a443a69752", + "created_datetime": "2024-09-20T11:16:46.427067-05:00" + }, + "file_size": 50921, + "md5sum": "6e188929f845c9cd1e1c633e9a496239", + "file_id": "b2667d3a-d44c-4cd0-af82-81c814f198d5", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0757-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "2c69f3a4-c26c-4fbb-a1c0-b1f57554c43a", + "entity_id": "8d076743-59d7-4976-96ed-b7a2db73bf7f" + } + ], + "file_name": "1f4965b2-353c-41a7-97e8-98ef7d625f7b.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_117_MirnaExpressioncad8a709-5cca-473f-b747-d7dd2b4e046f_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0757-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_117_AlignedReadscad8a709-5cca-473f-b747-d7dd2b4e046f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 109805089, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "97cc665e62ad659c4ece2370c76101d5", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "83bf8a3b-52e3-4187-ba81-fc4f8ee238f7", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_117_MirnaExpressionWorkflow73b891bf-e04d-496f-8171-0094412454a4_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2dbf4d0d-e694-4477-b51c-041a88c633cd", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50104, + "md5sum": "2679475b90cd03637217b9b558ae76c4", + "file_id": "03168f75-9e19-4ee6-befc-57953de9ad23", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1724-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "2ae65a06-df0f-4de1-a536-537cae0cc260", + "entity_id": "faab5b85-3c69-4c64-bba0-a8d5404939a2" + } + ], + "file_name": "a9b5f028-4b51-4ff7-92f5-462000eb9074.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_60_MirnaExpression2bf7a346-b282-44d7-9eec-54ef89a35d0e_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1724-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_60_AlignedReads2bf7a346-b282-44d7-9eec-54ef89a35d0e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 394528661, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "0b25344d6921eda675bc37ce712614ec", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "8f75cf78-8201-4769-a761-410294acab5d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_60_MirnaExpressionWorkflowc87a9019-5573-4408-bf3d-e1bbb6ceb304_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7a9ee70c-6d77-4375-b50c-9eba7b6c4863", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 443786, + "md5sum": "c6614066e75e0aa6c1950bcc87e99cc3", + "file_id": "d1f5f67b-e184-4830-8204-19d33e3282ea", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1422-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "05ba5839-e00a-4a9e-8ba3-ecb490781e62", + "entity_id": "99a9d9af-2e42-4a4f-8ad7-3f8b6e145a55" + } + ], + "file_name": "88fa6a0d-b092-4200-bcc4-d44525d2ed1e.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_465_MirnaExpressionac6654ea-33d8-4b35-b608-ffd183399438_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1422-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_465_AlignedReadsac6654ea-33d8-4b35-b608-ffd183399438", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 256183502, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "f01c69d8571a42fcfdffe94d2ab22469", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "567909d2-6247-44fa-b4fa-123bb5e19868", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_465_MirnaExpressionWorkflowe3d6b02a-3023-4c4d-bf84-96c05b9c6a55_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b297a1ff-debe-4ff9-813a-49439df194ed", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50327, + "md5sum": "c442661f7c588b8ff756fad13f070b12", + "file_id": "aefec1ad-9a52-4dd0-9415-c1aeefbe4b6b", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2092-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "c183d3fb-2eee-44f8-890e-b9bf907141e6", + "entity_id": "0ed6e7a9-cdaa-48dc-962f-219f1eb39c1a" + } + ], + "file_name": "365478d2-32f1-4773-b997-a39d13a606c5.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_186_MirnaExpressiona59f62a6-0b4d-4002-a088-579cbc72f029_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2092-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_186_AlignedReadsa59f62a6-0b4d-4002-a088-579cbc72f029", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 116691330, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "a98450eaf187f15efa0ae0e1850e2b57", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "31aa13d7-bce5-41c8-95af-c8a596b648a4", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_186_MirnaExpressionWorkflow86c3a5c6-a9c0-4911-8db8-983ddac8609b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "edaa6f97-6912-4da8-8fc6-988c564f2b47", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50205, + "md5sum": "3df77b6a2ca69d08e97d24d2b4fce18d", + "file_id": "b2517477-f909-463a-b470-572ca4dee94d", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1924-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "26558703-a659-43f2-86cb-0695989bc14e", + "entity_id": "2592f314-cc0a-4d00-bdcf-6376afd32bb7" + } + ], + "file_name": "7e733b33-2620-4010-b44b-e70f7501c424.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_392_MirnaExpression698f18b4-0375-46ea-8521-b1193e16617d_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1924-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_392_AlignedReads698f18b4-0375-46ea-8521-b1193e16617d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 152297506, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "a1ee8edb68819829748bcdf401977501", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "12fd4b75-01ba-43c0-80f2-af544bfcfc33", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_392_MirnaExpressionWorkflowcd690613-0ef4-4446-9efe-80a1ecec00ad_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b4747fb1-c028-4934-9c3d-0bd25a734aff", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 358921, + "md5sum": "4beedc7881da9a771566a0a16b747daf", + "file_id": "b61db06d-8313-43c1-9543-2d52e18a5cf6", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0755-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "2956e414-f167-438f-8747-a46fe0723622", + "entity_id": "dc2e0ade-3265-4182-bc56-a0913d95660e" + } + ], + "file_name": "b8909fc8-4eda-433c-afff-7c5aba6913c8.mirnaseq.mirnas.quantification.txt", + "submitter_id": "d4bcb1f8-684a-445f-8638-ab6de11d8975", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9883867277841375, + "total_reads": 28199029, + "access": "controlled", + "file_name": "dc2e0ade-3265-4182-bc56-a0913d95660e_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003842993, + "proportion_reads_duplicated": 0, + "submitter_id": "c1e3d2af-e1b8-4e46-b988-ffa27d261e27", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 463072739, + "created_datetime": "2024-09-20T11:13:14.481641-05:00", + "average_base_quality": 36, + "md5sum": "570dc74894ef6600568544c9547765cc", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "3371fac7-0a27-4fe2-b460-4ea63e446e50", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 38, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "b8909fc8-4eda-433c-afff-7c5aba6913c8_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "611d0c31-b5cf-44e3-9c69-f3818d010959", + "created_datetime": "2024-09-20T11:16:39.515219-05:00" + }, + "file_size": 50676, + "md5sum": "14bf6ebab5a7638710b4c5a7a3af3bbc", + "file_id": "0013e4f5-5ea2-4e99-b9d4-3d72d4bc15e0", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1423-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "f64ebc7f-0e5a-42b4-af57-6cdb90d24f90", + "entity_id": "b493df11-1929-4e35-ac44-49057cdbd86b" + } + ], + "file_name": "8292e9cc-cbee-4786-9880-0fdff2a99b49.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_73_MirnaExpressioncfbd8b51-d92e-4211-8c23-119f03200175_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1423-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_73_AlignedReadscfbd8b51-d92e-4211-8c23-119f03200175", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 173212319, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "461247a1f9ad1f57b00a87b2c3b897d2", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "e73e9c6f-4026-48d6-b9af-4fefa07fd611", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_73_MirnaExpressionWorkflowb71a489a-d0e6-4f69-b924-920ae6b334e4_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "902de21f-28ee-4d3a-b055-9c89527c7fb8", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 375400, + "md5sum": "6956996a0a1cccec312054dd9441a8ee", + "file_id": "7016047d-ab1a-4115-b346-3792dcf45fae", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0891-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "0740321b-f8a5-4e1d-b390-ca6187598fac", + "entity_id": "c6666bbe-77cd-497e-88b4-ff73dcf6f399" + } + ], + "file_name": "da071e62-1257-41ce-8095-8071c479e23d.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_76_MirnaExpression67c345b5-3e2a-4618-91fd-b91c82304219_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-0891-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29732", + "classification": "CenterNotification", + "entity_id": "c6666bbe-77cd-497e-88b4-ff73dcf6f399", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "5098971e-8fda-544e-a760-7061510be0c2", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "case_id": "0740321b-f8a5-4e1d-b390-ca6187598fac", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-13-0891" + }, + { + "entity_submitter_id": "TCGA-13-0891-01A-01R-1564-13", + "notes": "RNA-seq:INSUFFICIENT INPUT MATERIAL,LOW SEQUENCE YIELD/DIVERSITY;LOW 5/3 COVERAGE RATIO", + "submitter_id": "8756", + "classification": "CenterNotification", + "entity_id": "c6666bbe-77cd-497e-88b4-ff73dcf6f399", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "b74e3b31-cf1d-5a94-9fbf-bea726ab893d", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "0740321b-f8a5-4e1d-b390-ca6187598fac", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-13-0891" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0891-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_76_AlignedReads67c345b5-3e2a-4618-91fd-b91c82304219", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 102461703, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "f7f84e37de676054564070319cf16440", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "56f3c1aa-98e5-4066-bc7e-3f8addc72bbe", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_76_MirnaExpressionWorkflow85a9f392-887f-40c0-b75a-813f2b3dbbf9_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "833a203c-5641-4a15-9d21-f0056c77e615", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 49978, + "md5sum": "f4aa5cf6abf5c3d02bb3327846b96088", + "file_id": "f0267b76-ffba-4dce-9b1b-b79bae0180a7", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2024-01A-02R-1568-13", + "entity_type": "aliquot", + "case_id": "0a48873a-092a-4b25-822b-b0b3c18c08a8", + "entity_id": "bdd5afb1-a251-4541-bbbe-0fcd1126a3ce" + } + ], + "file_name": "54226146-df11-45c7-be4e-3af9dc1540e7.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_222_MirnaExpression62baeb6e-dabb-425e-b588-4c09bba1d1a0_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2024-01A-02R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_222_AlignedReads62baeb6e-dabb-425e-b588-4c09bba1d1a0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 226464648, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "8f022402bd2c8d56d2ac8ee8ef96bd77", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "3aba2a96-590b-415d-a3c3-d71bda6adf28", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_222_MirnaExpressionWorkflow2f7167c4-e497-4c45-81f6-6095ce332493_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f6e1d24c-9ffd-4246-b005-8c790b927edc", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50367, + "md5sum": "81e68df687d2682aaa810829deb8a596", + "file_id": "91d597e3-1338-4547-bc5a-16aad9253169", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2024-01A-02R-1568-13", + "entity_type": "aliquot", + "case_id": "0a48873a-092a-4b25-822b-b0b3c18c08a8", + "entity_id": "bdd5afb1-a251-4541-bbbe-0fcd1126a3ce" + } + ], + "file_name": "54226146-df11-45c7-be4e-3af9dc1540e7.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_222_MirnaExpression62baeb6e-dabb-425e-b588-4c09bba1d1a0_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2024-01A-02R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_222_AlignedReads62baeb6e-dabb-425e-b588-4c09bba1d1a0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 226464648, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "8f022402bd2c8d56d2ac8ee8ef96bd77", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "3aba2a96-590b-415d-a3c3-d71bda6adf28", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_222_MirnaExpressionWorkflow2f7167c4-e497-4c45-81f6-6095ce332493_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f6e1d24c-9ffd-4246-b005-8c790b927edc", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 426052, + "md5sum": "81818d6d523827992a8d324f6720f4f6", + "file_id": "94271c9e-2549-4d21-9027-1fd03e5c794b", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1563-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "52386f66-2877-4c75-894e-5c1dc03e6ef4", + "entity_id": "a9c4a08c-1db7-49eb-8685-b5ca442c3e7a" + } + ], + "file_name": "55a33443-d2df-4771-9fe0-6f33e6cc69ce.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_123_MirnaExpressionc6fa56a9-d1fd-4313-b146-81e9b8ce7720_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1563-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_123_AlignedReadsc6fa56a9-d1fd-4313-b146-81e9b8ce7720", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 207351531, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "2775d939b749f2d3a11ed4d22cacbb76", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "ec8b8663-f684-4f76-8d1d-137e86e6f9c1", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_123_MirnaExpressionWorkflow303fe866-3db0-4253-b72b-142c27d1773a_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "19a02722-3311-4ec4-9d5e-f9e6e0816c4f", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50240, + "md5sum": "06788d648e64dbf16b88a459b90a1157", + "file_id": "08782f35-bac0-436a-8591-4a7e85d23fc9", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-0979-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "9a30dee8-962a-49db-a85a-c39515c91b68", + "entity_id": "639429a9-c1d3-410d-828a-c3b44d648609" + } + ], + "file_name": "60748b7b-a395-407d-a980-aa0e16f7adb9.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_358_MirnaExpression6443b09f-8600-48ed-bbef-8f0418d52cf7_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "51a41ba4-f8df-5543-94b1-4606f5302919", + "entity_submitter_id": "TCGA-24-0979-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8803", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "639429a9-c1d3-410d-828a-c3b44d648609", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "d8cad179-5f4c-5198-aa62-da4f4235a71a", + "entity_submitter_id": "TCGA-24-0979-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29778", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "639429a9-c1d3-410d-828a-c3b44d648609", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-0979-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_358_AlignedReads6443b09f-8600-48ed-bbef-8f0418d52cf7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 146135199, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "16d9864d0389618bb97b3e27f659d434", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6b0b763f-0320-41a5-90cf-bcb03a807b99", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_358_MirnaExpressionWorkflow068918eb-60bb-4303-9f6f-42869437266e_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c1adf070-0abe-479d-852d-59d80d35b7e5", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50287, + "md5sum": "8e80f4c49cdbf16397be0f32899ce270", + "file_id": "280101b0-f528-4adc-be81-ff77522756da", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0761-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "00630714-7ab3-44e1-afff-186300edae44", + "entity_id": "ec320d00-0235-4964-9a7b-228361291107" + } + ], + "file_name": "8388528f-4f0a-4939-89bb-64478d67b5bb.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_92_MirnaExpressiond2a10333-24d4-4235-95f0-be178174a24c_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0761-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_92_AlignedReadsd2a10333-24d4-4235-95f0-be178174a24c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 118537318, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "d24563fce07635f4efcaaf4f9dbf9531", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "687d339d-8399-4e97-af1a-a0574a4cc00e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_92_MirnaExpressionWorkflow78cca6cf-1693-4993-9bf6-91593184183c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b05cee2c-f81f-4dfb-acd3-365243f49e99", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50197, + "md5sum": "3683fac88c1fb94f0dbd47495b3088dc", + "file_id": "d82f8022-091b-44da-8322-0b60fa35680c", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1563-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "52386f66-2877-4c75-894e-5c1dc03e6ef4", + "entity_id": "a9c4a08c-1db7-49eb-8685-b5ca442c3e7a" + } + ], + "file_name": "55a33443-d2df-4771-9fe0-6f33e6cc69ce.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_123_MirnaExpressionc6fa56a9-d1fd-4313-b146-81e9b8ce7720_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1563-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_123_AlignedReadsc6fa56a9-d1fd-4313-b146-81e9b8ce7720", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 207351531, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "2775d939b749f2d3a11ed4d22cacbb76", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "ec8b8663-f684-4f76-8d1d-137e86e6f9c1", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_123_MirnaExpressionWorkflow303fe866-3db0-4253-b72b-142c27d1773a_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "19a02722-3311-4ec4-9d5e-f9e6e0816c4f", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 349447, + "md5sum": "f1b7de5373b208d9b83f185948d9558c", + "file_id": "8de18348-46fd-49da-8787-0a1d2c51950f", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-57-1583-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "76cc2d21-eebc-4f09-9bc7-dbf7af0aafa8", + "entity_id": "3a37e320-0301-4f2b-bf09-f102c12502b1" + } + ], + "file_name": "c602b5bc-d557-4b1a-b69c-0d272dfffc63.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_296_MirnaExpression29a4c3fd-5988-4634-9a94-0830d3abf4f2_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-57-1583-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_296_AlignedReads29a4c3fd-5988-4634-9a94-0830d3abf4f2", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 177779111, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "65c9e1312408ff04a47e65e1b4926d54", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b7f5e070-6ef0-4b57-9d64-802154336a88", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_296_MirnaExpressionWorkflow3f1768b0-e6cf-4851-b150-c176b4ffe743_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1f0cfae4-3182-4df6-a775-cefbe39741b3", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50170, + "md5sum": "a3cda1aa2d27c6daf887759ff729aa36", + "file_id": "0a23917f-804c-45b3-a428-9a80ef72161d", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1466-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "098acb76-0bf5-44e5-bcae-f919cf5fa5e5", + "entity_id": "b1ffcace-b775-4df8-a5da-34d416e4e39c" + } + ], + "file_name": "ec2c94e3-86a7-47a4-995a-36ae51c5b57a.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_118_MirnaExpressionf802567d-5000-4687-aec5-0ba2fddf0fe7_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1466-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_118_AlignedReadsf802567d-5000-4687-aec5-0ba2fddf0fe7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 138161488, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "476518c7c0b2b0816711bf8b0141d2cb", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "85cc15ab-904c-40ff-ba83-255629d35152", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_118_MirnaExpressionWorkflow3961c503-9641-4d30-8ebb-90c9ec976cea_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "23c62cf0-1a45-4525-ad00-a131e6929d40", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50263, + "md5sum": "c654d97a34ce26e1b4217bec4cbe48d1", + "file_id": "bb9af986-a734-4c17-a49e-2c94dc78129d", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1915-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "0adadf17-c4b6-48b0-a326-21450de3e144", + "entity_id": "59837db5-32f0-426e-81e5-7992c6a012e2" + } + ], + "file_name": "42d8a1c1-483d-43df-b7fb-fbdde6a93b82.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_491_MirnaExpressionde2a47a6-2d57-40c0-b979-4a1770840d46_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1915-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_491_AlignedReadsde2a47a6-2d57-40c0-b979-4a1770840d46", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 204865661, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "2922c8be649ee475b405c9a2b4b2e4be", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "1694c17b-4676-4f0b-9885-0f3ef53a5868", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_491_MirnaExpressionWorkflowa92c1070-e856-492d-87ff-a3c71d2a31cb_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "9f06ef8a-30ed-49b4-bbaf-d526ef7eb43a", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50332, + "md5sum": "304012cdcd9ce3df6a35152e3a8f1333", + "file_id": "ae7aa6dc-18ea-4156-91d5-9b6638967de8", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-2071-01A-02R-A96T-41", + "entity_type": "aliquot", + "case_id": "0d15e5aa-2483-4f81-973a-ff469296c911", + "entity_id": "521041a6-4a69-4408-8279-94cf47d7df71" + } + ], + "file_name": "86f959d3-2e4a-46ef-9f93-ed0003109311.mirnaseq.mirnas.quantification.txt", + "submitter_id": "90d3be11-6348-4aac-b4bc-0c2acc00b884", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9901842930952659, + "total_reads": 25483646, + "access": "controlled", + "file_name": "521041a6-4a69-4408-8279-94cf47d7df71_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004468871, + "proportion_reads_duplicated": 0, + "submitter_id": "2ebf3e65-cea9-4535-a2ff-c35919cfb523", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 435985108, + "created_datetime": "2024-09-20T11:13:31.364476-05:00", + "average_base_quality": 36, + "md5sum": "96d3c6509838e40556593ba88ca61e8c", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "85e1d398-e7fd-454b-ad92-26c165170ed7", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "86f959d3-2e4a-46ef-9f93-ed0003109311_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "798a8120-3f2d-49d5-9a25-16f536d17370", + "created_datetime": "2024-09-20T11:17:55.280045-05:00" + }, + "file_size": 50778, + "md5sum": "d984646ae5f7c94af3322f721c908b4d", + "file_id": "82c96dbb-f73c-4325-b62a-244e329b206c", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1651-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "55153632-1673-487a-85c0-f156377db1fc", + "entity_id": "b8426635-7d02-40e4-b9b9-695ae9a9b3fc" + } + ], + "file_name": "f58d3c14-b772-4d67-b643-d2e897356e90.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_485_MirnaExpression34e06b95-6e76-4b36-8a20-f191b5fbd6df_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "0de30556-cd34-5078-b652-926b9473999d", + "entity_submitter_id": "TCGA-04-1651-01A-01R-1567-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8860", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "b8426635-7d02-40e4-b9b9-695ae9a9b3fc", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "8eb9366c-6a4d-5cdf-b1f3-fb361f34db9c", + "entity_submitter_id": "TCGA-04-1651-01A-01R-1567-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29701", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "b8426635-7d02-40e4-b9b9-695ae9a9b3fc", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1651-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_485_AlignedReads34e06b95-6e76-4b36-8a20-f191b5fbd6df", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 239972991, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "4ff43caa90a4642271e50b8e982afda4", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "efcdf841-e1c5-4e31-9f7c-cced113a6588", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_485_MirnaExpressionWorkflowa02d1030-227a-42e4-9027-932381603414_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2ab0ed89-e5b5-4e19-8725-4ff3b0c920ae", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 421547, + "md5sum": "7352b0ff4e9ecaeb2420f0bb216abe93", + "file_id": "b94ca64a-351b-4bdb-aad8-2bcbf15269ea", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-2060-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "196f4600-b6c9-4652-9f77-65c92883f8c1", + "entity_id": "32de1e4d-198a-4616-8227-4d633c80124b" + } + ], + "file_name": "38a02deb-561f-4de2-b90f-1bd8459f459e.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_451_MirnaExpression37d98e5c-9533-4212-9f8a-32997dd06951_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-2060-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_451_AlignedReads37d98e5c-9533-4212-9f8a-32997dd06951", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 257892594, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "834fba2e0eccd685186ca06c5f3293ae", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "d9b9b642-cf6f-486b-9aad-908f63fa1c5c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_451_MirnaExpressionWorkflow779be0d1-b60f-4cea-9dc6-0a97a747b20d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "bdc44496-5728-4b5d-b43b-71ca061d04b2", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 470949, + "md5sum": "f696084fd27e4252db926fc94b89c849", + "file_id": "705562ae-9524-4b31-828b-857497b9b0ca", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1785-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "1aea3c25-d2bc-4ff5-bc27-32e939944e9d", + "entity_id": "dcff1416-56fd-4d8e-a472-a40a00ef3066" + } + ], + "file_name": "ba286ba5-0b9d-4a2b-b9c8-4d6004eda96f.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_412_MirnaExpressionf4beda0a-452b-4fd2-831e-de5d20b624ee_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1785-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_412_AlignedReadsf4beda0a-452b-4fd2-831e-de5d20b624ee", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 170531369, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "1d7ee3e35c5407befa6f16b91369fd97", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "63fd84d3-411e-45c3-8ebe-9d41a7fce48b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_412_MirnaExpressionWorkflowe07de4a1-ef4d-4048-afc7-1a4b09fe2b4d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "46104953-bf47-4050-9345-2d278439e501", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 310383, + "md5sum": "652f208b2d73b125efda804006c78f1e", + "file_id": "94d978e1-2675-4caf-b209-a9da54412172", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1632-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "c435627c-159d-4a6d-a819-30abac24bf4d", + "entity_id": "12c78d62-6045-4f77-bd84-9ab5a38f4635" + } + ], + "file_name": "bff56eb3-0abb-43be-97a3-545d9c748a79.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_393_MirnaExpression11f124a1-e665-4399-a862-5d59e6000d48_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1632-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_393_AlignedReads11f124a1-e665-4399-a862-5d59e6000d48", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 178568819, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "c41e340595de0de358374e2eaeb7d1b2", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "01b565cd-af17-4c5b-81fd-e48555a19c33", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_393_MirnaExpressionWorkflow0aa8643d-d16a-4750-9c2d-60d01fd33ca2_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f76d8acc-e6f1-47d8-b99a-d8001e17c1c8", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 333351, + "md5sum": "2bba4056ab5db799de33e35bad18901c", + "file_id": "7da17642-b071-4c17-b034-03aefd558b64", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1847-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "21966708-4e66-4211-add0-f1515b09e362", + "entity_id": "83354694-078e-411e-89d2-029649708528" + } + ], + "file_name": "2261e2ac-506a-4a85-b752-7d1796a338ad.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_37_MirnaExpressionb7c79837-eb76-46a0-a31d-863b36532ba0_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1847-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_37_AlignedReadsb7c79837-eb76-46a0-a31d-863b36532ba0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 221098898, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "60c8d225fae516c37d06b3768286db63", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a67a1611-0cea-4099-bc3e-0cc83c774bb5", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_37_MirnaExpressionWorkflowb83b35a5-3d0b-4d01-b3b5-50007aeb6edf_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "016d6321-0c67-4ff7-bb92-3a9c175f8ae3", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 451187, + "md5sum": "fc70ddf9c5175ad4916c5d97fab656ae", + "file_id": "848c367e-73bb-4b95-ae48-aa114a9113f7", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-1668-01B-01R-1566-13", + "entity_type": "aliquot", + "case_id": "0e475b3d-be3c-431a-ab12-5a867ea8f6cd", + "entity_id": "66894abe-8af5-4fd9-9a59-cf24e57fc07f" + } + ], + "file_name": "c2ea5a5f-f436-48d8-8382-a878bdafc579.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_150_MirnaExpression227d8d55-ce57-4a97-a1be-a2db2752a1bf_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-1668-01B-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_150_AlignedReads227d8d55-ce57-4a97-a1be-a2db2752a1bf", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 127676770, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "c7b87050158723928a5f4b50f0ab5a32", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "d9bd5174-9403-48c4-82e9-5579f1c1b29a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_150_MirnaExpressionWorkflow6b0f10f5-2230-47e3-a51c-9f450403de73_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "406255da-5adc-4cea-8d4f-e2505ced1b59", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50339, + "md5sum": "d37422f6daac56213687a71c1e70e2c4", + "file_id": "65dc2b3a-fee9-4a89-8800-d4946f5fe8d1", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-0369-01A-01R-A96S-41", + "entity_type": "aliquot", + "case_id": "1d9893c8-0de3-4b07-b0ba-a53019b23eb4", + "entity_id": "0f1e7e93-ad04-458f-b4ce-d8bf7f7879a0" + } + ], + "file_name": "2646e3fe-22b6-4e1e-ba95-abc58316d18d.mirnaseq.isoforms.quantification.txt", + "submitter_id": "3b314c4e-1ff7-4449-8bef-f6734b53c075", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9869284286302724, + "total_reads": 28761347, + "access": "controlled", + "file_name": "0f1e7e93-ad04-458f-b4ce-d8bf7f7879a0_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.00473808, + "proportion_reads_duplicated": 0, + "submitter_id": "17340c90-1d15-47d3-b62a-aa90db1f05d0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 486214580, + "created_datetime": "2024-09-20T11:12:38.867750-05:00", + "average_base_quality": 36, + "md5sum": "8f162e8b7df9b8e6c6387ded57c67ada", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "af12f251-18ee-4835-86d1-ba8b3371f483", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 32, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "2646e3fe-22b6-4e1e-ba95-abc58316d18d_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "dd77c498-19a8-43e0-b072-ba544b16d69d", + "created_datetime": "2024-09-20T11:17:45.881704-05:00" + }, + "file_size": 639471, + "md5sum": "cb1c0fe4e3c2f86330fead4dc96e9144", + "file_id": "ca1a4d5c-e836-4623-83c2-ea5e3e8ac879", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0887-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "14c58def-60ee-48e0-a74b-da4eb77ef344", + "entity_id": "def55de4-e4eb-4693-aa54-889cd0f88051" + } + ], + "file_name": "c5a0784c-2ce1-4384-bac7-6aeb9edc7432.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_368_MirnaExpressione01f4b3a-83b0-4dfc-8cc9-692185496e69_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-0887-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29730", + "classification": "CenterNotification", + "entity_id": "def55de4-e4eb-4693-aa54-889cd0f88051", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "3c58d3dc-f811-5bec-9677-9c44bbb54065", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "14c58def-60ee-48e0-a74b-da4eb77ef344", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-13-0887" + }, + { + "entity_submitter_id": "TCGA-13-0887-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "submitter_id": "8772", + "classification": "CenterNotification", + "entity_id": "def55de4-e4eb-4693-aa54-889cd0f88051", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "80dd61d7-21fd-58b1-96c1-09c586b1e204", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "14c58def-60ee-48e0-a74b-da4eb77ef344", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-13-0887" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0887-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_368_AlignedReadse01f4b3a-83b0-4dfc-8cc9-692185496e69", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 95007657, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "cf33460ce0f8fc55df896f83f46b4bb1", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "d153d246-a363-45a1-9705-a287d9a304ff", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_368_MirnaExpressionWorkflow48f52d47-74b8-45d5-b7e6-6be8fb0c09c6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "147bed8d-ca5e-49b7-80ab-ce8b82aaa92b", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50079, + "md5sum": "0218a9fe64a80bfd20710d6a0d4ca722", + "file_id": "3256fc15-612f-4bf9-90f9-5fd8a9d32d7a", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1847-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "21966708-4e66-4211-add0-f1515b09e362", + "entity_id": "83354694-078e-411e-89d2-029649708528" + } + ], + "file_name": "2261e2ac-506a-4a85-b752-7d1796a338ad.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_37_MirnaExpressionb7c79837-eb76-46a0-a31d-863b36532ba0_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1847-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_37_AlignedReadsb7c79837-eb76-46a0-a31d-863b36532ba0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 221098898, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "60c8d225fae516c37d06b3768286db63", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a67a1611-0cea-4099-bc3e-0cc83c774bb5", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_37_MirnaExpressionWorkflowb83b35a5-3d0b-4d01-b3b5-50007aeb6edf_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "016d6321-0c67-4ff7-bb92-3a9c175f8ae3", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50475, + "md5sum": "df68813991a89706e2ef3fb9fd6d3b73", + "file_id": "939126f3-21df-4116-a6db-82a61fd18138", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1741-01A-02R-1567-13", + "entity_type": "aliquot", + "case_id": "16ced1b8-64d5-4498-82df-4d37bfe5b310", + "entity_id": "92d5764e-c576-47cd-a6bd-68ed0365c213" + } + ], + "file_name": "3b5bae0c-4394-4bd0-880f-cc3d038f8214.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_324_MirnaExpression0bf809e5-a24a-4787-b3ca-ab2e148cb5cb_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1741-01A-02R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_324_AlignedReads0bf809e5-a24a-4787-b3ca-ab2e148cb5cb", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 194561153, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "44df3c08d4e8b7e908cea1de9f768d2b", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4f1f78c7-f142-4082-8f51-f085cf26ca31", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_324_MirnaExpressionWorkflow0bef8542-5959-4924-887c-cef06fe2f90f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "417b1c29-425d-46bf-ad74-96bb058a7c9d", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50313, + "md5sum": "e91c06e30f3b9417361109cd4b6a2ec4", + "file_id": "78b4ef99-78fb-4012-af54-f145a3072f37", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1367-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "30b8f4cd-9245-4496-a8a8-c3e59093bc0a", + "entity_id": "36daebe6-fafb-4ff7-b1c9-a3fb319816af" + } + ], + "file_name": "449f199a-a808-4e41-aaf8-0bf6960cfda8.mirnaseq.mirnas.quantification.txt", + "submitter_id": "ccb650d8-7c56-45d8-b35e-ed4a4a9b36e9", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9872009556458948, + "total_reads": 28517676, + "access": "controlled", + "file_name": "36daebe6-fafb-4ff7-b1c9-a3fb319816af_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004434819, + "proportion_reads_duplicated": 0, + "submitter_id": "bd3d6cd1-91f4-4f5d-8d1b-571e5bb07cc5", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 482570021, + "created_datetime": "2024-09-20T11:12:37.327113-05:00", + "average_base_quality": 36, + "md5sum": "5268c6c05ff9f694ef60f522ba305559", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "1f5fe2d0-32ef-4c56-9203-1d4e8eb50437", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 33, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "449f199a-a808-4e41-aaf8-0bf6960cfda8_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "330e70be-ef6d-4f18-be42-13cf3384bd66", + "created_datetime": "2024-09-20T11:17:20.134385-05:00" + }, + "file_size": 50822, + "md5sum": "3839eaeace6bf31eeac1dacc6a935c6e", + "file_id": "c696fc09-ba32-452f-867e-4449f5ac34db", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0901-01B-01R-1565-13", + "entity_type": "aliquot", + "case_id": "27920e1e-b9ab-4587-970a-0cba7025becb", + "entity_id": "4320fb38-5508-4ba7-87f1-43c4dc70854c" + } + ], + "file_name": "dcfbd40a-bf99-46bd-8398-fa5000bba378.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_309_MirnaExpression4c8e6cef-3be7-46d3-8050-72efeeb77110_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "1252b009-0c99-5c48-9995-a4c0acca2e55", + "entity_submitter_id": "TCGA-13-0901-01B-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29734", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "4320fb38-5508-4ba7-87f1-43c4dc70854c", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "3db5a31a-9575-539b-9075-a10cb0509c74", + "entity_submitter_id": "TCGA-13-0901-01B-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:32:20.747393-05:00", + "submitter_id": "8841", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "4320fb38-5508-4ba7-87f1-43c4dc70854c", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0901-01B-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_309_AlignedReads4c8e6cef-3be7-46d3-8050-72efeeb77110", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 304736406, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "7a7f651496280a3243a7e785b0abcbb5", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "ed34953d-b129-4817-a866-aa613abb7e03", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_309_MirnaExpressionWorkflow6f68d457-81d2-4667-8b8f-3a7d02a0d4d7_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2418d01e-4e81-4e60-9ae5-dcdb714e49f5", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 444298, + "md5sum": "b905ded39c2642bd4dee54f0b7c24fba", + "file_id": "c1957821-f029-48ac-b633-0629b6e318cf", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0805-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "2a3a6222-f477-4198-ab9e-cdf527c1a6cf", + "entity_id": "0382cd1e-14c3-4271-a277-38361e0c0981" + } + ], + "file_name": "ab8ba07a-47e6-4d96-95ca-82a116e8dec0.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_89_MirnaExpression09e5a923-6921-46d9-8768-f592b4d1eca8_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0805-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_89_AlignedReads09e5a923-6921-46d9-8768-f592b4d1eca8", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 132487382, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "26dc57140cd6c999541a7e3319a42ed6", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "2b4e3cec-0a9d-4b8f-a55a-ccf45b4ca4c0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_89_MirnaExpressionWorkflowb0a63d11-e3d9-4d26-b559-96ccb558498d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b6ac7a31-e9e2-47bd-a1a9-35446e2afb16", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50030, + "md5sum": "46d297cdaa2161bedc46e2fe8d187b86", + "file_id": "60f18ee9-9203-43c0-b00e-5e99912ba7ff", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0805-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "2a3a6222-f477-4198-ab9e-cdf527c1a6cf", + "entity_id": "c5e52a20-b3e1-4d66-b5ef-d9f952c84e9d" + } + ], + "file_name": "6698d89a-9954-4cd0-b31c-2b6bb9968471.mirnaseq.isoforms.quantification.txt", + "submitter_id": "d8067566-4606-4e13-9171-82dd99aaf94b", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9917078687368989, + "total_reads": 27469898, + "access": "controlled", + "file_name": "c5e52a20-b3e1-4d66-b5ef-d9f952c84e9d_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.00312747, + "proportion_reads_duplicated": 0, + "submitter_id": "039448a0-5b80-4604-8988-4b6da927de70", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 451174383, + "created_datetime": "2024-09-20T11:13:06.585446-05:00", + "average_base_quality": 36, + "md5sum": "7cdeafb95bbe10a378bd638944d97d9a", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "90b2330c-aeae-4ba2-a3b3-ba065ccac8d1", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 35, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "6698d89a-9954-4cd0-b31c-2b6bb9968471_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f2789f0e-0d59-42ac-8b3f-ec04d16dfc54", + "created_datetime": "2024-09-20T11:16:51.796806-05:00" + }, + "file_size": 498742, + "md5sum": "5b12e7e462ad4f2a9faf0eeb6e01e15b", + "file_id": "3d51849e-36fe-45b7-9444-5e5d15ac34b4", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1336-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "538acb2a-c4ca-4656-a91c-841a42dbf15f", + "entity_id": "e7d98e24-1335-44de-bb34-594d346ad85a" + } + ], + "file_name": "8183655e-9600-41fd-b25b-fcf643b549e3.mirnaseq.isoforms.quantification.txt", + "submitter_id": "3f3a458d-09e2-4622-92b9-35556967b8a3", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9852078688076575, + "total_reads": 24647902, + "access": "controlled", + "file_name": "e7d98e24-1335-44de-bb34-594d346ad85a_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005102179, + "proportion_reads_duplicated": 0, + "submitter_id": "a117ef0f-9797-4791-b480-268a7cc685eb", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 435695733, + "created_datetime": "2024-09-20T11:13:19.048408-05:00", + "average_base_quality": 36, + "md5sum": "b8879de3758d40a2eb3ab3e206daa4c6", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "a16f734a-af04-408f-987b-d707b5a66ddc", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "8183655e-9600-41fd-b25b-fcf643b549e3_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "faa01b53-3642-4cbd-8fd8-83fb6ac942ed", + "created_datetime": "2024-09-20T11:18:00.636337-05:00" + }, + "file_size": 477934, + "md5sum": "35391c45926e7de25dc7e17d0e4a3686", + "file_id": "017cc4bf-6db8-4233-b00b-b0bd00ef14e0", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0921-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "31b997dd-aaea-4003-a64d-11d3e19b0bbc", + "entity_id": "6a6eaee7-87dd-4783-a9ad-38a44c55984f" + } + ], + "file_name": "33062b49-ef62-4d8d-8102-53538ae1c2da.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_110_MirnaExpressionbbf10405-9007-471d-8d3c-b3eb67139ee2_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0921-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_110_AlignedReadsbbf10405-9007-471d-8d3c-b3eb67139ee2", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 109436305, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "7e2b1dd0ea67ddfeaa2981c553666071", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "355d1fbb-81db-49f3-a492-36503b2323b4", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_110_MirnaExpressionWorkflow809eb806-9d2c-4a4a-99bd-a1dd8d58fe36_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "08046f65-aad4-40a5-8b62-eb8e5529fbc3", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 215904, + "md5sum": "9c9ac7b633e519612914b19ccb7ae779", + "file_id": "49d4e124-0832-4c5c-ae55-921964b14dc2", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0921-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "31b997dd-aaea-4003-a64d-11d3e19b0bbc", + "entity_id": "6a6eaee7-87dd-4783-a9ad-38a44c55984f" + } + ], + "file_name": "33062b49-ef62-4d8d-8102-53538ae1c2da.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_110_MirnaExpressionbbf10405-9007-471d-8d3c-b3eb67139ee2_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0921-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_110_AlignedReadsbbf10405-9007-471d-8d3c-b3eb67139ee2", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 109436305, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "7e2b1dd0ea67ddfeaa2981c553666071", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "355d1fbb-81db-49f3-a492-36503b2323b4", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_110_MirnaExpressionWorkflow809eb806-9d2c-4a4a-99bd-a1dd8d58fe36_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "08046f65-aad4-40a5-8b62-eb8e5529fbc3", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 49993, + "md5sum": "34f583e97cc1a172080fc10a60ddb260", + "file_id": "dee9ef92-a324-426e-b9c2-736e95bc9def", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0921-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "31b997dd-aaea-4003-a64d-11d3e19b0bbc", + "entity_id": "362802ef-8e09-4e99-baad-9706dc78038b" + } + ], + "file_name": "b40c39f7-a56f-4381-ad3c-1d7935515a2e.mirnaseq.mirnas.quantification.txt", + "submitter_id": "66864e09-cd33-4778-95ca-24bfdf208c22", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.991378266285965, + "total_reads": 25934923, + "access": "controlled", + "file_name": "362802ef-8e09-4e99-baad-9706dc78038b_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003617475, + "proportion_reads_duplicated": 0, + "submitter_id": "5f5fa6dc-0f5b-4ab5-bd8f-7251bf03c680", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 435043327, + "created_datetime": "2024-09-20T11:13:09.719803-05:00", + "average_base_quality": 36, + "md5sum": "1e9320299282e29458732bbe882394df", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "23df5d52-cbf1-4574-8b48-bed60330e149", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 37, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "b40c39f7-a56f-4381-ad3c-1d7935515a2e_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "92c55978-7ce4-457f-a0ee-e7f35897e418", + "created_datetime": "2024-09-20T11:17:36.537808-05:00" + }, + "file_size": 50529, + "md5sum": "e329a50f78444e80efacdf4063356d83", + "file_id": "aa6c3b4c-4322-41cd-be4a-37a36091df51", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-2084-01A-02R-1568-13", + "entity_type": "aliquot", + "case_id": "2cb82948-7cbe-4b6c-8414-c02f662de2d0", + "entity_id": "858a382c-49dc-4990-8c0f-017fedd9a6db" + } + ], + "file_name": "296ba0ad-034f-4b13-865e-9fc2b2a19b4d.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_132_MirnaExpression8cb22710-7691-4e12-a005-927af3bc64b1_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-2084-01A-02R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_132_AlignedReads8cb22710-7691-4e12-a005-927af3bc64b1", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 180226596, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "54bc79aeedce1006e184fd74fdaf9fe0", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "ef72ca03-8495-406c-b2b5-fa2d35878c34", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_132_MirnaExpressionWorkflow00be2f32-fa59-4ca5-8fe4-c0a7a98ea558_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "cb58ee4b-0846-40ed-87ca-f32974367e25", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50299, + "md5sum": "0a5740722c2d2d0abe0dc48c55f6c913", + "file_id": "dadd6cc0-5684-424c-9ae3-9b4d51aa386a", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1557-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "7dcc809b-e33a-4453-b92a-c00786f48cb0", + "entity_id": "bca48aa6-25bc-49e4-8bb5-edf38362b4a8" + } + ], + "file_name": "2b6eb1a7-64df-4c16-8151-f4bda4556408.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_408_MirnaExpressionc241935e-5ab0-4810-ad04-44fbfdfe55b6_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1557-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_408_AlignedReadsc241935e-5ab0-4810-ad04-44fbfdfe55b6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 401972381, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "0e4114675b294fada3edf11d79d29c41", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6e5eeb3f-6da3-49a3-8746-c909a3bee760", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_408_MirnaExpressionWorkflow7644adc3-3fd3-4c87-80aa-0c0b5ca562a0_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "40c44c62-3a97-476c-b950-0536fd4b356c", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50304, + "md5sum": "771682ba8cc6d762b8bc043f09ff54db", + "file_id": "b087c61b-5895-4543-8d6c-fd86051743cc", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1557-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "7dcc809b-e33a-4453-b92a-c00786f48cb0", + "entity_id": "bca48aa6-25bc-49e4-8bb5-edf38362b4a8" + } + ], + "file_name": "2b6eb1a7-64df-4c16-8151-f4bda4556408.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_408_MirnaExpressionc241935e-5ab0-4810-ad04-44fbfdfe55b6_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1557-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_408_AlignedReadsc241935e-5ab0-4810-ad04-44fbfdfe55b6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 401972381, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "0e4114675b294fada3edf11d79d29c41", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6e5eeb3f-6da3-49a3-8746-c909a3bee760", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_408_MirnaExpressionWorkflow7644adc3-3fd3-4c87-80aa-0c0b5ca562a0_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "40c44c62-3a97-476c-b950-0536fd4b356c", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 409011, + "md5sum": "8f0bc6fdc751d57d4e2e6db421d88550", + "file_id": "5ce47675-ea48-4104-b444-a48ace7dabe6", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-2084-01A-02R-1568-13", + "entity_type": "aliquot", + "case_id": "2cb82948-7cbe-4b6c-8414-c02f662de2d0", + "entity_id": "858a382c-49dc-4990-8c0f-017fedd9a6db" + } + ], + "file_name": "296ba0ad-034f-4b13-865e-9fc2b2a19b4d.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_132_MirnaExpression8cb22710-7691-4e12-a005-927af3bc64b1_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-2084-01A-02R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_132_AlignedReads8cb22710-7691-4e12-a005-927af3bc64b1", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 180226596, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "54bc79aeedce1006e184fd74fdaf9fe0", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "ef72ca03-8495-406c-b2b5-fa2d35878c34", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_132_MirnaExpressionWorkflow00be2f32-fa59-4ca5-8fe4-c0a7a98ea558_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "cb58ee4b-0846-40ed-87ca-f32974367e25", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 362671, + "md5sum": "9db67fbcc8af984246b4dbdebdda9711", + "file_id": "b2efca65-6913-4e55-9656-5c9554dcc44f", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-2043-01A-01R-A96S-41", + "entity_type": "aliquot", + "case_id": "2e05cd3a-a55f-43b8-b2a9-72fb742b89c9", + "entity_id": "37aec7ef-8912-4f2f-9e3d-a6fb8ce6c912" + } + ], + "file_name": "582804b9-a867-454e-a222-ff9042a7e75b.mirnaseq.isoforms.quantification.txt", + "submitter_id": "7549443c-f14a-44c5-a563-08e5e613f51e", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9903050679106473, + "total_reads": 22028210, + "access": "controlled", + "file_name": "37aec7ef-8912-4f2f-9e3d-a6fb8ce6c912_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.002274874, + "proportion_reads_duplicated": 0, + "submitter_id": "80e03aef-ca71-4978-802e-165c9a4efa7d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 341046437, + "created_datetime": "2024-09-20T11:13:20.729530-05:00", + "average_base_quality": 36, + "md5sum": "da104bbb275daf09e2e840acc6a1bfd4", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "f23bed31-aaae-481a-a3c3-7485407bdcf2", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 41, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "582804b9-a867-454e-a222-ff9042a7e75b_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "57a76a5d-9c4e-4423-b602-6bccac8df8f1", + "created_datetime": "2024-09-20T11:18:13.021456-05:00" + }, + "file_size": 483196, + "md5sum": "11c8b74d14602175ea9156ff9d0f86ab", + "file_id": "4d9446ea-918c-4ad6-8019-8b868f1d5078", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0730-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "2ebb738c-4829-4720-931a-96c0fd117e2a", + "entity_id": "754dfe07-22f4-4070-bbcb-10bfbb649def" + } + ], + "file_name": "8d42453d-e4e7-433a-bffa-f5436bb4710c.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_178_MirnaExpressiond771f4f5-eb81-40dd-aff6-d11fae63aaab_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0730-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_178_AlignedReadsd771f4f5-eb81-40dd-aff6-d11fae63aaab", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 83794742, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "7b87459ccf3bb7bd5e655028862eb15c", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c6f784d5-a599-41d1-9887-d276e62de4e7", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_178_MirnaExpressionWorkflowdb3009f1-ab3c-49bf-9a22-5173c1cc71a6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0f54538c-e411-463f-96a0-1c72007730f6", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 228985, + "md5sum": "8a395bce00d72530c6013df07ed01d36", + "file_id": "926ba834-88cc-4470-a3a5-50c9dade5b2c", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1695-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "33d36b64-4688-40a7-9a4f-7cd3d4cc683d", + "entity_id": "33f1dda6-7601-48c6-b46d-f0ba759e4048" + } + ], + "file_name": "afee93af-90d1-4442-bc99-42f96251d3ce.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_38_MirnaExpression39e8c9f7-cd6a-4da6-8f0c-916f0de8349f_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1695-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_38_AlignedReads39e8c9f7-cd6a-4da6-8f0c-916f0de8349f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 304937289, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "0b257724406faec4a79e3740e03b5698", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "35009406-eb42-4eb3-bacd-ad9779b11f64", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_38_MirnaExpressionWorkflow12713085-147a-4c5b-9d28-d0d79f5e87b9_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b90b1424-9411-4925-b68a-487197c8edce", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50285, + "md5sum": "8a4b86e5e82bee47518395d60aee38eb", + "file_id": "176d9098-74a3-4d3d-aa7e-7ae6a5c1f8f0", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0730-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "2ebb738c-4829-4720-931a-96c0fd117e2a", + "entity_id": "754dfe07-22f4-4070-bbcb-10bfbb649def" + } + ], + "file_name": "8d42453d-e4e7-433a-bffa-f5436bb4710c.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_178_MirnaExpressiond771f4f5-eb81-40dd-aff6-d11fae63aaab_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0730-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_178_AlignedReadsd771f4f5-eb81-40dd-aff6-d11fae63aaab", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 83794742, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "7b87459ccf3bb7bd5e655028862eb15c", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c6f784d5-a599-41d1-9887-d276e62de4e7", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_178_MirnaExpressionWorkflowdb3009f1-ab3c-49bf-9a22-5173c1cc71a6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0f54538c-e411-463f-96a0-1c72007730f6", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50160, + "md5sum": "ae19b78719e2cf52e86f897702af7a5d", + "file_id": "a9acac6b-b210-4fef-9569-b67d30e1808a", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-36-1576-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "3445c524-5a37-40b6-8614-956d76eed939", + "entity_id": "55b6bd7c-e77d-4019-93e9-b5410e4807b2" + } + ], + "file_name": "1c5456eb-85f7-44f3-b3fb-578f1d1fbf12.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_30_MirnaExpression9a2f9c45-def6-41d9-a157-0a86408944e5_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-36-1576-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_30_AlignedReads9a2f9c45-def6-41d9-a157-0a86408944e5", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 173161411, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "9e2b06446eea9a7a34264b9a9dede52a", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "da569206-4aa0-4548-b765-d64a4dce6ec4", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_30_MirnaExpressionWorkflow8e36f155-9ddf-4a86-b278-0fa15a891dff_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "6d167f88-269c-4cb0-af1b-018ef05acd56", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 407090, + "md5sum": "5745713ea16d09e3d578590af748b1af", + "file_id": "17f11d34-dd33-4eba-ac3a-cbf7d98e61aa", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1430-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "3018efe7-13a1-47ae-a726-8fc967c73841", + "entity_id": "4c19d12e-0160-4d01-b621-65335156488b" + } + ], + "file_name": "70be7adb-395b-4a0a-b5c9-eb91bbed64c0.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_295_MirnaExpression590e67b5-9fa0-4bdc-8189-74cab76f836c_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1430-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_295_AlignedReads590e67b5-9fa0-4bdc-8189-74cab76f836c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 225758890, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "e5489eb23bb2221f4c55c641746373b8", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "e7933f64-26a7-4e46-bba0-1cc829496653", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_295_MirnaExpressionWorkflow74f548ce-22ca-4dfc-b204-f334b6364a88_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e8d13a3c-9d54-4576-beeb-313343349c23", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50245, + "md5sum": "3e9ff364a14f054ed8b5be3955b25fe9", + "file_id": "36f1c7a7-8327-45f8-9e56-0933a9e8c880", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1467-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "34f545ab-d420-4dd2-8db4-3159896efd23", + "entity_id": "22902cdb-69f7-4bfc-a5c3-a56229ee501d" + } + ], + "file_name": "0bfb23d5-01dc-4c32-8ffa-d7ad1b4c3e72.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_33_MirnaExpressionda9706b4-518b-46b8-a384-d4a9e9fefb47_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1467-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_33_AlignedReadsda9706b4-518b-46b8-a384-d4a9e9fefb47", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 204847928, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "f1759f4d0c5534d6dd63c799d42a8a58", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "caf4e2e9-6cf7-4b5b-8e49-3eb70394f8e3", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_33_MirnaExpressionWorkflow20574ca6-0b61-478b-bc49-a304408d3e8f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "25a69231-4a1b-497f-9614-a0038bf533d2", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 390911, + "md5sum": "06f4d5953918ed3005fdbb59911b7927", + "file_id": "e27ee243-9cf8-4d5e-86aa-e8b4d391f486", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1467-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "34f545ab-d420-4dd2-8db4-3159896efd23", + "entity_id": "22902cdb-69f7-4bfc-a5c3-a56229ee501d" + } + ], + "file_name": "0bfb23d5-01dc-4c32-8ffa-d7ad1b4c3e72.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_33_MirnaExpressionda9706b4-518b-46b8-a384-d4a9e9fefb47_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1467-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_33_AlignedReadsda9706b4-518b-46b8-a384-d4a9e9fefb47", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 204847928, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "f1759f4d0c5534d6dd63c799d42a8a58", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "caf4e2e9-6cf7-4b5b-8e49-3eb70394f8e3", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_33_MirnaExpressionWorkflow20574ca6-0b61-478b-bc49-a304408d3e8f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "25a69231-4a1b-497f-9614-a0038bf533d2", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50369, + "md5sum": "ebb1e92cfe2be9782f0642a7f14bdb3f", + "file_id": "5a719794-8c48-40d8-8862-f7a4faef885e", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1517-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "35916942-e7aa-45db-ad27-03cba67d4d5b", + "entity_id": "4ef91e20-24f8-4a34-ac26-b316b37be1cf" + } + ], + "file_name": "40c9ce2f-5d6f-46dc-94da-1ea759b8cf11.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_184_MirnaExpression3b18c290-602a-4686-958a-25ecd8b5ee2a_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "031cd7d7-3709-59d2-8e07-b2bcc606f01b", + "entity_submitter_id": "TCGA-04-1517-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29696", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "4ef91e20-24f8-4a34-ac26-b316b37be1cf", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "e539093d-5e25-5ad7-9450-00a873fe7220", + "entity_submitter_id": "TCGA-04-1517-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8804", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "4ef91e20-24f8-4a34-ac26-b316b37be1cf", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1517-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_184_AlignedReads3b18c290-602a-4686-958a-25ecd8b5ee2a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 231285624, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "7cc33f168ab7be44b5f940517f98fd30", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c69d87bf-403d-40f2-b7de-1a80e6145973", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_184_MirnaExpressionWorkflowd1f4e964-dfbe-449a-982a-ba4e926c5a32_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "826eaa8a-b610-45d0-9f36-0ace502956bc", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 364218, + "md5sum": "d5337c4c431646ba6b0c1d5b47a3c05d", + "file_id": "fa919cb8-e3ea-470b-a11d-fb49e96ace00", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1517-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "35916942-e7aa-45db-ad27-03cba67d4d5b", + "entity_id": "4ef91e20-24f8-4a34-ac26-b316b37be1cf" + } + ], + "file_name": "40c9ce2f-5d6f-46dc-94da-1ea759b8cf11.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_184_MirnaExpression3b18c290-602a-4686-958a-25ecd8b5ee2a_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "031cd7d7-3709-59d2-8e07-b2bcc606f01b", + "entity_submitter_id": "TCGA-04-1517-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29696", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "4ef91e20-24f8-4a34-ac26-b316b37be1cf", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "e539093d-5e25-5ad7-9450-00a873fe7220", + "entity_submitter_id": "TCGA-04-1517-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8804", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "4ef91e20-24f8-4a34-ac26-b316b37be1cf", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1517-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_184_AlignedReads3b18c290-602a-4686-958a-25ecd8b5ee2a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 231285624, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "7cc33f168ab7be44b5f940517f98fd30", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c69d87bf-403d-40f2-b7de-1a80e6145973", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_184_MirnaExpressionWorkflowd1f4e964-dfbe-449a-982a-ba4e926c5a32_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "826eaa8a-b610-45d0-9f36-0ace502956bc", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50290, + "md5sum": "322b52cd69f63d9c203736d03a3b232b", + "file_id": "f500c7af-143a-4c53-b5c8-64d13131b2d5", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-31-1950-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "4ca9c0e8-75a7-4665-9d88-6dd2bb44b1e1", + "entity_id": "a32eba80-dbe9-464e-8102-5f77a3c7e177" + } + ], + "file_name": "dde57550-3749-4204-b6d2-1a1c4a8f0ec8.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_378_MirnaExpressiondccb759c-c0d4-420f-8bf6-8d35f3fc75dd_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-31-1950-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_378_AlignedReadsdccb759c-c0d4-420f-8bf6-8d35f3fc75dd", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 195235272, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "2d663b49bc489f1d9be1ce5fe1ed846e", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "ff3021a1-871e-4899-9607-8bc1eff0c20a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_378_MirnaExpressionWorkflowaa69fccc-bfc3-4347-8947-7b16ffb0a82e_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "67829422-c2bb-4628-945f-36be5795bf03", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 448739, + "md5sum": "494f0145b071abda757e7fb8dd17a08d", + "file_id": "3cf41244-5cf1-43f6-9f79-19125139c6bf", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-31-1950-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "4ca9c0e8-75a7-4665-9d88-6dd2bb44b1e1", + "entity_id": "a32eba80-dbe9-464e-8102-5f77a3c7e177" + } + ], + "file_name": "dde57550-3749-4204-b6d2-1a1c4a8f0ec8.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_378_MirnaExpressiondccb759c-c0d4-420f-8bf6-8d35f3fc75dd_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-31-1950-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_378_AlignedReadsdccb759c-c0d4-420f-8bf6-8d35f3fc75dd", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 195235272, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "2d663b49bc489f1d9be1ce5fe1ed846e", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "ff3021a1-871e-4899-9607-8bc1eff0c20a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_378_MirnaExpressionWorkflowaa69fccc-bfc3-4347-8947-7b16ffb0a82e_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "67829422-c2bb-4628-945f-36be5795bf03", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50483, + "md5sum": "889b3968f044fc666e4bdbe9ab024f49", + "file_id": "22b0459a-6b63-4e73-abf3-953457302449", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1029-01B-01R-1567-13", + "entity_type": "aliquot", + "case_id": "4d71dd15-cd01-4dae-ad70-6dc325140207", + "entity_id": "9a54d0fe-f998-4866-bb1f-92be472d843a" + } + ], + "file_name": "ad52672f-9fa6-4d21-8790-884883a69949.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_112_MirnaExpression946cb3a8-1ca3-4754-89e1-e6661207c6fb_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1029-01B-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_112_AlignedReads946cb3a8-1ca3-4754-89e1-e6661207c6fb", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 221111116, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "e247e107f5a034968178af587b0ab29c", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "56685d13-fd47-4d83-958f-7da4c1d4621d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_112_MirnaExpressionWorkflowa25ca316-0810-42fe-a38c-51faa244bb9f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "789823aa-191a-4e07-9433-59003267b52b", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50495, + "md5sum": "3edb41bc5349c79b51918868ea148a4d", + "file_id": "8c1da9f3-b9f6-40ff-9a8e-3a053f7be1f0", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1029-01B-01R-1567-13", + "entity_type": "aliquot", + "case_id": "4d71dd15-cd01-4dae-ad70-6dc325140207", + "entity_id": "9a54d0fe-f998-4866-bb1f-92be472d843a" + } + ], + "file_name": "ad52672f-9fa6-4d21-8790-884883a69949.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_112_MirnaExpression946cb3a8-1ca3-4754-89e1-e6661207c6fb_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1029-01B-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_112_AlignedReads946cb3a8-1ca3-4754-89e1-e6661207c6fb", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 221111116, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "e247e107f5a034968178af587b0ab29c", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "56685d13-fd47-4d83-958f-7da4c1d4621d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_112_MirnaExpressionWorkflowa25ca316-0810-42fe-a38c-51faa244bb9f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "789823aa-191a-4e07-9433-59003267b52b", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 468422, + "md5sum": "955da736d38236316ae8f091d277e308", + "file_id": "e1167ade-23c0-43cf-ae41-9f1195c294ad", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-1666-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "4eac2c98-86d2-4ee6-a1d3-157d013c78dc", + "entity_id": "529b7dd2-075c-4e93-b8c8-6990d3297c30" + } + ], + "file_name": "a6e0650a-bf0c-4898-b929-6bed956145bd.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_370_MirnaExpressiond8f575b9-71a8-4e9a-a530-c9d656ec580d_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-1666-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_370_AlignedReadsd8f575b9-71a8-4e9a-a530-c9d656ec580d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 127501790, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "e8e1b6d017589b4377aef9947483fb7b", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "bbf6fc24-2089-44d3-bccc-37d3cc72de65", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_370_MirnaExpressionWorkflow2c4f730c-fdeb-4c40-b086-b43f1be9a60e_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d7675753-821e-4fa1-ae6a-a5501202dd3f", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 323290, + "md5sum": "de3429f83c669e416af1ca14ee508363", + "file_id": "846a6d1f-36ac-4e03-b6ee-ae963e109bb9", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-1666-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "4eac2c98-86d2-4ee6-a1d3-157d013c78dc", + "entity_id": "529b7dd2-075c-4e93-b8c8-6990d3297c30" + } + ], + "file_name": "a6e0650a-bf0c-4898-b929-6bed956145bd.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_370_MirnaExpressiond8f575b9-71a8-4e9a-a530-c9d656ec580d_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-1666-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_370_AlignedReadsd8f575b9-71a8-4e9a-a530-c9d656ec580d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 127501790, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "e8e1b6d017589b4377aef9947483fb7b", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "bbf6fc24-2089-44d3-bccc-37d3cc72de65", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_370_MirnaExpressionWorkflow2c4f730c-fdeb-4c40-b086-b43f1be9a60e_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d7675753-821e-4fa1-ae6a-a5501202dd3f", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50247, + "md5sum": "d95bb51898ee94b89f32f576739a7661", + "file_id": "e0eea2bd-ccc7-4934-bfff-3c3008b452ef", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1501-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "561968ce-da9a-4d69-8bc2-bc87b9550f93", + "entity_id": "d6c7ab9b-7928-4b66-9fc7-7d3c8146e92d" + } + ], + "file_name": "33be9dca-c410-41a7-8692-d687d4c424b0.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_256_MirnaExpression31acdf53-b970-4b05-88c0-2613b3f0abc7_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "92a1c592-9810-5e14-a536-fe9b804e6be7", + "entity_submitter_id": "TCGA-13-1501-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8842", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "d6c7ab9b-7928-4b66-9fc7-7d3c8146e92d", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "d5be6d70-bf8e-5f20-a14d-2bbf8191387b", + "entity_submitter_id": "TCGA-13-1501-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29757", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "d6c7ab9b-7928-4b66-9fc7-7d3c8146e92d", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1501-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_256_AlignedReads31acdf53-b970-4b05-88c0-2613b3f0abc7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 122183874, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "efdbfad06757559d13c843e4b5f3f84b", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "7936648d-d651-436c-9313-8b8b33eb2596", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_256_MirnaExpressionWorkflow730ec52f-e6ca-4b7c-ad18-b5c1d2dc1bbb_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b62e34c1-af5d-40ed-b5c1-ef9df7b78a80", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50208, + "md5sum": "55b142d60fa7122dca31921f40e858f2", + "file_id": "643538ec-fb76-481f-84d7-634aab1fdd14", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0758-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "514aa64e-a58d-48c2-aff9-498604cc11d6", + "entity_id": "488a6e7c-f7ba-4311-a3b9-b4de5971c344" + } + ], + "file_name": "c638c38b-e8c5-47ec-b6e9-ef578a297736.mirnaseq.mirnas.quantification.txt", + "submitter_id": "08ed0f1e-efe9-4ea1-a44a-d836d5ae8023", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9883124724849719, + "total_reads": 17631274, + "access": "controlled", + "file_name": "488a6e7c-f7ba-4311-a3b9-b4de5971c344_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005178703, + "proportion_reads_duplicated": 0, + "submitter_id": "51cd5b77-d815-4ea0-b1f2-f9ff190a64d4", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 333479685, + "created_datetime": "2024-09-20T11:13:26.717507-05:00", + "average_base_quality": 36, + "md5sum": "73f4cf8b62278662f33270fb6cabbf2b", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "daccc236-f413-4cc6-acd0-2395da6f1f40", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 30, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "c638c38b-e8c5-47ec-b6e9-ef578a297736_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "59874d19-b6f0-4be0-9979-c961e2ae62a0", + "created_datetime": "2024-09-20T11:18:03.243907-05:00" + }, + "file_size": 50584, + "md5sum": "71525afd2473761645ac1ee45af68ef3", + "file_id": "a8bd423d-737f-43e8-80ee-52f0ad854541", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0912-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "58d34254-4f5b-40a4-9e9f-7160062fb2a4", + "entity_id": "1b17ee09-e8ed-4740-a58b-ae4f11d2983d" + } + ], + "file_name": "ff1303e5-5237-4829-b18b-355fb808c315.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_105_MirnaExpressiondf1b3034-91ce-45c5-953d-17ed7eb57c7c_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0912-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_105_AlignedReadsdf1b3034-91ce-45c5-953d-17ed7eb57c7c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 198557190, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "da0a8659407209721e8b255a29f532f9", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "9adafff2-7cb7-4dc0-a42a-6af5faa1fc38", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_105_MirnaExpressionWorkflow1e7fe8fb-5184-4b7d-9748-51b04eeb4010_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "aee63b26-0e26-46ca-bb5f-0f34620e2a7e", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50129, + "md5sum": "db48233f11879edf264f6a58f5872072", + "file_id": "3c32784a-6a7b-4cb7-888a-387dc1bb66ee", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0923-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "378f7ea2-86b4-4072-80b8-e12d67193106", + "entity_id": "b75de387-11ae-4d46-81a1-54d15ecae42a" + } + ], + "file_name": "f2f6aaba-38b2-45c8-a8b2-3b1c09cc099d.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_171_MirnaExpression30b3d7db-04c3-4be9-a6cb-78c08a1d0a8c_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-0923-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29741", + "classification": "CenterNotification", + "entity_id": "b75de387-11ae-4d46-81a1-54d15ecae42a", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "0d640086-2fc6-5f6d-ba39-d4198129acf6", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "378f7ea2-86b4-4072-80b8-e12d67193106", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-13-0923" + }, + { + "entity_submitter_id": "TCGA-13-0923-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "submitter_id": "8820", + "classification": "CenterNotification", + "entity_id": "b75de387-11ae-4d46-81a1-54d15ecae42a", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "62a4fac7-504a-5a94-859a-3e0c1a93d45a", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "378f7ea2-86b4-4072-80b8-e12d67193106", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-13-0923" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0923-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_171_AlignedReads30b3d7db-04c3-4be9-a6cb-78c08a1d0a8c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 123181861, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "3ead9ad7082eddcf29eeea6f2db4b7c3", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "ed23cf36-1121-4f3a-a972-d50563402212", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_171_MirnaExpressionWorkflowbd9b4b07-da41-485f-b8f0-2f4e2761da89_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "44889a98-0384-4e6d-9772-3c2375ac1e52", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50096, + "md5sum": "a8c7938dd22c3d039b1fd528f91e9297", + "file_id": "c322e9be-6474-4251-922a-48257cf7515a", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-10-0935-01A-02R-A96S-41", + "entity_type": "aliquot", + "case_id": "48f8afa8-7712-4428-b0d0-d8c3340504b6", + "entity_id": "1fb041b3-cd8f-41f0-99fe-de216b92036a" + } + ], + "file_name": "2c3a0fa9-8e72-4f4a-b531-5290fbb63207.mirnaseq.isoforms.quantification.txt", + "submitter_id": "56aed071-59e0-4d01-8194-2d5d486531b6", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9911925298074081, + "total_reads": 21971803, + "access": "controlled", + "file_name": "1fb041b3-cd8f-41f0-99fe-de216b92036a_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003035977, + "proportion_reads_duplicated": 0, + "submitter_id": "e44fb23c-e036-4105-b29b-0d2210208f3e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 347435404, + "created_datetime": "2024-09-20T11:12:50.545636-05:00", + "average_base_quality": 36, + "md5sum": "64fe04b6382a3423ba07a123f5c60034", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "50e4d492-c769-44c7-a3cd-bf3d03516198", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 39, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "2c3a0fa9-8e72-4f4a-b531-5290fbb63207_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0391736e-fd91-4ec9-b6b1-d5deb9ddb78d", + "created_datetime": "2024-09-20T11:17:01.346123-05:00" + }, + "file_size": 469931, + "md5sum": "023f72a6416d929633f7d5fb37dfb057", + "file_id": "bb402e39-385c-4d6f-83d0-711ac07b7bc6", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1485-01A-02R-1565-13", + "entity_type": "aliquot", + "case_id": "49bfd0fe-48ce-49db-9f76-ce2310410950", + "entity_id": "50f08f95-3c5a-4d6b-bacc-ccb4a3a720b8" + } + ], + "file_name": "ff9781e6-32b9-4e36-ae48-02fbab715683.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_26_MirnaExpressionbd541b62-f8b2-4b22-8eb8-c7dd6f2c06e6_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "4423eafd-054b-50b3-96f7-79269f96786e", + "entity_submitter_id": "TCGA-13-1485-01A-02R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29749", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "50f08f95-3c5a-4d6b-bacc-ccb4a3a720b8", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "738ccb9e-d1a7-5307-a7b2-43fa2185e504", + "entity_submitter_id": "TCGA-13-1485-01A-02R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8805", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "50f08f95-3c5a-4d6b-bacc-ccb4a3a720b8", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1485-01A-02R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_26_AlignedReadsbd541b62-f8b2-4b22-8eb8-c7dd6f2c06e6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 111801648, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "cd86ef5001b776cd25298428a80a0258", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "d4382eb7-4dfe-4ac9-82e5-b561ca2dfea1", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_26_MirnaExpressionWorkflowb55d6973-b41b-4bb9-af08-903d67561de5_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "3eab2701-3c3b-40ab-9d75-c6da4d71653c", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 266512, + "md5sum": "d5fd608ed0ba5c02514f9e2b0d1d720d", + "file_id": "2d5960bf-6760-458d-900b-47d6766d5437", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1501-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "561968ce-da9a-4d69-8bc2-bc87b9550f93", + "entity_id": "d6c7ab9b-7928-4b66-9fc7-7d3c8146e92d" + } + ], + "file_name": "33be9dca-c410-41a7-8692-d687d4c424b0.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_256_MirnaExpression31acdf53-b970-4b05-88c0-2613b3f0abc7_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "92a1c592-9810-5e14-a536-fe9b804e6be7", + "entity_submitter_id": "TCGA-13-1501-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8842", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "d6c7ab9b-7928-4b66-9fc7-7d3c8146e92d", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "d5be6d70-bf8e-5f20-a14d-2bbf8191387b", + "entity_submitter_id": "TCGA-13-1501-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29757", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "d6c7ab9b-7928-4b66-9fc7-7d3c8146e92d", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1501-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_256_AlignedReads31acdf53-b970-4b05-88c0-2613b3f0abc7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 122183874, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "efdbfad06757559d13c843e4b5f3f84b", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "7936648d-d651-436c-9313-8b8b33eb2596", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_256_MirnaExpressionWorkflow730ec52f-e6ca-4b7c-ad18-b5c1d2dc1bbb_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b62e34c1-af5d-40ed-b5c1-ef9df7b78a80", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 318707, + "md5sum": "16da38b3c8666a44f2867f5762826e89", + "file_id": "62face3e-7708-4aa9-82e2-db67728197a8", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-1672-01A-01R-A96S-41", + "entity_type": "aliquot", + "case_id": "66dc6379-a98b-498f-8109-e3a811d043ea", + "entity_id": "8d9c6b9e-bd7a-4c0b-a251-09fcbe7577c6" + } + ], + "file_name": "2ba533ca-0293-46e0-adfb-0d3653d98842.mirnaseq.mirnas.quantification.txt", + "submitter_id": "eed34fa7-dc7b-4ef1-87ae-9a78dfb47ac3", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9858730500138773, + "total_reads": 25617490, + "access": "controlled", + "file_name": "8d9c6b9e-bd7a-4c0b-a251-09fcbe7577c6_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004832922, + "proportion_reads_duplicated": 0, + "submitter_id": "aeb38ecf-2685-4367-8be4-7039d1439329", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 419997720, + "created_datetime": "2024-09-20T11:13:28.328850-05:00", + "average_base_quality": 36, + "md5sum": "f0444ce9a28a5a0a11dd8beb9232e02a", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "7c76f7c4-2f3e-403c-93bd-b800117b9043", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 37, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "2ba533ca-0293-46e0-adfb-0d3653d98842_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "18f55b99-768f-4094-8a19-e4a3e02f1074", + "created_datetime": "2024-09-20T11:17:41.867336-05:00" + }, + "file_size": 50758, + "md5sum": "6ce21b64b855371c3e998e61abad8565", + "file_id": "aac65340-f9af-4a1e-a66d-4b241a7c5f10", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-2050-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "3c037acf-f453-4513-a6dd-129163ddde2a", + "entity_id": "e6d17890-f82d-436c-8b05-85aeaccd988d" + } + ], + "file_name": "a1ba46b7-fc30-47c9-bb39-efac4f11785a.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_162_MirnaExpression68e273bd-b4b5-4b4f-9d03-525f9c475816_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-2050-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_162_AlignedReads68e273bd-b4b5-4b4f-9d03-525f9c475816", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 238238006, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "f960fb0e34651727a2f348d5f2bd46e0", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "2179a598-9d3f-4d0a-b547-c254d79b1f7f", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_162_MirnaExpressionWorkflow8a9dfa05-a039-4251-b557-2a62bc6268f0_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "78628388-f335-41e8-8f7d-0b92624d6a20", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 446407, + "md5sum": "51f28295ce8eda6ab439a9f8f67abc6a", + "file_id": "aefc13ee-f5dc-4e24-99e9-d94b0803cce4", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1369-01A-02R-A96R-41", + "entity_type": "aliquot", + "case_id": "6c43727d-631a-40fb-b1a1-242a12889eaa", + "entity_id": "08df850e-45ea-4c3d-864f-0d3753e36c7a" + } + ], + "file_name": "34b98361-cb2b-4b22-90d5-f575b91bc525.mirnaseq.isoforms.quantification.txt", + "submitter_id": "b82076bc-dd75-48ec-92dd-828a9018dddc", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9898744644717418, + "total_reads": 28931013, + "access": "controlled", + "file_name": "08df850e-45ea-4c3d-864f-0d3753e36c7a_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004219099, + "proportion_reads_duplicated": 0, + "submitter_id": "b71ccaad-dd45-4bb9-a943-cb3cf86f9095", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 473911194, + "created_datetime": "2024-09-20T11:14:19.610123-05:00", + "average_base_quality": 36, + "md5sum": "7909aa48f0ce067ede44375af97c236b", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "64b25e41-48f3-4ec8-b9de-32ae814a2fb9", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 33, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "34b98361-cb2b-4b22-90d5-f575b91bc525_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2d459387-69cc-46b0-a596-34bf88771626", + "created_datetime": "2024-09-20T11:16:59.763370-05:00" + }, + "file_size": 574379, + "md5sum": "ab82c9be7af3e10c59ea3cb1718f6af7", + "file_id": "7e300cff-74e6-42aa-ac63-c3334216a261", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1512-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "82093ed9-a3c8-4e34-931f-4ec7ae745711", + "entity_id": "67e85198-4b8c-45db-b433-683b1899f3ea" + } + ], + "file_name": "c3d63a9f-bbfa-41df-8536-f1b73497c688.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_96_MirnaExpressionc48c4f29-3b75-4a40-ace3-76789ccf05c5_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1512-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_96_AlignedReadsc48c4f29-3b75-4a40-ace3-76789ccf05c5", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 227192098, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "889e8eba33696514447e9df1c91416a9", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "820b3cde-5f93-4f40-a740-3b9af4078a0e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_96_MirnaExpressionWorkflowa7938f20-9dc5-4814-a214-28afc1ac401f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0192b872-a338-4b85-8e26-697e91c97e10", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50228, + "md5sum": "87dcbe4f43af1db204481a01ab86274d", + "file_id": "bbc678f8-ce50-43ae-96dd-b7e1da51ebab", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0903-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "8783e4b0-2b62-45d5-8cd9-f5a71cc0138e", + "entity_id": "adb90bae-c7eb-4bfb-87e8-b001763be840" + } + ], + "file_name": "d6e6ac3e-d877-4425-9c40-c6f94c6ecb1d.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_181_MirnaExpression120624d7-d688-432b-82fc-2813c0f1008b_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0903-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_181_AlignedReads120624d7-d688-432b-82fc-2813c0f1008b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 112413838, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "e469136fb367f0cf8cb2f317a6de592c", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "172b1d0e-16f3-4a6c-9589-50b233328a87", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_181_MirnaExpressionWorkflowff127f8c-7db9-4bd0-af94-27c0f8ff56e4_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0e9a08d4-0ce5-4738-8720-6f6e57c12cf5", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50143, + "md5sum": "f71c91b4e21b08288b4fdf7802e7b5e0", + "file_id": "f3a3a870-32f9-4c64-ac98-cb8a5693a3d4", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1768-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "838693d5-1ae0-4d75-834b-e1b89b96b0ed", + "entity_id": "d327786c-eb87-43b2-abd1-7bb9446cf34f" + } + ], + "file_name": "55058adc-6f17-4400-8e9c-16be92342533.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_404_MirnaExpression93b3b925-ea3e-44da-b1c0-d4b805154da2_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "12a7ec53-9734-5e9c-a3e3-ec616da665cc", + "entity_submitter_id": "TCGA-29-1768-01A-01R-1567-13", + "notes": "RNA-seq:INSUFFICIENT INPUT MATERIAL,LOW SEQUENCE YIELD/DIVERSITY", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8861", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "d327786c-eb87-43b2-abd1-7bb9446cf34f", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "5de5d3e9-00f4-5a21-9a1a-3edb00271d71", + "entity_submitter_id": "TCGA-29-1768-01A-01R-1567-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29795", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "d327786c-eb87-43b2-abd1-7bb9446cf34f", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1768-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_404_AlignedReads93b3b925-ea3e-44da-b1c0-d4b805154da2", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 88210063, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "3647fa2df71ed3d440dcc0ef28904c80", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "7bd5a22a-7c70-4136-9511-8ab4e90009c2", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_404_MirnaExpressionWorkflowff29ef8a-620a-4471-8cb9-376412b1346b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "82f8c20f-54d7-4963-8dce-3ba59610c8d8", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50118, + "md5sum": "6938d15d6a3bf8d891d43965d7a76e6b", + "file_id": "0931563f-089c-4931-9028-e23ad5de2613", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0762-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "6485b68f-caa7-45cd-9bc5-78c2add8191d", + "entity_id": "c2f1b1b8-f914-4665-a779-901ebb41965f" + } + ], + "file_name": "a65ab1cb-c2c6-44c2-a265-4bb9a8a6b4e5.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_261_MirnaExpressionaf2cbdaa-3461-42da-a4da-128f2b6be63d_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "807f0285-9532-5679-a094-4a06a0f133d1", + "entity_submitter_id": "TCGA-13-0762-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29720", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "c2f1b1b8-f914-4665-a779-901ebb41965f", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "cb3c19ad-a1b5-5b4c-a428-04fe947b645a", + "entity_submitter_id": "TCGA-13-0762-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8763", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "c2f1b1b8-f914-4665-a779-901ebb41965f", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0762-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_261_AlignedReadsaf2cbdaa-3461-42da-a4da-128f2b6be63d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 138747521, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "e3c893d4617debdec37c631dd2dbb03a", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "d0a64372-645e-409b-bb50-173a10d0d0d9", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_261_MirnaExpressionWorkflowbde9fd84-e43c-423b-88dc-7974d74362b2_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "196403ed-b14c-4be3-b56b-8eb2204986e3", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 314362, + "md5sum": "745c030f2537920cdd10a683753a71e1", + "file_id": "751cd462-c329-46a1-903d-a3c0cc0ea515", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1511-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "756f6768-e69a-4fe9-aa41-7c58aabe4577", + "entity_id": "ccd83080-7a51-4952-b4af-d13e9c182bc0" + } + ], + "file_name": "5f2fa5de-453d-4650-aee6-8b1d87feddb7.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_28_MirnaExpression849af8b5-fccc-4605-ae94-844744296570_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1511-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_28_AlignedReads849af8b5-fccc-4605-ae94-844744296570", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 216225202, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "5d86e121e4c1feef170e0b7785631a7d", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4a59b819-061f-476b-b7f4-9c61114fe261", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_28_MirnaExpressionWorkflow61de903d-7070-4d8f-aff0-19d8f268bb87_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "07758c59-ad0d-4136-9b58-2dfbb6d5ebf9", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 364574, + "md5sum": "e92fb0d65d959fe59ba9acd994cfb500", + "file_id": "6e18481d-6d2c-49ed-8fbc-6cec47009946", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-59-2352-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "758e6b52-062e-4ca0-84d1-ea38477414ac", + "entity_id": "a209a8f4-9462-4ade-be57-caaec54999cb" + } + ], + "file_name": "a9fb9fbc-2764-40d9-8408-3fde78399371.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_483_MirnaExpression911a3d2f-3e95-4fa9-a2dc-23782a5ee3a4_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-59-2352-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_483_AlignedReads911a3d2f-3e95-4fa9-a2dc-23782a5ee3a4", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 185260977, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "10d0bd3091b049a75b6cca581536067d", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "caa2d39c-34f2-47b8-a693-207be80a6f97", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_483_MirnaExpressionWorkflow902c9776-1e8d-4f86-912e-243e4a88bc23_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f223eff9-5e9a-44f5-bd6b-c33fce1e00f3", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50400, + "md5sum": "e7a1d3dc92d6fe7ac9a0a9f31f8ed57e", + "file_id": "6bd0c587-1d7c-47f6-be00-ef6ceeb27f10", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1488-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "a85f6f9c-1e1d-44fc-85eb-3b2d96cfbc61", + "entity_id": "fbd513d6-46e8-48f7-9dc3-f7369ad0f3c7" + } + ], + "file_name": "3265cc80-54d0-4103-9b24-2fff0e770cae.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_59_MirnaExpression3b5e4f4d-e9ff-42c1-b01f-b63e3692707c_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "3eba3caf-4dd1-5ca6-9e31-695d22e8420f", + "entity_submitter_id": "TCGA-13-1488-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8783", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "fbd513d6-46e8-48f7-9dc3-f7369ad0f3c7", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "eedc2d06-b744-5c8e-9c40-afff7222e409", + "entity_submitter_id": "TCGA-13-1488-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29751", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "fbd513d6-46e8-48f7-9dc3-f7369ad0f3c7", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1488-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_59_AlignedReads3b5e4f4d-e9ff-42c1-b01f-b63e3692707c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 206916877, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "5289be18a5f55daf2e54ae7bd2862897", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "bedf8cd0-f000-4f0d-ab0c-9f7267e4f93d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_59_MirnaExpressionWorkflow3251ca7e-79f7-4946-9eff-0af5531bd577_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e77ae211-baef-4c1c-aa72-7808997383d4", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50306, + "md5sum": "f10bceb27a37acc599ebd33658f636d9", + "file_id": "cb9a0f4c-ff83-44b0-86e3-85b38e67a099", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1342-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "8727855e-120a-4216-a803-8cc6cd1159be", + "entity_id": "1f163f79-9521-44c3-a825-124b11bbad60" + } + ], + "file_name": "c473c1ff-0a58-4860-b1b8-c1a346df8642.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_323_MirnaExpression44ceb403-27a8-47c2-878c-ba208325430d_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1342-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_323_AlignedReads44ceb403-27a8-47c2-878c-ba208325430d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 175836080, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "4e8e2921293c71fcfb2dcc0e4c8a74aa", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "ac31bcef-2dc9-4d62-af66-a0567ee87505", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_323_MirnaExpressionWorkflowb8133a74-dd70-4658-a5be-2e1df07debc0_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "bde1282b-1b5e-4cfd-9906-bd7d3638c8b3", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 327399, + "md5sum": "4e30d543b463a6a909893bb1698d3c49", + "file_id": "8827af22-0379-4d28-ada6-74bce45bee1d", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0911-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "8cad4217-5699-4735-9be3-fc0015a8d262", + "entity_id": "d47147ed-fdb1-4921-9db7-1e0aae32aacb" + } + ], + "file_name": "55fb058b-a120-400d-8e69-4e9ab4dbe5a1.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_394_MirnaExpression4298f537-9874-4ff5-9be9-bac4bfdfdb3f_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-0911-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29738", + "classification": "CenterNotification", + "entity_id": "d47147ed-fdb1-4921-9db7-1e0aae32aacb", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "0f2bc2eb-4e91-5534-a85e-8089fb8eeb2c", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "case_id": "8cad4217-5699-4735-9be3-fc0015a8d262", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-13-0911" + }, + { + "entity_submitter_id": "TCGA-13-0911-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "submitter_id": "8752", + "classification": "CenterNotification", + "entity_id": "d47147ed-fdb1-4921-9db7-1e0aae32aacb", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "b957073b-d817-5657-9d1a-6dae6a8a9518", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "8cad4217-5699-4735-9be3-fc0015a8d262", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-13-0911" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0911-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_394_AlignedReads4298f537-9874-4ff5-9be9-bac4bfdfdb3f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 191174802, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "50f307a465849c33bf301de6c8581276", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "bce5b08b-c863-4f63-8046-a7adc65cb08a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_394_MirnaExpressionWorkflow1b9e0693-c674-4c4c-af56-bdc43e67251a_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "73e496b7-be83-430d-81fa-f6640f37155e", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 362421, + "md5sum": "650bf9a424210771f38315bce0710b5f", + "file_id": "fc56ccfd-158b-4479-a191-32a6b235dfe9", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1341-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "92badeb5-a50e-4a62-a67e-6a8a59c948ab", + "entity_id": "d525e6af-f667-4891-97ee-856e6052982f" + } + ], + "file_name": "91114485-7448-4dc5-aba6-fef4e091ea97.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_360_MirnaExpression52b8950e-4847-4f50-8037-c2f15054ce7d_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "036fdd13-a4d6-54f7-b8d4-553d1b602d44", + "entity_submitter_id": "TCGA-04-1341-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29690", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "d525e6af-f667-4891-97ee-856e6052982f", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "5debaaf7-57b9-5c8b-981e-5e23c95c834d", + "entity_submitter_id": "TCGA-04-1341-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8748", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "d525e6af-f667-4891-97ee-856e6052982f", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1341-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_360_AlignedReads52b8950e-4847-4f50-8037-c2f15054ce7d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 154638552, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "fdcbc7b02f3cc27a46ea038431401571", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4475206f-3613-46aa-8b5c-d17483006a9c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_360_MirnaExpressionWorkflow2d32a31d-f435-455e-a75b-b4d1d619b00d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e86c4c1b-76a2-41f0-b00c-7a0aff8aa675", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 334749, + "md5sum": "a371e072540e41e3776b30faf352201c", + "file_id": "510fe410-66cf-4e74-bcde-845c894b70c7", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1408-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "8fac8e40-beac-4059-9d54-7ee530598cfd", + "entity_id": "cacecdfe-9e01-409c-b45b-5076281b9da8" + } + ], + "file_name": "1ac96a09-e3cd-46d0-8512-e294f1c6bece.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_101_MirnaExpression1c60ec81-df28-4743-9d7c-bc6246e50635_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "37aedf9c-027f-53ea-af4f-47f0e587805d", + "entity_submitter_id": "TCGA-13-1408-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29744", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "cacecdfe-9e01-409c-b45b-5076281b9da8", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "8ef97909-af2d-5603-9daf-c2c884387e75", + "entity_submitter_id": "TCGA-13-1408-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8791", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "cacecdfe-9e01-409c-b45b-5076281b9da8", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1408-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_101_AlignedReads1c60ec81-df28-4743-9d7c-bc6246e50635", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 240570894, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "f4d779c1afc45fbea8b0b768e9694dc9", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "e070a57d-7fdc-445a-b055-ac18a8fa5958", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_101_MirnaExpressionWorkflow1a269805-010e-49b7-ab74-cab4c73f456c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "352d7ef0-b8a1-41f9-9258-fb9abc697e10", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50395, + "md5sum": "7b9c0fce89495d11f1066b850e5d8bc9", + "file_id": "24df7054-eeb2-4088-a94f-cb7955ce4f8e", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1408-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "8fac8e40-beac-4059-9d54-7ee530598cfd", + "entity_id": "cacecdfe-9e01-409c-b45b-5076281b9da8" + } + ], + "file_name": "1ac96a09-e3cd-46d0-8512-e294f1c6bece.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_101_MirnaExpression1c60ec81-df28-4743-9d7c-bc6246e50635_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "37aedf9c-027f-53ea-af4f-47f0e587805d", + "entity_submitter_id": "TCGA-13-1408-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29744", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "cacecdfe-9e01-409c-b45b-5076281b9da8", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "8ef97909-af2d-5603-9daf-c2c884387e75", + "entity_submitter_id": "TCGA-13-1408-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8791", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "cacecdfe-9e01-409c-b45b-5076281b9da8", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1408-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_101_AlignedReads1c60ec81-df28-4743-9d7c-bc6246e50635", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 240570894, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "f4d779c1afc45fbea8b0b768e9694dc9", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "e070a57d-7fdc-445a-b055-ac18a8fa5958", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_101_MirnaExpressionWorkflow1a269805-010e-49b7-ab74-cab4c73f456c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "352d7ef0-b8a1-41f9-9258-fb9abc697e10", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 424715, + "md5sum": "0404e57b1bce538d2dc7df3849514e4c", + "file_id": "cd42da60-510b-44c6-ba39-2daa04ae31b5", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-10-0927-01A-02R-1564-13", + "entity_type": "aliquot", + "case_id": "933dbfbd-4697-403e-bd73-c17cb300c94b", + "entity_id": "1930e83e-d1aa-459e-9f05-ab347df98dbf" + } + ], + "file_name": "71780af1-64aa-4e23-b4c1-84aefe241452.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_400_MirnaExpression0035cf7a-f20c-4036-846f-68b283d8ad44_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-10-0927-01A-02R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "submitter_id": "8833", + "classification": "CenterNotification", + "entity_id": "1930e83e-d1aa-459e-9f05-ab347df98dbf", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "31c57d5b-2bf2-59a8-8747-6e1d04078ad6", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "933dbfbd-4697-403e-bd73-c17cb300c94b", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-10-0927" + }, + { + "entity_submitter_id": "TCGA-10-0927-01A-02R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29707", + "classification": "CenterNotification", + "entity_id": "1930e83e-d1aa-459e-9f05-ab347df98dbf", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "76f1f5bd-5c1e-51c6-a554-51e1db8a08d9", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "933dbfbd-4697-403e-bd73-c17cb300c94b", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-10-0927" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-10-0927-01A-02R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_400_AlignedReads0035cf7a-f20c-4036-846f-68b283d8ad44", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 108761702, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "8ca0ee2d46bb8d521c9dfb001a1aa9be", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "af7bf83e-5aa0-49f4-a20b-edf5af654b3e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_400_MirnaExpressionWorkflow2200fd4f-4145-480e-ad3c-9c979d5acd52_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "670a2ca4-99e1-4109-bc3d-55585f0db131", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 248153, + "md5sum": "53f1959d101b4c39be9605f008018f69", + "file_id": "4e3fed9d-9140-4f3a-bed2-6e6c0a209297", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0795-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "b1e11e94-646b-4c44-9d33-1ca67d8356fb", + "entity_id": "5345eef4-ee81-4128-96fb-85c29750cc96" + } + ], + "file_name": "919eb80a-856c-4635-8409-2880d5a4eec2.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_453_MirnaExpression4a702bee-06b0-491f-ab82-fb489b2e492d_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "9f2909d7-faad-57d7-81d7-4bf3799be361", + "entity_submitter_id": "TCGA-13-0795-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29724", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "5345eef4-ee81-4128-96fb-85c29750cc96", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "d4ae8cb5-4718-57f5-b6f4-19264672c4fd", + "entity_submitter_id": "TCGA-13-0795-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8827", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "5345eef4-ee81-4128-96fb-85c29750cc96", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0795-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_453_AlignedReads4a702bee-06b0-491f-ab82-fb489b2e492d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 206805443, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "fea9af360a2731a096105feb1f136bca", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "f7af5de8-1c9d-4996-ab39-e168a9e1d044", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_453_MirnaExpressionWorkflow02c2e790-95e8-4739-84fc-17305f04c087_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b93e9017-096f-45e8-a3d1-e37dd67b880e", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50392, + "md5sum": "aacf75062e7cffbc1289cfad3477e975", + "file_id": "a67965db-1fce-4786-a4db-21dcee50adb6", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0724-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "a9abe7a7-4126-414b-87d2-a6d25abcf1fa", + "entity_id": "fc6df206-8c77-486c-bc38-06b6cf20139d" + } + ], + "file_name": "5b19c09a-3eee-4f0c-8cc9-355dea7cb4d1.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_63_MirnaExpression59a4f0cc-b746-4467-b205-625e3a3ff579_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "5d4309b2-459e-5ac0-b042-451b611bfeb3", + "entity_submitter_id": "TCGA-13-0724-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8823", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "fc6df206-8c77-486c-bc38-06b6cf20139d", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "6cba365c-faac-5b58-b165-a88c307fb0d8", + "entity_submitter_id": "TCGA-13-0724-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29715", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "fc6df206-8c77-486c-bc38-06b6cf20139d", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0724-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_63_AlignedReads59a4f0cc-b746-4467-b205-625e3a3ff579", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 127967423, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "bb5a647b681cf199c0cdd6160dd1a42b", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "24455052-9fd6-4fcd-ba98-3390776119c0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_63_MirnaExpressionWorkflowf5174089-249c-46bd-8502-0af559c2d025_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8043be03-bc2a-4c75-aa8b-7418e903d163", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50156, + "md5sum": "76a6df05c374bffde46274234c438730", + "file_id": "acdc8f8b-01ee-4de5-99bd-c996e6e05cfd", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-30-1880-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "bc873b2a-35b7-4365-a2cc-e6a83063556e", + "entity_id": "25365350-2673-4608-a351-74eac9a75d46" + } + ], + "file_name": "1eb184aa-cef0-4605-bbfe-8960a186f66e.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_103_MirnaExpressionc1d0e43b-00ea-490d-b02f-cf04bba784ee_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-30-1880-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_103_AlignedReadsc1d0e43b-00ea-490d-b02f-cf04bba784ee", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 126876679, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "af12081565533e2a4a885171dd864f11", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "8103aacf-a455-4400-87e4-23ef6f48ffcb", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_103_MirnaExpressionWorkflowf6642bee-3e5d-425a-b9aa-9c64b4f4c0ba_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e813359b-62fb-4b3a-a637-ddc43752fa2a", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50087, + "md5sum": "a561705ce8c2d96c95665ba4cf9cfadc", + "file_id": "d31ee286-50d4-44fa-be47-92144f336b55", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-10-0933-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "9446e349-71e6-455a-aa8f-53ec96597146", + "entity_id": "484100a8-fa3b-4d8a-9051-de0ba8035cb4" + } + ], + "file_name": "7dc2c098-cb0c-48ef-8dcc-80007e7e3855.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_298_MirnaExpression4f6815d9-2167-4d1e-8b7c-caa47665d78b_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-10-0933-01A-01R-1569-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29709", + "classification": "CenterNotification", + "entity_id": "484100a8-fa3b-4d8a-9051-de0ba8035cb4", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "b0eaaf5c-c64c-5e04-a55e-70b7dd489d8f", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "9446e349-71e6-455a-aa8f-53ec96597146", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-10-0933" + }, + { + "entity_submitter_id": "TCGA-10-0933-01A-01R-1569-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "submitter_id": "8854", + "classification": "CenterNotification", + "entity_id": "484100a8-fa3b-4d8a-9051-de0ba8035cb4", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "c5af37ff-7b8c-5fd4-a71a-501878eb6a31", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "9446e349-71e6-455a-aa8f-53ec96597146", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-10-0933" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-10-0933-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_298_AlignedReads4f6815d9-2167-4d1e-8b7c-caa47665d78b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 293348832, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "50533e9e8a25ea375252b0c328e6817d", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "669a5395-93aa-4924-8c96-e5b8b32936cd", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_298_MirnaExpressionWorkflowf381ab63-c873-4df6-8307-6cac6a80eae4_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a0f118ea-2869-4acc-94b6-1c0eec710705", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50564, + "md5sum": "f717735af5d5f761c78cbaf08886641e", + "file_id": "79e3fef1-5dd5-4987-ba90-552a132932b7", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1849-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "94efd4f9-69b0-4efa-8a0c-61106e898fdd", + "entity_id": "58f3764a-4651-4c26-a667-74aef5c5679c" + } + ], + "file_name": "0b5a33a3-d5ab-4d17-8215-9052767e44c8.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_176_MirnaExpression59b568c3-6d3c-49cb-9d4c-171a40430e9a_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1849-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_176_AlignedReads59b568c3-6d3c-49cb-9d4c-171a40430e9a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 153842820, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "7610be243e82b7bf647aae4e27717e9e", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "cd12f545-e3fc-4c02-9eb2-b24d78c661f0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_176_MirnaExpressionWorkflowbd2f1d9e-59bf-46c6-b98d-b3fa3903a483_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "431182be-0bef-4154-ab5d-bba209d33c2a", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50305, + "md5sum": "af05cbe18b2643b166a2c6254d641a9c", + "file_id": "1fd0d5bb-732b-4537-b456-ecdb44ed4fbe", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1329-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "955c80be-53df-4565-9303-a7abf96a2f81", + "entity_id": "5cf09ce6-44b1-4f0e-89ac-3ea302d684d8" + } + ], + "file_name": "dd3f7c1a-dc74-49a5-add6-d5565e1c5b89.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_164_MirnaExpression3b15bb57-4fbe-4937-a371-7e50f1dc8f8f_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1329-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_164_AlignedReads3b15bb57-4fbe-4937-a371-7e50f1dc8f8f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 293423194, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "e4ab04e90ba7693dcaf9d9991af57124", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b838fb86-4b52-4168-915d-8a4b3fb71e68", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_164_MirnaExpressionWorkflow81a652b9-47e2-4ce9-b7e3-97f22c824140_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c0a45513-fedc-4c4d-aa40-52a7b2318cfd", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50268, + "md5sum": "82eb4a80981b1eefcab0d189f0d2522e", + "file_id": "6187ed4b-3719-4a8a-8d35-d9149e1e12a2", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1703-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "b3511675-fd68-4745-8020-e290ca0fd115", + "entity_id": "64e3f978-d213-45e2-bb52-e9b9a2032dc0" + } + ], + "file_name": "5e283d2e-75c9-4757-b226-1fff7325a853.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_318_MirnaExpression9a5939e9-cbcb-479c-96d0-5d400245792f_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1703-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_318_AlignedReads9a5939e9-cbcb-479c-96d0-5d400245792f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 228088188, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "302dacf5b20192d6ff45e905c9bf4e43", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "ad506ef9-3c42-4fc5-8184-7f9be1006e2d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_318_MirnaExpressionWorkflowd81a162a-bfae-445c-b43f-743e429e5e94_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b775033f-25c0-4bc9-8a47-7cc5eeef4701", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50385, + "md5sum": "fa838703b36117c8ab3a13016accbc45", + "file_id": "d8937ae7-77f7-4155-adbc-f2168aad3241", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2254-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "9af2248a-d86a-4277-93b4-8eba5a39bd3c", + "entity_id": "e496319b-df71-44a0-bfa6-90f50ae54654" + } + ], + "file_name": "1bf32c47-f557-4ce2-ae6f-043cf41d11f4.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_363_MirnaExpressioncd381781-429c-4631-a81a-a306d8f86bc7_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2254-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_363_AlignedReadscd381781-429c-4631-a81a-a306d8f86bc7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 286761937, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "bfb38a9e96cdd0cac8a4eff4d9a86d31", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "14282a41-fd4a-45c9-a603-406e09e9c22b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_363_MirnaExpressionWorkflow5da40c6f-20d4-4ed2-940f-8d850d71a277_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "704ff165-5efd-488d-aa43-07c43953f555", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 434607, + "md5sum": "3f9f04416f025dde072988c0dfa66717", + "file_id": "33a029ad-7343-4913-a3cc-8c546a573598", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1919-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "ce871097-a6e9-4139-897e-642ee24ee123", + "entity_id": "056cca38-92df-42ff-b064-b0c243f8a82f" + } + ], + "file_name": "0041f79c-47fc-4d18-87fa-a26989c67b4c.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_342_MirnaExpression8b0b3e9d-cee7-4bab-808e-6c05b6891102_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1919-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_342_AlignedReads8b0b3e9d-cee7-4bab-808e-6c05b6891102", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 275418279, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "41dcdfd2cd801583d962b0b3caee78f0", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "43456e92-3e69-4511-a72f-3537f1281207", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_342_MirnaExpressionWorkflowf6b8183a-9d2f-4499-841b-0b9a0499c9a0_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "64857ccb-a47d-4efa-b7b5-d98acd9720bf", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50375, + "md5sum": "8ed8d072ee2458e61d854d27871d905a", + "file_id": "68fa2aa2-56c4-499a-a7a5-328a152c4ed3", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-0367-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "9bbc01b4-056c-4ddc-aca4-ff20718646d0", + "entity_id": "047e04aa-6a91-4535-b279-50430098e638" + } + ], + "file_name": "0dda1b40-2c4c-4265-b68c-c8e15e378080.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_223_MirnaExpressionadfabcc1-1d1c-47b4-b35c-fbd3759e6b14_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-0367-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_223_AlignedReadsadfabcc1-1d1c-47b4-b35c-fbd3759e6b14", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 114031456, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "11f787cd99de90d9b3c045459dc15def", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "588b544e-6860-400e-9dc1-cec53e94d3b2", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_223_MirnaExpressionWorkflow071b118e-fdf0-43e0-8c72-2fe464157890_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "61804fef-eb7f-4c44-80d0-b336362c6c02", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50162, + "md5sum": "34277997e53dc3eab09672b514693fbd", + "file_id": "7056a9c5-7a2f-4375-87c9-84b059a89f01", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1410-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "c3f9ee36-d34f-472b-ac7f-801a0d400aa4", + "entity_id": "fdda1428-ad6b-4337-a959-83bae1f9664b" + } + ], + "file_name": "369c3679-4d68-42f4-9cdf-6a4ce5765762.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_36_MirnaExpressione8be8d7b-bbb0-4a86-9169-c334584820d3_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1410-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_36_AlignedReadse8be8d7b-bbb0-4a86-9169-c334584820d3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 180905441, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "0750c170bff6b018ff25b07ecc2a896e", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "985a5d90-381a-480f-93c1-1fee5c80fe02", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_36_MirnaExpressionWorkflow14aba172-33fe-471f-b0e3-38d5af8a3e12_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "4fc1860c-3932-4cbb-8ac0-3dfb851551d5", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50295, + "md5sum": "f173f79aef22d3c56e23e7d65ddf4dca", + "file_id": "4a72bdd1-5aa1-4e28-9f00-9ec65808db99", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1428-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "9c744ff8-1cde-4176-b6d7-0ab62bf42620", + "entity_id": "30b9b778-1422-4842-ae99-658b8b1d7605" + } + ], + "file_name": "fdccf2b5-8b46-4b15-9f97-a674fb12f84a.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_411_MirnaExpression0b5ceb97-71aa-4fee-ac4b-8ce4b9a6077e_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1428-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_411_AlignedReads0b5ceb97-71aa-4fee-ac4b-8ce4b9a6077e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 136269994, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "c5678262dedd145116e96497c4aac7ff", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "62e6b36d-2bbe-4ccc-aa5a-d10d9d49550a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_411_MirnaExpressionWorkflowc00e6440-d2ee-4abe-9016-e65df705bf6c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "be74d307-6350-4ffc-a05a-86fcb2d4020b", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50060, + "md5sum": "08c10de9abcd0c38eea397fe96567a38", + "file_id": "66499933-caad-4d93-947b-4218a23dd208", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1565-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "cf1e86ec-4bcb-403c-831b-d67bddef14eb", + "entity_id": "0d80226b-8c70-44ab-a6d9-f054d89330f3" + } + ], + "file_name": "6a5618e4-8576-4fd4-b8df-40387045f0de.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_429_MirnaExpression5e947a40-0453-436e-a2d8-d8a55d1ee26a_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "1bc99a0a-74e2-5271-b9bb-8bc1565394f7", + "entity_submitter_id": "TCGA-24-1565-01A-01R-1566-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29787", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "0d80226b-8c70-44ab-a6d9-f054d89330f3", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "40e562d2-f3a1-5229-80ce-581c86913730", + "entity_submitter_id": "TCGA-24-1565-01A-01R-1566-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8808", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "0d80226b-8c70-44ab-a6d9-f054d89330f3", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1565-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_429_AlignedReads5e947a40-0453-436e-a2d8-d8a55d1ee26a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 203840639, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "debc276aadb1f51aaf4fdcc3d2a5ad3f", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b7959965-8dd7-4299-8c9f-c42de122b366", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_429_MirnaExpressionWorkflowf14e4610-f117-4ca6-830c-e3e726ee22e5_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8a495d87-941d-4b3f-8b79-7ba49ea3fd70", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50371, + "md5sum": "16a199965ac2e8f39d47f578469bab71", + "file_id": "49489f7f-f91b-49e0-9141-c9d9a50327a4", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1481-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "c5355491-e1e8-46a4-a05e-bafcaf2e7459", + "entity_id": "761f9668-304f-4e22-87cd-2005aa86152c" + } + ], + "file_name": "7d39fb27-9748-46a4-b7dc-34921f90339c.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_126_MirnaExpression2fb4944d-9f3a-439d-9d6e-2120f73a029b_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1481-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_126_AlignedReads2fb4944d-9f3a-439d-9d6e-2120f73a029b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 219837165, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "a17c772ef1c734e0c7d3431d2a7ece17", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "369bdddb-c91e-478e-a42e-5e58cf588c7f", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_126_MirnaExpressionWorkflow00c496ae-c8b1-432f-b31e-f067e74f6f6f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7ae77432-1175-4218-8f50-c888e7e77cf1", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 394617, + "md5sum": "1701f6c45896c6b3f32fb200435de3f2", + "file_id": "aaab7a36-331b-4bba-9a20-f19c299ab7b2", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1032-01A-02R-1564-13", + "entity_type": "aliquot", + "case_id": "d1976840-35f7-4423-8458-12fb32a52b33", + "entity_id": "494182b5-dc71-4f11-add9-c29d2378768d" + } + ], + "file_name": "4ae7b146-68b1-46b7-b973-9eb2128baacc.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_269_MirnaExpression0eb1f783-d7a3-4f06-a7b7-7dfe23f54bd9_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "487ebc7e-d36c-509b-b97a-5bc879840be0", + "entity_submitter_id": "TCGA-23-1032-01A-02R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29768", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "494182b5-dc71-4f11-add9-c29d2378768d", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "f105bc54-c61c-5a4b-ad8e-41c3beabaebd", + "entity_submitter_id": "TCGA-23-1032-01A-02R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8750", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "494182b5-dc71-4f11-add9-c29d2378768d", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1032-01A-02R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_269_AlignedReads0eb1f783-d7a3-4f06-a7b7-7dfe23f54bd9", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 143375392, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "a30788616d5aaf5d295752552aeb44d9", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "9ca5140e-b163-4241-9a57-0dc6c3a41813", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_269_MirnaExpressionWorkflow2a00f384-bb6e-4682-8a08-0265f5b97077_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "43ea592b-e634-4c9a-a434-000ec4d319f1", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 320595, + "md5sum": "4c6c4a0803e0a7ff0349f2d5215fd2a1", + "file_id": "4caaeaf0-4e26-477c-b6c8-dfd0985e6c9e", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0900-01B-01R-1565-13", + "entity_type": "aliquot", + "case_id": "9e48a4b1-6917-4625-9d78-e4832eb816a5", + "entity_id": "48c027ac-0580-43aa-9356-f56b3d897127" + } + ], + "file_name": "bb797f15-acaf-441d-acba-63161b0b9bd7.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_199_MirnaExpression1e1ff941-bb47-4bd7-9163-577afc08f8d8_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "8cf48dec-6ed8-5c71-9aea-3e826dc71838", + "entity_submitter_id": "TCGA-13-0900-01B-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8790", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "48c027ac-0580-43aa-9356-f56b3d897127", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "d18c6e42-77fd-5940-bbd1-570d754d9ea0", + "entity_submitter_id": "TCGA-13-0900-01B-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29733", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "48c027ac-0580-43aa-9356-f56b3d897127", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0900-01B-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_199_AlignedReads1e1ff941-bb47-4bd7-9163-577afc08f8d8", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 510254499, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "9ac621ba671eec857ac4f905a68c0da0", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "337255b8-9d58-4548-b004-6480c9824065", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_199_MirnaExpressionWorkflow68d642c3-7067-496e-a286-4600bd047b6f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b5f8eb19-4aaf-404c-b676-9e5722e1a742", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 483179, + "md5sum": "971d5582bdbcd43e671913a71503ecd0", + "file_id": "ea0ec69b-9ab4-44a1-8202-88e57e9bd3fc", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1774-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "d3dd5e69-9752-4b50-9b1f-814afbc2c3dd", + "entity_id": "bdb953e0-32fc-4f28-b40f-aa870a2bccb6" + } + ], + "file_name": "4aa6a9ab-1b21-4a02-849d-06d409385eb9.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_170_MirnaExpressionc5dd4ab0-2974-4c98-ae39-083cab7b81a6_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "2957690b-99dc-5a69-9a2d-433d392af34f", + "entity_submitter_id": "TCGA-29-1774-01A-01R-1567-13", + "notes": "RNA-seq:HIGH rRNA CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8845", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "bdb953e0-32fc-4f28-b40f-aa870a2bccb6", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "3be1f69f-c8be-5e71-bdb2-269cb093b894", + "entity_submitter_id": "TCGA-29-1774-01A-01R-1567-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29797", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "bdb953e0-32fc-4f28-b40f-aa870a2bccb6", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1774-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_170_AlignedReadsc5dd4ab0-2974-4c98-ae39-083cab7b81a6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 132507620, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "d8e2ddad02d88e0d69dda283c848330f", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a55a2acb-4314-4fbc-ae8c-ec095759cc49", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_170_MirnaExpressionWorkflow1387a23e-8e3b-4410-9609-8d4a0b611583_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a1a8f78c-3f73-4712-aaf1-4016a7bd2dc9", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50273, + "md5sum": "2541f7e27f5d3846e3940bd22b7ae990", + "file_id": "e9822593-07eb-4277-b5b7-6e02ddc209ef", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-30-1867-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "f9824a6e-7a97-445c-8846-df8d8cddedaa", + "entity_id": "46a4ecb1-723d-47dd-be19-d2a343d9e6b9" + } + ], + "file_name": "1af7f065-5d17-44eb-b134-2ccaf0c4d7f3.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_290_MirnaExpression9dac8613-da8c-4860-9e50-fee244f9b54e_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-30-1867-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_290_AlignedReads9dac8613-da8c-4860-9e50-fee244f9b54e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 156323317, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "13673f50fb89e5ca541a325768a66120", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "34ed0bf6-6098-4b14-a4cc-df7cc2e9e21a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_290_MirnaExpressionWorkflowf4371923-1ba2-4128-94d0-f5e7ee0e66e8_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "98580b91-0796-4e6d-a478-420aceac7f97", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 369010, + "md5sum": "845c17f7f22fc0a0cfd90cd7163dbb68", + "file_id": "7ca7ccdc-ded3-420b-9483-5c7d7ca1da78", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-20-0996-01A-02R-A96U-41", + "entity_type": "aliquot", + "case_id": "d7f82e34-5b34-4e8c-a0cf-d7561bcea43c", + "entity_id": "bda3069d-d7c5-4852-9ff3-7cd925f989ef" + } + ], + "file_name": "fabf3fda-b118-4f0a-803c-ce871e785317.mirnaseq.isoforms.quantification.txt", + "submitter_id": "4c155ab6-7d36-4ced-8303-c16d283e7f61", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9919847923829905, + "total_reads": 22967964, + "access": "controlled", + "file_name": "bda3069d-d7c5-4852-9ff3-7cd925f989ef_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005028689, + "proportion_reads_duplicated": 0, + "submitter_id": "dfa4529c-518c-4ef3-8e49-d99477298bcc", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 371927265, + "created_datetime": "2024-09-20T11:13:34.461928-05:00", + "average_base_quality": 36, + "md5sum": "d597bc81a4b2b99c99d144e5f5e69c51", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "5aa1b5f7-a463-42bd-afb3-03ce891c92dc", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 34, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "fabf3fda-b118-4f0a-803c-ce871e785317_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f1bd52e6-27fe-4d75-9795-fb85b892d41d", + "created_datetime": "2024-09-20T11:17:18.578197-05:00" + }, + "file_size": 451364, + "md5sum": "e901cfe19fcc2c383a7af9628bd0b0c6", + "file_id": "c44517bf-629d-4c28-8e4c-79c76ca4ca76", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-36-1581-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "ef5e85cf-2d82-4d52-a02c-fed5c76e4cec", + "entity_id": "d84c76a9-dbee-4720-8639-91382101b27a" + } + ], + "file_name": "15c8eaef-0c38-4b40-a768-24e1ac2f8452.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_32_MirnaExpression48b22bb9-a04f-4c92-9cb6-a5830ae25ff1_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-36-1581-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_32_AlignedReads48b22bb9-a04f-4c92-9cb6-a5830ae25ff1", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 121321023, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "971329b35f3fa2b8584f1f51503f110e", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "feb5622d-5022-46ed-a941-986b9bc9fc72", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_32_MirnaExpressionWorkflow5e5a7523-f12d-48fa-9068-235dfad0562e_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "47483e8a-5c4e-435f-af07-ee7bed3cc7d6", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50308, + "md5sum": "3707bfcaf4108437a1eef6d7452efe92", + "file_id": "feab8db5-cb19-468c-a6f4-15480ec98db7", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0760-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "d8d13aa4-45d5-4e1a-a6cf-895bdf05e7b2", + "entity_id": "12f60ee0-fb87-4ac8-9e91-e6d643064c6d" + } + ], + "file_name": "681d1081-ed19-4553-b1ef-6a5e7e6fb236.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_300_MirnaExpression48c7b25c-0bbd-4273-97ce-e99690555543_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "83264592-915f-50d1-ae17-2f318b14d8b7", + "entity_submitter_id": "TCGA-13-0760-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8825", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "12f60ee0-fb87-4ac8-9e91-e6d643064c6d", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "c7c64838-e6c2-59b6-af1c-42cd0f1cf464", + "entity_submitter_id": "TCGA-13-0760-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29719", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "12f60ee0-fb87-4ac8-9e91-e6d643064c6d", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0760-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_300_AlignedReads48c7b25c-0bbd-4273-97ce-e99690555543", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 140872179, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "3b900bbbffe9b57947654a681b1d9ba0", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "d386364f-e435-4d9e-96a3-a8d00dfaffa2", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_300_MirnaExpressionWorkflow625a72d6-da05-4b97-8050-da5879843607_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d5dd2fda-461d-4371-a3b1-b6dbfbf9307a", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50007, + "md5sum": "348175241bba00ab962756f6352366a8", + "file_id": "5945cc55-e78c-4522-8ae8-57161bcab9fd", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-2408-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "fdd4adb8-9295-480a-9352-305b5eb51187", + "entity_id": "75e1b9b7-2d3a-4073-81f5-2b5093ecd53b" + } + ], + "file_name": "bb5c7469-2fc8-40ec-9dd8-b6922dd8d68c.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_214_MirnaExpression6e28478f-f20c-4e87-bb64-b54525f04f73_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-2408-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_214_AlignedReads6e28478f-f20c-4e87-bb64-b54525f04f73", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 258108769, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "eb38f6c446db29a56e05de3898b2165e", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b0ced7d4-1204-4d9d-a79b-1ba2bd673467", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_214_MirnaExpressionWorkflow3c4c5ab8-8185-4896-9c98-b4cc5af676f3_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b897a783-0d3d-467d-95bc-4ea33ae41633", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50403, + "md5sum": "2cf7ceb90c4ef52cd7d3cebcfe5254a7", + "file_id": "b38b607d-ec7a-40f8-89e4-34477b87564e", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1120-01A-02R-1565-13", + "entity_type": "aliquot", + "case_id": "fdf83fdf-dfbb-4306-9a1b-b4487d18b402", + "entity_id": "9b64998e-eed9-428b-97ac-4de398caaf81" + } + ], + "file_name": "ca44698c-e99e-4789-a606-28b44af5d8e8.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_387_MirnaExpression4cabbd35-9ab0-4c01-bffd-e12319900f1d_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1120-01A-02R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_387_AlignedReads4cabbd35-9ab0-4c01-bffd-e12319900f1d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 178434378, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "209b27aa4f20092ba517e9ea5702f994", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "66be195f-b62f-44b6-a354-c213d645d2cd", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_387_MirnaExpressionWorkflow3c01ba70-48e5-4a1d-a621-f01d65b173c6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b3cd1221-98de-4d9f-83ce-468ce98eb878", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 325799, + "md5sum": "c1a41683f6a4ea09ffb07644ac7cbc60", + "file_id": "a20f0a9d-643d-43c6-bd1f-00a639c13e19", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1357-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "feda41d8-ca56-425d-b149-4d5485328107", + "entity_id": "ec1fc406-d1c4-4eba-ab6b-6cfb460f0862" + } + ], + "file_name": "90e60733-1277-47e2-b6c8-2fb446868749.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_336_MirnaExpression6cd5b67c-9138-4c8c-b31d-dfa6560de528_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1357-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_336_AlignedReads6cd5b67c-9138-4c8c-b31d-dfa6560de528", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 176216491, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "842bf457055443ed5d3ef751ec5af2f1", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "9c77b6c5-2eb6-4500-a45f-4219dd62e03f", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_336_MirnaExpressionWorkflow919191c0-3d28-4c77-ba05-c7b5a4281671_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f3887d25-2634-4586-8759-6c2455a0d8bc", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 352898, + "md5sum": "33394cdddca997755b6161935ccbc874", + "file_id": "4e11dd54-2beb-4bdf-a5c7-5afb97795551", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-30-1859-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "dac8d825-dd47-47ed-a426-0ee75feb76f3", + "entity_id": "171797e3-389d-499f-99b9-1301644c7213" + } + ], + "file_name": "94e0206d-2251-4856-aa9b-c18dc80f465a.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_442_MirnaExpression7d5c6e2b-d64a-4f4f-b6f2-e25f6f6ad932_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-30-1859-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_442_AlignedReads7d5c6e2b-d64a-4f4f-b6f2-e25f6f6ad932", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 176481004, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "d076d5b4e1fe92d94d1a4be474ceade8", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "207bb5a1-2372-4c06-ae86-985f0359b51c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_442_MirnaExpressionWorkflow4005252d-8906-400a-b68b-074b66f2c592_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e8b0655d-2896-4a62-943b-9135419d30a1", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 281288, + "md5sum": "a9a7ab5b4d87c6e3d651906a96877143", + "file_id": "478cc4ef-e0e5-46bc-9212-5de56fa5b38a", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0723-01A-02R-1564-13", + "entity_type": "aliquot", + "case_id": "ff530f28-0ec0-4494-bb54-44bb055bae1c", + "entity_id": "61187611-6621-46fe-8a47-73eb721a28cd" + } + ], + "file_name": "fba20f1c-3800-4494-89fd-13afab589b9f.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_493_MirnaExpression032fdd93-cbbe-418e-8267-c9ea95a89bde_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0723-01A-02R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_493_AlignedReads032fdd93-cbbe-418e-8267-c9ea95a89bde", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 96732272, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "a328c4f5cf534c2c0b11718803b74689", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6d73c5a5-3a0f-4319-b659-3ee69c04d2ed", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_493_MirnaExpressionWorkflow2f3a14b6-b38c-4733-a469-3caa1db1c0f8_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ece005a9-c534-42d8-93b0-d7adc3d37b0d", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50180, + "md5sum": "dc8f7af34ce59913d7a5a15e976f8426", + "file_id": "129e6714-f57e-4faf-9234-d49518dcee28", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0723-01A-02R-1564-13", + "entity_type": "aliquot", + "case_id": "ff530f28-0ec0-4494-bb54-44bb055bae1c", + "entity_id": "61187611-6621-46fe-8a47-73eb721a28cd" + } + ], + "file_name": "fba20f1c-3800-4494-89fd-13afab589b9f.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_493_MirnaExpression032fdd93-cbbe-418e-8267-c9ea95a89bde_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0723-01A-02R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_493_AlignedReads032fdd93-cbbe-418e-8267-c9ea95a89bde", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 96732272, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "a328c4f5cf534c2c0b11718803b74689", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6d73c5a5-3a0f-4319-b659-3ee69c04d2ed", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_493_MirnaExpressionWorkflow2f3a14b6-b38c-4733-a469-3caa1db1c0f8_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ece005a9-c534-42d8-93b0-d7adc3d37b0d", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 266593, + "md5sum": "593daec4beccd0adaae14dc17da31a88", + "file_id": "9f276122-cbb4-4240-9af5-ce8d0055e991", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0723-01A-02R-A96T-41", + "entity_type": "aliquot", + "case_id": "ff530f28-0ec0-4494-bb54-44bb055bae1c", + "entity_id": "a31ca9f9-e269-45e7-880d-c346a344e967" + } + ], + "file_name": "a723662d-3d41-4c77-8a58-f14af07fdca0.mirnaseq.isoforms.quantification.txt", + "submitter_id": "7c55536d-7855-4120-8e7a-3158bd133e4c", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9844172731633697, + "total_reads": 25255015, + "access": "controlled", + "file_name": "a31ca9f9-e269-45e7-880d-c346a344e967_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004404059, + "proportion_reads_duplicated": 0, + "submitter_id": "f8a0b85f-80c1-48e9-9779-9e49c38a17c2", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 457329308, + "created_datetime": "2024-09-20T11:12:52.213114-05:00", + "average_base_quality": 36, + "md5sum": "96a3fa2da783b4663448ae6888348fb6", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "a26145cf-fc30-42be-b69a-71b782456ff1", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "a723662d-3d41-4c77-8a58-f14af07fdca0_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "88f5557d-5184-4fac-9af5-99a443a69752", + "created_datetime": "2024-09-20T11:16:46.427067-05:00" + }, + "file_size": 510230, + "md5sum": "9c30d5e233f9033fa22b9ea385f34f88", + "file_id": "6cbfabf9-3192-4d58-bb94-6a6dadf1626d", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1519-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "e9b5336e-d724-4e7d-8c81-1147abd0a80d", + "entity_id": "193d3e7f-ec7f-453a-9c2a-77b240c4ba19" + } + ], + "file_name": "a5fc4b34-2f6a-47a5-8962-18c8023623c6.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_372_MirnaExpression24f4740c-4bf4-4fd5-b590-3d261a6d3706_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1519-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_372_AlignedReads24f4740c-4bf4-4fd5-b590-3d261a6d3706", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 119594835, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "ecbce5c52dc041b5b1414991dbbf94dc", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c23b0419-9814-4556-be4c-c62e5be2985a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_372_MirnaExpressionWorkflowb95a14f4-2ace-4dbf-97df-50950d34a73c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7c8de143-3ce4-4277-9d38-851db9f860ca", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 280579, + "md5sum": "c01c9712ced79322445c774ed76814b5", + "file_id": "d88728ad-bb98-4733-ba29-3bb77132fdb0", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1484-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "ead71c90-cc5e-42ce-8754-c3cf15a41134", + "entity_id": "367f58a2-1003-4b97-93bc-08877cad8cba" + } + ], + "file_name": "87b68243-b40b-457b-a707-089b8f3fcd2f.mirnaseq.mirnas.quantification.txt", + "submitter_id": "15b2155d-9926-4ae6-b293-a05b02f5e30a", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9877362733736038, + "total_reads": 16848386, + "access": "controlled", + "file_name": "367f58a2-1003-4b97-93bc-08877cad8cba_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003730102, + "proportion_reads_duplicated": 0, + "submitter_id": "de65e60e-41c1-4971-93ce-697aa894d4f3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 317544896, + "created_datetime": "2024-09-20T11:12:45.828190-05:00", + "average_base_quality": 36, + "md5sum": "b01b432ee65ef4bd43d2f69f1872bc5b", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "e92594aa-41fc-4d0e-9282-21c77bc17b72", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 34, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "87b68243-b40b-457b-a707-089b8f3fcd2f_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "805fc4a5-b72d-45c5-a7c5-1604607c02d4", + "created_datetime": "2024-09-20T11:17:49.710875-05:00" + }, + "file_size": 50477, + "md5sum": "9494518531d880c14c4203f711803fd6", + "file_id": "38dfc2d0-f58c-4991-85a9-fcebdfde62d3", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-30-1887-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "f7e01929-733b-420a-ab2b-051dd4a992e5", + "entity_id": "c3af9723-8d15-4870-a2dd-304182bfad24" + } + ], + "file_name": "630113c8-fa96-4d1e-9c1d-f3044cfaba91.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_193_MirnaExpression3ba65b3f-f5c8-49cb-9e1f-e6e87b261200_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-30-1887-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_193_AlignedReads3ba65b3f-f5c8-49cb-9e1f-e6e87b261200", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 130540626, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "5fc594a18196d9b39978cc2133d4829b", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "eb11e024-2788-446e-9de5-c2396655e393", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_193_MirnaExpressionWorkflow638945d5-bfed-4740-9890-6f081aa2e548_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d2634500-9f18-4c58-9155-a6cc67709cd8", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50248, + "md5sum": "349ac0c50bee260fe7d0b868f5de1453", + "file_id": "9881f72a-d6e4-4d8d-b474-0a3c76df0f77", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-30-1887-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "f7e01929-733b-420a-ab2b-051dd4a992e5", + "entity_id": "c3af9723-8d15-4870-a2dd-304182bfad24" + } + ], + "file_name": "630113c8-fa96-4d1e-9c1d-f3044cfaba91.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_193_MirnaExpression3ba65b3f-f5c8-49cb-9e1f-e6e87b261200_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-30-1887-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_193_AlignedReads3ba65b3f-f5c8-49cb-9e1f-e6e87b261200", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 130540626, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "5fc594a18196d9b39978cc2133d4829b", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "eb11e024-2788-446e-9de5-c2396655e393", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_193_MirnaExpressionWorkflow638945d5-bfed-4740-9890-6f081aa2e548_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d2634500-9f18-4c58-9155-a6cc67709cd8", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 340811, + "md5sum": "de3ca5b87637c74968b609e4058f9e65", + "file_id": "9ba19183-4115-4402-b321-2eec1005647c", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2020-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "e20ea417-7296-4da8-9fdb-71cd1f45153a", + "entity_id": "19765b4f-458e-4f02-bf96-01498d80ac83" + } + ], + "file_name": "e9a951fc-2027-4b3d-8e8c-078868678b18.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_434_MirnaExpression204a30e5-ada2-4393-8a34-ea6225ace489_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2020-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_434_AlignedReads204a30e5-ada2-4393-8a34-ea6225ace489", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 254726143, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "6277c5e15194d22b64e176d2a924db57", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "3e182aad-e084-46e6-b5c1-0c19e444799a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_434_MirnaExpressionWorkflow2a540e3c-846f-44a9-8dff-e8c29501d61f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d183643f-534e-441e-bd80-7915a2dc0103", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50465, + "md5sum": "4c3ca618b31d4f0fd2425f3c764bbac5", + "file_id": "1ac789fe-3ad4-42cb-8aaa-e8ea97990fdf", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1655-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "f8a5547f-f1bc-4c01-8b68-25b5ee0caeab", + "entity_id": "520e1d91-a556-4443-8c08-feec29c0c4fe" + } + ], + "file_name": "4f659b4e-e335-4fdd-acdd-f4d363440ef6.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_307_MirnaExpressiona1912316-a37b-436f-8a70-15e8a6c52cae_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "aebc7105-ccf9-5d51-9ef0-f47b624fc5a3", + "entity_submitter_id": "TCGA-04-1655-01A-01R-1566-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8811", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "520e1d91-a556-4443-8c08-feec29c0c4fe", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "b6f46396-6466-5e39-b6d2-1bff80825df8", + "entity_submitter_id": "TCGA-04-1655-01A-01R-1566-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29702", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "520e1d91-a556-4443-8c08-feec29c0c4fe", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1655-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_307_AlignedReadsa1912316-a37b-436f-8a70-15e8a6c52cae", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 231513836, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "61fe0c550c20146357b506ed049039aa", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "983e11d2-1808-49b9-ade8-a0efa9323da3", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_307_MirnaExpressionWorkflow6079d9c6-6c39-44d1-902a-5b243f925c67_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "56ad3e6b-b2d6-44e1-8240-fc81e1f2da5d", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50275, + "md5sum": "ef9d74ffae37cc036657d01e879b15c5", + "file_id": "09729305-74a0-47c6-a78c-a819b1b3ea96", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-57-1584-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "ed21615c-0de3-421c-9e8d-8996026c4431", + "entity_id": "e92b95df-bacb-4083-b2de-78e540ec0e68" + } + ], + "file_name": "f242cfca-41ca-4570-a6bb-b95e2602bf82.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_143_MirnaExpressiona28fd423-c0f5-474d-a78b-d3c3af63be24_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-57-1584-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_143_AlignedReadsa28fd423-c0f5-474d-a78b-d3c3af63be24", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 387684480, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "114f97d84402f68017a20aeebe563898", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "35c5ada5-fe6a-4054-b0e7-b4e89d9d542b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_143_MirnaExpressionWorkflow2eece582-2790-467c-8066-d97a36da8774_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "21995f5d-daf0-4f9f-be92-8fbfc3f5bd71", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50324, + "md5sum": "9eee291b5fb0c79d68c18786e8603b53", + "file_id": "66dda1b4-b328-46e5-b16d-ace46f9cdeef", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1614-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "d3164236-c14a-4230-b527-ecd1a3992f02", + "entity_id": "b1e4cf1d-83b8-451a-ba18-bd091187b06d" + } + ], + "file_name": "89835cb0-9535-4b9a-8232-490f563937c9.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_401_MirnaExpression0d4fd35e-2b10-4dc6-87ef-c0c5240c0a3e_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1614-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_401_AlignedReads0d4fd35e-2b10-4dc6-87ef-c0c5240c0a3e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 115035034, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "df17584c95b02c3ec9cc675d0b5e514b", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5f88ba6b-34f3-489f-aba1-3f73d833c694", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_401_MirnaExpressionWorkflow3b62c7e8-370b-482d-a1dd-19d300107697_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "064e21f7-4fc7-447f-b076-984d872fc66a", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 302952, + "md5sum": "6572d21a1bab2e70b476453983eaa79f", + "file_id": "ac962826-d1dd-4e07-b865-cbebb103c2b8", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-OY-A56Q-01A-11R-A407-13", + "entity_type": "aliquot", + "case_id": "c7cf6755-8856-435b-a443-174b22a25b07", + "entity_id": "56149b81-54ba-41c4-90dd-092d70b48496" + } + ], + "file_name": "1e9a7419-58d3-41ca-9e31-a41c230bc53c.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_0_MirnaExpressionc4500344-2c20-4971-8736-4e7d72e00a54_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-OY-A56Q-01A-11R-A407-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_0_AlignedReadsc4500344-2c20-4971-8736-4e7d72e00a54", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 139094913, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "1b59659d44021151b8a57c4df143adc0", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b256a0f0-db3d-456d-a8ab-7ac2e9b3cc25", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_0_MirnaExpressionWorkflow31b3bc99-5be3-4f30-9684-30a77501c7cb_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1cf2c5a1-6d3a-42df-b526-8b34fe8229dc", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50238, + "md5sum": "35960acaf298a407f5b8758da24776dd", + "file_id": "d0e8a500-43ca-4e1a-8490-a641d45d0c3a", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1412-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "44493c23-82e9-4d9f-8e3c-7b3f9ae44970", + "entity_id": "70281de6-94a4-490f-aecc-6f56f28c7862" + } + ], + "file_name": "02d34874-3343-4c91-9ed9-47af1e8b544a.mirnaseq.mirnas.quantification.txt", + "submitter_id": "8dca44de-4439-4fb1-af18-811342a05036", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9866779759898339, + "total_reads": 18995537, + "access": "controlled", + "file_name": "70281de6-94a4-490f-aecc-6f56f28c7862_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004831843, + "proportion_reads_duplicated": 0, + "submitter_id": "95f24e39-fb2c-4070-bf34-3010880582f1", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 334760114, + "created_datetime": "2024-09-20T11:12:32.527256-05:00", + "average_base_quality": 36, + "md5sum": "18405f888371b0f10d1b7384f86b7ce4", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "b5ac1498-6c84-4c8a-8864-38a3f7b988d4", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 32, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "02d34874-3343-4c91-9ed9-47af1e8b544a_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "9be5cbd7-7f35-4e61-b41e-77f24b32f59f", + "created_datetime": "2024-09-20T11:16:36.815350-05:00" + }, + "file_size": 50651, + "md5sum": "023f71ded6b6e72b73c7e8ec09efbdea", + "file_id": "6e6d7a95-b8ef-4418-836a-1eacc3931d09", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1562-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "4c18d9cf-4af4-4a86-8b1c-f78795fbbd7e", + "entity_id": "eb8cb3b3-d1b1-4d2d-b048-7394931040bd" + } + ], + "file_name": "c44f7a10-0274-492e-8d6e-e21e2699cc7a.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_487_MirnaExpression6ca7418a-9791-49c4-b606-b65d2fbcd412_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1562-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_487_AlignedReads6ca7418a-9791-49c4-b606-b65d2fbcd412", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 146675721, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "9b59b96f6de062a943713e917c374b2e", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "61c2c7db-c886-48f7-b1f6-bd67d968e439", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_487_MirnaExpressionWorkflow0a989667-6c49-4a6e-8f4c-4ed5ed10caf2_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "774f5f89-d8f3-493d-b5d6-980f20f2d725", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 324275, + "md5sum": "3d6c7d41e9ba8fa3ce71830ace8adf26", + "file_id": "2857c0db-06ba-4502-9640-79e51f8086b5", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-59-2350-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "e978a457-92ff-4eab-b759-ec6e74d973e8", + "entity_id": "e05f2e2a-77d2-4f86-8e21-27cdd93b88b0" + } + ], + "file_name": "f888aada-7c47-4581-9739-6e6d861ab810.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_251_MirnaExpression8a87d589-6a58-4a3b-a37c-b88f231b70c7_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-59-2350-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_251_AlignedReads8a87d589-6a58-4a3b-a37c-b88f231b70c7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 226827206, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "6d6f02273c800ca0e493ac0fa6821cc1", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "17032c39-0aaa-4f32-8371-5f256b9705af", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_251_MirnaExpressionWorkflow5decced7-236d-44f0-8c98-5a320777f53e_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ba161301-c403-4f2f-8982-8dc0faad0777", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 429062, + "md5sum": "c6ad497732697f5666a9da092c700c32", + "file_id": "a0633ba1-0dca-480a-ab68-3179a7c90fe2", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1648-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "cddce77f-21e6-4124-9f03-96fb5ca7cefa", + "entity_id": "9248aa41-9572-4b91-8e00-13aa0e3dce12" + } + ], + "file_name": "04f92f91-dfa4-45e5-8817-612c170610aa.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_455_MirnaExpression344a0dd6-6a75-4ed8-8691-eced550797dc_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "68c2a82b-ff94-5185-9844-a26844d03d8e", + "entity_submitter_id": "TCGA-04-1648-01A-01R-1567-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8814", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "9248aa41-9572-4b91-8e00-13aa0e3dce12", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "865906e0-6159-5f51-9b55-7fde665bd5ac", + "entity_submitter_id": "TCGA-04-1648-01A-01R-1567-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29700", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "9248aa41-9572-4b91-8e00-13aa0e3dce12", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1648-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_455_AlignedReads344a0dd6-6a75-4ed8-8691-eced550797dc", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 473921488, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "730d352e0e1391378f0e109fbcc2f2f7", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "3b6c8ddd-cd01-4ae3-a92a-6e505434db45", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_455_MirnaExpressionWorkflowd2faf22a-8c23-41ea-a97e-2c802cf02c29_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8c8e0f07-88ff-4f8a-a64d-ce9768716e7f", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 489160, + "md5sum": "9bc8cd7a211d888cb9ef40bbeb2927da", + "file_id": "500ce180-2877-4d3e-898d-839c10b840f2", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-59-2350-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "e978a457-92ff-4eab-b759-ec6e74d973e8", + "entity_id": "e05f2e2a-77d2-4f86-8e21-27cdd93b88b0" + } + ], + "file_name": "f888aada-7c47-4581-9739-6e6d861ab810.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_251_MirnaExpression8a87d589-6a58-4a3b-a37c-b88f231b70c7_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-59-2350-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_251_AlignedReads8a87d589-6a58-4a3b-a37c-b88f231b70c7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 226827206, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "6d6f02273c800ca0e493ac0fa6821cc1", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "17032c39-0aaa-4f32-8371-5f256b9705af", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_251_MirnaExpressionWorkflow5decced7-236d-44f0-8c98-5a320777f53e_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ba161301-c403-4f2f-8982-8dc0faad0777", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50398, + "md5sum": "e3b4baec1f5fbfe0cb89c2141277f5b0", + "file_id": "e210c1c9-007b-4bcb-97bb-2db5e52ae85b", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1562-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "4c18d9cf-4af4-4a86-8b1c-f78795fbbd7e", + "entity_id": "eb8cb3b3-d1b1-4d2d-b048-7394931040bd" + } + ], + "file_name": "c44f7a10-0274-492e-8d6e-e21e2699cc7a.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_487_MirnaExpression6ca7418a-9791-49c4-b606-b65d2fbcd412_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1562-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_487_AlignedReads6ca7418a-9791-49c4-b606-b65d2fbcd412", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 146675721, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "9b59b96f6de062a943713e917c374b2e", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "61c2c7db-c886-48f7-b1f6-bd67d968e439", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_487_MirnaExpressionWorkflow0a989667-6c49-4a6e-8f4c-4ed5ed10caf2_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "774f5f89-d8f3-493d-b5d6-980f20f2d725", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50230, + "md5sum": "e7e05a81881bb2c847a3f3058ca2995f", + "file_id": "67c3dd8f-68de-41a8-afea-7b98c5427009", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1325-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "9471bc5e-18da-4356-bb0f-c78edd35ff99", + "entity_id": "bed6f1ff-26fa-4d0a-9f03-c5fbf457ee8b" + } + ], + "file_name": "9f419109-0d43-4da9-89e0-944c01050fed.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_159_MirnaExpression2bbc15a8-050a-4b14-b9a9-06625aad8778_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1325-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_159_AlignedReads2bbc15a8-050a-4b14-b9a9-06625aad8778", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 215005392, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "f681e47ce6dc1e065f0eb5d42ec5434c", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "726bc556-ab8a-4a23-af3a-85a62179bd2d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_159_MirnaExpressionWorkflowc2101f2f-79bc-43bd-9b4b-c13daab8c4a5_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5edefcf4-8e5e-4b33-8d63-dfbe6c969b48", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 373933, + "md5sum": "d5279a90cd106e4aabd1af67da0c0802", + "file_id": "10f856e0-7bc0-4572-a5d6-b6d19a3a3fbb", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1777-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "5ced5b58-fab4-4bcd-b706-d6e49ce0cfc5", + "entity_id": "cbeba637-1a32-45f1-83f3-614725665436" + } + ], + "file_name": "fb3178bf-1785-4dad-b4d1-e09541819db4.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_41_MirnaExpression37c637ab-a739-4195-80e8-ed3653229716_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "1c49fb88-29e2-53af-95c7-6b529b14f562", + "entity_submitter_id": "TCGA-29-1777-01A-01R-1567-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29798", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "cbeba637-1a32-45f1-83f3-614725665436", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "3b168213-06a8-5893-bf59-930502184542", + "entity_submitter_id": "TCGA-29-1777-01A-01R-1567-13", + "notes": "RNA-seq:INSUFFICIENT INPUT MATERIAL,LOW SEQUENCE YIELD/DIVERSITY", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8857", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "cbeba637-1a32-45f1-83f3-614725665436", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1777-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_41_AlignedReads37c637ab-a739-4195-80e8-ed3653229716", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 138194447, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "f74e64cd254501e79e8a16ac67fc1b86", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "9102a404-281d-4b2d-9823-2c4d616f0384", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_41_MirnaExpressionWorkflow05829626-9ebe-4673-bb68-4a24dd14a934_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0319a74e-29e0-44b9-bd45-add20127d7dd", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50047, + "md5sum": "0f4e4ad87fd6710b4a7f78e971966546", + "file_id": "b5a4e5fd-5712-44f6-91b4-48afeca86b41", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2289-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "b867e933-e3e3-4491-9bb6-b18c48d6f173", + "entity_id": "bdc4400c-c552-450b-a806-2ae10f61cca8" + } + ], + "file_name": "c39da255-2b01-4121-b483-fe59d5080904.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_233_MirnaExpressionfe166d00-34d6-439d-a835-b546716d705c_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2289-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_233_AlignedReadsfe166d00-34d6-439d-a835-b546716d705c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 356529948, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "5ced6356f029dbdc9a9d5f26917ff2c3", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "8c6d4536-bd85-4f8a-b165-7f77a1022ba2", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_233_MirnaExpressionWorkflowa0aa4e22-2517-44c0-84db-234e9e526238_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b3e42105-60f5-4821-b87d-1d3d34896bb2", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 511667, + "md5sum": "d15a5825eb661ac65c32d46f22caf735", + "file_id": "586dc493-7bbb-4ba6-a839-6740d46060e0", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1471-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "ceb19678-b453-4529-b6cb-d02f9cb101b4", + "entity_id": "a30e415d-8fe3-4d1d-b183-381ab431bb4a" + } + ], + "file_name": "4357992e-4034-49ba-bf2e-2b37f5adffd5.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_247_MirnaExpressionc9456ddd-7625-4f70-817a-73257cb3d2e1_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "8f400c47-069f-5c0b-8fb7-d4506de5c883", + "entity_submitter_id": "TCGA-24-1471-01A-01R-1566-13", + "notes": "RNA-seq:HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:32:20.747393-05:00", + "submitter_id": "8821", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "a30e415d-8fe3-4d1d-b183-381ab431bb4a", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "fd35613f-b23c-5b16-a2c5-43d0fa4526d4", + "entity_submitter_id": "TCGA-24-1471-01A-01R-1566-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29786", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "a30e415d-8fe3-4d1d-b183-381ab431bb4a", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1471-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_247_AlignedReadsc9456ddd-7625-4f70-817a-73257cb3d2e1", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 159452749, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "b7a7488eb6b16a2c5e6213e9e3ea338e", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4a6dab8a-900c-46c3-a457-69fb75e1968e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_247_MirnaExpressionWorkflow64317c1f-8462-4b24-aa72-b43ec2e3dd7e_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "25b5f79e-c90e-45fc-8ff3-44ee17a40c63", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 307009, + "md5sum": "e0ebc531408764466fabaf880ffca395", + "file_id": "6e73ea54-591e-4e3a-92bc-127f4c4c0869", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1361-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "a6aad7f9-8444-4c2f-8e4b-b19fd453544f", + "entity_id": "746ba0b0-f7a4-4f43-9961-97dccc756e71" + } + ], + "file_name": "489e1313-1bd0-4e09-a6b9-937559ae3a00.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_462_MirnaExpressiondaf8da37-52e9-4ccb-9030-e0c05916b98c_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "7a7291eb-981f-50ba-b11c-2e19ff8aedf3", + "entity_submitter_id": "TCGA-04-1361-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29695", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "746ba0b0-f7a4-4f43-9961-97dccc756e71", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "d60793ee-d4ed-5b80-aac9-68faea6f1abe", + "entity_submitter_id": "TCGA-04-1361-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8785", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "746ba0b0-f7a4-4f43-9961-97dccc756e71", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1361-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_462_AlignedReadsdaf8da37-52e9-4ccb-9030-e0c05916b98c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 122703042, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "7a766a1b84906e942e1a750ff04eed21", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "feccaf32-63ee-4147-b3cb-9068b8e2982f", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_462_MirnaExpressionWorkflow06df7a3e-3498-468a-82a3-37c79baaa9ed_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a723e787-c9c5-41fa-8b43-12a7ed8ceb4a", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50269, + "md5sum": "1ca2090f1e492ec019161e7f5da510f2", + "file_id": "919efb3f-0e15-4d5a-b7fd-975f5fadc4c3", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-2061-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "a22c1451-7841-4fa3-b2f2-5d5cd8aa67d3", + "entity_id": "6d802bc8-5252-44db-b48d-1c55787bb3d5" + } + ], + "file_name": "605b4681-d649-4015-8249-37648bcd4abe.mirnaseq.isoforms.quantification.txt", + "submitter_id": "62c6699c-3e3e-404f-9054-35db63f1f734", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9927079279938104, + "total_reads": 23085071, + "access": "controlled", + "file_name": "6d802bc8-5252-44db-b48d-1c55787bb3d5_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004012074, + "proportion_reads_duplicated": 0, + "submitter_id": "38f25137-3661-44e3-befa-6871d7394c06", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 407976118, + "created_datetime": "2024-09-20T11:14:31.117921-05:00", + "average_base_quality": 36, + "md5sum": "07751d5d95f411f5428b3ba8ae307815", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "7bc7e571-2b1b-4534-a582-4c0240559a40", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 32, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "605b4681-d649-4015-8249-37648bcd4abe_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "909195df-ed4a-4299-b1d5-ad833e7f95ea", + "created_datetime": "2024-09-20T11:17:59.365572-05:00" + }, + "file_size": 627433, + "md5sum": "1b7e55dc16e6812569f013ce6223aba8", + "file_id": "18afd97c-1cf3-4f79-9fc1-2863354d2be3", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2262-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "1d0225b5-f515-4197-bba7-3dc17e502b88", + "entity_id": "efb87f4e-6fc7-4b2c-9d56-62b0f7834fbe" + } + ], + "file_name": "d05a1100-8710-49ef-94fe-417e7e6eb188.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_14_MirnaExpression3595b982-80dc-4ed2-8e69-52dc6537b915_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2262-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_14_AlignedReads3595b982-80dc-4ed2-8e69-52dc6537b915", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 377952358, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "d3a149181393e34c54a1e3a5598df0d9", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "0ee78244-b237-4658-83cd-ef82c56b57b5", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_14_MirnaExpressionWorkflowf846c1d7-a8e7-463c-a3f9-b75f960a1c63_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "472b911a-4e2c-48b1-b80e-5bb7b48feff4", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 380180, + "md5sum": "548799d31bdd0c673df10c3b3b1a4170", + "file_id": "27e80773-82a1-4c43-b3cc-c63e2efaef4b", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0884-01B-01R-1565-13", + "entity_type": "aliquot", + "case_id": "63a75e0b-9241-4f0e-9236-01a2e2c05b7e", + "entity_id": "5339b819-0e19-4b7d-a098-6f58afc07180" + } + ], + "file_name": "d2504e2b-bc9a-47f7-a612-257d386b536c.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_348_MirnaExpression8aa5e14a-bfb8-4d34-9d82-0d89ea9c06a7_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "0c0009b2-08e5-50d2-9917-14a00aedeaca", + "entity_submitter_id": "TCGA-13-0884-01B-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8839", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "5339b819-0e19-4b7d-a098-6f58afc07180", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "925638bf-f70b-55a3-8f49-2b41dcaa8474", + "entity_submitter_id": "TCGA-13-0884-01B-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29727", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "5339b819-0e19-4b7d-a098-6f58afc07180", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0884-01B-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_348_AlignedReads8aa5e14a-bfb8-4d34-9d82-0d89ea9c06a7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 213569103, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "ec1f1098ce6a3d7b33659ff56f36a2ca", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "1f2ce710-a589-4772-9623-43d13db734a7", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_348_MirnaExpressionWorkflow10053d71-db73-4c1c-a82b-cbff89e547a3_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "212741f4-3882-4c7a-9737-1ed7236e7aaa", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 380263, + "md5sum": "f3337773a317091c2814df35256b6c2c", + "file_id": "74265a00-2000-4ed1-b72b-6a22e9a1e1b1", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1556-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "7592a659-7175-486f-a16e-24a4b4365a36", + "entity_id": "31e8ae73-7c3f-45ec-b4c9-d3f2ee1ca4fd" + } + ], + "file_name": "c8231b40-ec8e-43d6-ae45-4447e24b57d8.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_333_MirnaExpression2fd8aa57-4e91-4e98-bd80-15bcb71fe93e_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1556-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_333_AlignedReads2fd8aa57-4e91-4e98-bd80-15bcb71fe93e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 162168246, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "4d457421bdf19b0efb478ef10c4d76b4", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "471da32e-ad66-4b9a-ae89-180ee21756d5", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_333_MirnaExpressionWorkfloweb16adf8-3970-44f9-b9f0-58510b711a5e_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0ffd51b7-56fd-4348-aff7-d88ac5e73f8a", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 388907, + "md5sum": "c74b96b7d7dd939195e470639e95821e", + "file_id": "d8230f13-d536-43b5-b0f2-85123c79b9f6", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1724-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "2ae65a06-df0f-4de1-a536-537cae0cc260", + "entity_id": "faab5b85-3c69-4c64-bba0-a8d5404939a2" + } + ], + "file_name": "a9b5f028-4b51-4ff7-92f5-462000eb9074.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_60_MirnaExpression2bf7a346-b282-44d7-9eec-54ef89a35d0e_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1724-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_60_AlignedReads2bf7a346-b282-44d7-9eec-54ef89a35d0e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 394528661, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "0b25344d6921eda675bc37ce712614ec", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "8f75cf78-8201-4769-a761-410294acab5d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_60_MirnaExpressionWorkflowc87a9019-5573-4408-bf3d-e1bbb6ceb304_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7a9ee70c-6d77-4375-b50c-9eba7b6c4863", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50322, + "md5sum": "a9a59dd3946443bbfbe24c5c9b3fdebd", + "file_id": "c7cf1796-d337-455e-8425-da45f80daa8d", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1422-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "05ba5839-e00a-4a9e-8ba3-ecb490781e62", + "entity_id": "99a9d9af-2e42-4a4f-8ad7-3f8b6e145a55" + } + ], + "file_name": "88fa6a0d-b092-4200-bcc4-d44525d2ed1e.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_465_MirnaExpressionac6654ea-33d8-4b35-b608-ffd183399438_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1422-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_465_AlignedReadsac6654ea-33d8-4b35-b608-ffd183399438", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 256183502, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "f01c69d8571a42fcfdffe94d2ab22469", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "567909d2-6247-44fa-b4fa-123bb5e19868", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_465_MirnaExpressionWorkflowe3d6b02a-3023-4c4d-bf84-96c05b9c6a55_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b297a1ff-debe-4ff9-813a-49439df194ed", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 392656, + "md5sum": "75dddb9216dd1a9c99b843250cec5b60", + "file_id": "c64f0bc2-4369-47c9-aea1-037cd297e195", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1924-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "26558703-a659-43f2-86cb-0695989bc14e", + "entity_id": "2592f314-cc0a-4d00-bdcf-6376afd32bb7" + } + ], + "file_name": "7e733b33-2620-4010-b44b-e70f7501c424.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_392_MirnaExpression698f18b4-0375-46ea-8521-b1193e16617d_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1924-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_392_AlignedReads698f18b4-0375-46ea-8521-b1193e16617d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 152297506, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "a1ee8edb68819829748bcdf401977501", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "12fd4b75-01ba-43c0-80f2-af544bfcfc33", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_392_MirnaExpressionWorkflowcd690613-0ef4-4446-9efe-80a1ecec00ad_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b4747fb1-c028-4934-9c3d-0bd25a734aff", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50281, + "md5sum": "4da1a915759008dd810e499cae6d1ffc", + "file_id": "8d0f9f76-6db9-4c8f-80a8-f663a9b2f3eb", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0890-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "ee0a4a13-613e-4c5d-96c3-8083a013702d", + "entity_id": "65cc3a15-cfa9-48fb-b9e4-801398b073b8" + } + ], + "file_name": "056f33a9-2429-47a7-9767-f535dccc224a.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_306_MirnaExpressionbd344179-a801-40b7-870f-69ebc97f5445_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0890-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_306_AlignedReadsbd344179-a801-40b7-870f-69ebc97f5445", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 114414380, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "7238a975208b4caeffdcbdc505e1fed7", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "341aec86-794d-46c4-a661-cd264175db70", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_306_MirnaExpressionWorkflow22556d92-a9b5-4ced-b438-a26e366b9ed8_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1b5a6931-f86f-4635-a5e6-67b64adee794", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 251019, + "md5sum": "1ec41aa610f1092ff6ea8cff02ab09c0", + "file_id": "6ad7dab7-b6ab-4e77-b9ae-23a95eaee306", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-1669-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "b1c90c69-6149-4105-8182-ab9212f196be", + "entity_id": "a56ccd4c-1959-44a9-968d-57e6c5bc0cf8" + } + ], + "file_name": "bff79f43-0a8f-4a8c-8695-2f2bd8234f35.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_492_MirnaExpressionf7d2d363-994e-4d13-97f0-58b1085741f9_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-1669-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_492_AlignedReadsf7d2d363-994e-4d13-97f0-58b1085741f9", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 198431474, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "854df839a9c6cafffe47ec3288d8e64d", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a56daaae-f661-4bcf-aa7b-dc45f2d14f86", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_492_MirnaExpressionWorkflowca139e86-dfc8-4a28-a0ae-3ec3b252905a_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "4e3790da-70d6-47b0-a0b6-b1047dcc65ce", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 362911, + "md5sum": "3c5eb85b344c588a6bb42a1645ba2295", + "file_id": "daec7d89-dd0e-4851-bdb1-6307feffffcf", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0890-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "ee0a4a13-613e-4c5d-96c3-8083a013702d", + "entity_id": "65cc3a15-cfa9-48fb-b9e4-801398b073b8" + } + ], + "file_name": "056f33a9-2429-47a7-9767-f535dccc224a.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_306_MirnaExpressionbd344179-a801-40b7-870f-69ebc97f5445_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0890-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_306_AlignedReadsbd344179-a801-40b7-870f-69ebc97f5445", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 114414380, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "7238a975208b4caeffdcbdc505e1fed7", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "341aec86-794d-46c4-a661-cd264175db70", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_306_MirnaExpressionWorkflow22556d92-a9b5-4ced-b438-a26e366b9ed8_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1b5a6931-f86f-4635-a5e6-67b64adee794", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50118, + "md5sum": "d35e1ce00814a2d349eee9cf83bb5fec", + "file_id": "196005c2-f88b-4b75-beec-95b9daa1cf9e", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0755-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "2956e414-f167-438f-8747-a46fe0723622", + "entity_id": "a8f27c8f-3077-481c-bc2d-853f905f45de" + } + ], + "file_name": "3a891c6d-b223-4873-b6b1-5bb2f9ac6788.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_374_MirnaExpression5eefd40b-c547-4b2b-83b5-618473acd485_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0755-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_374_AlignedReads5eefd40b-c547-4b2b-83b5-618473acd485", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 144306091, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "0c7d8b6e35d26e0fc69b30ba74096a3c", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "6f3191ef-e7ae-43b0-97ad-a386b4c02280", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_374_MirnaExpressionWorkflowd97bf514-e6a0-4873-bc12-54b039ecb3b5_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "46c9db02-d1bc-4f68-9374-5d449c1c617f", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 303480, + "md5sum": "7aff8477cf0f034242ff30c0ca0e4042", + "file_id": "c65c107b-be52-48b9-b38f-76a200c6f395", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0891-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "0740321b-f8a5-4e1d-b390-ca6187598fac", + "entity_id": "c6666bbe-77cd-497e-88b4-ff73dcf6f399" + } + ], + "file_name": "da071e62-1257-41ce-8095-8071c479e23d.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_76_MirnaExpression67c345b5-3e2a-4618-91fd-b91c82304219_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-0891-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29732", + "classification": "CenterNotification", + "entity_id": "c6666bbe-77cd-497e-88b4-ff73dcf6f399", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "5098971e-8fda-544e-a760-7061510be0c2", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "case_id": "0740321b-f8a5-4e1d-b390-ca6187598fac", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-13-0891" + }, + { + "entity_submitter_id": "TCGA-13-0891-01A-01R-1564-13", + "notes": "RNA-seq:INSUFFICIENT INPUT MATERIAL,LOW SEQUENCE YIELD/DIVERSITY;LOW 5/3 COVERAGE RATIO", + "submitter_id": "8756", + "classification": "CenterNotification", + "entity_id": "c6666bbe-77cd-497e-88b4-ff73dcf6f399", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "b74e3b31-cf1d-5a94-9fbf-bea726ab893d", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "0740321b-f8a5-4e1d-b390-ca6187598fac", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-13-0891" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0891-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_76_AlignedReads67c345b5-3e2a-4618-91fd-b91c82304219", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 102461703, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "f7f84e37de676054564070319cf16440", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "56f3c1aa-98e5-4066-bc7e-3f8addc72bbe", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_76_MirnaExpressionWorkflow85a9f392-887f-40c0-b75a-813f2b3dbbf9_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "833a203c-5641-4a15-9d21-f0056c77e615", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 238767, + "md5sum": "cc8d854ce88d1cb1c4790418e7ee9bf9", + "file_id": "813df022-f0db-4dc3-82c4-38c5ba7a3782", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-2045-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "3768d34f-1527-40db-b116-cd80cee5ec3a", + "entity_id": "7b412fd9-4414-440f-b768-70666037c768" + } + ], + "file_name": "1a01e309-ad6e-4964-a81e-533b04d47a86.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_71_MirnaExpression6d64e628-40b3-4560-8aa8-4735ae419834_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-2045-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_71_AlignedReads6d64e628-40b3-4560-8aa8-4735ae419834", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 128005322, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "02d25ef2cea72f8062865e4c844582f1", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "f2e7c1a0-a551-41c4-a027-4ddef0907c22", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_71_MirnaExpressionWorkflow52f90d90-45e5-48d6-9ac6-525f00e11d1d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7f972634-367e-461d-9f0b-946e478c64f2", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50235, + "md5sum": "0c4ae080c85936337fa51fbbc6874fbb", + "file_id": "0ca7bc8a-386e-4da7-897f-9188172906b3", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1405-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "29dccd25-4c4a-463b-a353-38a193337f38", + "entity_id": "044d949f-0eb4-44c9-8327-90226936fc7c" + } + ], + "file_name": "0f4d00cf-39a5-4e6b-9e33-30c763e7ed75.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_354_MirnaExpressionf5b84275-82ae-4eb9-a681-9d259e738984_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1405-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_354_AlignedReadsf5b84275-82ae-4eb9-a681-9d259e738984", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 156444665, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "95db571b0fa9e2a1a0025f05e86a6ef8", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "909669c3-1da5-47c5-b371-f2a4b2b9d7a6", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_354_MirnaExpressionWorkflowb623a271-e411-456e-b406-5a6304f37deb_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "704e584e-4224-4e0d-a306-cc80898056bb", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50190, + "md5sum": "0d48694dd0320a0b6619458f67057d2e", + "file_id": "905f80bd-1232-4332-bb89-eb0ac107f6e4", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1740-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "005a6517-2e5a-4ea3-ab36-531522723607", + "entity_id": "e7825482-380d-4323-a4fb-d11b365c7073" + } + ], + "file_name": "6ce02f51-1f46-416a-9720-b76324abbfe0.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_303_MirnaExpression6601ef20-9225-415c-a0c7-6305bfd9a24c_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1740-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_303_AlignedReads6601ef20-9225-415c-a0c7-6305bfd9a24c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 182264351, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "a4eff41e4336dbed1649afc994ed2c96", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "38ec9e00-7215-46bb-9414-bd79f1d650cf", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_303_MirnaExpressionWorkflowb4ed9654-7d0c-4282-84f1-525580ac42a9_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "6009775c-71e7-4925-9adb-5ea86eab92f2", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50251, + "md5sum": "e111aa50cb7ee2df938e0ccd4af6422b", + "file_id": "c2d26b92-8ba6-4bf2-b09b-c9b821a838e7", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0761-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "00630714-7ab3-44e1-afff-186300edae44", + "entity_id": "59913645-a235-4609-bf9a-79122544be5f" + } + ], + "file_name": "915f8cfc-2ef6-409d-8b9f-15de72b598ee.mirnaseq.mirnas.quantification.txt", + "submitter_id": "40837159-2180-4836-a1be-3c257b7e3b8c", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9883166949349393, + "total_reads": 27100465, + "access": "controlled", + "file_name": "59913645-a235-4609-bf9a-79122544be5f_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003047207, + "proportion_reads_duplicated": 0, + "submitter_id": "fe44fd35-ccf5-4d82-9c7d-85738b589e11", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 442786179, + "created_datetime": "2024-09-20T11:13:50.497709-05:00", + "average_base_quality": 36, + "md5sum": "8b3f401119f63ccb040a9b6eadd3c7f0", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "98dd1776-b50a-41b3-8efa-d858bb9bf0f9", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 39, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "915f8cfc-2ef6-409d-8b9f-15de72b598ee_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2b34745b-e2cb-424f-8e3a-a896ac39129e", + "created_datetime": "2024-09-20T11:18:14.362633-05:00" + }, + "file_size": 50639, + "md5sum": "521e04480a941c3b31480efdde56644e", + "file_id": "6c9c81c5-8348-4746-89a3-13a7a81be628", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0761-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "00630714-7ab3-44e1-afff-186300edae44", + "entity_id": "ec320d00-0235-4964-9a7b-228361291107" + } + ], + "file_name": "8388528f-4f0a-4939-89bb-64478d67b5bb.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_92_MirnaExpressiond2a10333-24d4-4235-95f0-be178174a24c_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0761-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_92_AlignedReadsd2a10333-24d4-4235-95f0-be178174a24c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 118537318, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "d24563fce07635f4efcaaf4f9dbf9531", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "687d339d-8399-4e97-af1a-a0574a4cc00e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_92_MirnaExpressionWorkflow78cca6cf-1693-4993-9bf6-91593184183c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b05cee2c-f81f-4dfb-acd3-365243f49e99", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 313674, + "md5sum": "2b071467d4059b3eb9825bfa58f9e0c5", + "file_id": "15abdb00-5908-4aa8-9697-078a2e6ee695", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0904-01A-02R-1564-13", + "entity_type": "aliquot", + "case_id": "0b519c08-9f23-4ceb-9a13-e16509ca55d7", + "entity_id": "ac0ae6de-d7fb-4b8e-8f2f-2f52d942859c" + } + ], + "file_name": "53567b54-bb81-4dc7-9161-8206b11d87c7.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_106_MirnaExpressiond46dfd5d-cf6d-4441-ae5b-1a2007507553_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0904-01A-02R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_106_AlignedReadsd46dfd5d-cf6d-4441-ae5b-1a2007507553", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 116294524, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "2b75d97c1eef4d5d8aba93073283be3c", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6a1840ae-53a8-4e58-a011-fc3ac03e898d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_106_MirnaExpressionWorkflow1b86890c-1760-4503-a14b-0f10b13730c1_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d80afa33-c244-4ea8-9a04-a55c294859d6", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50075, + "md5sum": "bee409f058c0b4030bfd54712d73185e", + "file_id": "9d87d2a6-2f6a-4cc3-a68b-1fb8fa9c0552", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-20-1685-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "cbc5b936-ead5-4858-ab90-e639402789b0", + "entity_id": "9f6dd4ad-0130-46fe-9c49-72f378a753fe" + } + ], + "file_name": "de38b7a0-e739-4a51-bdbf-54b50ff5cd7d.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_331_MirnaExpression708ad90c-89ed-442d-bda6-9af968fa90d6_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-20-1685-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_331_AlignedReads708ad90c-89ed-442d-bda6-9af968fa90d6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 160441004, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "2264c67590063bea82929d15b252022a", + "updated_datetime": "2023-07-12T10:35:45.532497-05:00", + "file_id": "130702f4-e80a-474a-935a-7af16d4e8ba6", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_331_MirnaExpressionWorkflow4dcca743-4d84-4e0f-9f44-48f88d31a49b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "46019c44-f278-4914-acd2-dd035762ee7a", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 382678, + "md5sum": "f2570a1905ae65b6a38594236fa8df39", + "file_id": "8fe1711b-4d63-4da7-a2f1-2221b86628eb", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-2071-01A-02R-A96T-41", + "entity_type": "aliquot", + "case_id": "0d15e5aa-2483-4f81-973a-ff469296c911", + "entity_id": "521041a6-4a69-4408-8279-94cf47d7df71" + } + ], + "file_name": "86f959d3-2e4a-46ef-9f93-ed0003109311.mirnaseq.isoforms.quantification.txt", + "submitter_id": "5fc9342e-85d2-45df-9b29-6bf8280d7664", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9901842930952659, + "total_reads": 25483646, + "access": "controlled", + "file_name": "521041a6-4a69-4408-8279-94cf47d7df71_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004468871, + "proportion_reads_duplicated": 0, + "submitter_id": "2ebf3e65-cea9-4535-a2ff-c35919cfb523", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 435985108, + "created_datetime": "2024-09-20T11:13:31.364476-05:00", + "average_base_quality": 36, + "md5sum": "96d3c6509838e40556593ba88ca61e8c", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "85e1d398-e7fd-454b-ad92-26c165170ed7", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "86f959d3-2e4a-46ef-9f93-ed0003109311_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "798a8120-3f2d-49d5-9a25-16f536d17370", + "created_datetime": "2024-09-20T11:17:55.280045-05:00" + }, + "file_size": 608837, + "md5sum": "12a00927002b0b4f35dba03186bf72c4", + "file_id": "5c4250a3-e82b-4c39-a0e7-5af064cb1ae4", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1698-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "18d21132-a795-4551-83ba-66483de423a2", + "entity_id": "74970c45-4cc5-4952-9846-ce2d959437ea" + } + ], + "file_name": "b783c167-e867-48c6-a3fd-778e7dc01b97.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_70_MirnaExpressionf613ab22-1f90-42eb-b4d7-fce328282ced_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1698-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_70_AlignedReadsf613ab22-1f90-42eb-b4d7-fce328282ced", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 125697706, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "f51ba8c4e9736b076e646b0400100d03", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "c89b7e4d-a24c-4444-b7eb-cb8e47bd7f1e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_70_MirnaExpressionWorkflow4feb0ca7-3311-4deb-8550-47a0790dd0c8_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e629d4d1-8e30-4456-a022-de133ee4a357", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 355488, + "md5sum": "d3933f8a501afa29ca3d0afc38e2ec56", + "file_id": "b9cf0bd5-ae12-4c64-9d02-cdf280db18df", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2030-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "d2ccefea-c1d6-465f-97b1-e51e29c5f1f8", + "entity_id": "82f66166-e81f-4fee-a9a7-bd3ffd6b5d22" + } + ], + "file_name": "0ebefb69-8b60-46e6-9165-53cdd735ba91.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_212_MirnaExpression3f82b265-127b-4c50-bb28-79f43917038d_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2030-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_212_AlignedReads3f82b265-127b-4c50-bb28-79f43917038d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 260570502, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "fc4fe629cd9354db3c574388ecb34d88", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4f793bed-8a20-404a-b950-27a86334db01", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_212_MirnaExpressionWorkflow1daf7e4b-7b51-4117-ab26-1b5aaed6f133_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ea140da4-bb45-4f3e-9109-8551f4e2d8cd", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50382, + "md5sum": "ad4faeb3232dda0b535e02a5dae78635", + "file_id": "34f3bf3f-09ac-41ee-bf65-3424ef382476", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1418-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "195ecf43-06bd-4ffe-8d8b-a766f3f7179b", + "entity_id": "4e701e9f-9127-4d61-8a72-7e440b969fbe" + } + ], + "file_name": "d7183242-925f-40f8-bbac-86aa98ee8c0a.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_439_MirnaExpressionb8dae6d0-df09-4517-83cb-c9ce6121f39a_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1418-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_439_AlignedReadsb8dae6d0-df09-4517-83cb-c9ce6121f39a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 200498683, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "1e05c2950e27a2ac7f57b005bcad2530", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "de59f715-75cd-413a-8948-46a66d18ed48", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_439_MirnaExpressionWorkflow5dabe765-7e9e-4dc7-b554-a7bbc2d278c5_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d2002c2b-94f2-4873-90ff-d84368a3e77b", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50269, + "md5sum": "1a7d9b29f6b158cb9e239124a52b01aa", + "file_id": "44860148-ef4a-4f21-98d3-2d9f93d3ef2d", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0905-01B-01R-1565-13", + "entity_type": "aliquot", + "case_id": "2038fd65-d8f1-4b16-af90-b1c8f9a379a7", + "entity_id": "6deb1bf0-273a-47ba-9698-3d38ab05f02c" + } + ], + "file_name": "37b09dc5-ffab-425e-98d1-c9c7f0c8d8ea.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_337_MirnaExpression60e4ee94-a644-4af8-969c-b7b2175b3090_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "043b0fac-32c9-5d74-b5cf-ddda3fa38141", + "entity_submitter_id": "TCGA-13-0905-01B-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8797", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "6deb1bf0-273a-47ba-9698-3d38ab05f02c", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "6f4ea5e5-8b09-5050-a190-509e398b3ba8", + "entity_submitter_id": "TCGA-13-0905-01B-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29735", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "6deb1bf0-273a-47ba-9698-3d38ab05f02c", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0905-01B-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_337_AlignedReads60e4ee94-a644-4af8-969c-b7b2175b3090", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 213554013, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "b7d3055513aa2cdcdd333abc64c67f3a", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c530efae-e6ab-439c-9ef8-2169c9be2c92", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_337_MirnaExpressionWorkflow70a7c8c4-ef5a-4477-83fe-677197695142_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "4dd035d2-1120-44b1-97bc-591aba375a68", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 406737, + "md5sum": "e89c575f502c9bd63173775387f16c62", + "file_id": "87c51d57-6bdd-4a52-93a0-717020c3c379", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-2060-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "196f4600-b6c9-4652-9f77-65c92883f8c1", + "entity_id": "32de1e4d-198a-4616-8227-4d633c80124b" + } + ], + "file_name": "38a02deb-561f-4de2-b90f-1bd8459f459e.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_451_MirnaExpression37d98e5c-9533-4212-9f8a-32997dd06951_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-2060-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_451_AlignedReads37d98e5c-9533-4212-9f8a-32997dd06951", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 257892594, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "834fba2e0eccd685186ca06c5f3293ae", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "d9b9b642-cf6f-486b-9aad-908f63fa1c5c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_451_MirnaExpressionWorkflow779be0d1-b60f-4cea-9dc6-0a97a747b20d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "bdc44496-5728-4b5d-b43b-71ca061d04b2", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50536, + "md5sum": "594ca29feef40e6532c6ee2ec85b9f8c", + "file_id": "f8ae7b11-19c9-40ee-b8d0-c94b266e9c4e", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1318-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "13319c20-02f6-4b5f-b24f-3d8f4084094c", + "entity_id": "4d3e0164-1346-4e8e-b478-29bd8b1f1ce5" + } + ], + "file_name": "83e3608b-3891-4015-af9e-40ee65fe1acc.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_494_MirnaExpression4fea2211-98f6-428d-a37c-f00fbb863a7e_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1318-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_494_AlignedReads4fea2211-98f6-428d-a37c-f00fbb863a7e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 170902912, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "79aa9e3101b9c55cf5e4c0ca5581c98a", + "updated_datetime": "2023-07-12T10:35:45.532497-05:00", + "file_id": "ec963d8f-8a32-4511-a5ae-295885144877", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_494_MirnaExpressionWorkflowf8e8ad7d-b203-4641-b6d3-2616f0d9897f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c816161b-e27b-491a-9926-7c1fe0d92c1c", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 352260, + "md5sum": "c59f7fb45538f523dd5dbb230cc304e8", + "file_id": "7fb343a7-d726-4b2d-b94c-3cee5b1ce437", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0751-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "15c84da3-16e5-4909-aea9-cb5894b0f8af", + "entity_id": "62206d36-b8b7-4149-b4d5-00011ccf185f" + } + ], + "file_name": "a02e461a-95b8-4f26-941f-629eeca34993.mirnaseq.mirnas.quantification.txt", + "submitter_id": "63ca7abd-54e8-4a52-85f2-6a9a119f3f5d", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9881024629273104, + "total_reads": 19506138, + "access": "controlled", + "file_name": "62206d36-b8b7-4149-b4d5-00011ccf185f_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003206338, + "proportion_reads_duplicated": 0, + "submitter_id": "37db8f83-108e-49f0-9bad-45618bb59f75", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 326359676, + "created_datetime": "2024-09-20T11:13:45.701772-05:00", + "average_base_quality": 36, + "md5sum": "7490d2ec4410e14b5ecf8f393efce2fd", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "653e4f39-aab4-4b90-a931-88ffdbb75099", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 40, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "a02e461a-95b8-4f26-941f-629eeca34993_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "6ccff3f4-55c1-43b1-b99a-11d2809a9043", + "created_datetime": "2024-09-20T11:16:43.456256-05:00" + }, + "file_size": 50459, + "md5sum": "662aff85d047ddbadb4903cc0d9ca163", + "file_id": "fb29cde1-5e5e-43d7-be3a-f8c63a7a3744", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0751-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "15c84da3-16e5-4909-aea9-cb5894b0f8af", + "entity_id": "c14d81f4-38db-4b58-871b-6af6de3dd7ca" + } + ], + "file_name": "c2271ef2-66ff-4257-9f25-d70baf6a667d.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_187_MirnaExpression0ca12bd6-46fc-4e1c-8dcb-bf7d69e60883_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0751-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_187_AlignedReads0ca12bd6-46fc-4e1c-8dcb-bf7d69e60883", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 132182560, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "cee44656d2cb98572f8e61710f70f988", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a7faee52-8b0e-4e53-9222-b52d427a8480", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_187_MirnaExpressionWorkflow7f7fcab5-c4ab-4083-96aa-9e6c9b2fc58c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "55af9c2a-9653-4711-ae9d-2035534c60c6", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 276496, + "md5sum": "f6568b4a46183482a7b09ee4118b7ad1", + "file_id": "5aa57728-7860-49d6-9753-5d97e2b2dda0", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1694-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "1db60f09-7f5a-4f21-8003-06a6abc781db", + "entity_id": "e0667b02-b4cf-43e7-8cd7-b9fd11b3cec6" + } + ], + "file_name": "87372239-7135-40af-ad1a-b60253a058bd.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_27_MirnaExpression90a2e905-fa8c-4133-93eb-f0750a8917bd_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1694-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_27_AlignedReads90a2e905-fa8c-4133-93eb-f0750a8917bd", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 180485570, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "4c16aae432b27b022cb908f3298c728c", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "21da9007-e3d2-4ce9-b524-205597ff5aef", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_27_MirnaExpressionWorkflowed0e96ee-03b6-4bf1-a67e-4b4337788021_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "378ad6bd-f8b8-4328-bf8c-ec3623b29802", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50307, + "md5sum": "0967b4c6d335f7d59501a13cab199977", + "file_id": "f3e199d1-68bb-410b-a5c7-297198a22017", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2088-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "242943fe-1fa0-4a12-8f7e-9c6c4af1194d", + "entity_id": "62fdea50-f152-4f43-9130-a93079b5e61f" + } + ], + "file_name": "c5cc47b3-ea62-42f0-85d0-c97e438b8a57.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_40_MirnaExpressione8f43d05-e0f5-48df-a38d-e3ca6c551ce2_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2088-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_40_AlignedReadse8f43d05-e0f5-48df-a38d-e3ca6c551ce2", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 502385605, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "05f041f292db22e7fd02b8729f220c40", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "9f39d484-91e3-4c86-bf90-32003d837213", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_40_MirnaExpressionWorkflow67790975-964b-4908-929f-c3a60cc82949_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "4791376a-6bbb-4618-9eec-9bf6cf58153b", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50550, + "md5sum": "5c1a6a411dc8148551a8590366697aed", + "file_id": "f03a9ee5-bef8-4c91-82e3-b3329b40969a", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1694-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "1db60f09-7f5a-4f21-8003-06a6abc781db", + "entity_id": "e0667b02-b4cf-43e7-8cd7-b9fd11b3cec6" + } + ], + "file_name": "87372239-7135-40af-ad1a-b60253a058bd.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_27_MirnaExpression90a2e905-fa8c-4133-93eb-f0750a8917bd_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1694-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_27_AlignedReads90a2e905-fa8c-4133-93eb-f0750a8917bd", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 180485570, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "4c16aae432b27b022cb908f3298c728c", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "21da9007-e3d2-4ce9-b524-205597ff5aef", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_27_MirnaExpressionWorkflowed0e96ee-03b6-4bf1-a67e-4b4337788021_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "378ad6bd-f8b8-4328-bf8c-ec3623b29802", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 381996, + "md5sum": "afaadc8be5549222202c8635c2f8af5d", + "file_id": "c8c2b08e-9b3f-45ed-91ef-cea5a5320e10", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0714-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "1e14f098-17b2-4f54-8e4f-e38088008df7", + "entity_id": "da337502-6fef-45b6-8770-b2f0889cd802" + } + ], + "file_name": "d550140e-346f-41c8-8700-802124a0c8c1.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_395_MirnaExpression32eef713-cb5a-4207-a7dd-f6d2fbd282f6_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "02e9ccfd-eaa6-592b-878b-8a2ffbac6227", + "entity_submitter_id": "TCGA-13-0714-01A-01R-1564-13", + "notes": "RNA-seq:HIGH rRNA CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8830", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "da337502-6fef-45b6-8770-b2f0889cd802", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "0efc8bad-2b7b-5ca8-8f01-f7688b9f38f6", + "entity_submitter_id": "TCGA-13-0714-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29713", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "da337502-6fef-45b6-8770-b2f0889cd802", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0714-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_395_AlignedReads32eef713-cb5a-4207-a7dd-f6d2fbd282f6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 143493532, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "b722b7e6ed756de46f637c5e94bff1fd", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c0280178-0046-4863-9c9e-3c81dd0ca2c2", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_395_MirnaExpressionWorkflowce0b0912-9e97-4a89-85ea-d374ec65cada_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "6eb5eabb-9d65-43e5-9743-d3fee5a706b7", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 214020, + "md5sum": "fb7a96562842dae3df800d94217a8558", + "file_id": "ae272d47-a468-4a01-947f-69fd02582d15", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-2048-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "184aac07-44c1-47f1-8adf-50acbcc1762c", + "entity_id": "d3220bce-1bf3-47c4-951f-937dac7581be" + } + ], + "file_name": "4c832c79-59b4-4678-8cd2-5fa9ef2c4c77.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_481_MirnaExpression97fff76d-12e5-41e6-bfb5-e6dbd8dff7f6_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-2048-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_481_AlignedReads97fff76d-12e5-41e6-bfb5-e6dbd8dff7f6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 171188787, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "f9c1cee12241141566b4596d7c0adb86", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "23d0c979-a6ed-4f01-9657-d257199e2b23", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_481_MirnaExpressionWorkflow335a176c-28c8-4cc0-8321-14343235adbc_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "9867c0ed-0151-4f77-a47f-4929c6f8b3f7", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50397, + "md5sum": "c0d1a362e7e9d4a86509324467a96d71", + "file_id": "846773dd-4b70-44df-9a4d-eef02e349b3b", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-1674-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "1ede8063-e0e9-466d-891c-ac8916f1b5fa", + "entity_id": "3a81f083-56dc-48a5-be8d-b69a146db93b" + } + ], + "file_name": "52329a5e-6d17-4b08-93e1-313d50f678e7.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_221_MirnaExpression402cf496-3790-41e9-93fa-5072c0b25ed5_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-1674-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_221_AlignedReads402cf496-3790-41e9-93fa-5072c0b25ed5", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 165640619, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "5996f1ca433ac68908f2ab45497414c4", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "253ba650-bb5c-4b6e-a925-40fff853af2b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_221_MirnaExpressionWorkflowaf641048-89f6-4503-81dc-959173beae19_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "cb6eb879-87fc-4211-a420-2bf1bcad611a", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 353236, + "md5sum": "a3c46809c5f8c806c2596dee8c6b02de", + "file_id": "b60c1605-333b-4443-8d9b-29fff7232f0e", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1336-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "538acb2a-c4ca-4656-a91c-841a42dbf15f", + "entity_id": "97c7c43d-dff7-4808-848a-2155e3648038" + } + ], + "file_name": "071570c9-cca8-410c-ae31-ec0426622ebf.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_166_MirnaExpression7954b45d-2cf7-41b0-87ec-64d8e395b63c_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1336-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_166_AlignedReads7954b45d-2cf7-41b0-87ec-64d8e395b63c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 95702301, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "af8fa5cb82c56a1d05016d98b024c7cc", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "8ab1a90d-e5e2-46cf-a969-eaf6847d30fa", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_166_MirnaExpressionWorkflowc8cdff11-fef5-4c06-884b-33544af922b6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "35558e7a-9379-46c4-a118-192b4ea7dbca", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50046, + "md5sum": "0d63ceac9fbf2add03bd3329e9d7949f", + "file_id": "7a0c0df9-13bc-4deb-a549-7179ec1e9425", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1367-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "30b8f4cd-9245-4496-a8a8-c3e59093bc0a", + "entity_id": "36daebe6-fafb-4ff7-b1c9-a3fb319816af" + } + ], + "file_name": "449f199a-a808-4e41-aaf8-0bf6960cfda8.mirnaseq.isoforms.quantification.txt", + "submitter_id": "0cf9a6ca-7003-4671-b0c8-ba6d2e7b2bfd", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9872009556458948, + "total_reads": 28517676, + "access": "controlled", + "file_name": "36daebe6-fafb-4ff7-b1c9-a3fb319816af_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004434819, + "proportion_reads_duplicated": 0, + "submitter_id": "bd3d6cd1-91f4-4f5d-8d1b-571e5bb07cc5", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 482570021, + "created_datetime": "2024-09-20T11:12:37.327113-05:00", + "average_base_quality": 36, + "md5sum": "5268c6c05ff9f694ef60f522ba305559", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "1f5fe2d0-32ef-4c56-9203-1d4e8eb50437", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 33, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "449f199a-a808-4e41-aaf8-0bf6960cfda8_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "330e70be-ef6d-4f18-be42-13cf3384bd66", + "created_datetime": "2024-09-20T11:17:20.134385-05:00" + }, + "file_size": 642553, + "md5sum": "2673123015786a51ea6911c7afcb62b7", + "file_id": "5436b13d-f2a4-46f9-91a6-c73ad090a05a", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1367-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "30b8f4cd-9245-4496-a8a8-c3e59093bc0a", + "entity_id": "5c2da578-9d5d-40df-993f-38d9dc5d5f00" + } + ], + "file_name": "faa20bec-80db-4b29-b9da-4c519c53f85e.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_403_MirnaExpression86a6abf1-f6f4-432e-b3ae-aa8e22859060_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1367-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_403_AlignedReads86a6abf1-f6f4-432e-b3ae-aa8e22859060", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 162349957, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "55093ba5857224ca80c64fd095e570af", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6860eba7-4827-4b8c-9122-74b7228ee6fc", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_403_MirnaExpressionWorkflowe05d5ab3-1b57-4923-a76a-6033c7020c5d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0116d7cf-5f89-4861-9753-1ac4eea4e01b", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50338, + "md5sum": "8e6276d77654d56c93027d5e38d012a9", + "file_id": "b89d1bb6-37e3-4c1c-9059-68f3089d01c1", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1910-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "75f2d97a-b96c-403f-8055-5c5c8083e856", + "entity_id": "65e4e40b-f27f-4b84-9979-af659564363d" + } + ], + "file_name": "d5168c61-99c5-4a24-aae4-7216050d8bee.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_343_MirnaExpressiona86fa57e-d2a8-4161-b511-f2440b39e62d_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1910-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_343_AlignedReadsa86fa57e-d2a8-4161-b511-f2440b39e62d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 428756163, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "42b01a7dedc0d82c6dcd6ef867c14766", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "20bae5a5-07a7-49f3-9177-786999f3ee53", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_343_MirnaExpressionWorkflowdf9ea53f-58b3-4061-8846-10418e93bc68_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d043d41f-d31e-4ad8-a767-b8bf358a56e2", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50322, + "md5sum": "9e403ce1a202448e75ef85297ab20ce1", + "file_id": "6627c74c-9f5e-4fca-ba6d-69d138b342cc", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-10-0934-01A-02R-1564-13", + "entity_type": "aliquot", + "case_id": "65ddccd2-70a7-48b3-88e1-9d6fd1dcd11b", + "entity_id": "5b759ce4-2632-4d85-89fe-30a85069e9a8" + } + ], + "file_name": "5725c705-7bc6-4571-aba0-e8ffb4935ba8.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_93_MirnaExpressionfbff9703-8fed-4e60-9ee8-560d28d06cde_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-10-0934-01A-02R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29710", + "classification": "CenterNotification", + "entity_id": "5b759ce4-2632-4d85-89fe-30a85069e9a8", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "040686a4-87c3-55c9-bc68-2edc55090bf3", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "case_id": "65ddccd2-70a7-48b3-88e1-9d6fd1dcd11b", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-10-0934" + }, + { + "entity_submitter_id": "TCGA-10-0934-01A-02R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "submitter_id": "8755", + "classification": "CenterNotification", + "entity_id": "5b759ce4-2632-4d85-89fe-30a85069e9a8", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "459ab6a6-849e-5da2-ba03-aa64af6591b1", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "65ddccd2-70a7-48b3-88e1-9d6fd1dcd11b", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-10-0934" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-10-0934-01A-02R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_93_AlignedReadsfbff9703-8fed-4e60-9ee8-560d28d06cde", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 107654543, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "9d18846dd874531a7480593d8f17f4e6", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a4db203d-b8b1-4a95-a03b-298fd1c07225", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_93_MirnaExpressionWorkflow00c95ad6-0c45-4640-9aaa-8209cae9b6c2_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b06d52ca-616a-457c-b8ca-4f08e16cc521", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 222241, + "md5sum": "cb2d042c75f563b2ea4b0ef979b5bd74", + "file_id": "b9fed702-0a99-4a33-9081-bbea64b6f350", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-10-0934-01A-02R-1564-13", + "entity_type": "aliquot", + "case_id": "65ddccd2-70a7-48b3-88e1-9d6fd1dcd11b", + "entity_id": "5b759ce4-2632-4d85-89fe-30a85069e9a8" + } + ], + "file_name": "5725c705-7bc6-4571-aba0-e8ffb4935ba8.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_93_MirnaExpressionfbff9703-8fed-4e60-9ee8-560d28d06cde_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-10-0934-01A-02R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29710", + "classification": "CenterNotification", + "entity_id": "5b759ce4-2632-4d85-89fe-30a85069e9a8", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "040686a4-87c3-55c9-bc68-2edc55090bf3", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "case_id": "65ddccd2-70a7-48b3-88e1-9d6fd1dcd11b", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-10-0934" + }, + { + "entity_submitter_id": "TCGA-10-0934-01A-02R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "submitter_id": "8755", + "classification": "CenterNotification", + "entity_id": "5b759ce4-2632-4d85-89fe-30a85069e9a8", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "459ab6a6-849e-5da2-ba03-aa64af6591b1", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "65ddccd2-70a7-48b3-88e1-9d6fd1dcd11b", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-10-0934" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-10-0934-01A-02R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_93_AlignedReadsfbff9703-8fed-4e60-9ee8-560d28d06cde", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 107654543, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "9d18846dd874531a7480593d8f17f4e6", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a4db203d-b8b1-4a95-a03b-298fd1c07225", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_93_MirnaExpressionWorkflow00c95ad6-0c45-4640-9aaa-8209cae9b6c2_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b06d52ca-616a-457c-b8ca-4f08e16cc521", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50053, + "md5sum": "f34cafee2c58e8b854846d4099e91c13", + "file_id": "dada6e5e-a52e-4619-b520-d92b419832dd", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0793-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "5e90e1ed-cbfd-44ba-a6ff-63ff576b3c73", + "entity_id": "a0114f47-7f03-4594-acb3-48f3a7081759" + } + ], + "file_name": "a60c51fa-f8e8-4fb5-8f14-c678dbc8de0d.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_264_MirnaExpressionf784561c-45be-4dac-9af9-648bdaa02730_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0793-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_264_AlignedReadsf784561c-45be-4dac-9af9-648bdaa02730", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 132282625, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "f0b5316acd765f858f11b59e43ea8180", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "1605fdca-54f4-490a-88ec-58f3fb6dc902", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_264_MirnaExpressionWorkflow37130c86-adb4-45e9-ae5e-5d2aa223e95c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "bee5dcc0-b1fc-4bc0-b6f8-aaa4f17c01ed", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 275509, + "md5sum": "dd1cdc19a42195a52fb26f6a4f23f9f8", + "file_id": "ee2f5e64-4f27-47ad-98d6-fef474787b60", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0793-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "5e90e1ed-cbfd-44ba-a6ff-63ff576b3c73", + "entity_id": "b85b22ff-3d9e-4e05-8186-9e5cf2bd5fbf" + } + ], + "file_name": "005f1d2c-c079-4ce0-8d91-ddc8799a3b50.mirnaseq.mirnas.quantification.txt", + "submitter_id": "834d8e0c-d529-47a8-8195-e877cb9b4cdb", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9846218800454026, + "total_reads": 21323868, + "access": "controlled", + "file_name": "b85b22ff-3d9e-4e05-8186-9e5cf2bd5fbf_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004014661, + "proportion_reads_duplicated": 0, + "submitter_id": "032c1679-f907-4225-a7a4-8e1341fd3dbe", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 442611287, + "created_datetime": "2024-09-20T11:14:08.328846-05:00", + "average_base_quality": 36, + "md5sum": "a5b49e512bea4525492301f7b34c4fd9", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "0edefdb2-408d-4e48-ae8d-9aed9d5c2dcb", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 30, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "005f1d2c-c079-4ce0-8d91-ddc8799a3b50_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "34547c9a-a5e3-46e8-86e8-518475b37d89", + "created_datetime": "2024-09-20T11:17:35.269902-05:00" + }, + "file_size": 50761, + "md5sum": "f8c625ceaf6d6869ac440c96cce602dd", + "file_id": "d0ae2847-25c7-470f-b2c6-fe96f6b73145", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-0365-01A-02R-A96S-41", + "entity_type": "aliquot", + "case_id": "7621ed77-98bc-4b4e-8011-e18fcd014071", + "entity_id": "082ee901-86be-4dd1-921c-0dd79d0e43f0" + } + ], + "file_name": "856f2c41-9a3c-4b2d-a1cf-20579979dbf9.mirnaseq.mirnas.quantification.txt", + "submitter_id": "0bbd074c-85fb-4091-a116-c0fb86f0493b", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9919099436822444, + "total_reads": 32711886, + "access": "controlled", + "file_name": "082ee901-86be-4dd1-921c-0dd79d0e43f0_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004247292, + "proportion_reads_duplicated": 0, + "submitter_id": "0fba1e04-ecd2-4da7-81fa-525ceea5da79", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 499726000, + "created_datetime": "2024-09-20T11:13:47.380288-05:00", + "average_base_quality": 36, + "md5sum": "fb4ed1aa6972b2f95afa4669e580a701", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "c795e90c-1cad-49cd-af7c-eef1c8e23cf3", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 34, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "856f2c41-9a3c-4b2d-a1cf-20579979dbf9_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "198f03ed-c246-4813-8356-7eb0bcf5080c", + "created_datetime": "2024-09-20T11:17:25.757345-05:00" + }, + "file_size": 50725, + "md5sum": "775e15a5684b91065e11aeaea48043db", + "file_id": "8b730ca7-2fb1-4962-86a4-dd30e826ecbd", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1555-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "5d36676e-4140-44b5-aa0e-b2af092b7dc0", + "entity_id": "0ec7ea28-7bd4-45c3-b03c-d855014fa4f4" + } + ], + "file_name": "56e8be89-3bac-486b-af0b-36815b9421a5.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_282_MirnaExpressionf7f960f3-cecb-4064-92a0-219c4942c1c6_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1555-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_282_AlignedReadsf7f960f3-cecb-4064-92a0-219c4942c1c6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 114815136, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "7142cb1379261b430cf544804684b2aa", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "5636dcf1-d3e2-4de9-a966-0a6160869a86", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_282_MirnaExpressionWorkflowddac9750-07c9-424e-9367-2142d0a8ea05_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a28a7e9e-0bc3-4620-b613-fef40a81a9d6", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50244, + "md5sum": "e4a47a6f2f0f8ad06ed711b52a4121e0", + "file_id": "a82a0343-34f0-4c4b-abb3-4c52fd08379a", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0897-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "79e6e31c-22a1-481c-903b-ab5499cbd450", + "entity_id": "479b74bf-5003-45e1-9505-687146a5fc45" + } + ], + "file_name": "6a4e771b-aa65-4918-9ad2-18f7250b3f17.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_98_MirnaExpression8c8bf4bd-8e8a-4125-b7d1-858cd17605fc_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0897-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_98_AlignedReads8c8bf4bd-8e8a-4125-b7d1-858cd17605fc", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 90087430, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "cd1f4173ef54e982ea266cb1ccc642f7", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "0d58abc5-7e35-471a-bc53-af814c605c62", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_98_MirnaExpressionWorkflow400d4691-8863-4a11-b489-07d05eb6ccbb_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1e25244e-8a55-42b0-b662-f31931b35df8", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50166, + "md5sum": "582e9083c5bace1565f88d022917326c", + "file_id": "77404ef1-6583-4207-ac61-af267f402a34", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0802-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "3c8b5986-f9d5-4e7e-9dd4-3ad301451279", + "entity_id": "1541f858-d32b-4b6f-a73e-28c44cf1bb3d" + } + ], + "file_name": "f07893c5-c0b6-48fb-ab88-01adb7b7234a.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_321_MirnaExpression2127aa9e-7f31-4947-9ca7-2ef6256c37cb_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0802-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_321_AlignedReads2127aa9e-7f31-4947-9ca7-2ef6256c37cb", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 167487169, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "a0a918f888eac3ec7eea2d4c86284b5d", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "050acfd9-5e9f-4934-92cf-75363d0a1865", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_321_MirnaExpressionWorkflow9038add6-5343-460e-9adb-c927f2f840fd_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1977a8d9-3f90-4209-8556-98bbca4daf4a", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50078, + "md5sum": "d04c655df8e6cdd5d95489add6e6da2b", + "file_id": "34c27265-f900-4a66-97f4-655eccbd85ba", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-1672-01A-01R-A96S-41", + "entity_type": "aliquot", + "case_id": "66dc6379-a98b-498f-8109-e3a811d043ea", + "entity_id": "8d9c6b9e-bd7a-4c0b-a251-09fcbe7577c6" + } + ], + "file_name": "2ba533ca-0293-46e0-adfb-0d3653d98842.mirnaseq.isoforms.quantification.txt", + "submitter_id": "629c4d47-00a4-4e48-bda0-bed3ef710735", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9858730500138773, + "total_reads": 25617490, + "access": "controlled", + "file_name": "8d9c6b9e-bd7a-4c0b-a251-09fcbe7577c6_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004832922, + "proportion_reads_duplicated": 0, + "submitter_id": "aeb38ecf-2685-4367-8be4-7039d1439329", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 419997720, + "created_datetime": "2024-09-20T11:13:28.328850-05:00", + "average_base_quality": 36, + "md5sum": "f0444ce9a28a5a0a11dd8beb9232e02a", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "7c76f7c4-2f3e-403c-93bd-b800117b9043", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 37, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "2ba533ca-0293-46e0-adfb-0d3653d98842_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "18f55b99-768f-4094-8a19-e4a3e02f1074", + "created_datetime": "2024-09-20T11:17:41.867336-05:00" + }, + "file_size": 572888, + "md5sum": "962ab6e426cfd09806baa341429d4dc6", + "file_id": "b00def36-a231-4b3e-8832-2135c4d8742f", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1370-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "7e6cdbc7-26a7-44f2-96fa-094738cbccae", + "entity_id": "1c0bc958-fd10-48eb-81dd-52683aeca9a6" + } + ], + "file_name": "e1dffaed-4b9a-4262-9a95-b6cdb08712bc.mirnaseq.isoforms.quantification.txt", + "submitter_id": "9ad541ee-5cbc-4026-8853-6a003e428305", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9849747796654712, + "total_reads": 20639298, + "access": "controlled", + "file_name": "1c0bc958-fd10-48eb-81dd-52683aeca9a6_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004949254, + "proportion_reads_duplicated": 0, + "submitter_id": "7c8310f7-dd7c-48fe-a940-fbb34c9b72ab", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 356317048, + "created_datetime": "2024-09-20T11:13:03.518646-05:00", + "average_base_quality": 36, + "md5sum": "2353a2a63d2fdc4b61037522203eac20", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "f438c206-b592-420e-8cc2-132689319a95", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "e1dffaed-4b9a-4262-9a95-b6cdb08712bc_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "6418630b-0762-4067-a3f0-f1c2a49941a3", + "created_datetime": "2024-09-20T11:17:12.584389-05:00" + }, + "file_size": 408552, + "md5sum": "41847dc08b5874dca93594bcb8e140da", + "file_id": "a401f421-a4ec-4cc2-8aa9-563cc7191b43", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0888-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "6cf9f872-2e59-45cf-bb5e-ebd7fa1b3caf", + "entity_id": "b6ee33d9-26fc-491a-90af-25f3da976da0" + } + ], + "file_name": "a6c488e2-db0c-4c9d-8e18-c82dcf62b840.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_327_MirnaExpressionf043e56d-27ee-4550-b43a-6d28a0932147_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-0888-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "submitter_id": "8837", + "classification": "CenterNotification", + "entity_id": "b6ee33d9-26fc-491a-90af-25f3da976da0", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "3d74403b-8936-5222-b2a5-58b0161ae2c2", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "6cf9f872-2e59-45cf-bb5e-ebd7fa1b3caf", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-13-0888" + }, + { + "entity_submitter_id": "TCGA-13-0888-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29731", + "classification": "CenterNotification", + "entity_id": "b6ee33d9-26fc-491a-90af-25f3da976da0", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "41e91ff5-c707-55d7-b7e0-daa35551b661", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "6cf9f872-2e59-45cf-bb5e-ebd7fa1b3caf", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-13-0888" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0888-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_327_AlignedReadsf043e56d-27ee-4550-b43a-6d28a0932147", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 90724674, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "b1c6ca092fffae39280c56eb1f365126", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "acc51d01-1ad8-4808-bc17-db1d860aa82b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_327_MirnaExpressionWorkflowb6059ac0-4152-4495-80b2-1d6c8ea66422_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e87a67d9-e194-43b2-aaac-7a2979296b8d", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 260939, + "md5sum": "d77860adce8cbbdc90789ebb9f7ce16c", + "file_id": "6170bc6b-a626-44c4-8002-6db41ef35582", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1413-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "3fc8f799-5bd3-4f48-baf0-c458ce86ab7e", + "entity_id": "545867ef-1299-410d-bbbf-d6c189344b0f" + } + ], + "file_name": "68f56d7b-9f53-4900-ba63-52c8f9ed90fd.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_179_MirnaExpressionf4287368-646c-4ff0-8f30-0fd354475aa5_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1413-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_179_AlignedReadsf4287368-646c-4ff0-8f30-0fd354475aa5", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 188170397, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "8fd2c393ddc2850e83241c8594819968", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "590c948a-4a9d-4c12-9b1c-c11f1d4a1001", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_179_MirnaExpressionWorkflowfef01be8-ad74-40eb-b349-7f3b4ef41269_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "933a723f-b2cd-46a5-b16a-5f43c8778cc9", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50330, + "md5sum": "9c4e2ac2827edbbb9504db9e301c7546", + "file_id": "99da515b-a969-43d9-905d-d7d47c7a37ff", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1331-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "6d10d4ee-6331-4bba-93bc-a7b64cc0b22a", + "entity_id": "7fbfdb3e-1fd2-4206-8d2e-7f68e4a15844" + } + ], + "file_name": "a1490a33-ffdd-4f46-9d06-aec6039568b4.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_239_MirnaExpressionc65d45c6-89ba-4d07-a3cf-4a6270a38823_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "7ea0234d-3825-5f43-b353-61a5eeaedb24", + "entity_submitter_id": "TCGA-04-1331-01A-01R-1569-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8850", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "7fbfdb3e-1fd2-4206-8d2e-7f68e4a15844", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "a9ff26e4-b2bd-5b3c-9d33-e82dab196472", + "entity_submitter_id": "TCGA-04-1331-01A-01R-1569-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29686", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "7fbfdb3e-1fd2-4206-8d2e-7f68e4a15844", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1331-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_239_AlignedReadsc65d45c6-89ba-4d07-a3cf-4a6270a38823", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 188115803, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "a545ca20df8969a6fb3e66b8b023ce17", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a9e28445-bade-409c-b43a-1b2e2565d3ee", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_239_MirnaExpressionWorkflow63c16fae-b668-4a75-9ca1-5d4efdb00ef8_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "53863be5-cb02-4385-9512-40741cd1720b", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 368742, + "md5sum": "d39a4e0d8ade89d60db7777ebb74bbda", + "file_id": "47c07434-a346-49c7-a695-172e6e053b58", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1328-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "79fd602b-3e8e-4353-aa78-4f5f170b607d", + "entity_id": "9ba8d6bf-1541-4127-bc60-73091d2d81c7" + } + ], + "file_name": "fe6dae2d-81ee-4b3c-abf4-0b0756f3fe07.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_205_MirnaExpressionce6dbcb2-5913-4a63-8177-89176f2ba8f6_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1328-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_205_AlignedReadsce6dbcb2-5913-4a63-8177-89176f2ba8f6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 169025859, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "7f5b40f0003fbfd56bdadcfe787fc80b", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "86eb2c7d-13c1-4e8b-ba9d-c88e25209c22", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_205_MirnaExpressionWorkflowab613c3f-3b31-4f2b-8122-c6c08c78863c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "057e1842-b69b-48a9-a86e-df367663cf73", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50231, + "md5sum": "63a43de5ae41cd7f67c7c5bb2e903c29", + "file_id": "0fb59aa7-14eb-4574-933c-39d4ed004b10", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1328-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "79fd602b-3e8e-4353-aa78-4f5f170b607d", + "entity_id": "9ba8d6bf-1541-4127-bc60-73091d2d81c7" + } + ], + "file_name": "fe6dae2d-81ee-4b3c-abf4-0b0756f3fe07.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_205_MirnaExpressionce6dbcb2-5913-4a63-8177-89176f2ba8f6_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1328-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_205_AlignedReadsce6dbcb2-5913-4a63-8177-89176f2ba8f6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 169025859, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "7f5b40f0003fbfd56bdadcfe787fc80b", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "86eb2c7d-13c1-4e8b-ba9d-c88e25209c22", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_205_MirnaExpressionWorkflowab613c3f-3b31-4f2b-8122-c6c08c78863c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "057e1842-b69b-48a9-a86e-df367663cf73", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 329101, + "md5sum": "433d0958780f5cf366e911ca228bad36", + "file_id": "2557449f-e123-451e-8407-2dca2feddbd2", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1113-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "6209e80d-a115-4f8e-bf0d-18461401a1c6", + "entity_id": "88656b94-cd24-4c4c-b625-635ef692cf13" + } + ], + "file_name": "c714e40e-9084-495a-ab7d-a262c878bcfd.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_386_MirnaExpression28535c56-4a51-4d7c-a014-b2d00ca46502_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "5c5aab21-eda9-5d5d-97f7-7914d1caa379", + "entity_submitter_id": "TCGA-23-1113-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29771", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "88656b94-cd24-4c4c-b625-635ef692cf13", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "f2cc30ad-5e30-5c44-af7b-4f1d5564091e", + "entity_submitter_id": "TCGA-23-1113-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8767", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "88656b94-cd24-4c4c-b625-635ef692cf13", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1113-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_386_AlignedReads28535c56-4a51-4d7c-a014-b2d00ca46502", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 215600096, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "31e6e63878ba0197af1a525899dd96a7", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "08be6ad6-b058-42a7-a9bd-b5f81a5dae79", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_386_MirnaExpressionWorkflow6ed0add6-abd9-48fd-97c9-420485c0d8bd_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "fda3e912-a991-4e47-9150-9f2966c6be64", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 277851, + "md5sum": "18541df38781c6a6a8ec155af1b89acd", + "file_id": "94f18372-e14b-47c7-9b10-f0cac932a5dd", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1631-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "6a1be87b-c4e0-4fd4-b050-50a245b22038", + "entity_id": "29c4cab9-c19e-4416-ad88-484cc02a980f" + } + ], + "file_name": "e45dfc8a-c255-4b54-8f25-bab9306ea813.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_293_MirnaExpression5cdbdccc-f9a0-421f-83e7-6294ffa91d68_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1631-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_293_AlignedReads5cdbdccc-f9a0-421f-83e7-6294ffa91d68", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 142988549, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "07ce09deaf56298d737737517ab457ff", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4d6df5b0-e0dd-44a9-a00e-0973d2cb658f", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_293_MirnaExpressionWorkflow630fe7ee-ddda-404a-b9ac-e286b08c9ed9_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "aedd6970-0ad2-47db-8d0b-383084a365d2", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 340298, + "md5sum": "af4a4c13458138563d24b5a20ac5e6a4", + "file_id": "d242dcd3-50a7-48ee-97a4-7d16c556eb8a", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2033-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "872d2922-7292-4681-adb7-d3b267eccbe7", + "entity_id": "b03b75e2-d1d0-4fd7-b66e-891f7b0acb76" + } + ], + "file_name": "35f29152-33a6-4861-9356-9d7430275a5d.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_213_MirnaExpressionf563294f-25f7-4961-80c1-c1c99c21d30b_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2033-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_213_AlignedReadsf563294f-25f7-4961-80c1-c1c99c21d30b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 140531786, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "3c29709c725d9eba2399254a78befbb3", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "baea9a70-9db5-4bf8-b21b-c3d4abdab3f2", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_213_MirnaExpressionWorkflowb4271fff-eb9c-41db-8367-6d007cca4d2c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b8832fa0-da63-4b7a-98c8-3449f3d802b8", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 352142, + "md5sum": "630a52c4e1637e67f701f639ffed3c5f", + "file_id": "eb072ae3-48d1-4ca6-869a-3f9f6c7f7aa8", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1436-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "6e84e89d-4f35-43b8-b47d-b1343b8c1ab9", + "entity_id": "45ff767a-721a-4d89-b5e9-0c6e7eba476d" + } + ], + "file_name": "fbf1cb50-a917-4e0b-9e28-1ebc48827a17.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_134_MirnaExpressionf07271a2-01d2-434e-8542-195568f000b5_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1436-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_134_AlignedReadsf07271a2-01d2-434e-8542-195568f000b5", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 155313877, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "9e9938542bd76d83d17d090b0481bc63", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "fc596320-95c5-4241-93b8-418a68f7db0f", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_134_MirnaExpressionWorkflow62e962e4-f16d-4814-bdda-f8d1c9b5a054_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "015ae24e-613d-4eef-9bbd-a125719302c1", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50287, + "md5sum": "ff8f3f15d7faab83f79f6e64d279c20a", + "file_id": "2f9f7ad9-27fe-43f7-8a18-149c0398ee78", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1690-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "6b06281b-d3a9-440e-a86c-ee7db003352a", + "entity_id": "d78906d7-c8f2-4bf0-86cc-2b60b067aaa6" + } + ], + "file_name": "bc282b33-4b39-49d1-90d3-7d74d9eb2119.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_441_MirnaExpression27eac34d-7503-4caa-9ff6-bc2c7e7784b4_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1690-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_441_AlignedReads27eac34d-7503-4caa-9ff6-bc2c7e7784b4", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 89084232, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "25eb0ea306a91ae43685ebd56957fedb", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4ccc7c9c-b58f-4c4d-8400-d8b5a2d231a4", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_441_MirnaExpressionWorkflow2a95e644-f7ec-4ae2-9e23-6ea8868dc9b1_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c538110b-108d-4bcc-a494-596b73635b5b", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 258112, + "md5sum": "9747f51e805a1504b9b921ce4b50d8c6", + "file_id": "537ccf42-746c-45fc-8951-6673541e567d", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0903-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "8783e4b0-2b62-45d5-8cd9-f5a71cc0138e", + "entity_id": "630ab01b-d8c9-477d-a0d0-39d98773a583" + } + ], + "file_name": "e43d7956-8e86-4098-ac19-f956f6a0efc7.mirnaseq.mirnas.quantification.txt", + "submitter_id": "7cc458d2-02f7-4bf9-beaa-f63bf66b9d68", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.990084720107913, + "total_reads": 19839682, + "access": "controlled", + "file_name": "630ab01b-d8c9-477d-a0d0-39d98773a583_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003929033, + "proportion_reads_duplicated": 0, + "submitter_id": "f8911f68-a503-4d36-bca9-27b6bcd83a7b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 361104451, + "created_datetime": "2024-09-20T11:14:18.117132-05:00", + "average_base_quality": 36, + "md5sum": "b7219fcbc0a51f6e8f827136ee6e4568", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "b3be8bc1-0a5b-42b5-be9e-4a27c9c021cf", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 32, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "e43d7956-8e86-4098-ac19-f956f6a0efc7_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5d06b895-edfe-45cf-a88c-2cd880c66355", + "created_datetime": "2024-09-20T11:17:31.139241-05:00" + }, + "file_size": 50707, + "md5sum": "9c9a0caff154e1bbb684a263e9ba71ea", + "file_id": "9b417051-5090-4a61-bd1a-afe27272ea91", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1901-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "7a75d318-b301-4f77-a97f-4d6784d27216", + "entity_id": "c09d4397-2ada-4990-a1ff-2aa161728d60" + } + ], + "file_name": "f1847183-2dd6-4047-8a21-32ba9bf93ad3.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_258_MirnaExpressiondabb724a-1011-44b9-a506-a9fc052885b7_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1901-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_258_AlignedReadsdabb724a-1011-44b9-a506-a9fc052885b7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 129199284, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "f37309201665545facd716cd1268bffa", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "f6f5f9e7-fb5f-4161-96ed-983b7f6a9c71", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_258_MirnaExpressionWorkflowb1bb6dd1-7e52-4435-b563-765743998d34_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e71b67df-9286-4ea8-868f-355bdff21d15", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 275683, + "md5sum": "e7068e33c103b583724af7656e67fd11", + "file_id": "1539ddf2-78cb-4830-9f8d-475fde951ef9", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1930-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "62efb5ae-43dc-4a4c-a898-6cd9c6dba027", + "entity_id": "d85ca8ac-9458-4f3a-b2ef-db4df852f75e" + } + ], + "file_name": "f7506126-0f7a-4d12-b6bd-62c4f2f44d4c.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_376_MirnaExpressionc8dcda06-df66-4d9b-b217-d17652772387_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1930-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_376_AlignedReadsc8dcda06-df66-4d9b-b217-d17652772387", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 180778924, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "4450bf136c7039e5219cd8dabf28a44f", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "d22fca56-091b-4ac2-940a-26443f9ceffc", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_376_MirnaExpressionWorkflowf98ecb30-6304-42c1-851f-49da1168f5a0_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "963e31f7-56d9-47c3-90f7-e5d83206256b", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 349581, + "md5sum": "c865e2e21010ef7300d45e2be6bf7e42", + "file_id": "8db20540-1a2e-465f-8400-46ae4c65c7f9", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2110-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "88180134-710f-46ea-9b06-5e5d860d6d9f", + "entity_id": "6561cdb8-8499-41a6-8a79-ef0119e34c66" + } + ], + "file_name": "275d247a-f015-43c8-aff3-aebff9c36816.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_450_MirnaExpressionab100cb2-4f9b-4d01-9e53-b0b3effbdd0a_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2110-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_450_AlignedReadsab100cb2-4f9b-4d01-9e53-b0b3effbdd0a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 183321157, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "7884706fd2136740dde19857d9394ae5", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "9d8de54f-842e-4424-b150-8a5ba1524081", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_450_MirnaExpressionWorkflowe6dff4fa-fe5d-4eb7-a4c9-593263d25143_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2e26f7d3-867b-49f3-b1f1-cf762270ef67", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 346010, + "md5sum": "2884e1d425e5d35b8e41fe1e735ba891", + "file_id": "dd561a3a-a6bf-4922-8981-c469aef9349b", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-10-0936-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "7016714b-6af8-45dd-8341-1493927e5515", + "entity_id": "04112b9c-6ef4-49cd-bed8-43151b5bbe1f" + } + ], + "file_name": "94c2c3f9-563f-4254-806f-4443c17a9859.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_138_MirnaExpression884a1a07-fa0c-4026-821e-b907960259fc_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-10-0936-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_138_AlignedReads884a1a07-fa0c-4026-821e-b907960259fc", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 280182186, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "75a580b23b5f0e5132c1089d9ae1aac7", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b2dc6e48-bdf4-4f20-9750-c68d8be7a324", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_138_MirnaExpressionWorkflowb34393f9-62b5-4eed-94c0-03ec10e60eda_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "fe0a88aa-3fd6-4a30-b304-629a69895153", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 450454, + "md5sum": "91b512ea51606f72acfc28af3ff10ba4", + "file_id": "fbeb83a1-e8d9-4a81-99b5-44fcd1479924", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2111-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "91a17d40-c8cb-4cce-b306-966382a8fe4a", + "entity_id": "25c0888a-25b9-4cc0-a02f-6d363a341e8f" + } + ], + "file_name": "cd3c7eb0-1dcc-4199-82fd-385139002a1e.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_236_MirnaExpression370cbe67-1365-44f0-b899-bdd313fa6b42_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2111-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_236_AlignedReads370cbe67-1365-44f0-b899-bdd313fa6b42", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 349384846, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "1b78adad74a6fee446add54172a36dda", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6788cee0-772d-4f6d-8f54-c64d620b70cd", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_236_MirnaExpressionWorkflowcda9f961-b303-4b27-9238-3a3c4b215819_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "83f8ed85-4a08-49ca-bc6c-3444cb25bc73", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 494507, + "md5sum": "172c02054b3891b66c78ee55c2e7f969", + "file_id": "927db998-2f6a-4a2a-9bbf-927e0f30e279", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-10-0936-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "7016714b-6af8-45dd-8341-1493927e5515", + "entity_id": "04112b9c-6ef4-49cd-bed8-43151b5bbe1f" + } + ], + "file_name": "94c2c3f9-563f-4254-806f-4443c17a9859.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_138_MirnaExpression884a1a07-fa0c-4026-821e-b907960259fc_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-10-0936-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_138_AlignedReads884a1a07-fa0c-4026-821e-b907960259fc", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 280182186, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "75a580b23b5f0e5132c1089d9ae1aac7", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b2dc6e48-bdf4-4f20-9750-c68d8be7a324", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_138_MirnaExpressionWorkflowb34393f9-62b5-4eed-94c0-03ec10e60eda_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "fe0a88aa-3fd6-4a30-b304-629a69895153", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50448, + "md5sum": "69fc27ba0edb257740ab64e57ec3b6c4", + "file_id": "838db6e0-d752-4da2-9560-be6b6ae557c9", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1771-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "7b042fb2-8f53-4fb1-8a44-40cd2128b279", + "entity_id": "7b532026-5673-460b-9063-f281c7a78c0a" + } + ], + "file_name": "f324ea0f-a334-45a2-9354-a1161b9376fa.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_210_MirnaExpression81033ce7-3b18-4611-b4df-c7e95b17a2a6_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1771-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_210_AlignedReads81033ce7-3b18-4611-b4df-c7e95b17a2a6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 125562844, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "3fef2e3b55b02703621bd6dda8fa2a47", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5a3a991a-d68f-49f5-8c07-8b999a84c369", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_210_MirnaExpressionWorkflow493ceef5-d7f6-48d4-ac93-335594a352f0_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "47f46ab8-f555-4bf6-a4a6-9bb45fa4d9cb", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 305853, + "md5sum": "a3d1afcff81c6484a0f6f12e87136e4f", + "file_id": "5522a69e-5307-42b2-a5f6-1c7ccb8b7aca", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1771-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "7b042fb2-8f53-4fb1-8a44-40cd2128b279", + "entity_id": "7b532026-5673-460b-9063-f281c7a78c0a" + } + ], + "file_name": "f324ea0f-a334-45a2-9354-a1161b9376fa.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_210_MirnaExpression81033ce7-3b18-4611-b4df-c7e95b17a2a6_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1771-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_210_AlignedReads81033ce7-3b18-4611-b4df-c7e95b17a2a6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 125562844, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "3fef2e3b55b02703621bd6dda8fa2a47", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5a3a991a-d68f-49f5-8c07-8b999a84c369", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_210_MirnaExpressionWorkflow493ceef5-d7f6-48d4-ac93-335594a352f0_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "47f46ab8-f555-4bf6-a4a6-9bb45fa4d9cb", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50211, + "md5sum": "2d418507f9ecc19bbc3a72a1d6808085", + "file_id": "4949acfd-9d27-42c9-894c-ae8d77834e2f", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1511-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "756f6768-e69a-4fe9-aa41-7c58aabe4577", + "entity_id": "ccd83080-7a51-4952-b4af-d13e9c182bc0" + } + ], + "file_name": "5f2fa5de-453d-4650-aee6-8b1d87feddb7.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_28_MirnaExpression849af8b5-fccc-4605-ae94-844744296570_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1511-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_28_AlignedReads849af8b5-fccc-4605-ae94-844744296570", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 216225202, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "5d86e121e4c1feef170e0b7785631a7d", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4a59b819-061f-476b-b7f4-9c61114fe261", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_28_MirnaExpressionWorkflow61de903d-7070-4d8f-aff0-19d8f268bb87_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "07758c59-ad0d-4136-9b58-2dfbb6d5ebf9", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50295, + "md5sum": "dd10cf11c976e11263a61a4e6b196334", + "file_id": "4cceafee-f979-4303-9175-d58ecb09b774", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-10-0938-01A-02R-1564-13", + "entity_type": "aliquot", + "case_id": "7ca97692-0bf5-4bbd-81ce-10a051d04bd5", + "entity_id": "f7b5774e-bfb3-4e6d-8a24-009f3c294109" + } + ], + "file_name": "3b523d31-7ec4-43d8-8a0c-7438293431d2.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_85_MirnaExpressionc1294078-e3cf-473b-96e6-f18ddff98322_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-10-0938-01A-02R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "submitter_id": "8770", + "classification": "CenterNotification", + "entity_id": "f7b5774e-bfb3-4e6d-8a24-009f3c294109", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "19cab1bd-47e2-56a9-b58b-6094d0352ac2", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "7ca97692-0bf5-4bbd-81ce-10a051d04bd5", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-10-0938" + }, + { + "entity_submitter_id": "TCGA-10-0938-01A-02R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29712", + "classification": "CenterNotification", + "entity_id": "f7b5774e-bfb3-4e6d-8a24-009f3c294109", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "73d18873-5c3c-53f4-8489-df4eb4c150c8", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "7ca97692-0bf5-4bbd-81ce-10a051d04bd5", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-10-0938" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-10-0938-01A-02R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_85_AlignedReadsc1294078-e3cf-473b-96e6-f18ddff98322", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 173145344, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "c7cf5391f022973da9cc7240c52e2559", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "f511d7cb-0e35-405f-bc32-d49ed99f5115", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_85_MirnaExpressionWorkflow4de5d33d-bd41-4f09-8d5f-33443eadb91d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "16f4328f-f922-4431-8c19-72a688ae0760", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 370933, + "md5sum": "0ddfc05fae1a76a126dab0df1d4df42f", + "file_id": "cdb453f7-930e-42e0-9772-2a390eba1014", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-30-1856-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "91a6f311-c758-4e40-9abb-cc0f6584b9c9", + "entity_id": "8da2bf5c-aa6e-4ba2-ada8-27736dff711c" + } + ], + "file_name": "2a432355-6a89-4f03-934d-de0c6a8ed907.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_90_MirnaExpression0e183ba9-44bf-42a6-abea-847b194a5e32_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-30-1856-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_90_AlignedReads0e183ba9-44bf-42a6-abea-847b194a5e32", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 161553590, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "4034fa6c85e22f4c007bffbc1c293ed1", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6a5a4e93-6d3d-4fa3-90bd-f97e30b87554", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_90_MirnaExpressionWorkflowae86a981-cbe4-4417-b70d-ecdcdabeb21b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "316e6867-a719-461b-ba38-4f9b64e280c3", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 320440, + "md5sum": "1c0f7af5c7167e92830c6009b09e56d6", + "file_id": "4a841580-175e-44e9-afef-df3803117649", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1024-01A-02R-1564-13", + "entity_type": "aliquot", + "case_id": "8ac6ce06-ab50-4ab4-a469-9f8bf01be963", + "entity_id": "467ceace-18c4-436b-a8f6-842794c5dfa5" + } + ], + "file_name": "846f785e-0fb7-4fd6-a36a-8e642d050c71.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_448_MirnaExpressionfa3135ca-cbd3-48e8-a2e2-2bb854f73df9_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "55c9cdda-a944-5046-b2af-e9b0f0450370", + "entity_submitter_id": "TCGA-23-1024-01A-02R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29765", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "467ceace-18c4-436b-a8f6-842794c5dfa5", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "5e477f5d-b1a6-5085-abd8-178005c3d6b0", + "entity_submitter_id": "TCGA-23-1024-01A-02R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8766", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "467ceace-18c4-436b-a8f6-842794c5dfa5", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1024-01A-02R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_448_AlignedReadsfa3135ca-cbd3-48e8-a2e2-2bb854f73df9", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 146989243, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "5a6e5eea0d1a9375ddc2606d4daa626d", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "ed5fdf3e-2370-46b6-87ca-de94c3eed836", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_448_MirnaExpressionWorkflow521fb6a9-ad79-447e-ab5a-0a2e664c7221_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c92314f2-c0f8-470a-b2c5-abfbd9a5a0e5", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 365722, + "md5sum": "e365f8a186f446d8d1093593b80cfa5c", + "file_id": "2de92c3f-9060-4f1d-a811-190f18bfe930", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0804-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "7e34d3c1-1fab-4326-9a69-4260d2bac558", + "entity_id": "220b144c-9f9c-459a-b332-5d6e5dedb686" + } + ], + "file_name": "b3437cda-8bec-4309-9463-bff79c197cb1.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_135_MirnaExpressionfd5d7099-4e4e-4c55-95cd-58ed5f3fac2e_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "8fc07a2b-afa3-5a15-89d6-5fb4615d09cc", + "entity_submitter_id": "TCGA-13-0804-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29726", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "220b144c-9f9c-459a-b332-5d6e5dedb686", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "fc3c05ad-2bdb-5378-baa9-b235bb010650", + "entity_submitter_id": "TCGA-13-0804-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8759", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "220b144c-9f9c-459a-b332-5d6e5dedb686", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0804-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_135_AlignedReadsfd5d7099-4e4e-4c55-95cd-58ed5f3fac2e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 39846017, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "695ada385a5a193c264d8a931d99c64e", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4dfb63dd-eb9a-4584-8bc4-3eddc62744c9", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_135_MirnaExpressionWorkflowc4dcca9f-2097-4514-b348-2ef549675967_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5bd1f33a-c2a1-4f25-aaec-8c66091b7d5f", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50090, + "md5sum": "e3df84379427fffb9ee7fd8698400c95", + "file_id": "d7e0206a-082e-48ad-83d2-6304178971cb", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0799-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "b9418c6d-94f7-4db4-a1e4-f384b09d54cb", + "entity_id": "a3fb40bd-3e6a-4a4b-89fb-5a9d5fb67ee3" + } + ], + "file_name": "7076fbac-331c-4a9e-b6ca-a0e3d175fe3a.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_355_MirnaExpression1fa9990c-eaea-41ff-82ce-e49a9e95b1a8_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0799-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_355_AlignedReads1fa9990c-eaea-41ff-82ce-e49a9e95b1a8", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 130732752, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "e127e529dfa4c54b2ce6ffd77627ea97", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "3a6df5a7-7a37-461b-9e18-20fe58526fe9", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_355_MirnaExpressionWorkflow6dcb104a-99b0-4878-b950-cff1fb62e56c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "215015f3-e3ad-446f-93d8-5ce7f91f53c0", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 311510, + "md5sum": "808607bfcdc217fcaf07a18932d0f508", + "file_id": "82c00cb3-81a9-4b8f-b6d2-87f08cba706a", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0727-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "90f4b65c-cfd4-4066-a5b9-842885c172e2", + "entity_id": "38957b36-539f-42f1-bd83-f8eb348165a4" + } + ], + "file_name": "3ab42558-86e6-4d36-a977-258c3656ba27.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_479_MirnaExpression2143dff4-7a54-4cad-a8f2-f1905171bdf6_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "20fb0773-6792-5f92-a05e-fd7342174362", + "entity_submitter_id": "TCGA-13-0727-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29718", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "38957b36-539f-42f1-bd83-f8eb348165a4", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "700f78c2-e555-5621-a96e-7f71e6cff0b7", + "entity_submitter_id": "TCGA-13-0727-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8826", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "38957b36-539f-42f1-bd83-f8eb348165a4", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0727-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_479_AlignedReads2143dff4-7a54-4cad-a8f2-f1905171bdf6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 165982516, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "da02d0a80695c236202b5cbb47d7a9c2", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "25f6362d-c624-4ae7-8c3f-8687a04bb98d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_479_MirnaExpressionWorkflow531b3077-242a-43da-8080-76c8c4ac1532_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "376a4cac-9cb0-4fee-a034-47e1f32f6bad", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 311816, + "md5sum": "a466dc0b9c94f512f716ff3a9fe5c02b", + "file_id": "91aa6b19-38bc-4beb-baf8-0009c9dd0a60", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-5X-AA5U-01A-11R-A407-13", + "entity_type": "aliquot", + "case_id": "bc84c5c5-1785-4edd-b732-8987f862063e", + "entity_id": "c0368575-4663-4fbc-b883-aaf37d2916e2" + } + ], + "file_name": "3de8cfb4-e769-4c4c-8930-ee9619bec3a5.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_9_MirnaExpressionb47e787d-eb4b-4d0c-814f-f9d4c76a5b4d_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-5X-AA5U-01A-11R-A407-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_9_AlignedReadsb47e787d-eb4b-4d0c-814f-f9d4c76a5b4d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 209142476, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "c3d35d5e192b92548888dcec1b0a5b47", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "10aa9c33-409a-4b8e-ba6e-9e82d9a8e4c0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_9_MirnaExpressionWorkflow2ec14a5b-c221-4400-9bab-28b6ed9a1cfc_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "55913bcd-ed4a-4e21-b469-82acdd13bcf8", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50431, + "md5sum": "187c30692a9ea4e5ae04e85ce6d4bfca", + "file_id": "1b958bb0-16a0-41f1-8618-8d4b6ce0c22c", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0727-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "90f4b65c-cfd4-4066-a5b9-842885c172e2", + "entity_id": "38957b36-539f-42f1-bd83-f8eb348165a4" + } + ], + "file_name": "3ab42558-86e6-4d36-a977-258c3656ba27.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_479_MirnaExpression2143dff4-7a54-4cad-a8f2-f1905171bdf6_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "20fb0773-6792-5f92-a05e-fd7342174362", + "entity_submitter_id": "TCGA-13-0727-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29718", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "38957b36-539f-42f1-bd83-f8eb348165a4", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "700f78c2-e555-5621-a96e-7f71e6cff0b7", + "entity_submitter_id": "TCGA-13-0727-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8826", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "38957b36-539f-42f1-bd83-f8eb348165a4", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0727-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_479_AlignedReads2143dff4-7a54-4cad-a8f2-f1905171bdf6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 165982516, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "da02d0a80695c236202b5cbb47d7a9c2", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "25f6362d-c624-4ae7-8c3f-8687a04bb98d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_479_MirnaExpressionWorkflow531b3077-242a-43da-8080-76c8c4ac1532_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "376a4cac-9cb0-4fee-a034-47e1f32f6bad", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50165, + "md5sum": "8eee8921860147a960e263911e5caa96", + "file_id": "0962589d-da9d-4a35-9d31-b34be9d5f0cc", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1505-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "914f84bf-578b-4f4d-93cb-378228ea58f6", + "entity_id": "7774b7d4-2935-4b9b-bf76-312a625629e1" + } + ], + "file_name": "90b48c1e-e0af-474f-bd6f-aff3f69504fc.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_284_MirnaExpressionb21f2802-0ed0-48d5-b0a0-bf2e75828a2c_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1505-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_284_AlignedReadsb21f2802-0ed0-48d5-b0a0-bf2e75828a2c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 192680339, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "ab384f1ae9a2c93a6bb4b1a4574a0941", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5d811e1e-94e1-44d6-ab50-2183918e8348", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_284_MirnaExpressionWorkflow9efc099b-1b0b-4f44-96df-680c6598484a_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d1352300-f276-4bee-833e-e03858edb1e7", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50290, + "md5sum": "2989fcfe5e76b33a1e2f3877bdfd2ed5", + "file_id": "879691a3-ace2-439d-8947-24df77cef933", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-20-1683-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "ac2e88ff-8b1e-4691-9a96-5a581f98d827", + "entity_id": "e78c6cd7-67f2-4ac8-9dd9-c46392459835" + } + ], + "file_name": "ec609581-69da-4349-92ef-7f4b76cb6791.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_458_MirnaExpressiona67f354f-5089-4b8a-9fd0-4914c55bcb3d_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-20-1683-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_458_AlignedReadsa67f354f-5089-4b8a-9fd0-4914c55bcb3d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 134688390, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "de9ab5c599973ab572ab704fe764a2ec", + "updated_datetime": "2023-07-12T10:35:45.532497-05:00", + "file_id": "71f99b4f-6698-4664-8a8b-3c083d163dfd", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_458_MirnaExpressionWorkflow040470e1-cfdb-4696-bf1a-52375defda65_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "bf0a2b94-4729-4854-b5c1-66bc34e97e29", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 314564, + "md5sum": "8daef56cb34831ecbd44d468a6eecbcc", + "file_id": "6f680262-c0a1-46f5-a815-7dadd0190258", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-20-1683-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "ac2e88ff-8b1e-4691-9a96-5a581f98d827", + "entity_id": "e78c6cd7-67f2-4ac8-9dd9-c46392459835" + } + ], + "file_name": "ec609581-69da-4349-92ef-7f4b76cb6791.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_458_MirnaExpressiona67f354f-5089-4b8a-9fd0-4914c55bcb3d_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-20-1683-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_458_AlignedReadsa67f354f-5089-4b8a-9fd0-4914c55bcb3d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 134688390, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "de9ab5c599973ab572ab704fe764a2ec", + "updated_datetime": "2023-07-12T10:35:45.532497-05:00", + "file_id": "71f99b4f-6698-4664-8a8b-3c083d163dfd", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_458_MirnaExpressionWorkflow040470e1-cfdb-4696-bf1a-52375defda65_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "bf0a2b94-4729-4854-b5c1-66bc34e97e29", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50224, + "md5sum": "bc18fe6dabcd6b02460c137686a39adf", + "file_id": "95c65560-9ada-40de-ac27-bc5f71ddbd53", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-10-0930-01A-02R-1564-13", + "entity_type": "aliquot", + "case_id": "99f1ae02-86ec-4d93-8cd4-650bf6f02c10", + "entity_id": "b34ed0d7-1130-4cc8-b19d-b56c1cd2cc2e" + } + ], + "file_name": "0a3cde41-87f6-49bb-b6fa-0e9e0f5e8102.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_347_MirnaExpressionaa35a92a-584d-42e0-91ec-d00193709002_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-10-0930-01A-02R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_347_AlignedReadsaa35a92a-584d-42e0-91ec-d00193709002", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 112752076, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "6f9bf3189ed09b59617586248d7fa8c0", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a48d5370-4dd6-4684-8fae-d6f7789fcfd7", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_347_MirnaExpressionWorkflowddc1e97c-9a63-481f-8827-2113bf65034b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "9e3c3878-5d4e-4742-8426-a46010bbd848", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50163, + "md5sum": "44d5d45dead35fdf02a1b9ada5b3c2fd", + "file_id": "a038e7e8-6c0e-449f-8686-33114c3e7c7c", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-2393-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "b4b49027-7815-4813-9769-a3fe3a26a37a", + "entity_id": "93a88ec4-e3ed-4e8d-a83c-3e6c4605e89e" + } + ], + "file_name": "9f803e43-f74e-4fb8-b8d3-f590d2098a1c.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_475_MirnaExpression8a9d0098-b809-42b2-86a9-a1a151ad254c_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-2393-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_475_AlignedReads8a9d0098-b809-42b2-86a9-a1a151ad254c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 300000203, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "76577431449fe1f1a009d0cd7fdac5dc", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "8b6281b4-c966-4adc-a727-f099364e9b88", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_475_MirnaExpressionWorkflowb45fc4bc-38a5-4671-bb69-1f3286f40bea_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "9f995d86-7c00-40a4-ad2f-7c90c045a99a", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 472569, + "md5sum": "8ae7859146003630c184519da9b5fc7e", + "file_id": "55f9f4a6-a1f2-4b15-916e-77bf925b92af", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1353-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "cddbac56-2861-46a5-98a3-df32ab69d5da", + "entity_id": "25ca0f2f-a196-4f68-99f2-4aa6b73ebf27" + } + ], + "file_name": "56b3278c-60e5-4d45-901a-77640b467872.mirnaseq.isoforms.quantification.txt", + "submitter_id": "6a4cc10b-fd63-498c-9e5a-6bc448857f75", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9861874682694863, + "total_reads": 23211096, + "access": "controlled", + "file_name": "25ca0f2f-a196-4f68-99f2-4aa6b73ebf27_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005968456, + "proportion_reads_duplicated": 0, + "submitter_id": "2d91a480-fcb2-41c1-8663-6d525dca3664", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 417164431, + "created_datetime": "2024-09-20T11:13:29.775712-05:00", + "average_base_quality": 36, + "md5sum": "e5a5e9714725585b6089ba7e3900d9d5", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "d8237b2c-e332-4c97-820b-9625d17623fa", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 29, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "56b3278c-60e5-4d45-901a-77640b467872_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e46b8b37-3919-4639-a7a7-7934ee0adf34", + "created_datetime": "2024-09-20T11:17:47.179159-05:00" + }, + "file_size": 624434, + "md5sum": "6ca403fcb99a1e8d8ca1fe1636f1b969", + "file_id": "9fed1669-e065-483c-8b74-bda33f45b8a2", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1919-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "ce871097-a6e9-4139-897e-642ee24ee123", + "entity_id": "056cca38-92df-42ff-b064-b0c243f8a82f" + } + ], + "file_name": "0041f79c-47fc-4d18-87fa-a26989c67b4c.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_342_MirnaExpression8b0b3e9d-cee7-4bab-808e-6c05b6891102_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1919-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_342_AlignedReads8b0b3e9d-cee7-4bab-808e-6c05b6891102", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 275418279, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "41dcdfd2cd801583d962b0b3caee78f0", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "43456e92-3e69-4511-a72f-3537f1281207", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_342_MirnaExpressionWorkflowf6b8183a-9d2f-4499-841b-0b9a0499c9a0_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "64857ccb-a47d-4efa-b7b5-d98acd9720bf", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 412209, + "md5sum": "0a6a579568ab2705d4f97cce466e04ae", + "file_id": "81d1bb1e-0bd8-43c4-ab28-cc6d45413543", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-0367-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "9bbc01b4-056c-4ddc-aca4-ff20718646d0", + "entity_id": "047e04aa-6a91-4535-b279-50430098e638" + } + ], + "file_name": "0dda1b40-2c4c-4265-b68c-c8e15e378080.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_223_MirnaExpressionadfabcc1-1d1c-47b4-b35c-fbd3759e6b14_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-0367-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_223_AlignedReadsadfabcc1-1d1c-47b4-b35c-fbd3759e6b14", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 114031456, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "11f787cd99de90d9b3c045459dc15def", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "588b544e-6860-400e-9dc1-cec53e94d3b2", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_223_MirnaExpressionWorkflow071b118e-fdf0-43e0-8c72-2fe464157890_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "61804fef-eb7f-4c44-80d0-b336362c6c02", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 282727, + "md5sum": "d94737b4dac12891766f44030d332c67", + "file_id": "eeef7c02-dd63-4ccb-b6d5-c2dbb30ab40a", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1026-01B-01R-1569-13", + "entity_type": "aliquot", + "case_id": "c6ede8ae-881c-47a0-a0ef-745ed4b7764a", + "entity_id": "973907c7-f259-4d1a-b9df-68db1837af91" + } + ], + "file_name": "1bd07a8c-6095-4534-9c70-d88bda1cd148.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_270_MirnaExpressione88f6285-f2e4-4b2a-99e0-4ed2a7cb2437_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1026-01B-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_270_AlignedReadse88f6285-f2e4-4b2a-99e0-4ed2a7cb2437", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 256458137, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "7d56843f8d89fde24751fd8f30fd3914", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "8203c661-0ae4-4490-b5c7-5e94d9d949d6", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_270_MirnaExpressionWorkflow7d81d7c1-61b7-460f-a363-f36927e8e44d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ebf3f791-8454-40ba-87e9-213501980194", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 442749, + "md5sum": "06dffcc466ee1f76281e5257dee7410c", + "file_id": "64e8e7c8-fdde-460a-ab47-ee1ac3910d55", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1646-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "d38ca631-ed5c-4182-a647-625060726fa7", + "entity_id": "81ec3b61-6074-4923-9ad1-ced45ae0d9d8" + } + ], + "file_name": "b4f43a86-3068-4016-bdd9-3e02f07e354d.mirnaseq.isoforms.quantification.txt", + "submitter_id": "391da022-1bb2-486d-b671-d3fc230c46d1", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9905774871639327, + "total_reads": 20645342, + "access": "controlled", + "file_name": "81ec3b61-6074-4923-9ad1-ced45ae0d9d8_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004613178, + "proportion_reads_duplicated": 0, + "submitter_id": "b77b2650-f045-4196-abad-8e6a669436e3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 326983297, + "created_datetime": "2024-09-20T11:13:23.759921-05:00", + "average_base_quality": 36, + "md5sum": "bc36e7215af950b5b86283f8f92ede6a", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "8554156d-b0e4-43fb-a5f8-600101551a2c", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "b4f43a86-3068-4016-bdd9-3e02f07e354d_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "510fdedd-059d-40bc-95cd-0d19771b3765", + "created_datetime": "2024-09-20T11:17:28.410942-05:00" + }, + "file_size": 483884, + "md5sum": "47e7079a37c528838e82a97c5eb8832d", + "file_id": "869994f0-1a73-4f30-a600-bad02d4e6291", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1646-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "d38ca631-ed5c-4182-a647-625060726fa7", + "entity_id": "92c7fb18-a71c-4200-bcf8-90b69ad63266" + } + ], + "file_name": "69f6ed98-6cab-4404-b8ee-6f4c2fc72f64.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_384_MirnaExpression704bc1dd-682b-402e-b454-da37dbc956df_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1646-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_384_AlignedReads704bc1dd-682b-402e-b454-da37dbc956df", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 244252368, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "37e947eee4a2d49508938265e0c9d0f1", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b4e8eedd-558a-4867-8534-28b8e1291701", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_384_MirnaExpressionWorkflowbb4ab4c8-6639-4539-b323-054b29df381b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5d9a8b30-f8f6-405c-9f01-26b310fcb126", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50355, + "md5sum": "110071fe40d9f5615a7483f9ac09beeb", + "file_id": "d0c369f0-55fe-41ee-be36-0984f72ca153", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0900-01B-01R-1565-13", + "entity_type": "aliquot", + "case_id": "9e48a4b1-6917-4625-9d78-e4832eb816a5", + "entity_id": "48c027ac-0580-43aa-9356-f56b3d897127" + } + ], + "file_name": "bb797f15-acaf-441d-acba-63161b0b9bd7.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_199_MirnaExpression1e1ff941-bb47-4bd7-9163-577afc08f8d8_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "8cf48dec-6ed8-5c71-9aea-3e826dc71838", + "entity_submitter_id": "TCGA-13-0900-01B-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8790", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "48c027ac-0580-43aa-9356-f56b3d897127", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "d18c6e42-77fd-5940-bbd1-570d754d9ea0", + "entity_submitter_id": "TCGA-13-0900-01B-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29733", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "48c027ac-0580-43aa-9356-f56b3d897127", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0900-01B-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_199_AlignedReads1e1ff941-bb47-4bd7-9163-577afc08f8d8", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 510254499, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "9ac621ba671eec857ac4f905a68c0da0", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "337255b8-9d58-4548-b004-6480c9824065", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_199_MirnaExpressionWorkflow68d642c3-7067-496e-a286-4600bd047b6f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b5f8eb19-4aaf-404c-b676-9e5722e1a742", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50414, + "md5sum": "a5e022afa5a7f2b304a7a87e6c68033c", + "file_id": "bae717b8-eaaf-4e0a-b3d1-aae35eabbabe", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1843-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "9ec86cbd-8c74-4697-90da-529ab91ab835", + "entity_id": "c50cf5af-3375-4748-9894-1f9521f746da" + } + ], + "file_name": "d72ae1bb-2005-4654-b2f1-a815e7a9aeb6.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_364_MirnaExpression5f3b489e-8763-4217-9afb-09bd69023a63_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1843-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_364_AlignedReads5f3b489e-8763-4217-9afb-09bd69023a63", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 136269561, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "0139d597af920c0c7278ccf1adfafab0", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "9c0c1293-15bd-4210-9fb8-533360951376", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_364_MirnaExpressionWorkflow5b0cd515-e4ef-4372-846c-05e48ee8a6e7_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "44a2f4ba-0a21-4f96-8f08-4c597ad3fd84", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50231, + "md5sum": "8955dbfd5c26bc21c325330f422c4bcf", + "file_id": "405a83a4-e5b8-4ba6-bec6-5e884bd26bf7", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1774-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "d3dd5e69-9752-4b50-9b1f-814afbc2c3dd", + "entity_id": "bdb953e0-32fc-4f28-b40f-aa870a2bccb6" + } + ], + "file_name": "4aa6a9ab-1b21-4a02-849d-06d409385eb9.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_170_MirnaExpressionc5dd4ab0-2974-4c98-ae39-083cab7b81a6_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "2957690b-99dc-5a69-9a2d-433d392af34f", + "entity_submitter_id": "TCGA-29-1774-01A-01R-1567-13", + "notes": "RNA-seq:HIGH rRNA CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8845", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "bdb953e0-32fc-4f28-b40f-aa870a2bccb6", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "3be1f69f-c8be-5e71-bdb2-269cb093b894", + "entity_submitter_id": "TCGA-29-1774-01A-01R-1567-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29797", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "bdb953e0-32fc-4f28-b40f-aa870a2bccb6", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1774-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_170_AlignedReadsc5dd4ab0-2974-4c98-ae39-083cab7b81a6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 132507620, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "d8e2ddad02d88e0d69dda283c848330f", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a55a2acb-4314-4fbc-ae8c-ec095759cc49", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_170_MirnaExpressionWorkflow1387a23e-8e3b-4410-9609-8d4a0b611583_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a1a8f78c-3f73-4712-aaf1-4016a7bd2dc9", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 330910, + "md5sum": "2949d2c9aac0404a0476fff76b9da6d2", + "file_id": "18548f61-2410-41f1-9ca4-91c5576e6199", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-2077-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "ef57bc45-858f-4d4e-8407-b7eadfa43be5", + "entity_id": "16c61c5a-a9b3-4022-9b79-d593e3519794" + } + ], + "file_name": "6792b31d-008b-4c0b-8122-6ef29bb85707.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_95_MirnaExpression65c0787e-2190-43e4-95e7-39703970a6f1_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-2077-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_95_AlignedReads65c0787e-2190-43e4-95e7-39703970a6f1", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 202957231, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "fceb96c05580e7e142d726d4886029d6", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "ed46eef9-9947-417d-b740-fd81b15fa1b8", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_95_MirnaExpressionWorkflow9ab4d453-6a45-44b3-a6cd-3b882c97a14c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0bf2c354-9542-4bc8-91d2-c2cd48f4f94d", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50444, + "md5sum": "dca6d6efb89a76d9433df37d6d413a9c", + "file_id": "1abcc218-5d02-47a7-80a3-1953ce597c20", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-59-2354-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "d7925dfc-18ce-46ab-a47b-9d06eacc96d0", + "entity_id": "33367eb6-4ca9-4daf-9e47-30a47a78e144" + } + ], + "file_name": "3b89783c-8650-45f3-ac39-96b8cb4c911e.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_137_MirnaExpression03e38365-05b1-4ade-b055-4dbb9fc55061_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-59-2354-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_137_AlignedReads03e38365-05b1-4ade-b055-4dbb9fc55061", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 188641935, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "ca1bc28051b5f658cde8386abf568cb7", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a687d58b-06b5-4dc2-ab1f-1befef4db5b5", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_137_MirnaExpressionWorkflow9e31c7ce-67fd-4bb8-8f34-ec70da728d0f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "92d8728b-a02c-4a09-b65b-c8e98ad6dbe3", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 445897, + "md5sum": "f96083d951ebc1713f753ad8a76834f5", + "file_id": "222043a8-528a-4ae7-a1c4-504319abfdeb", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0889-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "e3712e5a-4575-440f-89d1-8db9498baa88", + "entity_id": "c3d9b91a-a4e4-463d-9504-3bb952f9953c" + } + ], + "file_name": "9a945c94-acc7-48ac-83a3-58263e035a22.mirnaseq.isoforms.quantification.txt", + "submitter_id": "f30bfd0f-f6ed-4460-9cc9-30f63391725e", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9890457928211721, + "total_reads": 26336639, + "access": "controlled", + "file_name": "c3d9b91a-a4e4-463d-9504-3bb952f9953c_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004537408, + "proportion_reads_duplicated": 0, + "submitter_id": "276efe45-ca2c-48a0-b9fc-eb5afbef4fc8", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 440121158, + "created_datetime": "2024-09-20T11:14:32.718723-05:00", + "average_base_quality": 36, + "md5sum": "3f2bad3a0b52e178b3464a3223606585", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "e4acf021-9385-4751-94a9-bedbdba1d495", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 34, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "9a945c94-acc7-48ac-83a3-58263e035a22_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8015e2d3-84ad-47ba-9f30-d45233358fe5", + "created_datetime": "2024-09-20T11:17:44.520309-05:00" + }, + "file_size": 485483, + "md5sum": "dd5edcfe885b47a37df03cb4629a5ada", + "file_id": "5be831af-0945-46c8-be4e-00343ff07866", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0924-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "fbb45305-de8d-4baf-8bd0-047b29c2e9d9", + "entity_id": "85a4c41b-9829-48f8-9c7a-a9de870332b6" + } + ], + "file_name": "11e937c8-a130-469d-8dfd-35f304318fb5.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_188_MirnaExpression808d0544-2e44-4712-b0e3-0e3c486d2320_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0924-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_188_AlignedReads808d0544-2e44-4712-b0e3-0e3c486d2320", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 102991568, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "0180d8d9e749d03efbd838f15828ef91", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "ddbecca2-1230-4b33-8b02-88d5a7c8227a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_188_MirnaExpressionWorkflow3f19dfa7-de88-458d-8452-a38e8ace333e_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b4d247d0-8bce-40b1-b1a0-9733b52754da", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50195, + "md5sum": "4ac3dff452dfb231547bfd52c9759d66", + "file_id": "461c4bf9-7207-457d-9113-8a0364a141c6", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-20-0996-01A-02R-A96U-41", + "entity_type": "aliquot", + "case_id": "d7f82e34-5b34-4e8c-a0cf-d7561bcea43c", + "entity_id": "bda3069d-d7c5-4852-9ff3-7cd925f989ef" + } + ], + "file_name": "fabf3fda-b118-4f0a-803c-ce871e785317.mirnaseq.mirnas.quantification.txt", + "submitter_id": "db42b60a-1e28-4510-8f01-8869f1341970", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9919847923829905, + "total_reads": 22967964, + "access": "controlled", + "file_name": "bda3069d-d7c5-4852-9ff3-7cd925f989ef_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005028689, + "proportion_reads_duplicated": 0, + "submitter_id": "dfa4529c-518c-4ef3-8e49-d99477298bcc", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 371927265, + "created_datetime": "2024-09-20T11:13:34.461928-05:00", + "average_base_quality": 36, + "md5sum": "d597bc81a4b2b99c99d144e5f5e69c51", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "5aa1b5f7-a463-42bd-afb3-03ce891c92dc", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 34, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "fabf3fda-b118-4f0a-803c-ce871e785317_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f1bd52e6-27fe-4d75-9795-fb85b892d41d", + "created_datetime": "2024-09-20T11:17:18.578197-05:00" + }, + "file_size": 50542, + "md5sum": "3be6defeffaa2991d8293f9f9712c598", + "file_id": "8d19078b-cd0a-4ee4-96ca-3275ac07825d", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0889-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "e3712e5a-4575-440f-89d1-8db9498baa88", + "entity_id": "4a3ae1ed-9ecc-4473-bb32-b745e9ab7da8" + } + ], + "file_name": "5bc471e6-be47-4551-aa40-bd6c7633015f.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_340_MirnaExpression741723ed-fcb1-4334-beff-e64435fcd9db_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0889-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_340_AlignedReads741723ed-fcb1-4334-beff-e64435fcd9db", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 107598488, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "535343eea5926ec35f400560ee8eaa1b", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "48e0b528-bd5f-4311-8d74-7b897d3cd9c9", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_340_MirnaExpressionWorkflowdd183bce-b2d5-432f-8e6e-9dec8006524d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "01b66055-86c6-4f8b-8f3c-ffd00878da46", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50073, + "md5sum": "39e4678a2b22cda69134fcee2aa71264", + "file_id": "5ce3a8ff-43f2-4087-833d-1c8716ef96b4", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1407-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "f2dcf4cc-609d-4532-a90d-6ae2bbb53365", + "entity_id": "2afc4437-8c6b-4f79-804c-b37ed04c4c77" + } + ], + "file_name": "4cda8aa2-fae8-4313-a537-d2c50a4d800d.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_160_MirnaExpressionb7d2eb44-efb7-495e-b95e-8b72b5594d31_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "4918b758-b200-5fcb-a6ee-ec68b7bea1c0", + "entity_submitter_id": "TCGA-13-1407-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29743", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "2afc4437-8c6b-4f79-804c-b37ed04c4c77", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "aaa2bc7b-8fe7-5511-82d0-3845650456f5", + "entity_submitter_id": "TCGA-13-1407-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8786", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "2afc4437-8c6b-4f79-804c-b37ed04c4c77", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1407-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_160_AlignedReadsb7d2eb44-efb7-495e-b95e-8b72b5594d31", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 297379011, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "015469324c3d0cabf72761cba3107347", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "f64e3711-cd56-47b7-a1a3-81e946cded48", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_160_MirnaExpressionWorkflowd7b46785-68fd-41f7-acf8-112bc17aa458_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "4f24add5-61d8-4e81-99e9-a16990e16353", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 425111, + "md5sum": "60380530d76e8cb23ff0104647b0cea0", + "file_id": "0460e495-bed8-4064-a9af-d7b4465ee5aa", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1496-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "e5a329ec-e50e-4786-901d-b58474f8ea65", + "entity_id": "cbdfb183-b1af-42ed-a47a-5fee3ac1059e" + } + ], + "file_name": "617626ba-04e4-45f0-83da-4f2d386a396a.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_124_MirnaExpressione7a66102-5818-4587-8f8e-3d9b338886f2_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "01c75788-ac12-5c88-be8d-af9b590a5e34", + "entity_submitter_id": "TCGA-13-1496-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8782", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "cbdfb183-b1af-42ed-a47a-5fee3ac1059e", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "2145e570-3b14-52d7-a8da-5b5590e5899b", + "entity_submitter_id": "TCGA-13-1496-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29755", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "cbdfb183-b1af-42ed-a47a-5fee3ac1059e", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1496-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_124_AlignedReadse7a66102-5818-4587-8f8e-3d9b338886f2", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 150627395, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "10db4bd6b9ccec770e0d1b3b8fd0dd9a", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "9d3d7de3-22c1-4553-b14d-212badae014a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_124_MirnaExpressionWorkflow3b39f2ba-3b99-4943-be6b-31a8d78b5bf9_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "44adf320-a26e-4f0e-800d-e87cb9b6cd09", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 322438, + "md5sum": "e3ca7b77c5291401392509b289e48495", + "file_id": "8f77e8a5-e562-407c-a778-a2ee20edb759", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1496-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "e5a329ec-e50e-4786-901d-b58474f8ea65", + "entity_id": "cbdfb183-b1af-42ed-a47a-5fee3ac1059e" + } + ], + "file_name": "617626ba-04e4-45f0-83da-4f2d386a396a.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_124_MirnaExpressione7a66102-5818-4587-8f8e-3d9b338886f2_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "01c75788-ac12-5c88-be8d-af9b590a5e34", + "entity_submitter_id": "TCGA-13-1496-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8782", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "cbdfb183-b1af-42ed-a47a-5fee3ac1059e", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "2145e570-3b14-52d7-a8da-5b5590e5899b", + "entity_submitter_id": "TCGA-13-1496-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29755", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "cbdfb183-b1af-42ed-a47a-5fee3ac1059e", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1496-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_124_AlignedReadse7a66102-5818-4587-8f8e-3d9b338886f2", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 150627395, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "10db4bd6b9ccec770e0d1b3b8fd0dd9a", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "9d3d7de3-22c1-4553-b14d-212badae014a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_124_MirnaExpressionWorkflow3b39f2ba-3b99-4943-be6b-31a8d78b5bf9_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "44adf320-a26e-4f0e-800d-e87cb9b6cd09", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50199, + "md5sum": "1feeb3ff99dff27d2654df08da4f5889", + "file_id": "142abe6c-2b87-4dc3-bdbc-20bd96849130", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1357-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "feda41d8-ca56-425d-b149-4d5485328107", + "entity_id": "ec1fc406-d1c4-4eba-ab6b-6cfb460f0862" + } + ], + "file_name": "90e60733-1277-47e2-b6c8-2fb446868749.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_336_MirnaExpression6cd5b67c-9138-4c8c-b31d-dfa6560de528_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1357-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_336_AlignedReads6cd5b67c-9138-4c8c-b31d-dfa6560de528", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 176216491, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "842bf457055443ed5d3ef751ec5af2f1", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "9c77b6c5-2eb6-4500-a45f-4219dd62e03f", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_336_MirnaExpressionWorkflow919191c0-3d28-4c77-ba05-c7b5a4281671_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f3887d25-2634-4586-8759-6c2455a0d8bc", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50300, + "md5sum": "41b4c73b1ccd7cd8f9778e04894eeb1a", + "file_id": "922da2f2-c844-4d12-bc20-f7ab4cd624ff", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-30-1859-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "dac8d825-dd47-47ed-a426-0ee75feb76f3", + "entity_id": "171797e3-389d-499f-99b9-1301644c7213" + } + ], + "file_name": "94e0206d-2251-4856-aa9b-c18dc80f465a.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_442_MirnaExpression7d5c6e2b-d64a-4f4f-b6f2-e25f6f6ad932_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-30-1859-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_442_AlignedReads7d5c6e2b-d64a-4f4f-b6f2-e25f6f6ad932", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 176481004, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "d076d5b4e1fe92d94d1a4be474ceade8", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "207bb5a1-2372-4c06-ae86-985f0359b51c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_442_MirnaExpressionWorkflow4005252d-8906-400a-b68b-074b66f2c592_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e8b0655d-2896-4a62-943b-9135419d30a1", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50088, + "md5sum": "e0a6bb826561d9dd3e0306287bd9d2b3", + "file_id": "7cc873ef-1204-4909-bc98-93db4cbb27da", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-10-0926-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "e641aed9-1dd8-4c30-b231-f12b20a76df0", + "entity_id": "14bb2756-5d32-4e77-9eec-4e5d44b663b2" + } + ], + "file_name": "000550a4-db6b-43ec-86c6-796522f7861f.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_142_MirnaExpression081dde4a-67e1-4b02-8c79-d0a76e97bde4_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-10-0926-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "submitter_id": "8831", + "classification": "CenterNotification", + "entity_id": "14bb2756-5d32-4e77-9eec-4e5d44b663b2", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "4e74875f-e7b4-5db4-a6d7-d1296b827ccd", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "e641aed9-1dd8-4c30-b231-f12b20a76df0", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-10-0926" + }, + { + "entity_submitter_id": "TCGA-10-0926-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29706", + "classification": "CenterNotification", + "entity_id": "14bb2756-5d32-4e77-9eec-4e5d44b663b2", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "db075754-2538-5187-845f-1528d93389e5", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "e641aed9-1dd8-4c30-b231-f12b20a76df0", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-10-0926" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-10-0926-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_142_AlignedReads081dde4a-67e1-4b02-8c79-d0a76e97bde4", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 104970189, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "cf92ca36a56ae5b6c68795691a8b4ca8", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6de542f4-94f3-4016-a134-40aa74a7586a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_142_MirnaExpressionWorkflowf21805de-adde-457c-a270-dcb180a43371_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "940a3e27-7c16-4466-a0b1-0f2b25b94c22", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50003, + "md5sum": "f4c03df88089ee1acf8d661822dbf592", + "file_id": "befb4951-1e89-4d8b-beab-466200e86caf", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1348-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "f7752d6e-f9cd-4dc9-ab01-3ab87acb21e4", + "entity_id": "1465139e-d1b2-4026-a532-08513fe0ad4d" + } + ], + "file_name": "bb8dc653-3446-403a-af8e-c79e700c7ab0.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_435_MirnaExpressiondbf88480-3c20-4271-ac70-44cf7be411ac_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1348-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_435_AlignedReadsdbf88480-3c20-4271-ac70-44cf7be411ac", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 194366685, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "be288e7fdd7c3bcb86079ad06176f613", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "30d5ac88-da32-45e5-a3ea-9c80b8b22a7b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_435_MirnaExpressionWorkflow22e8a0ff-1e78-4310-ba5b-8f7ef9662acb_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "6e11d7c5-5c32-463a-9f46-94938e32ea29", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50304, + "md5sum": "60f1db7d453ea72017887a1b648ac66b", + "file_id": "42f934f0-791d-45db-9f65-23bc66a7d9e9", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1348-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "f7752d6e-f9cd-4dc9-ab01-3ab87acb21e4", + "entity_id": "1465139e-d1b2-4026-a532-08513fe0ad4d" + } + ], + "file_name": "bb8dc653-3446-403a-af8e-c79e700c7ab0.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_435_MirnaExpressiondbf88480-3c20-4271-ac70-44cf7be411ac_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1348-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_435_AlignedReadsdbf88480-3c20-4271-ac70-44cf7be411ac", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 194366685, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "be288e7fdd7c3bcb86079ad06176f613", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "30d5ac88-da32-45e5-a3ea-9c80b8b22a7b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_435_MirnaExpressionWorkflow22e8a0ff-1e78-4310-ba5b-8f7ef9662acb_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "6e11d7c5-5c32-463a-9f46-94938e32ea29", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 372233, + "md5sum": "92ee54e98443ae20030fae37508602c5", + "file_id": "cd762002-b04b-41bb-9096-a1c006e5c269", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1028-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "df53c3c0-3605-4d2b-bdc7-96d9beab27ea", + "entity_id": "8f6e45b3-2857-4eb8-a723-5429f7fd8f0c" + } + ], + "file_name": "42fc169b-a145-44c5-8beb-b3f3268e7f75.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_302_MirnaExpressioned537b4b-c05b-4815-b655-8a8e5d972b35_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "6f70f783-555c-50a9-b08c-d8fe2a53c33e", + "entity_submitter_id": "TCGA-23-1028-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29766", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "8f6e45b3-2857-4eb8-a723-5429f7fd8f0c", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "e43525ad-a14c-51d3-a4d3-2333e4dd43b1", + "entity_submitter_id": "TCGA-23-1028-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8835", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "8f6e45b3-2857-4eb8-a723-5429f7fd8f0c", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1028-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_302_AlignedReadsed537b4b-c05b-4815-b655-8a8e5d972b35", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 264379724, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "2eb0e2ccb756a298b073817f909e10fd", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "fb276481-d889-4e58-a09b-52304fb69bd9", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_302_MirnaExpressionWorkflow60a82ad9-9c3f-4ee2-ac08-952e81d58908_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f94ba059-84f0-4b7c-be62-cac110e27b6d", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 355751, + "md5sum": "0ad2566c97a38ca27147a0cb244b90df", + "file_id": "d7a310a2-b624-48f1-84e1-007f84a2896b", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1484-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "ead71c90-cc5e-42ce-8754-c3cf15a41134", + "entity_id": "367f58a2-1003-4b97-93bc-08877cad8cba" + } + ], + "file_name": "87b68243-b40b-457b-a707-089b8f3fcd2f.mirnaseq.isoforms.quantification.txt", + "submitter_id": "e7991475-7f30-4d38-ad89-a4d2878b2d33", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9877362733736038, + "total_reads": 16848386, + "access": "controlled", + "file_name": "367f58a2-1003-4b97-93bc-08877cad8cba_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003730102, + "proportion_reads_duplicated": 0, + "submitter_id": "de65e60e-41c1-4971-93ce-697aa894d4f3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 317544896, + "created_datetime": "2024-09-20T11:12:45.828190-05:00", + "average_base_quality": 36, + "md5sum": "b01b432ee65ef4bd43d2f69f1872bc5b", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "e92594aa-41fc-4d0e-9282-21c77bc17b72", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 34, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "87b68243-b40b-457b-a707-089b8f3fcd2f_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "805fc4a5-b72d-45c5-a7c5-1604607c02d4", + "created_datetime": "2024-09-20T11:17:49.710875-05:00" + }, + "file_size": 419290, + "md5sum": "23b557942af39a7e8f606fa301f3e57a", + "file_id": "6129e20f-7292-476e-bb4d-2eb645dbc8e1", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-2078-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "ebe677e6-94b6-45be-a58d-eaae4cf63d12", + "entity_id": "9f35075d-4d81-44f2-a672-12028d6231be" + } + ], + "file_name": "45ba4f12-f418-4d4d-aa2b-418e6678ee5c.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_190_MirnaExpressiond24e24dd-8c7f-4dd0-996c-0bb9fa29ce80_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-2078-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_190_AlignedReadsd24e24dd-8c7f-4dd0-996c-0bb9fa29ce80", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 170311641, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "056ac9d5b4340fff5989ece142620ac0", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "516f8c24-2e3c-42ec-bceb-764e63219c79", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_190_MirnaExpressionWorkflow55bebd0f-9466-499f-8649-57bbd4942123_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1e2d4cba-c15b-462e-b82d-58818c952b47", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50238, + "md5sum": "b808af418deb445b117f342fbe8922f7", + "file_id": "ee9de52f-38c4-48df-a1a1-cd855831350f", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-36-1577-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "e294b940-2828-499c-be24-47ef6c2e9035", + "entity_id": "9ec93bbd-5c62-4974-984f-f86301f0d27e" + } + ], + "file_name": "ebe282a9-c211-4f2e-8769-07cab70c3906.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_86_MirnaExpression98386d7c-d3a8-4d62-8133-a7088e3b4e67_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-36-1577-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_86_AlignedReads98386d7c-d3a8-4d62-8133-a7088e3b4e67", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 157404810, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "34ae4cf009e22a0e0ef5936cae3e5d72", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "f8c13da0-f6ba-4066-b5ed-9b90cb8805a2", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_86_MirnaExpressionWorkflow7f6ecc4d-be15-4abe-8bdf-41fd9697c8c5_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "63dd448a-b124-4dee-ac8f-c4d6ba39782e", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50330, + "md5sum": "9c04c6253814cbd36e0c4d92919373f3", + "file_id": "aaabeaf4-ebfd-452c-8d1b-56fc4f31474a", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-2078-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "ebe677e6-94b6-45be-a58d-eaae4cf63d12", + "entity_id": "9f35075d-4d81-44f2-a672-12028d6231be" + } + ], + "file_name": "45ba4f12-f418-4d4d-aa2b-418e6678ee5c.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_190_MirnaExpressiond24e24dd-8c7f-4dd0-996c-0bb9fa29ce80_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-2078-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_190_AlignedReadsd24e24dd-8c7f-4dd0-996c-0bb9fa29ce80", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 170311641, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "056ac9d5b4340fff5989ece142620ac0", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "516f8c24-2e3c-42ec-bceb-764e63219c79", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_190_MirnaExpressionWorkflow55bebd0f-9466-499f-8649-57bbd4942123_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1e2d4cba-c15b-462e-b82d-58818c952b47", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 310449, + "md5sum": "54d5a2da13f2c69c2f41d450a436ab00", + "file_id": "b31d550e-8dd5-46f9-8183-5ea70a4c6ee9", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-57-1584-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "ed21615c-0de3-421c-9e8d-8996026c4431", + "entity_id": "e92b95df-bacb-4083-b2de-78e540ec0e68" + } + ], + "file_name": "f242cfca-41ca-4570-a6bb-b95e2602bf82.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_143_MirnaExpressiona28fd423-c0f5-474d-a78b-d3c3af63be24_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-57-1584-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_143_AlignedReadsa28fd423-c0f5-474d-a78b-d3c3af63be24", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 387684480, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "114f97d84402f68017a20aeebe563898", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "35c5ada5-fe6a-4054-b0e7-b4e89d9d542b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_143_MirnaExpressionWorkflow2eece582-2790-467c-8066-d97a36da8774_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "21995f5d-daf0-4f9f-be92-8fbfc3f5bd71", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 390275, + "md5sum": "279ec9d5d3bec9fdaf93c06d91281f75", + "file_id": "33cd3a5f-2528-4b89-a601-2fb12640e595", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-2061-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "a22c1451-7841-4fa3-b2f2-5d5cd8aa67d3", + "entity_id": "6d802bc8-5252-44db-b48d-1c55787bb3d5" + } + ], + "file_name": "605b4681-d649-4015-8249-37648bcd4abe.mirnaseq.mirnas.quantification.txt", + "submitter_id": "aec3c2a7-e9a3-491b-b628-b9a8a63aa2df", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9927079279938104, + "total_reads": 23085071, + "access": "controlled", + "file_name": "6d802bc8-5252-44db-b48d-1c55787bb3d5_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004012074, + "proportion_reads_duplicated": 0, + "submitter_id": "38f25137-3661-44e3-befa-6871d7394c06", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 407976118, + "created_datetime": "2024-09-20T11:14:31.117921-05:00", + "average_base_quality": 36, + "md5sum": "07751d5d95f411f5428b3ba8ae307815", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "7bc7e571-2b1b-4534-a582-4c0240559a40", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 32, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "605b4681-d649-4015-8249-37648bcd4abe_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "909195df-ed4a-4299-b1d5-ad833e7f95ea", + "created_datetime": "2024-09-20T11:17:59.365572-05:00" + }, + "file_size": 50759, + "md5sum": "58488fb8c94a0ec55ee8c8398417b43f", + "file_id": "21a80d78-6c60-40ab-8056-411807a3b605", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1871-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "ff844242-7559-4b07-b09e-69ea40e5ac6b", + "entity_id": "efcc36b2-e351-4875-b743-df58480bc9fb" + } + ], + "file_name": "2ebc4202-1053-45da-a924-10e8ff9ad6a2.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_168_MirnaExpression0beff94b-50f0-4d3f-92f0-cbb44fa2a108_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1871-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_168_AlignedReads0beff94b-50f0-4d3f-92f0-cbb44fa2a108", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 202493990, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "7ba7964d43578ecc4d9e1bd3169a7f55", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "397a27a8-fb79-49c5-84a8-b9f707a8e26a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_168_MirnaExpressionWorkflow2fc16217-55d9-4785-9ed5-23dbb5961849_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d8e5aa05-a527-4dae-acc7-a61acf6b5225", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50230, + "md5sum": "36276d6b3f11231dafab43b1cdd24266", + "file_id": "7d304e5a-dde0-4d10-be0c-4e08836c991f", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1877-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "077079c3-6877-467b-b9cc-5c650aae4f07", + "entity_id": "39639797-675b-4f3c-9959-7e3344bea0d1" + } + ], + "file_name": "f1b000fe-541d-49a5-acdc-2dbd16c2d4a3.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_174_MirnaExpressione9db2204-1c12-4d05-b045-8d6c604f65c9_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "724936e2-30f2-535b-bdb2-ac294d55ead6", + "entity_submitter_id": "TCGA-25-1877-01A-01R-1567-13", + "notes": "RNA-seq:HIGH rRNA CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8858", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "39639797-675b-4f3c-9959-7e3344bea0d1", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "d05c7da0-6577-5724-937a-01ad606dba9b", + "entity_submitter_id": "TCGA-25-1877-01A-01R-1567-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29791", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "39639797-675b-4f3c-9959-7e3344bea0d1", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1877-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_174_AlignedReadse9db2204-1c12-4d05-b045-8d6c604f65c9", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 160609416, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "9040a5febfa1e08245996138988b3f19", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "730199a0-8aec-4b61-9080-2881a6f01efb", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_174_MirnaExpressionWorkflow13fb99a1-7b1a-453f-a95c-da67b7e3388b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d4e717a6-689b-40e2-91dd-123b83b09761", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 359482, + "md5sum": "21852363bb3426dd9f1653a90c47d31b", + "file_id": "d70aa0f0-dbd0-488e-b67e-d887df354688", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-OY-A56Q-01A-11R-A407-13", + "entity_type": "aliquot", + "case_id": "c7cf6755-8856-435b-a443-174b22a25b07", + "entity_id": "56149b81-54ba-41c4-90dd-092d70b48496" + } + ], + "file_name": "1e9a7419-58d3-41ca-9e31-a41c230bc53c.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_0_MirnaExpressionc4500344-2c20-4971-8736-4e7d72e00a54_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-OY-A56Q-01A-11R-A407-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_0_AlignedReadsc4500344-2c20-4971-8736-4e7d72e00a54", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 139094913, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "1b59659d44021151b8a57c4df143adc0", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b256a0f0-db3d-456d-a8ab-7ac2e9b3cc25", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_0_MirnaExpressionWorkflow31b3bc99-5be3-4f30-9684-30a77501c7cb_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1cf2c5a1-6d3a-42df-b526-8b34fe8229dc", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 321571, + "md5sum": "f7161049ceba7afc36eab0b2fdb58c3e", + "file_id": "1a01559c-a578-4e17-89c2-90f154d916ef", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1412-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "44493c23-82e9-4d9f-8e3c-7b3f9ae44970", + "entity_id": "cd5f7acb-64ba-4fd7-b1a8-ac5393c78500" + } + ], + "file_name": "18f8340e-9579-4f3c-a29e-bc87f0943b45.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_467_MirnaExpressiona908fbc3-cd55-4ba9-8ef3-3b7ea6b1b463_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1412-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_467_AlignedReadsa908fbc3-cd55-4ba9-8ef3-3b7ea6b1b463", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 191339382, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "a76306d93d85a2255a0969a5a80eda10", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "791943de-255d-446f-88e8-d9b3005fba8a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_467_MirnaExpressionWorkflow40729813-0adf-484d-b1df-e30d34f8ed53_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d8529480-f2d8-4b62-89da-d8e651a8ace1", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 362993, + "md5sum": "9e70411401a1b534c26af16e4ccf40cc", + "file_id": "6f1565f4-dc31-48f5-bddf-383c78e6bafd", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1412-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "44493c23-82e9-4d9f-8e3c-7b3f9ae44970", + "entity_id": "cd5f7acb-64ba-4fd7-b1a8-ac5393c78500" + } + ], + "file_name": "18f8340e-9579-4f3c-a29e-bc87f0943b45.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_467_MirnaExpressiona908fbc3-cd55-4ba9-8ef3-3b7ea6b1b463_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1412-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_467_AlignedReadsa908fbc3-cd55-4ba9-8ef3-3b7ea6b1b463", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 191339382, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "a76306d93d85a2255a0969a5a80eda10", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "791943de-255d-446f-88e8-d9b3005fba8a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_467_MirnaExpressionWorkflow40729813-0adf-484d-b1df-e30d34f8ed53_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d8529480-f2d8-4b62-89da-d8e651a8ace1", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50299, + "md5sum": "25dbcc24d2f5a0a6e3dcd20bbf87eff0", + "file_id": "1c02b2df-2617-4b4d-ae20-db3388115510", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1614-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "d3164236-c14a-4230-b527-ecd1a3992f02", + "entity_id": "b1e4cf1d-83b8-451a-ba18-bd091187b06d" + } + ], + "file_name": "89835cb0-9535-4b9a-8232-490f563937c9.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_401_MirnaExpression0d4fd35e-2b10-4dc6-87ef-c0c5240c0a3e_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1614-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_401_AlignedReads0d4fd35e-2b10-4dc6-87ef-c0c5240c0a3e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 115035034, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "df17584c95b02c3ec9cc675d0b5e514b", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5f88ba6b-34f3-489f-aba1-3f73d833c694", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_401_MirnaExpressionWorkflow3b62c7e8-370b-482d-a1dd-19d300107697_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "064e21f7-4fc7-447f-b076-984d872fc66a", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50166, + "md5sum": "a9162101ee7ad6cdb6dc77bac7167fa6", + "file_id": "9853df0e-e711-477d-bf6e-aad34a44af81", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1738-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "72c40fba-f502-489b-ad87-843f52655894", + "entity_id": "1ca9af90-a8db-4f7e-b17a-0bf32fed98c7" + } + ], + "file_name": "fd49b73a-7479-4275-8069-491d0a62f439.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_299_MirnaExpression212df360-d493-4696-bf6d-470dcb29d5bb_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1738-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_299_AlignedReads212df360-d493-4696-bf6d-470dcb29d5bb", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 117896184, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "e803951724742215943ccb2a261f8b40", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "af310da8-4dc2-4b15-b8cd-bd468f58b88e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_299_MirnaExpressionWorkflow696507af-3470-4577-b295-3fe781cbb810_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "db3da142-6276-4157-82b2-42599111e47d", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50165, + "md5sum": "7fe8699a831dea414820ef7a11c0ce16", + "file_id": "be64bfee-9e20-4f2c-af18-0f52a9d36a81", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1325-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "9471bc5e-18da-4356-bb0f-c78edd35ff99", + "entity_id": "bed6f1ff-26fa-4d0a-9f03-c5fbf457ee8b" + } + ], + "file_name": "9f419109-0d43-4da9-89e0-944c01050fed.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_159_MirnaExpression2bbc15a8-050a-4b14-b9a9-06625aad8778_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1325-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_159_AlignedReads2bbc15a8-050a-4b14-b9a9-06625aad8778", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 215005392, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "f681e47ce6dc1e065f0eb5d42ec5434c", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "726bc556-ab8a-4a23-af3a-85a62179bd2d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_159_MirnaExpressionWorkflowc2101f2f-79bc-43bd-9b4b-c13daab8c4a5_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5edefcf4-8e5e-4b33-8d63-dfbe6c969b48", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50371, + "md5sum": "a721772360cc027db9a7073b5bea4d50", + "file_id": "b5acd9a6-cc9b-49c7-a723-1e93b746b746", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-36-1569-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "7d82ce56-32eb-4107-aa5c-c568764805c9", + "entity_id": "bb12d2f5-1865-435a-8edf-f9ee7689e0a4" + } + ], + "file_name": "590a0ba3-9ba6-477d-9d69-1cf9c0b72d65.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_275_MirnaExpressiondeec8880-2fcf-491e-96e6-5a7d86ca938e_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-36-1569-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_275_AlignedReadsdeec8880-2fcf-491e-96e6-5a7d86ca938e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 181121226, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "c39155fa39c6610f9ec3246f38dc6857", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "101adbe8-2999-4176-b1c5-b51a4d41b888", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_275_MirnaExpressionWorkflow2306a066-be17-42ad-be3b-1bf3b287e964_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "52e58f8a-6f17-4c4b-93df-d8cbc6c17994", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 405928, + "md5sum": "2f5239625aaea4ecd38ad2201ce18184", + "file_id": "d712d20a-72ff-4dd0-a8fb-ee24a8ab9814", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-36-1569-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "7d82ce56-32eb-4107-aa5c-c568764805c9", + "entity_id": "bb12d2f5-1865-435a-8edf-f9ee7689e0a4" + } + ], + "file_name": "590a0ba3-9ba6-477d-9d69-1cf9c0b72d65.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_275_MirnaExpressiondeec8880-2fcf-491e-96e6-5a7d86ca938e_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-36-1569-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_275_AlignedReadsdeec8880-2fcf-491e-96e6-5a7d86ca938e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 181121226, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "c39155fa39c6610f9ec3246f38dc6857", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "101adbe8-2999-4176-b1c5-b51a4d41b888", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_275_MirnaExpressionWorkflow2306a066-be17-42ad-be3b-1bf3b287e964_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "52e58f8a-6f17-4c4b-93df-d8cbc6c17994", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50323, + "md5sum": "7cc84d2aa9f8234ec9d67ed5b75c3b25", + "file_id": "7ff05304-0ff4-4349-b848-9646cad05943", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1319-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "914d8613-3c25-4a10-be50-28b42f4d3a5d", + "entity_id": "8f0f34fb-bbef-4a17-8324-4ebda56f9e0e" + } + ], + "file_name": "bbd6a518-d61b-411b-bac0-250b1ce741fa.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_208_MirnaExpressionadfec957-227c-4153-8939-350e5d422ee9_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1319-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_208_AlignedReadsadfec957-227c-4153-8939-350e5d422ee9", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 127862550, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "3bf2bc23e175e7827d1c4f910ea78fef", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b907b911-4a30-4ac9-8a42-a6aec9bd8a19", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_208_MirnaExpressionWorkflow37a82a1a-c59a-4d04-a781-4d28a7eef5bc_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "24fc885f-0ee2-4f8c-9bfb-f2c635c6c087", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50274, + "md5sum": "47d9d18c89295543b03057d53bc92d02", + "file_id": "faf0ba1a-bc20-4cfc-887d-98e251391b23", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1319-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "914d8613-3c25-4a10-be50-28b42f4d3a5d", + "entity_id": "8f0f34fb-bbef-4a17-8324-4ebda56f9e0e" + } + ], + "file_name": "bbd6a518-d61b-411b-bac0-250b1ce741fa.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_208_MirnaExpressionadfec957-227c-4153-8939-350e5d422ee9_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1319-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_208_AlignedReadsadfec957-227c-4153-8939-350e5d422ee9", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 127862550, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "3bf2bc23e175e7827d1c4f910ea78fef", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b907b911-4a30-4ac9-8a42-a6aec9bd8a19", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_208_MirnaExpressionWorkflow37a82a1a-c59a-4d04-a781-4d28a7eef5bc_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "24fc885f-0ee2-4f8c-9bfb-f2c635c6c087", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 320527, + "md5sum": "453f3f49a660769220311a40898a580f", + "file_id": "e7020554-379c-4684-8df2-47ab1923e5e8", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2289-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "b867e933-e3e3-4491-9bb6-b18c48d6f173", + "entity_id": "bdc4400c-c552-450b-a806-2ae10f61cca8" + } + ], + "file_name": "c39da255-2b01-4121-b483-fe59d5080904.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_233_MirnaExpressionfe166d00-34d6-439d-a835-b546716d705c_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2289-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_233_AlignedReadsfe166d00-34d6-439d-a835-b546716d705c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 356529948, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "5ced6356f029dbdc9a9d5f26917ff2c3", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "8c6d4536-bd85-4f8a-b165-7f77a1022ba2", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_233_MirnaExpressionWorkflowa0aa4e22-2517-44c0-84db-234e9e526238_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b3e42105-60f5-4821-b87d-1d3d34896bb2", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50549, + "md5sum": "06184642004ea6fc965da7b54bb01e95", + "file_id": "cea310aa-10af-4b8b-9e3f-c92a7c00c9a0", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1776-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "7472b3ba-9b15-4d97-8708-a2dd82ca0f45", + "entity_id": "50867fed-2fda-4c45-aa08-042087e7daa9" + } + ], + "file_name": "d7b2fdac-3937-4545-b7b6-2beb70c362aa.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_235_MirnaExpression8de85a6d-5780-426e-9355-77ace5658ea6_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1776-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_235_AlignedReads8de85a6d-5780-426e-9355-77ace5658ea6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 135368397, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "27018b74b7e00aea4540cc9ac26a4498", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "bf990672-5a0e-4988-90e2-57249ca21ac8", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_235_MirnaExpressionWorkflow265c57e2-9cc3-4ad0-8fbc-2bbdf07c4bc3_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "939fed6a-d4ee-44bb-8350-f33b2b99d256", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50057, + "md5sum": "a0978d42e4e53eee380f00a1be78e7f8", + "file_id": "9b867046-d7d8-45ca-82ac-660e721a9ac3", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1688-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "05019013-7ea5-4905-ac79-901146ba2ee2", + "entity_id": "5be6bdbd-61ed-4ceb-bad5-9559cbe5bebf" + } + ], + "file_name": "e21e9e32-bedd-4433-8646-537387392c0e.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_464_MirnaExpressionf7bff065-4a11-4ab3-9285-9088bf4d99e0_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1688-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_464_AlignedReadsf7bff065-4a11-4ab3-9285-9088bf4d99e0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 185135976, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "7a7b47da579787f07a29c9edb64ac0c3", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a1894266-3971-4cb8-b094-34fbdab1d19c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_464_MirnaExpressionWorkflow5648e701-83c6-4944-b0a5-0976a37f8b52_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "90ed71a9-fbb5-4a79-85c2-2ee48f797711", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 364648, + "md5sum": "6909195975fbe7216c5f16fca54da26d", + "file_id": "0d9cd17c-faad-4e3f-a139-08183e01e811", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1688-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "05019013-7ea5-4905-ac79-901146ba2ee2", + "entity_id": "5be6bdbd-61ed-4ceb-bad5-9559cbe5bebf" + } + ], + "file_name": "e21e9e32-bedd-4433-8646-537387392c0e.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_464_MirnaExpressionf7bff065-4a11-4ab3-9285-9088bf4d99e0_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1688-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_464_AlignedReadsf7bff065-4a11-4ab3-9285-9088bf4d99e0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 185135976, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "7a7b47da579787f07a29c9edb64ac0c3", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a1894266-3971-4cb8-b094-34fbdab1d19c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_464_MirnaExpressionWorkflow5648e701-83c6-4944-b0a5-0976a37f8b52_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "90ed71a9-fbb5-4a79-85c2-2ee48f797711", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50284, + "md5sum": "265a8c4ceeef3f64f2405238da255e41", + "file_id": "37e0e06e-ec5b-4eea-8872-ad6ce298ac84", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2262-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "1d0225b5-f515-4197-bba7-3dc17e502b88", + "entity_id": "efb87f4e-6fc7-4b2c-9d56-62b0f7834fbe" + } + ], + "file_name": "d05a1100-8710-49ef-94fe-417e7e6eb188.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_14_MirnaExpression3595b982-80dc-4ed2-8e69-52dc6537b915_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2262-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_14_AlignedReads3595b982-80dc-4ed2-8e69-52dc6537b915", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 377952358, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "d3a149181393e34c54a1e3a5598df0d9", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "0ee78244-b237-4658-83cd-ef82c56b57b5", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_14_MirnaExpressionWorkflowf846c1d7-a8e7-463c-a3f9-b75f960a1c63_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "472b911a-4e2c-48b1-b80e-5bb7b48feff4", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50380, + "md5sum": "a7985399c075e016961d61f8ecc3645e", + "file_id": "da233c45-1f7c-4ef6-8f47-87a1232f657f", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2271-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "a8c4a333-6b67-44c8-9000-516f8ccea788", + "entity_id": "f3581696-e1db-4d0f-9ce7-5fb0f5c08906" + } + ], + "file_name": "3db3c77d-c171-4020-82af-1643d1b18c0b.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_121_MirnaExpression03ccf273-4595-443e-bbb8-91114ee971e8_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2271-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_121_AlignedReads03ccf273-4595-443e-bbb8-91114ee971e8", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 257196941, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "b3b9a096fc4bb44c74c23236bd503166", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "18612d79-1bf4-4c14-aef7-a04c4bc103f7", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_121_MirnaExpressionWorkflow3fb0c25f-d625-463d-98c4-54de83b565bc_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "4ba45a88-faf5-403b-aa65-05b7a933e33c", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 425700, + "md5sum": "8ccbbd468427902b01aa283b35405564", + "file_id": "5516472e-6ca5-4b30-844f-09f0fec68a59", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-36-1568-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "de548bdd-14ca-486b-bd16-a6fbdd5b50d2", + "entity_id": "4e539c62-454a-4b1c-bde1-6951ee12d109" + } + ], + "file_name": "019f69d3-6dc9-4677-88d7-cee7b4dd77fb.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_209_MirnaExpression23be9351-8e81-48e9-872a-d4c393ba217d_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-36-1568-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_209_AlignedReads23be9351-8e81-48e9-872a-d4c393ba217d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 129972899, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "6f7857ac78c99ad17c5660689aab9ef0", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "922b0bdd-3e80-45dc-898f-741631863ee6", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_209_MirnaExpressionWorkflowa038b518-08f0-4f59-8e1e-18f147a587cc_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "87b60469-03bf-47a0-aa2e-bf20c8737eaf", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 351927, + "md5sum": "d2e7195845016b30470f42dee25f0464", + "file_id": "69a5753d-31e9-40f0-8cfc-04ca7897ab91", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1733-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "04ecaf38-0232-4dcd-9242-308a22cc1331", + "entity_id": "e6f856bf-0694-4c21-aecc-0d8dd54761f1" + } + ], + "file_name": "bc22897c-a0dc-45f7-b4ec-4b8e957bf512.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_115_MirnaExpression472bf0aa-9d1c-4542-9bed-84775119810d_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1733-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_115_AlignedReads472bf0aa-9d1c-4542-9bed-84775119810d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 194646082, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "ce526b0fed62dfeda1955c1a22981d23", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "c97320c1-857e-4378-9433-9b8a53a34c72", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_115_MirnaExpressionWorkflow78b1972b-8ba9-4eac-a7bb-c566462635a4_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "46304f9e-6d50-4df6-9cc5-2d14e493b234", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 348503, + "md5sum": "c6aedc49f06f4f071a2096ac28326418", + "file_id": "70f5e35e-739a-4274-92cb-0c2a11f8d542", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0757-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "2c69f3a4-c26c-4fbb-a1c0-b1f57554c43a", + "entity_id": "58944ef1-c315-40cc-883a-2aaaaf0462e3" + } + ], + "file_name": "0e767624-17df-43ee-b43d-8b7d4282cc2a.mirnaseq.isoforms.quantification.txt", + "submitter_id": "4d9c8548-3ebf-468e-8cde-aaf2988d52c4", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9851600127787983, + "total_reads": 23038160, + "access": "controlled", + "file_name": "58944ef1-c315-40cc-883a-2aaaaf0462e3_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003866954, + "proportion_reads_duplicated": 0, + "submitter_id": "4d61b1b9-fd3f-4fab-8b69-074b35c6ed4e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 430891956, + "created_datetime": "2024-09-20T11:12:58.694690-05:00", + "average_base_quality": 36, + "md5sum": "ffcbb1ef37b04833c425febd2b57a6d6", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "691fcc3e-13e5-4331-a129-11feaf1862d4", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 34, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "0e767624-17df-43ee-b43d-8b7d4282cc2a_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "bfc61db5-b040-4399-a051-c6a16d482dbe", + "created_datetime": "2024-09-20T11:16:53.391310-05:00" + }, + "file_size": 530761, + "md5sum": "c9cb1f80c96c2b81429c87a07e7364ed", + "file_id": "5c0912ab-c663-4c7d-8a3d-50902a164abb", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0757-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "2c69f3a4-c26c-4fbb-a1c0-b1f57554c43a", + "entity_id": "8d076743-59d7-4976-96ed-b7a2db73bf7f" + } + ], + "file_name": "1f4965b2-353c-41a7-97e8-98ef7d625f7b.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_117_MirnaExpressioncad8a709-5cca-473f-b747-d7dd2b4e046f_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0757-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_117_AlignedReadscad8a709-5cca-473f-b747-d7dd2b4e046f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 109805089, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "97cc665e62ad659c4ece2370c76101d5", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "83bf8a3b-52e3-4187-ba81-fc4f8ee238f7", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_117_MirnaExpressionWorkflow73b891bf-e04d-496f-8171-0094412454a4_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2dbf4d0d-e694-4477-b51c-041a88c633cd", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 254706, + "md5sum": "182d59c4835b1c1ac2a0dca61aa160e1", + "file_id": "df19cc5f-b7f0-497a-95c2-99e404c7dd91", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1556-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "7592a659-7175-486f-a16e-24a4b4365a36", + "entity_id": "31e8ae73-7c3f-45ec-b4c9-d3f2ee1ca4fd" + } + ], + "file_name": "c8231b40-ec8e-43d6-ae45-4447e24b57d8.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_333_MirnaExpression2fd8aa57-4e91-4e98-bd80-15bcb71fe93e_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1556-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_333_AlignedReads2fd8aa57-4e91-4e98-bd80-15bcb71fe93e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 162168246, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "4d457421bdf19b0efb478ef10c4d76b4", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "471da32e-ad66-4b9a-ae89-180ee21756d5", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_333_MirnaExpressionWorkfloweb16adf8-3970-44f9-b9f0-58510b711a5e_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0ffd51b7-56fd-4348-aff7-d88ac5e73f8a", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50356, + "md5sum": "360b93a06d7dda2739cd9316cb250d1b", + "file_id": "3d790f95-f59f-4abb-b9b7-d8b6443983fd", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1628-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "3f917550-89a6-404b-94df-938c99121411", + "entity_id": "a3083fd8-f5d0-486b-bf3d-31ae094b1cbf" + } + ], + "file_name": "966888b8-9194-44b5-a7e8-feb9a82ef136.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_133_MirnaExpression3fef76eb-0b55-4f27-9b3c-c9240ed1995e_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1628-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_133_AlignedReads3fef76eb-0b55-4f27-9b3c-c9240ed1995e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 203655398, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "849e5378efea81ee0507086b5b818197", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "7880dbf3-186f-45ab-a53f-6bf6a74e7eaa", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_133_MirnaExpressionWorkflow8097e3a3-6ddb-45fe-8c9e-5437b56c9fa2_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0d04f3c2-083f-4439-9111-34eb0dcbfd46", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50269, + "md5sum": "efca18439251ac96fd44458bf16baa4d", + "file_id": "8ba26973-af21-481e-a306-5b2f97ab4243", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-1669-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "b1c90c69-6149-4105-8182-ab9212f196be", + "entity_id": "a56ccd4c-1959-44a9-968d-57e6c5bc0cf8" + } + ], + "file_name": "bff79f43-0a8f-4a8c-8695-2f2bd8234f35.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_492_MirnaExpressionf7d2d363-994e-4d13-97f0-58b1085741f9_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-1669-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_492_AlignedReadsf7d2d363-994e-4d13-97f0-58b1085741f9", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 198431474, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "854df839a9c6cafffe47ec3288d8e64d", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a56daaae-f661-4bcf-aa7b-dc45f2d14f86", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_492_MirnaExpressionWorkflowca139e86-dfc8-4a28-a0ae-3ec3b252905a_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "4e3790da-70d6-47b0-a0b6-b1047dcc65ce", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50337, + "md5sum": "3b92c5ea801b6f0d3f67e4b4983ebb78", + "file_id": "a07d7c75-7453-4358-82b7-8313808a169d", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1423-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "f64ebc7f-0e5a-42b4-af57-6cdb90d24f90", + "entity_id": "b493df11-1929-4e35-ac44-49057cdbd86b" + } + ], + "file_name": "8292e9cc-cbee-4786-9880-0fdff2a99b49.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_73_MirnaExpressioncfbd8b51-d92e-4211-8c23-119f03200175_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1423-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_73_AlignedReadscfbd8b51-d92e-4211-8c23-119f03200175", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 173212319, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "461247a1f9ad1f57b00a87b2c3b897d2", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "e73e9c6f-4026-48d6-b9af-4fefa07fd611", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_73_MirnaExpressionWorkflowb71a489a-d0e6-4f69-b924-920ae6b334e4_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "902de21f-28ee-4d3a-b055-9c89527c7fb8", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50324, + "md5sum": "19990f34078f63bfd57974791a2be57f", + "file_id": "3702cd30-9712-4dfd-80f7-04fa462c5dcd", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-2045-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "3768d34f-1527-40db-b116-cd80cee5ec3a", + "entity_id": "7b412fd9-4414-440f-b768-70666037c768" + } + ], + "file_name": "1a01e309-ad6e-4964-a81e-533b04d47a86.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_71_MirnaExpression6d64e628-40b3-4560-8aa8-4735ae419834_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-2045-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_71_AlignedReads6d64e628-40b3-4560-8aa8-4735ae419834", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 128005322, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "02d25ef2cea72f8062865e4c844582f1", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "f2e7c1a0-a551-41c4-a027-4ddef0907c22", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_71_MirnaExpressionWorkflow52f90d90-45e5-48d6-9ac6-525f00e11d1d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7f972634-367e-461d-9f0b-946e478c64f2", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 335437, + "md5sum": "cfc5dfeb0c4390dcb8bbb26529e2ebe4", + "file_id": "877bd2bf-dd12-43dc-90e5-ff1cd27e862b", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1405-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "29dccd25-4c4a-463b-a353-38a193337f38", + "entity_id": "044d949f-0eb4-44c9-8327-90226936fc7c" + } + ], + "file_name": "0f4d00cf-39a5-4e6b-9e33-30c763e7ed75.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_354_MirnaExpressionf5b84275-82ae-4eb9-a681-9d259e738984_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1405-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_354_AlignedReadsf5b84275-82ae-4eb9-a681-9d259e738984", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 156444665, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "95db571b0fa9e2a1a0025f05e86a6ef8", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "909669c3-1da5-47c5-b371-f2a4b2b9d7a6", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_354_MirnaExpressionWorkflowb623a271-e411-456e-b406-5a6304f37deb_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "704e584e-4224-4e0d-a306-cc80898056bb", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 298793, + "md5sum": "eca0cc021ce49e4479fe7d1a2ea66128", + "file_id": "0be1943d-314e-4e9c-bcc5-622fe2e62206", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1740-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "005a6517-2e5a-4ea3-ab36-531522723607", + "entity_id": "e7825482-380d-4323-a4fb-d11b365c7073" + } + ], + "file_name": "6ce02f51-1f46-416a-9720-b76324abbfe0.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_303_MirnaExpression6601ef20-9225-415c-a0c7-6305bfd9a24c_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1740-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_303_AlignedReads6601ef20-9225-415c-a0c7-6305bfd9a24c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 182264351, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "a4eff41e4336dbed1649afc994ed2c96", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "38ec9e00-7215-46bb-9414-bd79f1d650cf", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_303_MirnaExpressionWorkflowb4ed9654-7d0c-4282-84f1-525580ac42a9_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "6009775c-71e7-4925-9adb-5ea86eab92f2", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 322366, + "md5sum": "21189d0bacb4b09997a1c15c9a354783", + "file_id": "98a130b3-49ef-45a7-809a-82ab9755a807", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1314-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "0b2ea4b7-98bb-4190-b682-2c75b447c90a", + "entity_id": "b571f7cf-e9b8-493f-822b-a489f114420b" + } + ], + "file_name": "d0dd6aca-e647-4165-867c-6035a1610d56.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_217_MirnaExpression9381978f-be42-4728-a171-716ddec37f41_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1314-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_217_AlignedReads9381978f-be42-4728-a171-716ddec37f41", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 203896082, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "4d496eaa77fedcd17d6240ce19088774", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "d8ee3a79-f5fe-4baf-8658-5be362553684", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_217_MirnaExpressionWorkflow3610826d-d859-4b3e-a2a7-4093ba8f45e0_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1359fa23-fa27-4d18-ad7b-8ddac9a4c528", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50282, + "md5sum": "995af6c6a0b7ba302726b8b6cbfedfa9", + "file_id": "874c95a0-e9c1-4227-8c64-998001383988", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0904-01A-02R-A96T-41", + "entity_type": "aliquot", + "case_id": "0b519c08-9f23-4ceb-9a13-e16509ca55d7", + "entity_id": "192b18cc-1107-4198-a52b-921486dfabc8" + } + ], + "file_name": "d2e0ffcc-0118-4b67-8a97-31e3f3362fc8.mirnaseq.mirnas.quantification.txt", + "submitter_id": "8f7bb4c5-52c4-4af0-bc8b-de444bc23ec6", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9923904834697853, + "total_reads": 26097453, + "access": "controlled", + "file_name": "192b18cc-1107-4198-a52b-921486dfabc8_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003451277, + "proportion_reads_duplicated": 0, + "submitter_id": "61dd6633-a5c4-429e-871d-22de7c5c141c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 392842162, + "created_datetime": "2024-09-20T11:14:29.476962-05:00", + "average_base_quality": 36, + "md5sum": "21c094c52be7db5d597af56a7ea2c89c", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "f7f2fc46-5412-49aa-8b6d-59a6dbcdc066", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 40, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "d2e0ffcc-0118-4b67-8a97-31e3f3362fc8_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d09ef584-a159-46fe-83c5-561d74aa62e0", + "created_datetime": "2024-09-20T11:17:39.409908-05:00" + }, + "file_size": 50384, + "md5sum": "db2e1f46f29f6d8b49693cc606ea4a88", + "file_id": "5758a4af-7134-4363-828e-4f5e9d693bd6", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0904-01A-02R-A96T-41", + "entity_type": "aliquot", + "case_id": "0b519c08-9f23-4ceb-9a13-e16509ca55d7", + "entity_id": "192b18cc-1107-4198-a52b-921486dfabc8" + } + ], + "file_name": "d2e0ffcc-0118-4b67-8a97-31e3f3362fc8.mirnaseq.isoforms.quantification.txt", + "submitter_id": "e1f53d45-f97d-4a3e-a0da-944ce7ea0d32", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9923904834697853, + "total_reads": 26097453, + "access": "controlled", + "file_name": "192b18cc-1107-4198-a52b-921486dfabc8_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003451277, + "proportion_reads_duplicated": 0, + "submitter_id": "61dd6633-a5c4-429e-871d-22de7c5c141c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 392842162, + "created_datetime": "2024-09-20T11:14:29.476962-05:00", + "average_base_quality": 36, + "md5sum": "21c094c52be7db5d597af56a7ea2c89c", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "f7f2fc46-5412-49aa-8b6d-59a6dbcdc066", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 40, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "d2e0ffcc-0118-4b67-8a97-31e3f3362fc8_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d09ef584-a159-46fe-83c5-561d74aa62e0", + "created_datetime": "2024-09-20T11:17:39.409908-05:00" + }, + "file_size": 412597, + "md5sum": "0dc9037517b42907dcb920caca365678", + "file_id": "b1cfcb84-6fb0-4a31-b5d3-6e2ecf24fd69", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1427-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "02d9aa2e-b16a-48ea-a420-5daed9fd51a6", + "entity_id": "5a505632-422c-4083-b867-82a7a503b314" + } + ], + "file_name": "5413501f-5f3b-4705-914f-dde9a3fb43a1.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_332_MirnaExpression9e4b4ee2-3330-4bf7-be86-cbb5384b3843_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1427-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_332_AlignedReads9e4b4ee2-3330-4bf7-be86-cbb5384b3843", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 146871332, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "84b9d5934b4d0d5eee59cf19c09a4136", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "47a13d48-bca0-4464-be31-caa5a6399065", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_332_MirnaExpressionWorkflowfdc5aa77-c803-4b42-88bf-fe7131c06068_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e490c37e-229f-4cb0-9a83-21f4d1eca445", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 304537, + "md5sum": "e9364e82264d31a91ef41589e647c992", + "file_id": "d9868bdc-fa86-4fa8-a772-fbd84a1613f1", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-57-1583-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "76cc2d21-eebc-4f09-9bc7-dbf7af0aafa8", + "entity_id": "3a37e320-0301-4f2b-bf09-f102c12502b1" + } + ], + "file_name": "c602b5bc-d557-4b1a-b69c-0d272dfffc63.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_296_MirnaExpression29a4c3fd-5988-4634-9a94-0830d3abf4f2_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-57-1583-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_296_AlignedReads29a4c3fd-5988-4634-9a94-0830d3abf4f2", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 177779111, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "65c9e1312408ff04a47e65e1b4926d54", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b7f5e070-6ef0-4b57-9d64-802154336a88", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_296_MirnaExpressionWorkflow3f1768b0-e6cf-4851-b150-c176b4ffe743_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1f0cfae4-3182-4df6-a775-cefbe39741b3", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 296350, + "md5sum": "bd831cc13e3d477d429d555e9ffa61d3", + "file_id": "aed6657d-70c8-4be1-a6aa-9549cb6a9bc4", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-20-1685-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "cbc5b936-ead5-4858-ab90-e639402789b0", + "entity_id": "9f6dd4ad-0130-46fe-9c49-72f378a753fe" + } + ], + "file_name": "de38b7a0-e739-4a51-bdbf-54b50ff5cd7d.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_331_MirnaExpression708ad90c-89ed-442d-bda6-9af968fa90d6_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-20-1685-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_331_AlignedReads708ad90c-89ed-442d-bda6-9af968fa90d6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 160441004, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "2264c67590063bea82929d15b252022a", + "updated_datetime": "2023-07-12T10:35:45.532497-05:00", + "file_id": "130702f4-e80a-474a-935a-7af16d4e8ba6", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_331_MirnaExpressionWorkflow4dcca743-4d84-4e0f-9f44-48f88d31a49b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "46019c44-f278-4914-acd2-dd035762ee7a", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50332, + "md5sum": "eca77b90b69114057cbd868b62ba833f", + "file_id": "e58ae089-e62e-461a-a5aa-2ec61a41c172", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1466-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "098acb76-0bf5-44e5-bcae-f919cf5fa5e5", + "entity_id": "b1ffcace-b775-4df8-a5da-34d416e4e39c" + } + ], + "file_name": "ec2c94e3-86a7-47a4-995a-36ae51c5b57a.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_118_MirnaExpressionf802567d-5000-4687-aec5-0ba2fddf0fe7_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1466-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_118_AlignedReadsf802567d-5000-4687-aec5-0ba2fddf0fe7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 138161488, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "476518c7c0b2b0816711bf8b0141d2cb", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "85cc15ab-904c-40ff-ba83-255629d35152", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_118_MirnaExpressionWorkflow3961c503-9641-4d30-8ebb-90c9ec976cea_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "23c62cf0-1a45-4525-ad00-a131e6929d40", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 341463, + "md5sum": "ba77c0673b2ea4046ec2253ef692bf61", + "file_id": "c6126cc7-84f5-424b-8e7f-0dd683759db2", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1915-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "0adadf17-c4b6-48b0-a326-21450de3e144", + "entity_id": "59837db5-32f0-426e-81e5-7992c6a012e2" + } + ], + "file_name": "42d8a1c1-483d-43df-b7fb-fbdde6a93b82.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_491_MirnaExpressionde2a47a6-2d57-40c0-b979-4a1770840d46_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1915-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_491_AlignedReadsde2a47a6-2d57-40c0-b979-4a1770840d46", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 204865661, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "2922c8be649ee475b405c9a2b4b2e4be", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "1694c17b-4676-4f0b-9885-0f3ef53a5868", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_491_MirnaExpressionWorkflowa92c1070-e856-492d-87ff-a3c71d2a31cb_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "9f06ef8a-30ed-49b4-bbaf-d526ef7eb43a", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 349528, + "md5sum": "e437b488252e577dfc4c42a8e3bddb22", + "file_id": "c4376886-dd6a-449d-85a7-ded3fa936927", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0720-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "0d23fa5b-95f8-4626-a4d2-c72ad3cc553b", + "entity_id": "1fe43034-df2b-4bef-be77-07dbb68083a4" + } + ], + "file_name": "11615736-838b-423e-a967-a38e14598395.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_136_MirnaExpression92ddeca9-5699-4120-9321-e05bc9d8fbc4_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "13ecc7fc-476c-5421-ab99-364e74adb396", + "entity_submitter_id": "TCGA-13-0720-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29714", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "1fe43034-df2b-4bef-be77-07dbb68083a4", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "e4726e9f-49d0-533a-987c-cbb7c31fe9a9", + "entity_submitter_id": "TCGA-13-0720-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8836", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "1fe43034-df2b-4bef-be77-07dbb68083a4", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0720-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_136_AlignedReads92ddeca9-5699-4120-9321-e05bc9d8fbc4", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 152796939, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "78cb34d1f1f104abccdc30afce5412b9", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5bb778fb-9526-40da-813f-a2603764e687", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_136_MirnaExpressionWorkflow1480a30e-6242-4f16-b895-c337f3b19caa_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7c36625e-df5a-411a-8d7b-d20be90a25d0", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50211, + "md5sum": "c7516ecfa3ee8a32f52bf9527ab4d55d", + "file_id": "67c176a3-f1a4-478e-bc9f-c85fab51e1b1", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-1674-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "1ede8063-e0e9-466d-891c-ac8916f1b5fa", + "entity_id": "3a81f083-56dc-48a5-be8d-b69a146db93b" + } + ], + "file_name": "52329a5e-6d17-4b08-93e1-313d50f678e7.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_221_MirnaExpression402cf496-3790-41e9-93fa-5072c0b25ed5_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-1674-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_221_AlignedReads402cf496-3790-41e9-93fa-5072c0b25ed5", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 165640619, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "5996f1ca433ac68908f2ab45497414c4", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "253ba650-bb5c-4b6e-a925-40fff853af2b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_221_MirnaExpressionWorkflowaf641048-89f6-4503-81dc-959173beae19_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "cb6eb879-87fc-4211-a420-2bf1bcad611a", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50333, + "md5sum": "580c63f924793ffaac6740331a6ac0d7", + "file_id": "fb270a41-f6f8-47b1-ade2-a5adc7f39e2f", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1651-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "55153632-1673-487a-85c0-f156377db1fc", + "entity_id": "b8426635-7d02-40e4-b9b9-695ae9a9b3fc" + } + ], + "file_name": "f58d3c14-b772-4d67-b643-d2e897356e90.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_485_MirnaExpression34e06b95-6e76-4b36-8a20-f191b5fbd6df_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "0de30556-cd34-5078-b652-926b9473999d", + "entity_submitter_id": "TCGA-04-1651-01A-01R-1567-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8860", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "b8426635-7d02-40e4-b9b9-695ae9a9b3fc", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "8eb9366c-6a4d-5cdf-b1f3-fb361f34db9c", + "entity_submitter_id": "TCGA-04-1651-01A-01R-1567-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29701", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "b8426635-7d02-40e4-b9b9-695ae9a9b3fc", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1651-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_485_AlignedReads34e06b95-6e76-4b36-8a20-f191b5fbd6df", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 239972991, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "4ff43caa90a4642271e50b8e982afda4", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "efcdf841-e1c5-4e31-9f7c-cced113a6588", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_485_MirnaExpressionWorkflowa02d1030-227a-42e4-9027-932381603414_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2ab0ed89-e5b5-4e19-8725-4ff3b0c920ae", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50463, + "md5sum": "b2d786ffee73782763531032c839ebd1", + "file_id": "cdf13089-4202-4e59-9157-4d22923224a2", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1633-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "20336269-5a5b-4ba7-8fe8-665a1f9af738", + "entity_id": "7517c446-401d-4501-bf27-916e0835deac" + } + ], + "file_name": "abb020b2-6dad-4ad5-9c00-ef43caba334c.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_311_MirnaExpressionb00278d2-7eaf-4a35-9a44-14148fc5a343_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1633-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_311_AlignedReadsb00278d2-7eaf-4a35-9a44-14148fc5a343", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 152614171, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "fc85ceca1e53d90d926d08312dbdd58f", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "96094c1a-c0ec-4687-b87e-461dd709a13b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_311_MirnaExpressionWorkflowa94c9e04-4e95-4da8-a2b8-7c680494adb2_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c3c3026b-f047-4bd1-a957-9f8d1ab07da8", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50368, + "md5sum": "394aeb395fc9ce7b71436390d5de3803", + "file_id": "5692bc02-1298-4940-9110-703d6e04aeaa", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1403-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "0d5e232d-5aa2-4f6f-be58-ffd5f15ee0b8", + "entity_id": "3217dd54-d41c-4c63-8bab-ff2c4baaee10" + } + ], + "file_name": "bf743280-5e6c-4f89-b1da-e55dc5cd36b5.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_131_MirnaExpression78f0cc36-e7cc-4c3e-8263-7592ad81a7f6_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1403-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_131_AlignedReads78f0cc36-e7cc-4c3e-8263-7592ad81a7f6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 176389823, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "e9ceac9b2eb586d61fe6b3e66ce04978", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "be409fe0-cb6b-431b-bbf2-43af1372cb0f", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_131_MirnaExpressionWorkflow98fab324-4177-4c40-95f3-5c09f2567c4b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b32354dc-12f5-416c-b527-8667f60a6920", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50341, + "md5sum": "433a3337b096328df4539d6b5311c73b", + "file_id": "c59989f1-814d-4e8e-a314-ee652087d65f", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-36-1571-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "12581634-eebb-4841-8498-71dc9d78c546", + "entity_id": "55c68aef-938c-4f68-a74d-f408673fff9c" + } + ], + "file_name": "09af3d9f-f60f-49c9-81b2-5e70fb57fb4a.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_201_MirnaExpressiondaacaf4e-e34f-44db-b54b-aaa3cebb20aa_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-36-1571-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_201_AlignedReadsdaacaf4e-e34f-44db-b54b-aaa3cebb20aa", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 233778161, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "7a6e8c47590628f6031e3325f8104057", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c89e03e5-4c9b-4265-ac3b-d66d7bbb2fc4", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_201_MirnaExpressionWorkflow3db56689-de4c-45bb-9b4f-c23814c9cb10_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "569735f4-01f6-47da-abeb-9b53b299f271", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 410052, + "md5sum": "d697c3c3193a74bf53df280b56d27824", + "file_id": "01760f5b-5447-4c76-aa92-b0034f1eb81a", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-36-1571-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "12581634-eebb-4841-8498-71dc9d78c546", + "entity_id": "55c68aef-938c-4f68-a74d-f408673fff9c" + } + ], + "file_name": "09af3d9f-f60f-49c9-81b2-5e70fb57fb4a.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_201_MirnaExpressiondaacaf4e-e34f-44db-b54b-aaa3cebb20aa_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-36-1571-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_201_AlignedReadsdaacaf4e-e34f-44db-b54b-aaa3cebb20aa", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 233778161, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "7a6e8c47590628f6031e3325f8104057", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c89e03e5-4c9b-4265-ac3b-d66d7bbb2fc4", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_201_MirnaExpressionWorkflow3db56689-de4c-45bb-9b4f-c23814c9cb10_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "569735f4-01f6-47da-abeb-9b53b299f271", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50348, + "md5sum": "2dda038f2cc4219a193db9be5baa2ec4", + "file_id": "c915a8cc-9ae7-42e2-a76c-e1073e75434f", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1497-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "bc4bc342-20bf-40c3-af26-2c6f942da93d", + "entity_id": "eb61bd52-e5fa-4c33-a2e4-1353a42184d9" + } + ], + "file_name": "c25c9178-db7e-43e4-91bf-d49b4ce69989.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_69_MirnaExpression8c7aa0bd-1d95-4d4a-9348-be2b59418f06_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1497-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_69_AlignedReads8c7aa0bd-1d95-4d4a-9348-be2b59418f06", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 232603360, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "e74bb12040725b93525bdd8701f16650", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "81b6862a-e4a7-42e8-a754-f75a47e19983", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_69_MirnaExpressionWorkflow61b39759-ab90-42c4-8dd9-83895c2790ed_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "9a4ce557-6511-4222-9f73-4e63c8e22426", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50232, + "md5sum": "fb7733482551bedbbb8f4be51834e05d", + "file_id": "f5c3bd3f-17ab-4ff9-a4ef-30e55ea6c9a9", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1318-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "13319c20-02f6-4b5f-b24f-3d8f4084094c", + "entity_id": "4d3e0164-1346-4e8e-b478-29bd8b1f1ce5" + } + ], + "file_name": "83e3608b-3891-4015-af9e-40ee65fe1acc.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_494_MirnaExpression4fea2211-98f6-428d-a37c-f00fbb863a7e_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1318-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_494_AlignedReads4fea2211-98f6-428d-a37c-f00fbb863a7e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 170902912, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "79aa9e3101b9c55cf5e4c0ca5581c98a", + "updated_datetime": "2023-07-12T10:35:45.532497-05:00", + "file_id": "ec963d8f-8a32-4511-a5ae-295885144877", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_494_MirnaExpressionWorkflowf8e8ad7d-b203-4641-b6d3-2616f0d9897f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c816161b-e27b-491a-9926-7c1fe0d92c1c", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50263, + "md5sum": "765ef0d2b8f15b8942f5e2c9bac0bce6", + "file_id": "86086ef8-b365-46f5-afbb-3ca10781969b", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1702-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "0e1598d8-cbe5-4113-95f1-4bcda061239b", + "entity_id": "c317689f-a405-4486-9a22-ff6eadd2d5b8" + } + ], + "file_name": "613e2323-054d-4e25-b5ad-b648f20a621a.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_82_MirnaExpressionb33e4c61-6237-43a0-8c70-41886a272e17_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1702-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_82_AlignedReadsb33e4c61-6237-43a0-8c70-41886a272e17", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 118146612, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "85b73c0ff08a25fcc51cb3b49e1a9167", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6dd7a38f-cddb-42a4-b83c-104811b905c2", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_82_MirnaExpressionWorkflowc265c0f6-9c23-454d-86a3-5780b5259dda_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1f692565-2c80-465d-8d52-3024f06158d0", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50323, + "md5sum": "1c58c22a482676042983be91a67862c7", + "file_id": "f33eb916-7019-47f1-98f8-bc24197cf848", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1702-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "0e1598d8-cbe5-4113-95f1-4bcda061239b", + "entity_id": "c317689f-a405-4486-9a22-ff6eadd2d5b8" + } + ], + "file_name": "613e2323-054d-4e25-b5ad-b648f20a621a.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_82_MirnaExpressionb33e4c61-6237-43a0-8c70-41886a272e17_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1702-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_82_AlignedReadsb33e4c61-6237-43a0-8c70-41886a272e17", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 118146612, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "85b73c0ff08a25fcc51cb3b49e1a9167", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6dd7a38f-cddb-42a4-b83c-104811b905c2", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_82_MirnaExpressionWorkflowc265c0f6-9c23-454d-86a3-5780b5259dda_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1f692565-2c80-465d-8d52-3024f06158d0", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 347331, + "md5sum": "3aa0402ce47c04acf6fe34d9999d8e37", + "file_id": "037ab7f9-670c-426d-9262-990e5fafdf80", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2012-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "20c6be4d-7baf-4ea0-93e2-a5212f2e9b9c", + "entity_id": "929c2bc4-4cee-4f82-b336-918fe041a588" + } + ], + "file_name": "b82976f7-a437-407d-9b0d-111c4946c1fe.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_19_MirnaExpression36d1f29e-b6f1-49b9-9866-12fd62802f3e_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2012-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_19_AlignedReads36d1f29e-b6f1-49b9-9866-12fd62802f3e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 167832304, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "636a4675369b5f9c60c4a4e3647d73bc", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "378543c5-5545-4d39-ba2a-deb09f9753bf", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_19_MirnaExpressionWorkflow8c73daf0-211d-4a85-a5b5-9059660b01e6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "55f879ae-fb17-4cb6-a84c-48d57ff1ea36", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 360615, + "md5sum": "150edf626e257df64f25b304bce0404f", + "file_id": "7dd99caa-00b0-43d7-aed6-a4a3edbc6a8e", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0751-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "15c84da3-16e5-4909-aea9-cb5894b0f8af", + "entity_id": "c14d81f4-38db-4b58-871b-6af6de3dd7ca" + } + ], + "file_name": "c2271ef2-66ff-4257-9f25-d70baf6a667d.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_187_MirnaExpression0ca12bd6-46fc-4e1c-8dcb-bf7d69e60883_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0751-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_187_AlignedReads0ca12bd6-46fc-4e1c-8dcb-bf7d69e60883", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 132182560, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "cee44656d2cb98572f8e61710f70f988", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a7faee52-8b0e-4e53-9222-b52d427a8480", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_187_MirnaExpressionWorkflow7f7fcab5-c4ab-4083-96aa-9e6c9b2fc58c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "55af9c2a-9653-4711-ae9d-2035534c60c6", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50125, + "md5sum": "8c01e8f97f0995b4932e3ca031078879", + "file_id": "de35e1b2-458b-4576-8cd6-4ca9884ae6bb", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0714-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "1e14f098-17b2-4f54-8e4f-e38088008df7", + "entity_id": "da337502-6fef-45b6-8770-b2f0889cd802" + } + ], + "file_name": "d550140e-346f-41c8-8700-802124a0c8c1.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_395_MirnaExpression32eef713-cb5a-4207-a7dd-f6d2fbd282f6_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "02e9ccfd-eaa6-592b-878b-8a2ffbac6227", + "entity_submitter_id": "TCGA-13-0714-01A-01R-1564-13", + "notes": "RNA-seq:HIGH rRNA CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8830", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "da337502-6fef-45b6-8770-b2f0889cd802", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "0efc8bad-2b7b-5ca8-8f01-f7688b9f38f6", + "entity_submitter_id": "TCGA-13-0714-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29713", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "da337502-6fef-45b6-8770-b2f0889cd802", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0714-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_395_AlignedReads32eef713-cb5a-4207-a7dd-f6d2fbd282f6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 143493532, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "b722b7e6ed756de46f637c5e94bff1fd", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c0280178-0046-4863-9c9e-3c81dd0ca2c2", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_395_MirnaExpressionWorkflowce0b0912-9e97-4a89-85ea-d374ec65cada_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "6eb5eabb-9d65-43e5-9743-d3fee5a706b7", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 49917, + "md5sum": "a02a950db8082890de004b633ef2a745", + "file_id": "a76d1f5a-76dc-46de-9f27-8006dc0c9c64", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1109-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "7c466a5f-a6b4-4d1a-a0f5-ddcd7ef90ff1", + "entity_id": "d47e074a-f78e-40c5-8af4-f737ce010041" + } + ], + "file_name": "99e6c880-906c-4969-a733-57d0d8861d0e.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_277_MirnaExpression4818e8a3-3791-4000-9893-f217441031c9_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1109-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_277_AlignedReads4818e8a3-3791-4000-9893-f217441031c9", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 149899775, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "ca5ec2778c7153e00288339f842f0330", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "2a972bdc-7d66-4107-9e69-831d28601b19", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_277_MirnaExpressionWorkflow0b0e03cf-0363-42bb-b218-a2b00cae46e6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b7c87ee9-9064-4bf4-bdd4-2c79ba491040", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50106, + "md5sum": "7e12e924f83247cdc5eb4aed50267a99", + "file_id": "2115bae1-cc72-4a7d-a3f5-219c813897b5", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0800-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "390eed6b-50af-48a9-9fd6-3a68a2bbb7f9", + "entity_id": "cd93531b-4d92-4be3-95e5-032636dd1ad8" + } + ], + "file_name": "aa862aa2-2f1d-4d11-aebd-4510387f1f7f.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_153_MirnaExpression82fc5a00-0052-4c9b-b15f-6288327394e3_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0800-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_153_AlignedReads82fc5a00-0052-4c9b-b15f-6288327394e3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 165912603, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "d5e41c0eb4b4087e59a8b53d7df56ffc", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "086fd01a-5ab5-4c87-b5c1-89eb743ee4dd", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_153_MirnaExpressionWorkflow2d3f1952-689a-4486-8395-add91a155ad6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "93f6d927-b73b-42dc-a427-3e90700beeb4", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 374810, + "md5sum": "f51031f933be3c43cf16ce2ea6f2c67e", + "file_id": "571e09e7-8770-414a-ba75-160709a39bce", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0805-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "2a3a6222-f477-4198-ab9e-cdf527c1a6cf", + "entity_id": "0382cd1e-14c3-4271-a277-38361e0c0981" + } + ], + "file_name": "ab8ba07a-47e6-4d96-95ca-82a116e8dec0.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_89_MirnaExpression09e5a923-6921-46d9-8768-f592b4d1eca8_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0805-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_89_AlignedReads09e5a923-6921-46d9-8768-f592b4d1eca8", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 132487382, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "26dc57140cd6c999541a7e3319a42ed6", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "2b4e3cec-0a9d-4b8f-a55a-ccf45b4ca4c0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_89_MirnaExpressionWorkflowb0a63d11-e3d9-4d26-b559-96ccb558498d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b6ac7a31-e9e2-47bd-a1a9-35446e2afb16", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 212487, + "md5sum": "f05c0a6064458532aa20ba877669ca4b", + "file_id": "b1a95cdc-296c-41eb-94c2-a777a8dda073", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0805-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "2a3a6222-f477-4198-ab9e-cdf527c1a6cf", + "entity_id": "c5e52a20-b3e1-4d66-b5ef-d9f952c84e9d" + } + ], + "file_name": "6698d89a-9954-4cd0-b31c-2b6bb9968471.mirnaseq.mirnas.quantification.txt", + "submitter_id": "18a911e5-7ecc-4ff7-a072-3416849c314b", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9917078687368989, + "total_reads": 27469898, + "access": "controlled", + "file_name": "c5e52a20-b3e1-4d66-b5ef-d9f952c84e9d_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.00312747, + "proportion_reads_duplicated": 0, + "submitter_id": "039448a0-5b80-4604-8988-4b6da927de70", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 451174383, + "created_datetime": "2024-09-20T11:13:06.585446-05:00", + "average_base_quality": 36, + "md5sum": "7cdeafb95bbe10a378bd638944d97d9a", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "90b2330c-aeae-4ba2-a3b3-ba065ccac8d1", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 35, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "6698d89a-9954-4cd0-b31c-2b6bb9968471_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f2789f0e-0d59-42ac-8b3f-ec04d16dfc54", + "created_datetime": "2024-09-20T11:16:51.796806-05:00" + }, + "file_size": 50694, + "md5sum": "fcf84c43e6fdd0c0d8f23cc9e90daa78", + "file_id": "6135b1fc-bac4-44fb-83c1-9a362f4c1058", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-20-0987-01A-02R-1564-13", + "entity_type": "aliquot", + "case_id": "34f285ab-6c31-4865-a0a7-a57af3567df0", + "entity_id": "40dafb8b-7311-4ee3-b5bc-9c9c7ffb8cce" + } + ], + "file_name": "8d64af27-a2c2-4cf2-96f1-6e8592f926cb.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_148_MirnaExpression1e200fcb-772a-444b-a1dc-1f63c7c8c9f8_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "4e2e9919-0309-5ce0-9fee-8fbdcef03dc9", + "entity_submitter_id": "TCGA-20-0987-01A-02R-1564-13", + "notes": "RNA-seq:INSUFFICIENT INPUT MATERIAL,LOW SEQUENCE YIELD/DIVERSITY;LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8765", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "40dafb8b-7311-4ee3-b5bc-9c9c7ffb8cce", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "55b5773b-8b6e-50c6-bf76-c63a2e4a528f", + "entity_submitter_id": "TCGA-20-0987-01A-02R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29760", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "40dafb8b-7311-4ee3-b5bc-9c9c7ffb8cce", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-20-0987-01A-02R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_148_AlignedReads1e200fcb-772a-444b-a1dc-1f63c7c8c9f8", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 113578314, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "3779dc7eb9bcbed7c2cdb23375e98f35", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "92664328-d018-49a3-a60a-dec3127c8489", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_148_MirnaExpressionWorkflow8d749945-5ff4-4288-87eb-bcd4c4c489e6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "3e033838-b69b-4def-81c4-e844b60053c0", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 224042, + "md5sum": "60a1aad124f635380e20baacb3d1a52c", + "file_id": "8b8a4265-98b3-45e7-8651-3e44b69d775d", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0901-01B-01R-1565-13", + "entity_type": "aliquot", + "case_id": "27920e1e-b9ab-4587-970a-0cba7025becb", + "entity_id": "4320fb38-5508-4ba7-87f1-43c4dc70854c" + } + ], + "file_name": "dcfbd40a-bf99-46bd-8398-fa5000bba378.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_309_MirnaExpression4c8e6cef-3be7-46d3-8050-72efeeb77110_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "1252b009-0c99-5c48-9995-a4c0acca2e55", + "entity_submitter_id": "TCGA-13-0901-01B-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29734", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "4320fb38-5508-4ba7-87f1-43c4dc70854c", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "3db5a31a-9575-539b-9075-a10cb0509c74", + "entity_submitter_id": "TCGA-13-0901-01B-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:32:20.747393-05:00", + "submitter_id": "8841", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "4320fb38-5508-4ba7-87f1-43c4dc70854c", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0901-01B-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_309_AlignedReads4c8e6cef-3be7-46d3-8050-72efeeb77110", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 304736406, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "7a7f651496280a3243a7e785b0abcbb5", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "ed34953d-b129-4817-a866-aa613abb7e03", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_309_MirnaExpressionWorkflow6f68d457-81d2-4667-8b8f-3a7d02a0d4d7_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2418d01e-4e81-4e60-9ae5-dcdb714e49f5", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50386, + "md5sum": "561cb7def7cc0d5d11ec19b540bbca83", + "file_id": "64afffb8-1b79-4051-9a3d-fd104a7145fc", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1367-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "30b8f4cd-9245-4496-a8a8-c3e59093bc0a", + "entity_id": "5c2da578-9d5d-40df-993f-38d9dc5d5f00" + } + ], + "file_name": "faa20bec-80db-4b29-b9da-4c519c53f85e.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_403_MirnaExpression86a6abf1-f6f4-432e-b3ae-aa8e22859060_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1367-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_403_AlignedReads86a6abf1-f6f4-432e-b3ae-aa8e22859060", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 162349957, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "55093ba5857224ca80c64fd095e570af", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6860eba7-4827-4b8c-9122-74b7228ee6fc", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_403_MirnaExpressionWorkflowe05d5ab3-1b57-4923-a76a-6033c7020c5d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0116d7cf-5f89-4861-9753-1ac4eea4e01b", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 368353, + "md5sum": "c9f8481fb59fcf2d1e21120ce6de4e91", + "file_id": "fdae5a0b-235b-4113-afd7-22753e7b7b2f", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2288-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "28ed2d42-5b4c-4bca-b2b2-6b2a6d3c42cf", + "entity_id": "dbc2cfac-df65-4750-af39-37760bad1057" + } + ], + "file_name": "e293bbbd-e6e5-47fd-8cec-0288d5490710.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_128_MirnaExpressiona7ef5431-4fdf-4656-926d-650e64d10289_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2288-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_128_AlignedReadsa7ef5431-4fdf-4656-926d-650e64d10289", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 298908258, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "71a93eaad9260d31000f0f9a29eabf21", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "be091af0-4de1-4f73-a75d-7b9e01d64398", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_128_MirnaExpressionWorkflowf2046a92-5a14-484d-89d1-8dc7a7d2305f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "3fccea3a-57c2-412b-8909-2245e6e2b985", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50404, + "md5sum": "68120269ce2737907571458743333d9d", + "file_id": "27857f7c-b576-465e-a9d4-29e957a88df6", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2297-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "2ab32e11-80d6-4ed0-a42e-da612219bbdd", + "entity_id": "2b0089bc-b493-4179-bf5c-e58550e1ee5b" + } + ], + "file_name": "262a75ee-f2c4-420e-bd54-51aa896028f5.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_425_MirnaExpressionb3b1ffaf-90f7-4e40-ad08-87057a495a88_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2297-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_425_AlignedReadsb3b1ffaf-90f7-4e40-ad08-87057a495a88", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 273477135, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "b6b8c5f8544609cfd32ee505d11d0fd1", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "70ec1a92-25a3-4ffb-a59c-7bb9e03b62f8", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_425_MirnaExpressionWorkflow6be33ac7-9811-4b70-9fd1-419a4baba4e6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "9803dd2e-a46d-481a-9138-38115b98323c", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 481764, + "md5sum": "d537edd170d630734bb1d8c17b2b034d", + "file_id": "8a3ee5f0-c9d4-4ebc-b736-4884b587035e", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0885-01A-02R-1569-13", + "entity_type": "aliquot", + "case_id": "2a924999-1fbf-470a-97bd-fd2276a9a366", + "entity_id": "e0f48d4d-4c10-4b83-9a13-9427a08371d3" + } + ], + "file_name": "3ab8c815-ea19-4446-929e-3d949f49816a.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_243_MirnaExpression63c996a2-b99e-4342-afc0-912a2a18fb06_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-0885-01A-02R-1569-13", + "notes": "RNA-seq:HIGH rRNA CONTENT;LOW 5/3 COVERAGE RATIO", + "submitter_id": "8851", + "classification": "CenterNotification", + "entity_id": "e0f48d4d-4c10-4b83-9a13-9427a08371d3", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "6b31a069-a8db-5c2d-b107-950deafd4000", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "case_id": "2a924999-1fbf-470a-97bd-fd2276a9a366", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-13-0885" + }, + { + "entity_submitter_id": "TCGA-13-0885-01A-02R-1569-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29728", + "classification": "CenterNotification", + "entity_id": "e0f48d4d-4c10-4b83-9a13-9427a08371d3", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "f1061044-874a-577e-8c72-ceeadf8db609", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "2a924999-1fbf-470a-97bd-fd2276a9a366", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-13-0885" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0885-01A-02R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_243_AlignedReads63c996a2-b99e-4342-afc0-912a2a18fb06", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 93726714, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "90cb4d422e967268303a4c26c237749f", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "bc235d71-4fcb-4f57-b66c-ae27bad12aa8", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_243_MirnaExpressionWorkflowb66b9581-6d5b-4c3f-bbc4-fd32594a2788_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "799e13a5-76f9-4588-9368-de268a2647dc", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 257824, + "md5sum": "b7e07c7a17669ab1a871c2761e5faece", + "file_id": "737fb45c-fc01-45f9-907e-6298f940993d", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1567-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "2cb50c2d-e749-4172-b101-d975507435c5", + "entity_id": "97c0b20f-ee65-42b2-af2d-92dcf48b2cd5" + } + ], + "file_name": "e76fb1d8-6e19-4842-9ad4-67dfdcdc94df.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_459_MirnaExpressionf1804adb-efab-4fa9-926b-7fe2e186298f_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1567-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_459_AlignedReadsf1804adb-efab-4fa9-926b-7fe2e186298f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 176502796, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "786e837c01d146ce2993c1f0bced8e0d", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "0acd8f76-93b2-458c-a0f2-281e21b24ef3", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_459_MirnaExpressionWorkflow0b9431f4-334c-437d-b5dd-ec82505e4a57_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ffec27b5-ad51-4fef-86e9-83928dc2f530", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 337118, + "md5sum": "dd292b17108abf3d421be987a9ff0d70", + "file_id": "59fdf078-9224-4366-ae9b-12ffe4441b1a", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-2081-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "41178cbc-db73-4007-b5d8-febebf7f578d", + "entity_id": "4c8dd391-5a1c-490e-a7d7-fde372c3ec47" + } + ], + "file_name": "483b3516-7fe7-4c12-91b2-172c8041f187.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_13_MirnaExpression7223f757-6ffe-47ac-8610-159f08860e12_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-2081-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_13_AlignedReads7223f757-6ffe-47ac-8610-159f08860e12", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 230041800, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "857c4d9820ae83980c4824473acaf42b", + "updated_datetime": "2023-07-12T10:33:27.414833-05:00", + "file_id": "d71bf88e-9016-4511-b955-eacdbfc9d343", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_13_MirnaExpressionWorkflowdcb4346c-75bd-4fa4-bf93-8902fce15dfb_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "996e5991-521a-4c80-9f39-a34d8ef8f3a2", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 394796, + "md5sum": "02f57f7409e7a8c445fe1a390cf0909a", + "file_id": "cddcac32-8a66-4074-a64e-b8a661a51f38", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-20-0991-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "36595b52-2b5f-4e87-80eb-37c29109e92a", + "entity_id": "70004d87-7c1b-40e6-b246-04bb349dca6c" + } + ], + "file_name": "04c31914-f7f5-4e02-9103-16244fab1da0.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_432_MirnaExpressionb32cd071-7f27-4d91-89f4-970249cb0451_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "19b43312-23d8-5ec1-aa4e-816411d61874", + "entity_submitter_id": "TCGA-20-0991-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29761", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "70004d87-7c1b-40e6-b246-04bb349dca6c", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "d649fb82-3d8e-553d-98ff-4e5c8cb4fb98", + "entity_submitter_id": "TCGA-20-0991-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:32:20.747393-05:00", + "submitter_id": "8834", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "70004d87-7c1b-40e6-b246-04bb349dca6c", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-20-0991-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_432_AlignedReadsb32cd071-7f27-4d91-89f4-970249cb0451", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 148127399, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "34a22f4c822825fda857f03a931d9748", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b5aa30ea-8717-4d38-8e4a-a9c22601a39c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_432_MirnaExpressionWorkflow5ecc56b8-9e2b-4770-8b3a-0effdfe866b6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8821ee20-677c-4ebe-b9c2-1f8d5676f47d", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 296272, + "md5sum": "692a94c9d2963c7f4150b24c13eb024d", + "file_id": "91854a7c-7efd-438c-96a3-b9edf86362bb", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1998-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "565d06a1-3640-4274-8fb3-8cad7e578876", + "entity_id": "0814c20e-fe77-4ff9-ab5e-a8ae2f74069d" + } + ], + "file_name": "0f48ac7c-d892-467e-bf2a-1d6122881e5e.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_16_MirnaExpressiona29f437b-921b-4690-956e-8ebe9942d36f_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1998-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_16_AlignedReadsa29f437b-921b-4690-956e-8ebe9942d36f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 147471147, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "01eaa79176b98688a93b4834756aff1c", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c278ea11-ed5b-41a3-9445-9a8457b738a0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_16_MirnaExpressionWorkflowcb74f8e9-2955-4915-89e5-f27598e31e4f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a7e0f477-fe7b-4b84-85a9-8aeff34e4c57", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 332277, + "md5sum": "f033533b944f11bd2951edf2d14b60f7", + "file_id": "22e23054-d583-4de3-906f-ba35420e40ae", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0725-01A-01R-1986-13", + "entity_type": "aliquot", + "case_id": "446ce2a3-d328-443c-a419-3344baad0e16", + "entity_id": "e9ac39c6-6c51-459b-8467-7b422e2ed704" + } + ], + "file_name": "89493459-8839-41fa-9a6f-4e09ef790f85.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_24_MirnaExpression740a8bdb-d449-4f3c-854c-40f7c5fcf987_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0725-01A-01R-1986-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_24_AlignedReads740a8bdb-d449-4f3c-854c-40f7c5fcf987", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 136363998, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "6997d62e0d2ec300418d7dcbcf95bcb9", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "33bcc16e-1b0d-44d0-a232-00e44ac55b1a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_24_MirnaExpressionWorkflowf5c9257a-c340-4f52-8628-6ba1461067e7_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d13f5f10-d894-44cf-b78a-3573fbedec88", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50271, + "md5sum": "24ecf2afef3b53ea2506420d009fd6e2", + "file_id": "fe884482-47e2-4ea4-9351-d464fd28c06b", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2016-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "512de609-757b-42be-8b30-c414f71af422", + "entity_id": "a391b870-b6fb-4ca8-b425-2331fceae442" + } + ], + "file_name": "356cdbfc-2329-4548-a24e-71b5de680fe8.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_29_MirnaExpressiondc8bfae8-3311-4371-b09f-84612f164286_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2016-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_29_AlignedReadsdc8bfae8-3311-4371-b09f-84612f164286", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 181617813, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "ea536943cf521e1b86d46751b0e56baa", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "00566ee4-500d-4689-9e06-4472bf81a0a0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_29_MirnaExpressionWorkflow1d0d8834-8729-4809-ae4e-ec2cabc481c8_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f2a2f836-423a-4c6a-b422-615d27589254", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 383374, + "md5sum": "82a9c1601e2b304cea8b4397cdc7ebb9", + "file_id": "39af2f58-7a6e-45b3-9940-f97552885a33", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2016-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "512de609-757b-42be-8b30-c414f71af422", + "entity_id": "a391b870-b6fb-4ca8-b425-2331fceae442" + } + ], + "file_name": "356cdbfc-2329-4548-a24e-71b5de680fe8.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_29_MirnaExpressiondc8bfae8-3311-4371-b09f-84612f164286_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2016-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_29_AlignedReadsdc8bfae8-3311-4371-b09f-84612f164286", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 181617813, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "ea536943cf521e1b86d46751b0e56baa", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "00566ee4-500d-4689-9e06-4472bf81a0a0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_29_MirnaExpressionWorkflow1d0d8834-8729-4809-ae4e-ec2cabc481c8_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f2a2f836-423a-4c6a-b422-615d27589254", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50390, + "md5sum": "ccf191d08ad0f3744e455fe4d5cfd279", + "file_id": "e1770500-8994-488b-95a1-908c85487016", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0758-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "514aa64e-a58d-48c2-aff9-498604cc11d6", + "entity_id": "488a6e7c-f7ba-4311-a3b9-b4de5971c344" + } + ], + "file_name": "c638c38b-e8c5-47ec-b6e9-ef578a297736.mirnaseq.isoforms.quantification.txt", + "submitter_id": "2721a860-7428-4a48-a850-2c8b9e75fe71", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9883124724849719, + "total_reads": 17631274, + "access": "controlled", + "file_name": "488a6e7c-f7ba-4311-a3b9-b4de5971c344_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005178703, + "proportion_reads_duplicated": 0, + "submitter_id": "51cd5b77-d815-4ea0-b1f2-f9ff190a64d4", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 333479685, + "created_datetime": "2024-09-20T11:13:26.717507-05:00", + "average_base_quality": 36, + "md5sum": "73f4cf8b62278662f33270fb6cabbf2b", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "daccc236-f413-4cc6-acd0-2395da6f1f40", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 30, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "c638c38b-e8c5-47ec-b6e9-ef578a297736_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "59874d19-b6f0-4be0-9979-c961e2ae62a0", + "created_datetime": "2024-09-20T11:18:03.243907-05:00" + }, + "file_size": 500170, + "md5sum": "4a6521b5e55dc83f8229ea7bc2e7596b", + "file_id": "a9648122-f000-4465-bafe-49230db49bc5", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0919-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "45957be6-e4df-4245-acf8-39dfc118ee19", + "entity_id": "36e20dfd-0d88-47bd-bf1f-164e069019d1" + } + ], + "file_name": "944015fa-f996-4d2a-8954-6a5e43e9f614.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_246_MirnaExpressioncb54f89f-833a-49cb-be12-a29b53f47d80_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-0919-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "submitter_id": "8773", + "classification": "CenterNotification", + "entity_id": "36e20dfd-0d88-47bd-bf1f-164e069019d1", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "2f3f1b55-a116-5bad-8919-b758dc51b3d0", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "45957be6-e4df-4245-acf8-39dfc118ee19", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-13-0919" + }, + { + "entity_submitter_id": "TCGA-13-0919-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29740", + "classification": "CenterNotification", + "entity_id": "36e20dfd-0d88-47bd-bf1f-164e069019d1", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "4b740dcc-3854-5c99-b78a-7ad1ff0f077a", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "45957be6-e4df-4245-acf8-39dfc118ee19", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-13-0919" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0919-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_246_AlignedReadscb54f89f-833a-49cb-be12-a29b53f47d80", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 126927659, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "e24ffa94d5de14016f6a56c0177985f8", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "878011da-3ae9-4baf-81d8-4a9841f671f9", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_246_MirnaExpressionWorkflow9dbf1c7b-4906-4129-9108-95fc879b6f90_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "186602e8-a782-4006-acfe-bc6a0675f15a", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50285, + "md5sum": "a381a60937cc20a95522d02086200026", + "file_id": "05117d47-0d43-483c-b3e7-ac747a98a237", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1434-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "5503b3a1-7d03-41b2-9ec8-e478c5414d67", + "entity_id": "368f21cd-dd07-440d-89f5-5874e37fe63b" + } + ], + "file_name": "3a3e7883-849d-4918-a954-7af33548c012.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_283_MirnaExpression5f9c70c4-3fac-435a-a51c-80d8db9e02b6_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1434-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_283_AlignedReads5f9c70c4-3fac-435a-a51c-80d8db9e02b6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 166352558, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "473208828b9c2b6bdc83346ad2170a02", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "008070f4-c6ee-4a5a-b347-8f3eb0b1d479", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_283_MirnaExpressionWorkflowfa60e78a-0ce4-449d-b499-f0416948de54_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "98429bcc-2063-4ee4-b156-c12f10414673", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 332526, + "md5sum": "04b61a0d6427636592931e89aaa7f3dd", + "file_id": "526d1d12-6177-4401-bedb-015662fa17bd", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-2397-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "4c099644-047c-42a3-8187-bfcbfe6662e4", + "entity_id": "7ad7080c-730b-4a5d-a8c1-f6387fbee72e" + } + ], + "file_name": "e5850774-2c46-45c4-a352-098d49e1f3d4.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_242_MirnaExpressionb0905143-e31d-417c-88a4-0b523259955d_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-2397-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_242_AlignedReadsb0905143-e31d-417c-88a4-0b523259955d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 163786244, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "dca6ca6aa1581cb14e88b66cefc4a231", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "ee2ad91b-7517-449b-bfb2-0424298f31d0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_242_MirnaExpressionWorkflow12776e06-f88e-46c6-bf42-c028ec1c2bcf_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d08c2cbd-e18c-4f95-ab92-dee98c576195", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 366729, + "md5sum": "7f308662398498dcc76c42e6593d1d9f", + "file_id": "4254b3d4-af47-40fc-b0cc-e1767f9c9055", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1549-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "3b81ec7c-0934-4649-9231-9919dd26dd15", + "entity_id": "f8ead0c8-9072-4a1d-9e07-f724a0d74a0f" + } + ], + "file_name": "0c45657e-7944-4660-b202-bd075681d77a.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_297_MirnaExpression5e239881-3761-4d23-af62-808b5400c859_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1549-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_297_AlignedReads5e239881-3761-4d23-af62-808b5400c859", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 130495523, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "9b7634ecbd63c9b62ea863c368f86988", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "0bb6ba01-abae-474e-99a5-bb1f9becc0fe", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_297_MirnaExpressionWorkflowc880a94b-1f54-4f43-9975-cb782a0352ea_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "72556946-fc9c-4c63-9428-40f047682eec", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 273281, + "md5sum": "50b99f394b7b41179d75bbe803cd2539", + "file_id": "53bab95e-3412-4f0f-9980-425da8d7b79c", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2281-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "59b3fbfe-0b7c-41e5-b756-ee7e23730df5", + "entity_id": "44948279-405d-42f6-ad29-465150ee6d85" + } + ], + "file_name": "146bf0ae-0c2a-4281-a1e5-ba31f0ba12bf.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_482_MirnaExpressionb5496483-7c28-4f36-8a58-98abffbe7263_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2281-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_482_AlignedReadsb5496483-7c28-4f36-8a58-98abffbe7263", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 146064027, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "95664a38ffda500c442f5a752e668ac3", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "440bff76-8c06-4ccd-a306-7011198560f9", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_482_MirnaExpressionWorkflow38680c5b-6e2c-4a9e-a038-e677c78b9595_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "4e634c7a-3083-4aff-b92f-5215647a8383", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50361, + "md5sum": "f617eeb300572bdefcc409681e88e093", + "file_id": "15933601-0ce6-4bba-b78b-760b88973f32", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1910-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "75f2d97a-b96c-403f-8055-5c5c8083e856", + "entity_id": "65e4e40b-f27f-4b84-9979-af659564363d" + } + ], + "file_name": "d5168c61-99c5-4a24-aae4-7216050d8bee.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_343_MirnaExpressiona86fa57e-d2a8-4161-b511-f2440b39e62d_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1910-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_343_AlignedReadsa86fa57e-d2a8-4161-b511-f2440b39e62d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 428756163, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "42b01a7dedc0d82c6dcd6ef867c14766", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "20bae5a5-07a7-49f3-9177-786999f3ee53", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_343_MirnaExpressionWorkflowdf9ea53f-58b3-4061-8846-10418e93bc68_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d043d41f-d31e-4ad8-a767-b8bf358a56e2", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 442100, + "md5sum": "720e5718c421d7e3e357870b6ad49ddb", + "file_id": "ec0cc4a0-b2df-4d90-b5d3-041a4be72473", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1604-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "65435f50-a35d-49e3-a36e-b95d9e274ca0", + "entity_id": "a658045c-93a6-4aac-abbb-1cd6093b7735" + } + ], + "file_name": "17d4b1e1-79b3-4b97-988f-d617f8d9b8eb.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_81_MirnaExpressionefacdc46-b8dd-48c9-97f6-bcd39d6f3534_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1604-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_81_AlignedReadsefacdc46-b8dd-48c9-97f6-bcd39d6f3534", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 174039917, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "6a4297ec8b22ea05b187ed480fa38928", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4915d66a-df6b-4dd5-853d-26eaa5cb0790", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_81_MirnaExpressionWorkflow2d3b8028-bcff-4513-970c-8d94df647ff2_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "975da856-835d-4085-bd52-ebe756155210", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50272, + "md5sum": "71339997cf8a24398e8fe6c2f553ef34", + "file_id": "e4f86fa9-c443-4b9a-a33b-214d67849cbb", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0883-01A-02R-1569-13", + "entity_type": "aliquot", + "case_id": "5c159ab5-8475-4d93-89b8-b6befed4a5b3", + "entity_id": "1cc5dd24-87c4-4b49-851f-618d0ca98875" + } + ], + "file_name": "ba4b8482-d750-496f-bb94-f6d568549f1a.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_196_MirnaExpressionaca7a201-f0d0-4e30-a161-602deda30e0c_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0883-01A-02R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_196_AlignedReadsaca7a201-f0d0-4e30-a161-602deda30e0c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 144519986, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "75934925a9207b343313ea519818ac53", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "f2083e71-36de-42db-987e-054ea1ce5c0e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_196_MirnaExpressionWorkflowab9838cc-3863-47f8-8e52-a5b2e8c5f06c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "05bb0438-a0c7-4fb0-bee1-85975bcb9307", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 301346, + "md5sum": "6d0cb7ca5da07de43ca7da1809715034", + "file_id": "78d71caf-5dc1-4fda-a01e-2a41e4520d52", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-2401-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "3bc8a74f-49bd-46b6-a3a4-68ca838e83c6", + "entity_id": "c3a1cbaf-28cd-451c-ad93-5a03a61a8a2c" + } + ], + "file_name": "05166d9f-df78-44e8-a37c-cf65b2dc95d7.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_34_MirnaExpression5a1f26ac-9100-452b-85e8-9aac55c13e58_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-2401-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_34_AlignedReads5a1f26ac-9100-452b-85e8-9aac55c13e58", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 212747373, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "1b8df822509bd6e6749b31d8fa2a2043", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c1280eae-ca40-4817-a2a8-023ba4fd9c2c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_34_MirnaExpressionWorkflow5e1f665e-4f2c-4c5c-9275-617833a36774_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c52a2493-321c-4e0b-9486-7664bf58ea5d", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50417, + "md5sum": "3085ab54971ba2f458379b2009c37a52", + "file_id": "705f8a25-2902-405a-9727-11e96344a9ba", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1555-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "5d36676e-4140-44b5-aa0e-b2af092b7dc0", + "entity_id": "0ec7ea28-7bd4-45c3-b03c-d855014fa4f4" + } + ], + "file_name": "56e8be89-3bac-486b-af0b-36815b9421a5.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_282_MirnaExpressionf7f960f3-cecb-4064-92a0-219c4942c1c6_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1555-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_282_AlignedReadsf7f960f3-cecb-4064-92a0-219c4942c1c6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 114815136, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "7142cb1379261b430cf544804684b2aa", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "5636dcf1-d3e2-4de9-a966-0a6160869a86", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_282_MirnaExpressionWorkflowddac9750-07c9-424e-9367-2142d0a8ea05_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a28a7e9e-0bc3-4620-b613-fef40a81a9d6", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 318681, + "md5sum": "e6fee9fd5048ac903d41feb85462d8a8", + "file_id": "17c21030-14dc-4611-a4bb-4169c74a8ef4", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-1670-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "60014a6e-6a13-4f92-bbfd-eeeee9632f98", + "entity_id": "eb2322dd-5a7f-41c0-9be2-7e1f7dc485b4" + } + ], + "file_name": "05327ee7-fee0-44f7-94f4-1f350c783410.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_232_MirnaExpression342cfede-1194-4d23-9c88-4c7e5dfccfdf_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-1670-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_232_AlignedReads342cfede-1194-4d23-9c88-4c7e5dfccfdf", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 168246386, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "4554ef784c1353eab8b2429f39f44f21", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "038d7b7a-e59d-4c0d-aa3d-1d10af867a3b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_232_MirnaExpressionWorkflow579db6b3-8a5f-40ff-a608-a4dddcb181be_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e6b3cdaa-5c80-4e11-92f2-c6c904f1b67e", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 359859, + "md5sum": "deb1ee20310a94807d6dcdeb81276589", + "file_id": "2ed5b809-57e7-4486-befd-1fccb6a086d1", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-57-1994-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "602e2934-223a-44db-8c33-06eb05d72f94", + "entity_id": "2cf309ea-0c2e-4f28-a94b-342dc9a1aae8" + } + ], + "file_name": "766881fe-01d6-4a1b-9312-1dde8f1e1f80.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_111_MirnaExpression70f4eb3d-00aa-4de4-9395-18af98063e23_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-57-1994-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_111_AlignedReads70f4eb3d-00aa-4de4-9395-18af98063e23", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 315880604, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "ccc1de09e0e1ab762b8df4f7f56122bd", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "241f4cf1-599a-4455-92be-4169b8e754ac", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_111_MirnaExpressionWorkflow9a6c40ec-4eeb-4db8-b31e-1e7d1387f38f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d9c08ed3-dbb3-42f4-9cb5-86cea6c42df4", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 516692, + "md5sum": "7114ad890943235a1d31ec63e9170280", + "file_id": "7fa26e68-2b29-4d0c-8300-d56c370eb4ba", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0802-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "3c8b5986-f9d5-4e7e-9dd4-3ad301451279", + "entity_id": "b46a198b-283b-4ea9-bf46-236407a3b848" + } + ], + "file_name": "6be3b7da-c8fe-43c8-ae31-41e52c70af9f.mirnaseq.isoforms.quantification.txt", + "submitter_id": "2cc40e5e-b0aa-411d-8ac5-9113198c231b", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9889848956727803, + "total_reads": 19726731, + "access": "controlled", + "file_name": "b46a198b-283b-4ea9-bf46-236407a3b848_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004301663, + "proportion_reads_duplicated": 0, + "submitter_id": "663b469f-8be9-402b-bd4c-c4ded2faa6bc", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 338814862, + "created_datetime": "2024-09-20T11:14:03.170865-05:00", + "average_base_quality": 36, + "md5sum": "276ee7cf700611b215352fba4d3b9293", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "2b3cf45b-55b4-443d-98b5-acaddda716ba", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 34, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "6be3b7da-c8fe-43c8-ae31-41e52c70af9f_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "702a3008-c4c0-4742-9203-d8e972296644", + "created_datetime": "2024-09-20T11:18:21.045098-05:00" + }, + "file_size": 496352, + "md5sum": "bcffcab6a50380770cf0709c8e32d054", + "file_id": "a1fa87f6-9ea5-46ec-99d2-e832afb887b9", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1370-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "7e6cdbc7-26a7-44f2-96fa-094738cbccae", + "entity_id": "1c0bc958-fd10-48eb-81dd-52683aeca9a6" + } + ], + "file_name": "e1dffaed-4b9a-4262-9a95-b6cdb08712bc.mirnaseq.mirnas.quantification.txt", + "submitter_id": "999ff26c-6537-4965-9769-327e1d2524a6", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9849747796654712, + "total_reads": 20639298, + "access": "controlled", + "file_name": "1c0bc958-fd10-48eb-81dd-52683aeca9a6_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004949254, + "proportion_reads_duplicated": 0, + "submitter_id": "7c8310f7-dd7c-48fe-a940-fbb34c9b72ab", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 356317048, + "created_datetime": "2024-09-20T11:13:03.518646-05:00", + "average_base_quality": 36, + "md5sum": "2353a2a63d2fdc4b61037522203eac20", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "f438c206-b592-420e-8cc2-132689319a95", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "e1dffaed-4b9a-4262-9a95-b6cdb08712bc_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "6418630b-0762-4067-a3f0-f1c2a49941a3", + "created_datetime": "2024-09-20T11:17:12.584389-05:00" + }, + "file_size": 50602, + "md5sum": "7ed99a731147f42af3eb8cb71d6f6728", + "file_id": "7f01fecc-1a79-442b-8cdb-8b3ea48d4a61", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-0968-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "619b14f3-b8cc-4c0a-8304-6719853d592a", + "entity_id": "b2f7c706-ec61-45d4-9394-44921dc99f8c" + } + ], + "file_name": "9b95700a-1c83-4f52-8634-928b5d20a0d4.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_116_MirnaExpressiondacb48b3-9b9e-4dac-b604-d91c503e4bd2_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "1c89cb53-6502-540a-8120-4da5ebeb4222", + "entity_submitter_id": "TCGA-24-0968-01A-01R-1569-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8848", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "b2f7c706-ec61-45d4-9394-44921dc99f8c", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "f32f5e80-e3e3-5061-afac-8efb40e18c63", + "entity_submitter_id": "TCGA-24-0968-01A-01R-1569-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29776", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "b2f7c706-ec61-45d4-9394-44921dc99f8c", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-0968-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_116_AlignedReadsdacb48b3-9b9e-4dac-b604-d91c503e4bd2", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 142805635, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "4a1aca5e7b88dcbda154c03b3dbf4006", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "db9a3e98-25e9-475b-a099-7b333a1c7091", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_116_MirnaExpressionWorkflow174cc2de-da56-4bc1-9069-c8dc4c030744_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7c107c30-433d-481b-9ac2-51837f2bbf1b", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50319, + "md5sum": "dae2ac9447c5a5a869fb73bd70aca6fc", + "file_id": "0153ac3e-a952-4409-9a80-cb502393c3ff", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-0968-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "619b14f3-b8cc-4c0a-8304-6719853d592a", + "entity_id": "b2f7c706-ec61-45d4-9394-44921dc99f8c" + } + ], + "file_name": "9b95700a-1c83-4f52-8634-928b5d20a0d4.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_116_MirnaExpressiondacb48b3-9b9e-4dac-b604-d91c503e4bd2_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "1c89cb53-6502-540a-8120-4da5ebeb4222", + "entity_submitter_id": "TCGA-24-0968-01A-01R-1569-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8848", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "b2f7c706-ec61-45d4-9394-44921dc99f8c", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "f32f5e80-e3e3-5061-afac-8efb40e18c63", + "entity_submitter_id": "TCGA-24-0968-01A-01R-1569-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29776", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "b2f7c706-ec61-45d4-9394-44921dc99f8c", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-0968-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_116_AlignedReadsdacb48b3-9b9e-4dac-b604-d91c503e4bd2", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 142805635, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "4a1aca5e7b88dcbda154c03b3dbf4006", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "db9a3e98-25e9-475b-a099-7b333a1c7091", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_116_MirnaExpressionWorkflow174cc2de-da56-4bc1-9069-c8dc4c030744_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7c107c30-433d-481b-9ac2-51837f2bbf1b", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 350872, + "md5sum": "266a7167e6a6b169b2b805c0a3ced5a7", + "file_id": "29ffa94e-b6b4-4af5-9fc5-58d33c062bb7", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0897-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "79e6e31c-22a1-481c-903b-ab5499cbd450", + "entity_id": "479b74bf-5003-45e1-9505-687146a5fc45" + } + ], + "file_name": "6a4e771b-aa65-4918-9ad2-18f7250b3f17.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_98_MirnaExpression8c8bf4bd-8e8a-4125-b7d1-858cd17605fc_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0897-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_98_AlignedReads8c8bf4bd-8e8a-4125-b7d1-858cd17605fc", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 90087430, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "cd1f4173ef54e982ea266cb1ccc642f7", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "0d58abc5-7e35-471a-bc53-af814c605c62", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_98_MirnaExpressionWorkflow400d4691-8863-4a11-b489-07d05eb6ccbb_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1e25244e-8a55-42b0-b662-f31931b35df8", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 233777, + "md5sum": "2b4fd400e5f04ac3112be18009fbbe61", + "file_id": "bb429499-923c-4b6d-a6cc-06319c8410b7", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1121-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "81005bae-686a-4598-8994-49d90ebac56f", + "entity_id": "b8882edb-0284-4c34-b9f7-a5f1e7a76f3c" + } + ], + "file_name": "f3975093-55c6-41c4-bfcc-3df2e5281853.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_66_MirnaExpression9a9240e6-6421-4568-a8e7-53acc10f0787_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1121-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_66_AlignedReads9a9240e6-6421-4568-a8e7-53acc10f0787", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 410126539, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "5b0f32e694f7081dd100cfbf67a30705", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "fb2dca99-9ef7-401e-98d1-bce96b5dcb1c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_66_MirnaExpressionWorkflow0cb6837e-d94a-45da-9e5c-c7f499c8e38e_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "55679c78-67a6-4283-8739-5bde497377f1", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50592, + "md5sum": "f87b3e431c92ad05296de5e13f2181a9", + "file_id": "e8edd292-9a38-4023-8f76-b796c7289a1f", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1413-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "3fc8f799-5bd3-4f48-baf0-c458ce86ab7e", + "entity_id": "545867ef-1299-410d-bbbf-d6c189344b0f" + } + ], + "file_name": "68f56d7b-9f53-4900-ba63-52c8f9ed90fd.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_179_MirnaExpressionf4287368-646c-4ff0-8f30-0fd354475aa5_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1413-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_179_AlignedReadsf4287368-646c-4ff0-8f30-0fd354475aa5", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 188170397, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "8fd2c393ddc2850e83241c8594819968", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "590c948a-4a9d-4c12-9b1c-c11f1d4a1001", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_179_MirnaExpressionWorkflowfef01be8-ad74-40eb-b349-7f3b4ef41269_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "933a723f-b2cd-46a5-b16a-5f43c8778cc9", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 358590, + "md5sum": "017f1f37e7c76336faa1686997962bf4", + "file_id": "53a97ac7-8a4e-4e77-aca9-49d50d93c693", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2102-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "7a08efd0-f984-430e-a8eb-1881047214b6", + "entity_id": "7ac6af79-c14a-4026-84aa-a288afcb96da" + } + ], + "file_name": "6432f7d5-aae4-46ac-bc8a-580d9047579c.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_409_MirnaExpression184e9102-9ebd-4ed1-8944-968dc36d9299_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2102-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_409_AlignedReads184e9102-9ebd-4ed1-8944-968dc36d9299", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 208921097, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "0eef52f61582635d4d281acc8572d1c5", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "793f5530-11ee-46de-8c2b-da3de0490c9b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_409_MirnaExpressionWorkflowf0ebc956-62e0-47f3-b89d-aa42f7f32bb4_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "db46c886-8116-41fa-b613-83d3a100395e", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 426686, + "md5sum": "a30fe30e8fb86e2912678b6d5488a542", + "file_id": "0b56e0ed-b3bc-49ea-8ad6-3156e118ecff", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1321-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "6ad8bc89-d8e9-48c2-bc25-c8e51f972b4d", + "entity_id": "74ad9d3e-97a9-419d-8842-3fb37d3f099a" + } + ], + "file_name": "aea53e86-ea23-4a00-9b68-eb8dafcf17ea.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_91_MirnaExpression9178b5f4-4003-4c79-8c69-9e091a41d54b_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1321-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_91_AlignedReads9178b5f4-4003-4c79-8c69-9e091a41d54b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 205099019, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "ebffaf61069b82d9440d9c2a611fe98e", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "1cc0942c-1264-47eb-af72-81b754be1d66", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_91_MirnaExpressionWorkflow4acdcba7-7705-446f-989c-b46f7c306b07_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2167942c-2566-4bfc-b57c-fd73ced35f40", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 377228, + "md5sum": "3f6fe7d7000396da6467eb3811851cfb", + "file_id": "e8ed5d77-49ce-475d-91f1-e633185ed60c", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2033-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "872d2922-7292-4681-adb7-d3b267eccbe7", + "entity_id": "b03b75e2-d1d0-4fd7-b66e-891f7b0acb76" + } + ], + "file_name": "35f29152-33a6-4861-9356-9d7430275a5d.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_213_MirnaExpressionf563294f-25f7-4961-80c1-c1c99c21d30b_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2033-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_213_AlignedReadsf563294f-25f7-4961-80c1-c1c99c21d30b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 140531786, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "3c29709c725d9eba2399254a78befbb3", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "baea9a70-9db5-4bf8-b21b-c3d4abdab3f2", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_213_MirnaExpressionWorkflowb4271fff-eb9c-41db-8367-6d007cca4d2c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b8832fa0-da63-4b7a-98c8-3449f3d802b8", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50274, + "md5sum": "8af05e6d415f00467c46a3445d2a8c81", + "file_id": "14e55baf-fc2d-4cee-b75a-fffa9bc6f7d9", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0903-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "8783e4b0-2b62-45d5-8cd9-f5a71cc0138e", + "entity_id": "630ab01b-d8c9-477d-a0d0-39d98773a583" + } + ], + "file_name": "e43d7956-8e86-4098-ac19-f956f6a0efc7.mirnaseq.isoforms.quantification.txt", + "submitter_id": "830c6c85-961f-41fe-9076-9da22f4f2b70", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.990084720107913, + "total_reads": 19839682, + "access": "controlled", + "file_name": "630ab01b-d8c9-477d-a0d0-39d98773a583_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003929033, + "proportion_reads_duplicated": 0, + "submitter_id": "f8911f68-a503-4d36-bca9-27b6bcd83a7b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 361104451, + "created_datetime": "2024-09-20T11:14:18.117132-05:00", + "average_base_quality": 36, + "md5sum": "b7219fcbc0a51f6e8f827136ee6e4568", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "b3be8bc1-0a5b-42b5-be9e-4a27c9c021cf", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 32, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "e43d7956-8e86-4098-ac19-f956f6a0efc7_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5d06b895-edfe-45cf-a88c-2cd880c66355", + "created_datetime": "2024-09-20T11:17:31.139241-05:00" + }, + "file_size": 546544, + "md5sum": "a2326c1763560d022f8d832e1ad9e1d9", + "file_id": "3c172e70-050c-4e03-8bad-bebf4edb40cb", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1436-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "6e84e89d-4f35-43b8-b47d-b1343b8c1ab9", + "entity_id": "45ff767a-721a-4d89-b5e9-0c6e7eba476d" + } + ], + "file_name": "fbf1cb50-a917-4e0b-9e28-1ebc48827a17.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_134_MirnaExpressionf07271a2-01d2-434e-8542-195568f000b5_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1436-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_134_AlignedReadsf07271a2-01d2-434e-8542-195568f000b5", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 155313877, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "9e9938542bd76d83d17d090b0481bc63", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "fc596320-95c5-4241-93b8-418a68f7db0f", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_134_MirnaExpressionWorkflow62e962e4-f16d-4814-bdda-f8d1c9b5a054_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "015ae24e-613d-4eef-9bbd-a125719302c1", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 351337, + "md5sum": "c0ade98b1511f1e33c75fd3b132db345", + "file_id": "70416d1e-cdd8-42f3-b7aa-99d5a807b381", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1690-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "6b06281b-d3a9-440e-a86c-ee7db003352a", + "entity_id": "d78906d7-c8f2-4bf0-86cc-2b60b067aaa6" + } + ], + "file_name": "bc282b33-4b39-49d1-90d3-7d74d9eb2119.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_441_MirnaExpression27eac34d-7503-4caa-9ff6-bc2c7e7784b4_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1690-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_441_AlignedReads27eac34d-7503-4caa-9ff6-bc2c7e7784b4", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 89084232, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "25eb0ea306a91ae43685ebd56957fedb", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4ccc7c9c-b58f-4c4d-8400-d8b5a2d231a4", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_441_MirnaExpressionWorkflow2a95e644-f7ec-4ae2-9e23-6ea8868dc9b1_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c538110b-108d-4bcc-a494-596b73635b5b", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50091, + "md5sum": "bbc6882cbc8f502566ef970647379d79", + "file_id": "9028831f-eded-4961-8ea1-151ece499b53", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1930-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "62efb5ae-43dc-4a4c-a898-6cd9c6dba027", + "entity_id": "d85ca8ac-9458-4f3a-b2ef-db4df852f75e" + } + ], + "file_name": "f7506126-0f7a-4d12-b6bd-62c4f2f44d4c.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_376_MirnaExpressionc8dcda06-df66-4d9b-b217-d17652772387_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1930-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_376_AlignedReadsc8dcda06-df66-4d9b-b217-d17652772387", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 180778924, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "4450bf136c7039e5219cd8dabf28a44f", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "d22fca56-091b-4ac2-940a-26443f9ceffc", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_376_MirnaExpressionWorkflowf98ecb30-6304-42c1-851f-49da1168f5a0_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "963e31f7-56d9-47c3-90f7-e5d83206256b", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50325, + "md5sum": "660f34804c65de467606c7dc683b0093", + "file_id": "cbf7c7cd-e0fb-480c-8108-cbaa57a39841", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2111-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "91a17d40-c8cb-4cce-b306-966382a8fe4a", + "entity_id": "25c0888a-25b9-4cc0-a02f-6d363a341e8f" + } + ], + "file_name": "cd3c7eb0-1dcc-4199-82fd-385139002a1e.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_236_MirnaExpression370cbe67-1365-44f0-b899-bdd313fa6b42_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2111-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_236_AlignedReads370cbe67-1365-44f0-b899-bdd313fa6b42", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 349384846, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "1b78adad74a6fee446add54172a36dda", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6788cee0-772d-4f6d-8f54-c64d620b70cd", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_236_MirnaExpressionWorkflowcda9f961-b303-4b27-9238-3a3c4b215819_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "83f8ed85-4a08-49ca-bc6c-3444cb25bc73", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50483, + "md5sum": "0d2649e873dd04a4ed29331087d5667d", + "file_id": "1faeb00b-93aa-489f-8612-dbcb69353b33", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0920-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "85a85a11-7200-4e96-97af-6ba26d680d59", + "entity_id": "2d8e1b4d-85d0-4bfd-99f7-59559dabe978" + } + ], + "file_name": "0201f538-e899-4a77-96aa-b563c3712eda.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_381_MirnaExpression4fa8f5f4-3780-4129-9122-61a60f54a25e_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0920-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_381_AlignedReads4fa8f5f4-3780-4129-9122-61a60f54a25e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 223873756, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "70b011d2fb307749aaf6d4e32d8cdc99", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "1a836cd7-0af5-4453-a752-d108ded002b0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_381_MirnaExpressionWorkflowba255abe-7602-48bc-91d9-9e1b7b0dcde2_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a3cc0acc-7c50-4e69-981e-5e5d7e1e8d0c", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 380564, + "md5sum": "3acad9dbab5a04ce4cfd9f6e3434c207", + "file_id": "cfc1995a-80eb-44e2-a1ea-d263a63f2b92", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1696-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "8a98a6e6-b763-4824-858b-fd2738e6c9a3", + "entity_id": "23c4ab1a-f8ce-47be-ab03-abfc66ea70ef" + } + ], + "file_name": "760328e5-3c89-458d-8546-00d1468a8987.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_480_MirnaExpression0f20db11-1d86-473e-ab9e-2c00f53d459a_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1696-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_480_AlignedReads0f20db11-1d86-473e-ab9e-2c00f53d459a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 182735540, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "a06eb6302a2c023b4b2776352f8813a3", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "648fa444-3c9f-4543-b226-399d8220036e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_480_MirnaExpressionWorkflowc0fbea9a-03f0-4382-8d8c-8be700c9eca4_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1cc48fd8-6af4-4761-9eff-a8e6e3ee98e1", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 300566, + "md5sum": "ab20e9ab16f7c14c3ff9aa51e756f526", + "file_id": "c7462d8b-2d2e-4b84-86e0-9b6a5e88f7ff", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-59-2352-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "758e6b52-062e-4ca0-84d1-ea38477414ac", + "entity_id": "a209a8f4-9462-4ade-be57-caaec54999cb" + } + ], + "file_name": "a9fb9fbc-2764-40d9-8408-3fde78399371.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_483_MirnaExpression911a3d2f-3e95-4fa9-a2dc-23782a5ee3a4_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-59-2352-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_483_AlignedReads911a3d2f-3e95-4fa9-a2dc-23782a5ee3a4", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 185260977, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "10d0bd3091b049a75b6cca581536067d", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "caa2d39c-34f2-47b8-a693-207be80a6f97", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_483_MirnaExpressionWorkflow902c9776-1e8d-4f86-912e-243e4a88bc23_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f223eff9-5e9a-44f5-bd6b-c33fce1e00f3", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 422964, + "md5sum": "e90b22a89ba6619af2c6e562e160d232", + "file_id": "ff143cbb-a486-45b1-a5fc-3dbaaa2108f3", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0804-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "7e34d3c1-1fab-4326-9a69-4260d2bac558", + "entity_id": "220b144c-9f9c-459a-b332-5d6e5dedb686" + } + ], + "file_name": "b3437cda-8bec-4309-9463-bff79c197cb1.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_135_MirnaExpressionfd5d7099-4e4e-4c55-95cd-58ed5f3fac2e_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "8fc07a2b-afa3-5a15-89d6-5fb4615d09cc", + "entity_submitter_id": "TCGA-13-0804-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29726", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "220b144c-9f9c-459a-b332-5d6e5dedb686", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "fc3c05ad-2bdb-5378-baa9-b235bb010650", + "entity_submitter_id": "TCGA-13-0804-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8759", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "220b144c-9f9c-459a-b332-5d6e5dedb686", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0804-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_135_AlignedReadsfd5d7099-4e4e-4c55-95cd-58ed5f3fac2e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 39846017, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "695ada385a5a193c264d8a931d99c64e", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4dfb63dd-eb9a-4584-8bc4-3eddc62744c9", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_135_MirnaExpressionWorkflowc4dcca9f-2097-4514-b348-2ef549675967_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5bd1f33a-c2a1-4f25-aaec-8c66091b7d5f", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 189707, + "md5sum": "89d1ad4f2b8b658a078dff1cde21906f", + "file_id": "459bd3f8-7cf6-48a1-a646-23c1c3106991", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1560-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "afd92922-b8dc-48bd-a9c0-bc8d95855eb7", + "entity_id": "a7ea40ed-6cfb-42b7-92b7-64d6ba988414" + } + ], + "file_name": "a5d90be4-0242-4d83-a54a-a973b638b4c4.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_398_MirnaExpressiond599b3e9-2492-4a0a-9bd3-adede573edaf_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1560-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_398_AlignedReadsd599b3e9-2492-4a0a-9bd3-adede573edaf", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 133222211, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "0b4a6fdfa00c0dc36d69fdee7cbb144d", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "e3aba15a-cbee-4595-8219-2bb6549d2c27", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_398_MirnaExpressionWorkflow719806dc-3a85-48ff-bf67-fb485cd8efff_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "3751f1d0-ac22-467f-9289-32e5df40731d", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 297992, + "md5sum": "6a25ce81e7ccc9021e826b5d57b333e7", + "file_id": "e85af5e0-8e38-4d4c-858b-34d321f4c817", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1117-01A-02R-A96U-41", + "entity_type": "aliquot", + "case_id": "a88b7e66-5f12-4023-a7e2-fcfbd1f25977", + "entity_id": "7e9afbd6-087d-41a5-a514-13fe948d9957" + } + ], + "file_name": "031ed697-812f-41dd-9a5b-ceae4b1ed991.mirnaseq.mirnas.quantification.txt", + "submitter_id": "164e25ab-f8f2-4cfd-ace8-d84a983d577c", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.987991133169655, + "total_reads": 18325376, + "access": "controlled", + "file_name": "7e9afbd6-087d-41a5-a514-13fe948d9957_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004197155, + "proportion_reads_duplicated": 0, + "submitter_id": "6b9dbe40-3c0d-4dc4-96cc-b3023c3dcd53", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 322435900, + "created_datetime": "2024-09-20T11:13:36.209572-05:00", + "average_base_quality": 36, + "md5sum": "dda9044a14dda70ee416a177f0160bda", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "99e57138-972f-4ca8-9a3f-4c67625aff62", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 33, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "031ed697-812f-41dd-9a5b-ceae4b1ed991_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "4ff07b02-e6a4-4537-9c38-29303dc215a3", + "created_datetime": "2024-09-20T11:18:17.006015-05:00" + }, + "file_size": 50621, + "md5sum": "92abf1bf243b0a45f4c146a8f139f2a5", + "file_id": "1ab98075-8c95-4934-8499-0c55b23bebbe", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0795-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "b1e11e94-646b-4c44-9d33-1ca67d8356fb", + "entity_id": "5345eef4-ee81-4128-96fb-85c29750cc96" + } + ], + "file_name": "919eb80a-856c-4635-8409-2880d5a4eec2.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_453_MirnaExpression4a702bee-06b0-491f-ab82-fb489b2e492d_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "9f2909d7-faad-57d7-81d7-4bf3799be361", + "entity_submitter_id": "TCGA-13-0795-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29724", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "5345eef4-ee81-4128-96fb-85c29750cc96", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "d4ae8cb5-4718-57f5-b6f4-19264672c4fd", + "entity_submitter_id": "TCGA-13-0795-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8827", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "5345eef4-ee81-4128-96fb-85c29750cc96", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0795-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_453_AlignedReads4a702bee-06b0-491f-ab82-fb489b2e492d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 206805443, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "fea9af360a2731a096105feb1f136bca", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "f7af5de8-1c9d-4996-ab39-e168a9e1d044", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_453_MirnaExpressionWorkflow02c2e790-95e8-4739-84fc-17305f04c087_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b93e9017-096f-45e8-a3d1-e37dd67b880e", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 411833, + "md5sum": "ba7f7ab1d116a428d5e144cff5dd8525", + "file_id": "828f3d41-5097-4580-ad7a-89f7faa047fb", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-10-0927-01A-02R-1564-13", + "entity_type": "aliquot", + "case_id": "933dbfbd-4697-403e-bd73-c17cb300c94b", + "entity_id": "1930e83e-d1aa-459e-9f05-ab347df98dbf" + } + ], + "file_name": "71780af1-64aa-4e23-b4c1-84aefe241452.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_400_MirnaExpression0035cf7a-f20c-4036-846f-68b283d8ad44_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-10-0927-01A-02R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "submitter_id": "8833", + "classification": "CenterNotification", + "entity_id": "1930e83e-d1aa-459e-9f05-ab347df98dbf", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "31c57d5b-2bf2-59a8-8747-6e1d04078ad6", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "933dbfbd-4697-403e-bd73-c17cb300c94b", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-10-0927" + }, + { + "entity_submitter_id": "TCGA-10-0927-01A-02R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29707", + "classification": "CenterNotification", + "entity_id": "1930e83e-d1aa-459e-9f05-ab347df98dbf", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "76f1f5bd-5c1e-51c6-a554-51e1db8a08d9", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "933dbfbd-4697-403e-bd73-c17cb300c94b", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-10-0927" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-10-0927-01A-02R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_400_AlignedReads0035cf7a-f20c-4036-846f-68b283d8ad44", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 108761702, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "8ca0ee2d46bb8d521c9dfb001a1aa9be", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "af7bf83e-5aa0-49f4-a20b-edf5af654b3e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_400_MirnaExpressionWorkflow2200fd4f-4145-480e-ad3c-9c979d5acd52_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "670a2ca4-99e1-4109-bc3d-55585f0db131", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50108, + "md5sum": "1af8d32f6436f4aaf2c3f4d80ca73d11", + "file_id": "974b7e16-5ee5-4bc1-b539-cd6e3808805e", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-5X-AA5U-01A-11R-A407-13", + "entity_type": "aliquot", + "case_id": "bc84c5c5-1785-4edd-b732-8987f862063e", + "entity_id": "c0368575-4663-4fbc-b883-aaf37d2916e2" + } + ], + "file_name": "3de8cfb4-e769-4c4c-8930-ee9619bec3a5.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_9_MirnaExpressionb47e787d-eb4b-4d0c-814f-f9d4c76a5b4d_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-5X-AA5U-01A-11R-A407-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_9_AlignedReadsb47e787d-eb4b-4d0c-814f-f9d4c76a5b4d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 209142476, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "c3d35d5e192b92548888dcec1b0a5b47", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "10aa9c33-409a-4b8e-ba6e-9e82d9a8e4c0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_9_MirnaExpressionWorkflow2ec14a5b-c221-4400-9bab-28b6ed9a1cfc_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "55913bcd-ed4a-4e21-b469-82acdd13bcf8", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 415791, + "md5sum": "c4dac4998caf93cb73e74c87e2936023", + "file_id": "c3090f29-7a38-4d4b-acc3-4cd4efb1f43b", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-10-0930-01A-02R-1564-13", + "entity_type": "aliquot", + "case_id": "99f1ae02-86ec-4d93-8cd4-650bf6f02c10", + "entity_id": "b34ed0d7-1130-4cc8-b19d-b56c1cd2cc2e" + } + ], + "file_name": "0a3cde41-87f6-49bb-b6fa-0e9e0f5e8102.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_347_MirnaExpressionaa35a92a-584d-42e0-91ec-d00193709002_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-10-0930-01A-02R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_347_AlignedReadsaa35a92a-584d-42e0-91ec-d00193709002", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 112752076, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "6f9bf3189ed09b59617586248d7fa8c0", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a48d5370-4dd6-4684-8fae-d6f7789fcfd7", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_347_MirnaExpressionWorkflowddc1e97c-9a63-481f-8827-2113bf65034b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "9e3c3878-5d4e-4742-8426-a46010bbd848", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 295324, + "md5sum": "dadd79f0739b71251255cad3aa7086be", + "file_id": "59d2cf1e-a650-4368-8768-b14fd7368226", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2094-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "b31d85cc-d2e2-4bd1-9986-d6bbe30e657f", + "entity_id": "c6e1c591-3225-482a-8350-112b664a37e6" + } + ], + "file_name": "d3c4a9cf-95c5-4df0-b9a7-c32d6d6a8816.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_476_MirnaExpressiond0ef844b-32c0-478e-ba76-949f6dc45806_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2094-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_476_AlignedReadsd0ef844b-32c0-478e-ba76-949f6dc45806", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 157052175, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "a1df2b805cb682ae54c629ed3c0e2a31", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "69d654fd-5fac-47fe-926e-7112adb26f65", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_476_MirnaExpressionWorkflowec07ce25-f5d4-4596-9e4f-b2c6a910d84f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "3f9e0439-5521-448b-91e5-77ea80cda050", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 405451, + "md5sum": "a760d728d761643e3078426a136ba1a7", + "file_id": "01af3640-0036-4c6b-9d71-6d241d375907", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0792-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "c11cae7e-91cd-4470-a9d8-188a4f6b8fa1", + "entity_id": "accb8a69-2db9-414b-abc1-a393d538ba61" + } + ], + "file_name": "b1400409-8a0d-4c0e-bc77-61ead36743a4.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_154_MirnaExpressione90fbacc-84a8-41c5-88ea-494141834558_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0792-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_154_AlignedReadse90fbacc-84a8-41c5-88ea-494141834558", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 216565151, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "f6b4dfdfc640288b9b834f7ef942f104", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5bd27f8d-e4aa-401e-aaed-6c9e93347a9e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_154_MirnaExpressionWorkflow3f729a96-402c-4f24-9702-e63c4e49ce11_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "60385509-45f6-4308-96b6-a88d45d38752", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 312956, + "md5sum": "d5d7909c947cb4b1095e01c9066615d9", + "file_id": "1be79025-98bd-4d32-a735-588ac51bb236", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1627-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "cbe3309e-9b7b-4f62-87b5-0f5ed4218ada", + "entity_id": "0fc68715-c7fc-4481-a5bf-68a281f5ec64" + } + ], + "file_name": "07708b3c-5a20-4964-883c-f508935a5676.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_421_MirnaExpression0ab4ca10-7871-4909-bf3b-8b491ce160dd_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1627-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_421_AlignedReads0ab4ca10-7871-4909-bf3b-8b491ce160dd", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 141013538, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "788262337b552f04be1d217f89fc9701", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "7c53cfa1-5f62-4d3c-bb68-55fd793dc033", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_421_MirnaExpressionWorkflow61b711f1-c86e-4bd9-8308-050f1796e721_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "6ca110ea-c2c8-43a9-9387-8d012057667f", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 348871, + "md5sum": "40caeb9290c35562ca339f92cdafa67f", + "file_id": "a00ab07e-35bf-4cc5-beac-43aee88ad504", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0792-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "c11cae7e-91cd-4470-a9d8-188a4f6b8fa1", + "entity_id": "accb8a69-2db9-414b-abc1-a393d538ba61" + } + ], + "file_name": "b1400409-8a0d-4c0e-bc77-61ead36743a4.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_154_MirnaExpressione90fbacc-84a8-41c5-88ea-494141834558_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0792-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_154_AlignedReadse90fbacc-84a8-41c5-88ea-494141834558", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 216565151, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "f6b4dfdfc640288b9b834f7ef942f104", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5bd27f8d-e4aa-401e-aaed-6c9e93347a9e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_154_MirnaExpressionWorkflow3f729a96-402c-4f24-9702-e63c4e49ce11_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "60385509-45f6-4308-96b6-a88d45d38752", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50218, + "md5sum": "68bb872e91a9b76689d305a257928553", + "file_id": "1d599c7d-3bda-47a9-ad2f-94af5d9e810d", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1353-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "cddbac56-2861-46a5-98a3-df32ab69d5da", + "entity_id": "25ca0f2f-a196-4f68-99f2-4aa6b73ebf27" + } + ], + "file_name": "56b3278c-60e5-4d45-901a-77640b467872.mirnaseq.mirnas.quantification.txt", + "submitter_id": "27f7ba75-c3ee-415c-95f2-9b97778f04f3", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9861874682694863, + "total_reads": 23211096, + "access": "controlled", + "file_name": "25ca0f2f-a196-4f68-99f2-4aa6b73ebf27_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005968456, + "proportion_reads_duplicated": 0, + "submitter_id": "2d91a480-fcb2-41c1-8663-6d525dca3664", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 417164431, + "created_datetime": "2024-09-20T11:13:29.775712-05:00", + "average_base_quality": 36, + "md5sum": "e5a5e9714725585b6089ba7e3900d9d5", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "d8237b2c-e332-4c97-820b-9625d17623fa", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 29, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "56b3278c-60e5-4d45-901a-77640b467872_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e46b8b37-3919-4639-a7a7-7934ee0adf34", + "created_datetime": "2024-09-20T11:17:47.179159-05:00" + }, + "file_size": 50763, + "md5sum": "1f8431e803ad6ca9bd2c144d4ca77fe7", + "file_id": "cfbe9c23-9bf8-4c48-88ee-12bb2b0c3659", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1633-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "20336269-5a5b-4ba7-8fe8-665a1f9af738", + "entity_id": "7517c446-401d-4501-bf27-916e0835deac" + } + ], + "file_name": "abb020b2-6dad-4ad5-9c00-ef43caba334c.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_311_MirnaExpressionb00278d2-7eaf-4a35-9a44-14148fc5a343_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1633-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_311_AlignedReadsb00278d2-7eaf-4a35-9a44-14148fc5a343", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 152614171, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "fc85ceca1e53d90d926d08312dbdd58f", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "96094c1a-c0ec-4687-b87e-461dd709a13b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_311_MirnaExpressionWorkflowa94c9e04-4e95-4da8-a2b8-7c680494adb2_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c3c3026b-f047-4bd1-a957-9f8d1ab07da8", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 364477, + "md5sum": "b585e1c05a95409278cb3b75af9eca3f", + "file_id": "808b961c-2c70-43ed-9e81-ecb031e6c3b9", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0905-01B-01R-1565-13", + "entity_type": "aliquot", + "case_id": "2038fd65-d8f1-4b16-af90-b1c8f9a379a7", + "entity_id": "6deb1bf0-273a-47ba-9698-3d38ab05f02c" + } + ], + "file_name": "37b09dc5-ffab-425e-98d1-c9c7f0c8d8ea.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_337_MirnaExpression60e4ee94-a644-4af8-969c-b7b2175b3090_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "043b0fac-32c9-5d74-b5cf-ddda3fa38141", + "entity_submitter_id": "TCGA-13-0905-01B-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8797", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "6deb1bf0-273a-47ba-9698-3d38ab05f02c", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "6f4ea5e5-8b09-5050-a190-509e398b3ba8", + "entity_submitter_id": "TCGA-13-0905-01B-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29735", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "6deb1bf0-273a-47ba-9698-3d38ab05f02c", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0905-01B-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_337_AlignedReads60e4ee94-a644-4af8-969c-b7b2175b3090", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 213554013, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "b7d3055513aa2cdcdd333abc64c67f3a", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c530efae-e6ab-439c-9ef8-2169c9be2c92", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_337_MirnaExpressionWorkflow70a7c8c4-ef5a-4477-83fe-677197695142_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "4dd035d2-1120-44b1-97bc-591aba375a68", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50346, + "md5sum": "03c58e385a24c5cb55966dbdc41945e5", + "file_id": "5e188175-1acc-4492-af53-8eef15400b61", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1497-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "bc4bc342-20bf-40c3-af26-2c6f942da93d", + "entity_id": "eb61bd52-e5fa-4c33-a2e4-1353a42184d9" + } + ], + "file_name": "c25c9178-db7e-43e4-91bf-d49b4ce69989.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_69_MirnaExpression8c7aa0bd-1d95-4d4a-9348-be2b59418f06_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1497-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_69_AlignedReads8c7aa0bd-1d95-4d4a-9348-be2b59418f06", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 232603360, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "e74bb12040725b93525bdd8701f16650", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "81b6862a-e4a7-42e8-a754-f75a47e19983", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_69_MirnaExpressionWorkflow61b39759-ab90-42c4-8dd9-83895c2790ed_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "9a4ce557-6511-4222-9f73-4e63c8e22426", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 330572, + "md5sum": "1b6b9885a08f32e9dc55efe199ec655c", + "file_id": "2475285b-0545-418e-b826-7aa65b6332b4", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1895-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "0dd95368-0713-45f0-84f4-c91af9cbba74", + "entity_id": "416097c7-1b8b-4868-9d0c-a89c3f00a75d" + } + ], + "file_name": "4f51062a-f95c-42aa-a5ab-ea7d25be2c89.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_267_MirnaExpressiona30192ae-6338-48c9-bc41-854c41a37e08_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1895-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_267_AlignedReadsa30192ae-6338-48c9-bc41-854c41a37e08", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 197536302, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "3d787506e10e859cf11370a9ad186da4", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "628e8cdc-dc35-4314-9dcb-250e33a0157b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_267_MirnaExpressionWorkflowd536c7f7-bf07-4c0c-92d9-c51bc0395a0b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "78fda07a-5af0-42a9-983e-a555236a186d", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 332311, + "md5sum": "b18c20008954c38b5bdd8ef96f302053", + "file_id": "3b837060-55d3-4dc6-9ac9-0c604dd62ade", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1895-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "0dd95368-0713-45f0-84f4-c91af9cbba74", + "entity_id": "416097c7-1b8b-4868-9d0c-a89c3f00a75d" + } + ], + "file_name": "4f51062a-f95c-42aa-a5ab-ea7d25be2c89.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_267_MirnaExpressiona30192ae-6338-48c9-bc41-854c41a37e08_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1895-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_267_AlignedReadsa30192ae-6338-48c9-bc41-854c41a37e08", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 197536302, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "3d787506e10e859cf11370a9ad186da4", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "628e8cdc-dc35-4314-9dcb-250e33a0157b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_267_MirnaExpressionWorkflowd536c7f7-bf07-4c0c-92d9-c51bc0395a0b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "78fda07a-5af0-42a9-983e-a555236a186d", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50214, + "md5sum": "1eb57f597d69677b0a9fe13f4735294c", + "file_id": "b121b8f9-e1ad-48f5-93ef-688568350411", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0797-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "0de910b1-edaf-47e4-a265-727ee12ac1c3", + "entity_id": "9bd35257-52b8-4277-9cc9-48c5f316932b" + } + ], + "file_name": "9022a525-9cb2-4b84-843f-dc9cefa38015.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_419_MirnaExpression777d0dcb-2ab7-424e-8391-31b2a2f39155_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "73128dcf-acda-5961-921d-222af8fec2ff", + "entity_submitter_id": "TCGA-13-0797-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29725", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "9bd35257-52b8-4277-9cc9-48c5f316932b", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "73ece34d-b26f-5b8a-93e2-e067aea85058", + "entity_submitter_id": "TCGA-13-0797-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8769", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "9bd35257-52b8-4277-9cc9-48c5f316932b", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0797-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_419_AlignedReads777d0dcb-2ab7-424e-8391-31b2a2f39155", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 95642222, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "fe59f2b390053bc1255c6766e76921da", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "471431ec-1d7b-4c98-af05-206cf286189a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_419_MirnaExpressionWorkflowaaac8462-fe1b-415b-9e10-06ef87b35af8_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "fb5d4c6e-dc35-4284-88ee-7d5fc16a621a", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 273330, + "md5sum": "fdd87643e5817ff8e2c4ba12702d1f84", + "file_id": "c14c52fc-b743-4f25-b33b-86605e643008", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1785-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "1aea3c25-d2bc-4ff5-bc27-32e939944e9d", + "entity_id": "dcff1416-56fd-4d8e-a472-a40a00ef3066" + } + ], + "file_name": "ba286ba5-0b9d-4a2b-b9c8-4d6004eda96f.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_412_MirnaExpressionf4beda0a-452b-4fd2-831e-de5d20b624ee_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1785-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_412_AlignedReadsf4beda0a-452b-4fd2-831e-de5d20b624ee", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 170531369, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "1d7ee3e35c5407befa6f16b91369fd97", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "63fd84d3-411e-45c3-8ebe-9d41a7fce48b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_412_MirnaExpressionWorkflowe07de4a1-ef4d-4048-afc7-1a4b09fe2b4d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "46104953-bf47-4050-9345-2d278439e501", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50164, + "md5sum": "9c729b30d7b1cebfef3d6c1a15b2dd31", + "file_id": "bcc6a1f0-505c-4a33-a858-663421a037fe", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2012-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "20c6be4d-7baf-4ea0-93e2-a5212f2e9b9c", + "entity_id": "929c2bc4-4cee-4f82-b336-918fe041a588" + } + ], + "file_name": "b82976f7-a437-407d-9b0d-111c4946c1fe.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_19_MirnaExpression36d1f29e-b6f1-49b9-9866-12fd62802f3e_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2012-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_19_AlignedReads36d1f29e-b6f1-49b9-9866-12fd62802f3e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 167832304, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "636a4675369b5f9c60c4a4e3647d73bc", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "378543c5-5545-4d39-ba2a-deb09f9753bf", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_19_MirnaExpressionWorkflow8c73daf0-211d-4a85-a5b5-9059660b01e6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "55f879ae-fb17-4cb6-a84c-48d57ff1ea36", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50355, + "md5sum": "076e9ed024d92b4ce881bf9f4f449512", + "file_id": "c81fa237-177a-461b-9bf3-7ddd7701db6c", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0751-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "15c84da3-16e5-4909-aea9-cb5894b0f8af", + "entity_id": "62206d36-b8b7-4149-b4d5-00011ccf185f" + } + ], + "file_name": "a02e461a-95b8-4f26-941f-629eeca34993.mirnaseq.isoforms.quantification.txt", + "submitter_id": "0533a57a-ef2b-457e-95f7-cc2cd279da99", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9881024629273104, + "total_reads": 19506138, + "access": "controlled", + "file_name": "62206d36-b8b7-4149-b4d5-00011ccf185f_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003206338, + "proportion_reads_duplicated": 0, + "submitter_id": "37db8f83-108e-49f0-9bad-45618bb59f75", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 326359676, + "created_datetime": "2024-09-20T11:13:45.701772-05:00", + "average_base_quality": 36, + "md5sum": "7490d2ec4410e14b5ecf8f393efce2fd", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "653e4f39-aab4-4b90-a931-88ffdbb75099", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 40, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "a02e461a-95b8-4f26-941f-629eeca34993_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "6ccff3f4-55c1-43b1-b99a-11d2809a9043", + "created_datetime": "2024-09-20T11:16:43.456256-05:00" + }, + "file_size": 428561, + "md5sum": "6b3235f2c64f99b92da9c9d3a7085498", + "file_id": "833ad80e-2f57-49d1-9537-b755cc879046", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1542-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "0c1a2e7d-e7e4-481e-a012-ef214c444497", + "entity_id": "2988eb13-a2c0-4cd2-a559-76f0cce2689b" + } + ], + "file_name": "f9dda829-1102-4e7f-adfd-83c62255a88e.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_488_MirnaExpression055cd30f-0b40-484f-a823-1cd774fac914_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "6b6d6b5c-61e4-5ce7-8597-fc3645663814", + "entity_submitter_id": "TCGA-04-1542-01A-01R-1566-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29699", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "2988eb13-a2c0-4cd2-a559-76f0cce2689b", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "7988dfcb-46e7-5fef-99a2-9fc609b1dc0d", + "entity_submitter_id": "TCGA-04-1542-01A-01R-1566-13", + "notes": "RNA-seq:INSUFFICIENT INPUT MATERIAL,LOW SEQUENCE YIELD/DIVERSITY;LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8810", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "2988eb13-a2c0-4cd2-a559-76f0cce2689b", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1542-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_488_AlignedReads055cd30f-0b40-484f-a823-1cd774fac914", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 149226760, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "7d31659fa56d4bd2fe1ab20da32f3ded", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "ec3ed187-8321-4045-8b16-288a3aabffc7", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_488_MirnaExpressionWorkflow4d5f54a5-05ed-4f99-9b41-907d4e1e61fc_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7463317e-ab8c-4052-baee-4c4c92faa536", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 313515, + "md5sum": "7c90080d9c6297c9c5f37707e1ef82b8", + "file_id": "76b30d8c-af99-4051-a924-33b344d5b7e3", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-10-0928-01A-02R-1564-13", + "entity_type": "aliquot", + "case_id": "29d26e7e-f4ae-4476-9a3f-27d5ec2ccb8a", + "entity_id": "9aa3ae15-1033-46f1-a304-993f5d41cd50" + } + ], + "file_name": "622e7e9c-2ee8-4fc0-95bb-55234e3ea98e.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_310_MirnaExpression1d5dd9ec-b409-4951-93ec-fe9e7b5cd1eb_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-10-0928-01A-02R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_310_AlignedReads1d5dd9ec-b409-4951-93ec-fe9e7b5cd1eb", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 126536920, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "a268470a33224b7707bc2087ba1522c8", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "19b44176-33aa-4798-ae52-837266d95069", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_310_MirnaExpressionWorkflowcfa4f6e4-c8d1-42c0-8fa4-998ba2002ce9_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ae0d41f4-b2ea-41d9-8cbc-67f3df443d24", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50267, + "md5sum": "948ff6a058cfb6538fe1de7226e6a3c6", + "file_id": "e7d66859-59f0-4b6c-b760-611f6e894097", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1109-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "7c466a5f-a6b4-4d1a-a0f5-ddcd7ef90ff1", + "entity_id": "d47e074a-f78e-40c5-8af4-f737ce010041" + } + ], + "file_name": "99e6c880-906c-4969-a733-57d0d8861d0e.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_277_MirnaExpression4818e8a3-3791-4000-9893-f217441031c9_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1109-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_277_AlignedReads4818e8a3-3791-4000-9893-f217441031c9", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 149899775, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "ca5ec2778c7153e00288339f842f0330", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "2a972bdc-7d66-4107-9e69-831d28601b19", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_277_MirnaExpressionWorkflow0b0e03cf-0363-42bb-b218-a2b00cae46e6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b7c87ee9-9064-4bf4-bdd4-2c79ba491040", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 295182, + "md5sum": "30f0b24e30b2649d4107f957e305a192", + "file_id": "29697764-68cc-4b54-b57f-ae4edec89b2b", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-10-0928-01A-02R-1564-13", + "entity_type": "aliquot", + "case_id": "29d26e7e-f4ae-4476-9a3f-27d5ec2ccb8a", + "entity_id": "9aa3ae15-1033-46f1-a304-993f5d41cd50" + } + ], + "file_name": "622e7e9c-2ee8-4fc0-95bb-55234e3ea98e.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_310_MirnaExpression1d5dd9ec-b409-4951-93ec-fe9e7b5cd1eb_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-10-0928-01A-02R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_310_AlignedReads1d5dd9ec-b409-4951-93ec-fe9e7b5cd1eb", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 126536920, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "a268470a33224b7707bc2087ba1522c8", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "19b44176-33aa-4798-ae52-837266d95069", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_310_MirnaExpressionWorkflowcfa4f6e4-c8d1-42c0-8fa4-998ba2002ce9_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ae0d41f4-b2ea-41d9-8cbc-67f3df443d24", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 306816, + "md5sum": "9dfb11a94cb34eac6bcd15eaa85f1201", + "file_id": "27503d04-be52-4194-a94e-9080eda76cb7", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0800-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "390eed6b-50af-48a9-9fd6-3a68a2bbb7f9", + "entity_id": "cd93531b-4d92-4be3-95e5-032636dd1ad8" + } + ], + "file_name": "aa862aa2-2f1d-4d11-aebd-4510387f1f7f.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_153_MirnaExpression82fc5a00-0052-4c9b-b15f-6288327394e3_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0800-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_153_AlignedReads82fc5a00-0052-4c9b-b15f-6288327394e3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 165912603, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "d5e41c0eb4b4087e59a8b53d7df56ffc", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "086fd01a-5ab5-4c87-b5c1-89eb743ee4dd", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_153_MirnaExpressionWorkflow2d3f1952-689a-4486-8395-add91a155ad6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "93f6d927-b73b-42dc-a427-3e90700beeb4", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50395, + "md5sum": "89f8e3e0cf8736ab58a6d73c9a90f8d8", + "file_id": "9130b38c-192e-402b-9c15-8b10a6bf1f4a", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1630-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "263e85e2-7b6f-453f-8fd0-e5ea1409fece", + "entity_id": "c5a82b6e-048d-4377-9b6c-4417ba1876fe" + } + ], + "file_name": "617cc00b-3cdb-4723-a441-6c3bd4976693.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_229_MirnaExpressione083a42f-8d22-478a-890b-96f0b7e40c5a_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1630-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_229_AlignedReadse083a42f-8d22-478a-890b-96f0b7e40c5a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 207353804, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "e5df8f5617b89a9f4120a14ca2f4fec1", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "72da87cf-124c-4eb1-91e7-d226fe7f4a72", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_229_MirnaExpressionWorkflowf2f26672-47f2-4536-b637-f83505f0d702_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ece4b8df-7d4d-4a08-8fd5-507bbea81d5b", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 359033, + "md5sum": "b244bae0b86b14d6880a40dbdc04075c", + "file_id": "d44d863b-987a-463c-a186-b0d584e73feb", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-2048-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "184aac07-44c1-47f1-8adf-50acbcc1762c", + "entity_id": "d3220bce-1bf3-47c4-951f-937dac7581be" + } + ], + "file_name": "4c832c79-59b4-4678-8cd2-5fa9ef2c4c77.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_481_MirnaExpression97fff76d-12e5-41e6-bfb5-e6dbd8dff7f6_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-2048-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_481_AlignedReads97fff76d-12e5-41e6-bfb5-e6dbd8dff7f6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 171188787, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "f9c1cee12241141566b4596d7c0adb86", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "23d0c979-a6ed-4f01-9657-d257199e2b23", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_481_MirnaExpressionWorkflow335a176c-28c8-4cc0-8321-14343235adbc_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "9867c0ed-0151-4f77-a47f-4929c6f8b3f7", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 380144, + "md5sum": "fd949194d69b7a11e8a353af3bb6ea2b", + "file_id": "170ec180-41dc-4fca-8a30-10ff9a729648", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1630-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "263e85e2-7b6f-453f-8fd0-e5ea1409fece", + "entity_id": "c5a82b6e-048d-4377-9b6c-4417ba1876fe" + } + ], + "file_name": "617cc00b-3cdb-4723-a441-6c3bd4976693.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_229_MirnaExpressione083a42f-8d22-478a-890b-96f0b7e40c5a_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1630-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_229_AlignedReadse083a42f-8d22-478a-890b-96f0b7e40c5a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 207353804, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "e5df8f5617b89a9f4120a14ca2f4fec1", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "72da87cf-124c-4eb1-91e7-d226fe7f4a72", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_229_MirnaExpressionWorkflowf2f26672-47f2-4536-b637-f83505f0d702_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ece4b8df-7d4d-4a08-8fd5-507bbea81d5b", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50301, + "md5sum": "ad2d6e1758803dff0e38f90875f631fa", + "file_id": "193e8403-c57c-444c-9be1-2d6594bd6ff6", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-20-0987-01A-02R-1564-13", + "entity_type": "aliquot", + "case_id": "34f285ab-6c31-4865-a0a7-a57af3567df0", + "entity_id": "40dafb8b-7311-4ee3-b5bc-9c9c7ffb8cce" + } + ], + "file_name": "8d64af27-a2c2-4cf2-96f1-6e8592f926cb.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_148_MirnaExpression1e200fcb-772a-444b-a1dc-1f63c7c8c9f8_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "4e2e9919-0309-5ce0-9fee-8fbdcef03dc9", + "entity_submitter_id": "TCGA-20-0987-01A-02R-1564-13", + "notes": "RNA-seq:INSUFFICIENT INPUT MATERIAL,LOW SEQUENCE YIELD/DIVERSITY;LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8765", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "40dafb8b-7311-4ee3-b5bc-9c9c7ffb8cce", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "55b5773b-8b6e-50c6-bf76-c63a2e4a528f", + "entity_submitter_id": "TCGA-20-0987-01A-02R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29760", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "40dafb8b-7311-4ee3-b5bc-9c9c7ffb8cce", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-20-0987-01A-02R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_148_AlignedReads1e200fcb-772a-444b-a1dc-1f63c7c8c9f8", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 113578314, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "3779dc7eb9bcbed7c2cdb23375e98f35", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "92664328-d018-49a3-a60a-dec3127c8489", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_148_MirnaExpressionWorkflow8d749945-5ff4-4288-87eb-bcd4c4c489e6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "3e033838-b69b-4def-81c4-e844b60053c0", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50043, + "md5sum": "b1b953a7beb9f44ae01f7c1be643ac12", + "file_id": "484cfef0-bf82-447a-b5b1-06f5d188be1f", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1336-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "538acb2a-c4ca-4656-a91c-841a42dbf15f", + "entity_id": "97c7c43d-dff7-4808-848a-2155e3648038" + } + ], + "file_name": "071570c9-cca8-410c-ae31-ec0426622ebf.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_166_MirnaExpression7954b45d-2cf7-41b0-87ec-64d8e395b63c_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1336-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_166_AlignedReads7954b45d-2cf7-41b0-87ec-64d8e395b63c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 95702301, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "af8fa5cb82c56a1d05016d98b024c7cc", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "8ab1a90d-e5e2-46cf-a969-eaf6847d30fa", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_166_MirnaExpressionWorkflowc8cdff11-fef5-4c06-884b-33544af922b6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "35558e7a-9379-46c4-a118-192b4ea7dbca", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 226956, + "md5sum": "2afa85f79f5439c7a5869f8988f96aba", + "file_id": "0004e15f-5b5a-4184-893a-b078fbdcf942", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2297-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "2ab32e11-80d6-4ed0-a42e-da612219bbdd", + "entity_id": "2b0089bc-b493-4179-bf5c-e58550e1ee5b" + } + ], + "file_name": "262a75ee-f2c4-420e-bd54-51aa896028f5.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_425_MirnaExpressionb3b1ffaf-90f7-4e40-ad08-87057a495a88_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2297-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_425_AlignedReadsb3b1ffaf-90f7-4e40-ad08-87057a495a88", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 273477135, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "b6b8c5f8544609cfd32ee505d11d0fd1", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "70ec1a92-25a3-4ffb-a59c-7bb9e03b62f8", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_425_MirnaExpressionWorkflow6be33ac7-9811-4b70-9fd1-419a4baba4e6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "9803dd2e-a46d-481a-9138-38115b98323c", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50496, + "md5sum": "d690dcc20f50506d52ab3d264b3f55e0", + "file_id": "3dfe577b-538f-48eb-b70c-d60a3d357ae7", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-36-1574-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "eeb9d147-608d-4692-8adf-2f601d23a8ff", + "entity_id": "ff781a4f-7281-4195-880f-3df099a401cc" + } + ], + "file_name": "e3d9c827-e270-4f6e-9a59-d57b38c10d33.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_428_MirnaExpression4888bb2b-89ef-4b21-a025-9aefb711220d_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-36-1574-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_428_AlignedReads4888bb2b-89ef-4b21-a025-9aefb711220d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 154205756, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "0aea07de56134b01c1217b9758bfe2ec", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "2eeeecde-29fb-4983-ac74-ce6de12c7519", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_428_MirnaExpressionWorkflowc1741335-caaa-410b-b7e6-abd3e2f7b73f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "71059337-f35f-41f7-94de-75dd49917045", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50246, + "md5sum": "a568a94405d37734ab28bf2530028980", + "file_id": "dab72bac-ecc7-44a7-bc1e-796af86f9cc1", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-36-1574-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "eeb9d147-608d-4692-8adf-2f601d23a8ff", + "entity_id": "ff781a4f-7281-4195-880f-3df099a401cc" + } + ], + "file_name": "e3d9c827-e270-4f6e-9a59-d57b38c10d33.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_428_MirnaExpression4888bb2b-89ef-4b21-a025-9aefb711220d_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-36-1574-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_428_AlignedReads4888bb2b-89ef-4b21-a025-9aefb711220d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 154205756, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "0aea07de56134b01c1217b9758bfe2ec", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "2eeeecde-29fb-4983-ac74-ce6de12c7519", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_428_MirnaExpressionWorkflowc1741335-caaa-410b-b7e6-abd3e2f7b73f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "71059337-f35f-41f7-94de-75dd49917045", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 333191, + "md5sum": "989954ea13e657082442e6373b9d3f2f", + "file_id": "a378f26e-c29a-42c3-8007-61e3330220c6", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0921-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "31b997dd-aaea-4003-a64d-11d3e19b0bbc", + "entity_id": "362802ef-8e09-4e99-baad-9706dc78038b" + } + ], + "file_name": "b40c39f7-a56f-4381-ad3c-1d7935515a2e.mirnaseq.isoforms.quantification.txt", + "submitter_id": "ebc0560c-20d5-4ea1-8773-d18aa19fe079", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.991378266285965, + "total_reads": 25934923, + "access": "controlled", + "file_name": "362802ef-8e09-4e99-baad-9706dc78038b_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003617475, + "proportion_reads_duplicated": 0, + "submitter_id": "5f5fa6dc-0f5b-4ab5-bd8f-7251bf03c680", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 435043327, + "created_datetime": "2024-09-20T11:13:09.719803-05:00", + "average_base_quality": 36, + "md5sum": "1e9320299282e29458732bbe882394df", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "23df5d52-cbf1-4574-8b48-bed60330e149", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 37, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "b40c39f7-a56f-4381-ad3c-1d7935515a2e_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "92c55978-7ce4-457f-a0ee-e7f35897e418", + "created_datetime": "2024-09-20T11:17:36.537808-05:00" + }, + "file_size": 483577, + "md5sum": "3e68f26939fae59443f0fadb37cd389f", + "file_id": "af65032d-7afa-4977-abc1-abbd60b24348", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0726-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "32960bc7-839a-42c5-9460-3917fa578ffc", + "entity_id": "3dd100f9-9261-4e1c-9bbb-95a2c56abfb6" + } + ], + "file_name": "cf786f9c-b120-4c44-a85e-b50b481927d0.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_315_MirnaExpression292f46b4-972a-4194-a241-47fb5c0d391b_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "88bd5ee5-9674-51ca-8f56-d1861c97f3f0", + "entity_submitter_id": "TCGA-13-0726-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29717", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "3dd100f9-9261-4e1c-9bbb-95a2c56abfb6", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "9339836d-11da-5ec6-b970-52ed8f5a91d8", + "entity_submitter_id": "TCGA-13-0726-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8758", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "3dd100f9-9261-4e1c-9bbb-95a2c56abfb6", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0726-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_315_AlignedReads292f46b4-972a-4194-a241-47fb5c0d391b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 116606964, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "ce32b5cf32f8e4b1f6ff91eba7b0ed85", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "bea79cb2-272a-4d2e-a5b0-12c325ac16fa", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_315_MirnaExpressionWorkflowb6e1e747-8805-4f2e-913b-4540e3124c56_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "4b33cfeb-6e74-4876-8fed-5d539bb329ac", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 305281, + "md5sum": "803303232aee107c07d90a24c9e6aa32", + "file_id": "519819c1-9108-4350-a833-658222cafd34", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-2081-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "41178cbc-db73-4007-b5d8-febebf7f578d", + "entity_id": "4c8dd391-5a1c-490e-a7d7-fde372c3ec47" + } + ], + "file_name": "483b3516-7fe7-4c12-91b2-172c8041f187.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_13_MirnaExpression7223f757-6ffe-47ac-8610-159f08860e12_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-2081-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_13_AlignedReads7223f757-6ffe-47ac-8610-159f08860e12", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 230041800, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "857c4d9820ae83980c4824473acaf42b", + "updated_datetime": "2023-07-12T10:33:27.414833-05:00", + "file_id": "d71bf88e-9016-4511-b955-eacdbfc9d343", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_13_MirnaExpressionWorkflowdcb4346c-75bd-4fa4-bf93-8902fce15dfb_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "996e5991-521a-4c80-9f39-a34d8ef8f3a2", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50335, + "md5sum": "0d40e732fa67e6912cc9871982ca9b26", + "file_id": "38292b4f-939a-4ef8-8fc5-cf9aa6ed74fb", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1464-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "4160e048-f0b0-40f5-805b-e277a5893a3b", + "entity_id": "6eb0fbff-f1b8-4544-91e2-cd593b631ead" + } + ], + "file_name": "ea46c685-c7b0-4e28-85f1-f426f294defa.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_389_MirnaExpression101eb964-ad66-4f1f-8ae6-7214954a04aa_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "39e67607-cc2a-52eb-a9e0-7b7ea1a107ab", + "entity_submitter_id": "TCGA-24-1464-01A-01R-1566-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8855", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "6eb0fbff-f1b8-4544-91e2-cd593b631ead", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "a7a16910-0ea5-5e64-99cb-ff6645f8daee", + "entity_submitter_id": "TCGA-24-1464-01A-01R-1566-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29784", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "6eb0fbff-f1b8-4544-91e2-cd593b631ead", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1464-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_389_AlignedReads101eb964-ad66-4f1f-8ae6-7214954a04aa", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 144296635, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "264d3c0b4329df9daeb8f7fc434f969c", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "04c5b914-6708-4473-9f78-9848ee9e912a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_389_MirnaExpressionWorkflowb92d6255-73b4-45a4-9a91-51fceb2b9dbb_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "78cfd16e-55da-4c3e-9fd9-368fd89404b8", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50299, + "md5sum": "8598639f3177676b0868237486f2aca3", + "file_id": "52fbbcf5-d530-4c80-9b17-fa9d3f8a0674", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1998-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "565d06a1-3640-4274-8fb3-8cad7e578876", + "entity_id": "0814c20e-fe77-4ff9-ab5e-a8ae2f74069d" + } + ], + "file_name": "0f48ac7c-d892-467e-bf2a-1d6122881e5e.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_16_MirnaExpressiona29f437b-921b-4690-956e-8ebe9942d36f_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1998-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_16_AlignedReadsa29f437b-921b-4690-956e-8ebe9942d36f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 147471147, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "01eaa79176b98688a93b4834756aff1c", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c278ea11-ed5b-41a3-9445-9a8457b738a0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_16_MirnaExpressionWorkflowcb74f8e9-2955-4915-89e5-f27598e31e4f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a7e0f477-fe7b-4b84-85a9-8aeff34e4c57", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50264, + "md5sum": "b2805468d639d7421aafff8b8a994965", + "file_id": "80c74c06-fede-4815-a9cb-3cd71374a6a3", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0725-01A-01R-1986-13", + "entity_type": "aliquot", + "case_id": "446ce2a3-d328-443c-a419-3344baad0e16", + "entity_id": "e9ac39c6-6c51-459b-8467-7b422e2ed704" + } + ], + "file_name": "89493459-8839-41fa-9a6f-4e09ef790f85.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_24_MirnaExpression740a8bdb-d449-4f3c-854c-40f7c5fcf987_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0725-01A-01R-1986-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_24_AlignedReads740a8bdb-d449-4f3c-854c-40f7c5fcf987", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 136363998, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "6997d62e0d2ec300418d7dcbcf95bcb9", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "33bcc16e-1b0d-44d0-a232-00e44ac55b1a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_24_MirnaExpressionWorkflowf5c9257a-c340-4f52-8628-6ba1461067e7_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d13f5f10-d894-44cf-b78a-3573fbedec88", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 319849, + "md5sum": "36dec2297f2ec9d634fa9039f2115574", + "file_id": "1e608ab7-603c-44f9-a1af-4bb6c3543e3f", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1778-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "44e840c9-ea54-4dba-9b2a-264ef1f2c304", + "entity_id": "7ecd0f7a-d186-422b-a2e1-833dfc400e39" + } + ], + "file_name": "bfd9ac05-0670-43a0-8052-d535e969d0d2.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_338_MirnaExpression013402bb-aec7-4169-a8da-6f9508296d67_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1778-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_338_AlignedReads013402bb-aec7-4169-a8da-6f9508296d67", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 156428318, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "294757193929123b07425db542f2c7cd", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "737be44c-dabb-47bd-892a-b6f2e6eac599", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_338_MirnaExpressionWorkflowe4802b67-204c-4433-841e-b7f6c68dbae9_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "16c4958d-9c1c-405a-8f1f-04848786b19b", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 347894, + "md5sum": "61fddd760c7863fb1a48be8470ec488f", + "file_id": "4c4ec16c-34f9-4d30-9689-6f36fa9457d3", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1778-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "44e840c9-ea54-4dba-9b2a-264ef1f2c304", + "entity_id": "7ecd0f7a-d186-422b-a2e1-833dfc400e39" + } + ], + "file_name": "bfd9ac05-0670-43a0-8052-d535e969d0d2.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_338_MirnaExpression013402bb-aec7-4169-a8da-6f9508296d67_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1778-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_338_AlignedReads013402bb-aec7-4169-a8da-6f9508296d67", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 156428318, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "294757193929123b07425db542f2c7cd", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "737be44c-dabb-47bd-892a-b6f2e6eac599", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_338_MirnaExpressionWorkflowe4802b67-204c-4433-841e-b7f6c68dbae9_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "16c4958d-9c1c-405a-8f1f-04848786b19b", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50342, + "md5sum": "613a86a2977d1b8aff2b61adcce947d7", + "file_id": "2115449b-1169-4e83-9a15-7f08d44df98d", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2023-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "5201ee13-2aed-4641-9169-4d5ee07a23da", + "entity_id": "11fd4bb1-0f8d-4830-a7f0-83897a5df11d" + } + ], + "file_name": "4d9c130c-9fc7-4880-bcfb-d61f226f7715.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_224_MirnaExpression38163e2b-e58c-4f45-a986-ae9083149063_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2023-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_224_AlignedReads38163e2b-e58c-4f45-a986-ae9083149063", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 131516015, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "2d86a9278c90010837c282a632dc3afd", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "05ce0a96-1e46-44e5-a6cf-6663511a16fe", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_224_MirnaExpressionWorkflow3a2b228d-bd9c-4238-b66f-0baab84769b8_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a38a86a2-9219-4353-8a43-4b192a565f05", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50333, + "md5sum": "4f03a02e5003915d77700842d6cb0284", + "file_id": "0882974b-3a85-40b4-ae4f-145b1f6a44a5", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0912-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "58d34254-4f5b-40a4-9e9f-7160062fb2a4", + "entity_id": "1b17ee09-e8ed-4740-a58b-ae4f11d2983d" + } + ], + "file_name": "ff1303e5-5237-4829-b18b-355fb808c315.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_105_MirnaExpressiondf1b3034-91ce-45c5-953d-17ed7eb57c7c_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0912-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_105_AlignedReadsdf1b3034-91ce-45c5-953d-17ed7eb57c7c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 198557190, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "da0a8659407209721e8b255a29f532f9", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "9adafff2-7cb7-4dc0-a42a-6af5faa1fc38", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_105_MirnaExpressionWorkflow1e7fe8fb-5184-4b7d-9748-51b04eeb4010_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "aee63b26-0e26-46ca-bb5f-0f34620e2a7e", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 314088, + "md5sum": "fa2e52dbbe927f782fd3422e2d49a422", + "file_id": "7cf798c9-4ccc-4830-87db-c4d33b7263fc", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-10-0935-01A-02R-A96S-41", + "entity_type": "aliquot", + "case_id": "48f8afa8-7712-4428-b0d0-d8c3340504b6", + "entity_id": "1fb041b3-cd8f-41f0-99fe-de216b92036a" + } + ], + "file_name": "2c3a0fa9-8e72-4f4a-b531-5290fbb63207.mirnaseq.mirnas.quantification.txt", + "submitter_id": "3b908f44-0b44-45ac-adf4-00251f102a9f", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9911925298074081, + "total_reads": 21971803, + "access": "controlled", + "file_name": "1fb041b3-cd8f-41f0-99fe-de216b92036a_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003035977, + "proportion_reads_duplicated": 0, + "submitter_id": "e44fb23c-e036-4105-b29b-0d2210208f3e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 347435404, + "created_datetime": "2024-09-20T11:12:50.545636-05:00", + "average_base_quality": 36, + "md5sum": "64fe04b6382a3423ba07a123f5c60034", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "50e4d492-c769-44c7-a3cd-bf3d03516198", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 39, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "2c3a0fa9-8e72-4f4a-b531-5290fbb63207_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0391736e-fd91-4ec9-b6b1-d5deb9ddb78d", + "created_datetime": "2024-09-20T11:17:01.346123-05:00" + }, + "file_size": 50422, + "md5sum": "703e312bff9ca6355c2393babc350a4a", + "file_id": "c517b280-0b98-492e-876f-34157f013cf0", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1434-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "5503b3a1-7d03-41b2-9ec8-e478c5414d67", + "entity_id": "368f21cd-dd07-440d-89f5-5874e37fe63b" + } + ], + "file_name": "3a3e7883-849d-4918-a954-7af33548c012.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_283_MirnaExpression5f9c70c4-3fac-435a-a51c-80d8db9e02b6_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1434-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_283_AlignedReads5f9c70c4-3fac-435a-a51c-80d8db9e02b6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 166352558, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "473208828b9c2b6bdc83346ad2170a02", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "008070f4-c6ee-4a5a-b347-8f3eb0b1d479", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_283_MirnaExpressionWorkflowfa60e78a-0ce4-449d-b499-f0416948de54_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "98429bcc-2063-4ee4-b156-c12f10414673", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50280, + "md5sum": "6b4b1f24607e0068c4c1ceaad7871cdf", + "file_id": "1a6962ec-c337-4c28-a47f-29377147de79", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-30-1862-01A-02R-1568-13", + "entity_type": "aliquot", + "case_id": "58f5a54e-de50-4cca-afa1-cc331d8b3479", + "entity_id": "ab0701bc-0bc5-4008-a75b-5f665ef9c14a" + } + ], + "file_name": "8370472f-92b2-4e55-a091-7c7e1193972f.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_12_MirnaExpression7c7083f2-896d-4d8b-a95b-676355d3270e_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-30-1862-01A-02R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_12_AlignedReads7c7083f2-896d-4d8b-a95b-676355d3270e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 177280513, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "d47503affde64ad26ca77624ab8db8d4", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "286b5c64-01df-4895-8e74-d1ca93776cd0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_12_MirnaExpressionWorkflow06d7c06a-7f5b-4654-bd0c-d1f72e4d2fd3_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "20dd0587-b3aa-43d0-a8fd-3cceb313f0b6", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 334849, + "md5sum": "3e2ab5807873b0b391f4916417bb82c4", + "file_id": "65714ab7-cb2b-40fa-96e3-9426ee4f0c7e", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2281-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "59b3fbfe-0b7c-41e5-b756-ee7e23730df5", + "entity_id": "44948279-405d-42f6-ad29-465150ee6d85" + } + ], + "file_name": "146bf0ae-0c2a-4281-a1e5-ba31f0ba12bf.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_482_MirnaExpressionb5496483-7c28-4f36-8a58-98abffbe7263_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2281-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_482_AlignedReadsb5496483-7c28-4f36-8a58-98abffbe7263", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 146064027, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "95664a38ffda500c442f5a752e668ac3", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "440bff76-8c06-4ccd-a306-7011198560f9", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_482_MirnaExpressionWorkflow38680c5b-6e2c-4a9e-a038-e677c78b9595_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "4e634c7a-3083-4aff-b92f-5215647a8383", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 386083, + "md5sum": "dbe18ddae922b73d16bdaa9e30561958", + "file_id": "f3cb8d55-8e56-4097-9acf-04423a825a89", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-2397-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "4c099644-047c-42a3-8187-bfcbfe6662e4", + "entity_id": "7ad7080c-730b-4a5d-a8c1-f6387fbee72e" + } + ], + "file_name": "e5850774-2c46-45c4-a352-098d49e1f3d4.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_242_MirnaExpressionb0905143-e31d-417c-88a4-0b523259955d_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-2397-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_242_AlignedReadsb0905143-e31d-417c-88a4-0b523259955d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 163786244, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "dca6ca6aa1581cb14e88b66cefc4a231", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "ee2ad91b-7517-449b-bfb2-0424298f31d0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_242_MirnaExpressionWorkflow12776e06-f88e-46c6-bf42-c028ec1c2bcf_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d08c2cbd-e18c-4f95-ab92-dee98c576195", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50268, + "md5sum": "e0f929cac422dc58eaddf0fda9d3212c", + "file_id": "057a5e36-16c7-47bc-abee-ae63de57f0de", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1549-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "3b81ec7c-0934-4649-9231-9919dd26dd15", + "entity_id": "f8ead0c8-9072-4a1d-9e07-f724a0d74a0f" + } + ], + "file_name": "0c45657e-7944-4660-b202-bd075681d77a.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_297_MirnaExpression5e239881-3761-4d23-af62-808b5400c859_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1549-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_297_AlignedReads5e239881-3761-4d23-af62-808b5400c859", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 130495523, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "9b7634ecbd63c9b62ea863c368f86988", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "0bb6ba01-abae-474e-99a5-bb1f9becc0fe", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_297_MirnaExpressionWorkflowc880a94b-1f54-4f43-9975-cb782a0352ea_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "72556946-fc9c-4c63-9428-40f047682eec", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50214, + "md5sum": "d6fa7a30617422216ea8354703fa6278", + "file_id": "d4673163-3c0c-46bc-95ec-667244c9831d", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1419-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "5e18b17d-4626-4b6d-8ac6-e560cee0376c", + "entity_id": "7bf43d51-2714-419e-a52f-863ca54c90e5" + } + ], + "file_name": "a00d8c58-4840-41a0-bb3b-a1d63f9dfeb1.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_48_MirnaExpression9c91e9a0-b118-4ad8-a670-51dc6a3aa661_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1419-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_48_AlignedReads9c91e9a0-b118-4ad8-a670-51dc6a3aa661", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 315353021, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "a711e5ff7699e4a561a4e37924f48916", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c31102a1-a8ef-412c-9d3f-fa45295f61b4", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_48_MirnaExpressionWorkflowd3bed088-8427-449a-878f-113692210dc0_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e3b68582-a2d1-4426-b49b-fdce56435db3", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50387, + "md5sum": "0ef87b2885df2b7f991d38735fd1ed12", + "file_id": "09b9df51-286a-427d-a627-760d12bb467f", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-2401-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "3bc8a74f-49bd-46b6-a3a4-68ca838e83c6", + "entity_id": "c3a1cbaf-28cd-451c-ad93-5a03a61a8a2c" + } + ], + "file_name": "05166d9f-df78-44e8-a37c-cf65b2dc95d7.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_34_MirnaExpression5a1f26ac-9100-452b-85e8-9aac55c13e58_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-2401-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_34_AlignedReads5a1f26ac-9100-452b-85e8-9aac55c13e58", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 212747373, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "1b8df822509bd6e6749b31d8fa2a2043", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c1280eae-ca40-4817-a2a8-023ba4fd9c2c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_34_MirnaExpressionWorkflow5e1f665e-4f2c-4c5c-9275-617833a36774_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c52a2493-321c-4e0b-9486-7664bf58ea5d", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 449257, + "md5sum": "a2532ac54f113006da7a265580586d46", + "file_id": "f42c161b-4071-4eca-b0ab-0353d72b933a", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0793-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "5e90e1ed-cbfd-44ba-a6ff-63ff576b3c73", + "entity_id": "a0114f47-7f03-4594-acb3-48f3a7081759" + } + ], + "file_name": "a60c51fa-f8e8-4fb5-8f14-c678dbc8de0d.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_264_MirnaExpressionf784561c-45be-4dac-9af9-648bdaa02730_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0793-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_264_AlignedReadsf784561c-45be-4dac-9af9-648bdaa02730", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 132282625, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "f0b5316acd765f858f11b59e43ea8180", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "1605fdca-54f4-490a-88ec-58f3fb6dc902", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_264_MirnaExpressionWorkflow37130c86-adb4-45e9-ae5e-5d2aa223e95c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "bee5dcc0-b1fc-4bc0-b6f8-aaa4f17c01ed", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50217, + "md5sum": "16bf0eabff0cacdb46f61d18408695fc", + "file_id": "6724f378-fa2b-4adc-80d1-91b296443c19", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-57-1994-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "602e2934-223a-44db-8c33-06eb05d72f94", + "entity_id": "2cf309ea-0c2e-4f28-a94b-342dc9a1aae8" + } + ], + "file_name": "766881fe-01d6-4a1b-9312-1dde8f1e1f80.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_111_MirnaExpression70f4eb3d-00aa-4de4-9395-18af98063e23_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-57-1994-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_111_AlignedReads70f4eb3d-00aa-4de4-9395-18af98063e23", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 315880604, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "ccc1de09e0e1ab762b8df4f7f56122bd", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "241f4cf1-599a-4455-92be-4169b8e754ac", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_111_MirnaExpressionWorkflow9a6c40ec-4eeb-4db8-b31e-1e7d1387f38f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d9c08ed3-dbb3-42f4-9cb5-86cea6c42df4", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50563, + "md5sum": "2b825c4eb2977f535c5453e885e69dda", + "file_id": "92290d7d-421c-41cb-94f6-a358c0c28907", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1548-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "66c92b9e-de3c-4d1a-bb69-46ffbc6caf33", + "entity_id": "77b1c06b-46ef-4c8c-8a82-37f83e3c48cf" + } + ], + "file_name": "6e773590-88c4-4b6f-a4c4-e88cf0fd8185.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_328_MirnaExpression70ce0b12-cfe4-4b14-a00e-bd5e1a33302d_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1548-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_328_AlignedReads70ce0b12-cfe4-4b14-a00e-bd5e1a33302d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 107356162, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "638d133b55c38f4420996d6849d39f8f", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "f4002cd0-2d93-45ad-bcdb-dab7c0653427", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_328_MirnaExpressionWorkflow36406d31-1e9c-4594-9c8e-d8057ad6fbe3_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7d6530d5-ec35-44af-b372-b08674ca68a8", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50206, + "md5sum": "98e8344d3b1f9b975969d89e3894c728", + "file_id": "143e5572-4a30-4104-ad37-ff495c03cff2", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-2050-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "3c037acf-f453-4513-a6dd-129163ddde2a", + "entity_id": "e6d17890-f82d-436c-8b05-85aeaccd988d" + } + ], + "file_name": "a1ba46b7-fc30-47c9-bb39-efac4f11785a.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_162_MirnaExpression68e273bd-b4b5-4b4f-9d03-525f9c475816_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-2050-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_162_AlignedReads68e273bd-b4b5-4b4f-9d03-525f9c475816", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 238238006, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "f960fb0e34651727a2f348d5f2bd46e0", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "2179a598-9d3f-4d0a-b547-c254d79b1f7f", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_162_MirnaExpressionWorkflow8a9dfa05-a039-4251-b557-2a62bc6268f0_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "78628388-f335-41e8-8f7d-0b92624d6a20", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50440, + "md5sum": "a41aeedbd993c0bf594c97860c6e6fc3", + "file_id": "9987a25f-b493-47e2-9c89-6a0c4d723fd7", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0802-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "3c8b5986-f9d5-4e7e-9dd4-3ad301451279", + "entity_id": "b46a198b-283b-4ea9-bf46-236407a3b848" + } + ], + "file_name": "6be3b7da-c8fe-43c8-ae31-41e52c70af9f.mirnaseq.mirnas.quantification.txt", + "submitter_id": "8ae42935-945d-437a-89be-8e1d3510df4a", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9889848956727803, + "total_reads": 19726731, + "access": "controlled", + "file_name": "b46a198b-283b-4ea9-bf46-236407a3b848_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004301663, + "proportion_reads_duplicated": 0, + "submitter_id": "663b469f-8be9-402b-bd4c-c4ded2faa6bc", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 338814862, + "created_datetime": "2024-09-20T11:14:03.170865-05:00", + "average_base_quality": 36, + "md5sum": "276ee7cf700611b215352fba4d3b9293", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "2b3cf45b-55b4-443d-98b5-acaddda716ba", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 34, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "6be3b7da-c8fe-43c8-ae31-41e52c70af9f_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "702a3008-c4c0-4742-9203-d8e972296644", + "created_datetime": "2024-09-20T11:18:21.045098-05:00" + }, + "file_size": 50646, + "md5sum": "94d24d9169efe823f11c84abfc721352", + "file_id": "d3d403f1-8889-4248-bfe1-aa95b43fc46e", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0802-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "3c8b5986-f9d5-4e7e-9dd4-3ad301451279", + "entity_id": "1541f858-d32b-4b6f-a73e-28c44cf1bb3d" + } + ], + "file_name": "f07893c5-c0b6-48fb-ab88-01adb7b7234a.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_321_MirnaExpression2127aa9e-7f31-4947-9ca7-2ef6256c37cb_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0802-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_321_AlignedReads2127aa9e-7f31-4947-9ca7-2ef6256c37cb", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 167487169, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "a0a918f888eac3ec7eea2d4c86284b5d", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "050acfd9-5e9f-4934-92cf-75363d0a1865", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_321_MirnaExpressionWorkflow9038add6-5343-460e-9adb-c927f2f840fd_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1977a8d9-3f90-4209-8556-98bbca4daf4a", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 271477, + "md5sum": "1a861f4d37d6bb9217fdc2af5eb7baab", + "file_id": "a4ba804f-0d47-4e35-97b3-4239b077d731", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0888-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "6cf9f872-2e59-45cf-bb5e-ebd7fa1b3caf", + "entity_id": "b6ee33d9-26fc-491a-90af-25f3da976da0" + } + ], + "file_name": "a6c488e2-db0c-4c9d-8e18-c82dcf62b840.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_327_MirnaExpressionf043e56d-27ee-4550-b43a-6d28a0932147_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-0888-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "submitter_id": "8837", + "classification": "CenterNotification", + "entity_id": "b6ee33d9-26fc-491a-90af-25f3da976da0", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "3d74403b-8936-5222-b2a5-58b0161ae2c2", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "6cf9f872-2e59-45cf-bb5e-ebd7fa1b3caf", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-13-0888" + }, + { + "entity_submitter_id": "TCGA-13-0888-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29731", + "classification": "CenterNotification", + "entity_id": "b6ee33d9-26fc-491a-90af-25f3da976da0", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "41e91ff5-c707-55d7-b7e0-daa35551b661", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "6cf9f872-2e59-45cf-bb5e-ebd7fa1b3caf", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-13-0888" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0888-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_327_AlignedReadsf043e56d-27ee-4550-b43a-6d28a0932147", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 90724674, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "b1c6ca092fffae39280c56eb1f365126", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "acc51d01-1ad8-4808-bc17-db1d860aa82b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_327_MirnaExpressionWorkflowb6059ac0-4152-4495-80b2-1d6c8ea66422_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e87a67d9-e194-43b2-aaac-7a2979296b8d", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50209, + "md5sum": "7cf78fc404627d27b193badefcb719ed", + "file_id": "b3826382-c392-4c8c-a811-5684e1809ab6", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-0364-01A-02R-1564-13", + "entity_type": "aliquot", + "case_id": "6746533a-8d0b-4ebc-87ec-49c8738121a8", + "entity_id": "2d0702a8-bf85-458e-879c-ebc03a2aa3d1" + } + ], + "file_name": "c254a61e-36be-48c2-a015-1c10496ae642.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_339_MirnaExpressionb873afe5-40ba-4a07-8bf2-cd3a252f9117_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-0364-01A-02R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_339_AlignedReadsb873afe5-40ba-4a07-8bf2-cd3a252f9117", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 127463053, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "d1418138996aaa48c3e1597be5c2bb8d", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5f8d2909-a1b3-46bc-a87d-0a9cffd232f1", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_339_MirnaExpressionWorkflow79e8408d-c255-4c0b-b48c-a7321a1c37df_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "fdd22401-567b-4f42-9229-3efb760503c6", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 270742, + "md5sum": "608225448f6fe2f7805b13d78dc01fcc", + "file_id": "70ff5abf-285e-4c88-a8b1-5d8543c25aca", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1331-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "6d10d4ee-6331-4bba-93bc-a7b64cc0b22a", + "entity_id": "7fbfdb3e-1fd2-4206-8d2e-7f68e4a15844" + } + ], + "file_name": "a1490a33-ffdd-4f46-9d06-aec6039568b4.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_239_MirnaExpressionc65d45c6-89ba-4d07-a3cf-4a6270a38823_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "7ea0234d-3825-5f43-b353-61a5eeaedb24", + "entity_submitter_id": "TCGA-04-1331-01A-01R-1569-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8850", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "7fbfdb3e-1fd2-4206-8d2e-7f68e4a15844", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "a9ff26e4-b2bd-5b3c-9d33-e82dab196472", + "entity_submitter_id": "TCGA-04-1331-01A-01R-1569-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29686", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "7fbfdb3e-1fd2-4206-8d2e-7f68e4a15844", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1331-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_239_AlignedReadsc65d45c6-89ba-4d07-a3cf-4a6270a38823", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 188115803, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "a545ca20df8969a6fb3e66b8b023ce17", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a9e28445-bade-409c-b43a-1b2e2565d3ee", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_239_MirnaExpressionWorkflow63c16fae-b668-4a75-9ca1-5d4efdb00ef8_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "53863be5-cb02-4385-9512-40741cd1720b", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50338, + "md5sum": "7f123db76e94bfda76fa149d5d6e93a8", + "file_id": "6b2c21a8-6489-406d-b91b-b46ed0cf2034", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1121-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "81005bae-686a-4598-8994-49d90ebac56f", + "entity_id": "b8882edb-0284-4c34-b9f7-a5f1e7a76f3c" + } + ], + "file_name": "f3975093-55c6-41c4-bfcc-3df2e5281853.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_66_MirnaExpression9a9240e6-6421-4568-a8e7-53acc10f0787_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1121-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_66_AlignedReads9a9240e6-6421-4568-a8e7-53acc10f0787", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 410126539, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "5b0f32e694f7081dd100cfbf67a30705", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "fb2dca99-9ef7-401e-98d1-bce96b5dcb1c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_66_MirnaExpressionWorkflow0cb6837e-d94a-45da-9e5c-c7f499c8e38e_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "55679c78-67a6-4283-8739-5bde497377f1", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 507975, + "md5sum": "c53668c714ddb697c040e525df7e7143", + "file_id": "91687548-aef4-4c5b-a994-a206c5c2db79", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-2042-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "818dc159-aba4-46bc-a4ed-68ee0f8c4461", + "entity_id": "ae1e5f8d-cdd9-41f5-b56c-80dfe27e1b6c" + } + ], + "file_name": "922c1d22-ea6d-4cfe-b2f7-98041de376ed.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_20_MirnaExpression26edd585-5d68-4ca3-b899-ed9e998be076_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-2042-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_20_AlignedReads26edd585-5d68-4ca3-b899-ed9e998be076", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 133278642, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "dde753988280545ede0ba3c8e685cb53", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "fddfa63f-ee15-4b9f-9500-80d1ef561a3a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_20_MirnaExpressionWorkflowed0649ea-2b5c-4176-9c0a-30a7000c6139_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7e957062-a078-4153-9849-56f911432662", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 344961, + "md5sum": "04b5f4164e289b9cf7caf61d136fb6a7", + "file_id": "838fbb4e-4e5e-41b0-8d19-a8ba28c9c503", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-2042-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "818dc159-aba4-46bc-a4ed-68ee0f8c4461", + "entity_id": "ae1e5f8d-cdd9-41f5-b56c-80dfe27e1b6c" + } + ], + "file_name": "922c1d22-ea6d-4cfe-b2f7-98041de376ed.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_20_MirnaExpression26edd585-5d68-4ca3-b899-ed9e998be076_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-2042-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_20_AlignedReads26edd585-5d68-4ca3-b899-ed9e998be076", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 133278642, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "dde753988280545ede0ba3c8e685cb53", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "fddfa63f-ee15-4b9f-9500-80d1ef561a3a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_20_MirnaExpressionWorkflowed0649ea-2b5c-4176-9c0a-30a7000c6139_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7e957062-a078-4153-9849-56f911432662", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50281, + "md5sum": "932f2001dace39896cf543454c05857e", + "file_id": "28378948-6c11-4115-92f6-8e0289d39993", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1321-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "6ad8bc89-d8e9-48c2-bc25-c8e51f972b4d", + "entity_id": "74ad9d3e-97a9-419d-8842-3fb37d3f099a" + } + ], + "file_name": "aea53e86-ea23-4a00-9b68-eb8dafcf17ea.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_91_MirnaExpression9178b5f4-4003-4c79-8c69-9e091a41d54b_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1321-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_91_AlignedReads9178b5f4-4003-4c79-8c69-9e091a41d54b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 205099019, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "ebffaf61069b82d9440d9c2a611fe98e", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "1cc0942c-1264-47eb-af72-81b754be1d66", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_91_MirnaExpressionWorkflow4acdcba7-7705-446f-989c-b46f7c306b07_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2167942c-2566-4bfc-b57c-fd73ced35f40", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50360, + "md5sum": "e329f499df3512682b1d6d4e381d5f86", + "file_id": "0442f96a-bf17-405c-abb2-2ad1944bd962", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1512-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "82093ed9-a3c8-4e34-931f-4ec7ae745711", + "entity_id": "67e85198-4b8c-45db-b433-683b1899f3ea" + } + ], + "file_name": "c3d63a9f-bbfa-41df-8536-f1b73497c688.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_96_MirnaExpressionc48c4f29-3b75-4a40-ace3-76789ccf05c5_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1512-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_96_AlignedReadsc48c4f29-3b75-4a40-ace3-76789ccf05c5", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 227192098, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "889e8eba33696514447e9df1c91416a9", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "820b3cde-5f93-4f40-a740-3b9af4078a0e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_96_MirnaExpressionWorkflowa7938f20-9dc5-4814-a214-28afc1ac401f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0192b872-a338-4b85-8e26-697e91c97e10", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 350071, + "md5sum": "2f83d2fe10f72de23b69c1b87a6cf94b", + "file_id": "9e68a248-4c95-4fbe-a0e6-a14aa5d0d199", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1768-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "838693d5-1ae0-4d75-834b-e1b89b96b0ed", + "entity_id": "d327786c-eb87-43b2-abd1-7bb9446cf34f" + } + ], + "file_name": "55058adc-6f17-4400-8e9c-16be92342533.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_404_MirnaExpression93b3b925-ea3e-44da-b1c0-d4b805154da2_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "12a7ec53-9734-5e9c-a3e3-ec616da665cc", + "entity_submitter_id": "TCGA-29-1768-01A-01R-1567-13", + "notes": "RNA-seq:INSUFFICIENT INPUT MATERIAL,LOW SEQUENCE YIELD/DIVERSITY", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8861", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "d327786c-eb87-43b2-abd1-7bb9446cf34f", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "5de5d3e9-00f4-5a21-9a1a-3edb00271d71", + "entity_submitter_id": "TCGA-29-1768-01A-01R-1567-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29795", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "d327786c-eb87-43b2-abd1-7bb9446cf34f", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1768-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_404_AlignedReads93b3b925-ea3e-44da-b1c0-d4b805154da2", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 88210063, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "3647fa2df71ed3d440dcc0ef28904c80", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "7bd5a22a-7c70-4136-9511-8ab4e90009c2", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_404_MirnaExpressionWorkflowff29ef8a-620a-4471-8cb9-376412b1346b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "82f8c20f-54d7-4963-8dce-3ba59610c8d8", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 233342, + "md5sum": "49e424bedcb94eb97dd07042390c46a3", + "file_id": "1b3823ea-12bc-4dd7-b941-a42d9a79078c", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0903-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "8783e4b0-2b62-45d5-8cd9-f5a71cc0138e", + "entity_id": "adb90bae-c7eb-4bfb-87e8-b001763be840" + } + ], + "file_name": "d6e6ac3e-d877-4425-9c40-c6f94c6ecb1d.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_181_MirnaExpression120624d7-d688-432b-82fc-2813c0f1008b_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0903-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_181_AlignedReads120624d7-d688-432b-82fc-2813c0f1008b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 112413838, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "e469136fb367f0cf8cb2f317a6de592c", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "172b1d0e-16f3-4a6c-9589-50b233328a87", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_181_MirnaExpressionWorkflowff127f8c-7db9-4bd0-af94-27c0f8ff56e4_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0e9a08d4-0ce5-4738-8720-6f6e57c12cf5", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 269424, + "md5sum": "d2d1e24d23b35b4540bf158414916c78", + "file_id": "b3279b13-5a74-4794-9f84-fa9fe302c0ba", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0920-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "85a85a11-7200-4e96-97af-6ba26d680d59", + "entity_id": "2d8e1b4d-85d0-4bfd-99f7-59559dabe978" + } + ], + "file_name": "0201f538-e899-4a77-96aa-b563c3712eda.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_381_MirnaExpression4fa8f5f4-3780-4129-9122-61a60f54a25e_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0920-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_381_AlignedReads4fa8f5f4-3780-4129-9122-61a60f54a25e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 223873756, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "70b011d2fb307749aaf6d4e32d8cdc99", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "1a836cd7-0af5-4453-a752-d108ded002b0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_381_MirnaExpressionWorkflowba255abe-7602-48bc-91d9-9e1b7b0dcde2_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a3cc0acc-7c50-4e69-981e-5e5d7e1e8d0c", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50370, + "md5sum": "3cca664e63ee786241227e93b6e00153", + "file_id": "e732a90f-5cd8-44f5-b46b-b613b5eb188c", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-1662-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "867f9563-16c9-45a8-b519-6df61ba1b6b7", + "entity_id": "759060d9-af2e-4098-b4ee-7aa2214acba8" + } + ], + "file_name": "27b3ce43-b028-4639-afdf-4ef2ef3592d2.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_397_MirnaExpression4d4e546b-3f1b-42de-b0d3-a0e160dcd1fe_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-1662-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_397_AlignedReads4d4e546b-3f1b-42de-b0d3-a0e160dcd1fe", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 141234426, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "66e7c3108cf191730ead7c0487947409", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "f7af8272-f385-47b9-a2d3-36a192fcdc59", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_397_MirnaExpressionWorkflowfb012e5f-e356-467f-bba4-9b3cb3cbfd28_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "460dc6cb-db53-4947-8839-6284faab2319", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50233, + "md5sum": "b460f389b449284fe7189b27926dc894", + "file_id": "bbb7e561-97f2-46fb-8190-a3ac5d27ea42", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-30-1856-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "91a6f311-c758-4e40-9abb-cc0f6584b9c9", + "entity_id": "8da2bf5c-aa6e-4ba2-ada8-27736dff711c" + } + ], + "file_name": "2a432355-6a89-4f03-934d-de0c6a8ed907.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_90_MirnaExpression0e183ba9-44bf-42a6-abea-847b194a5e32_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-30-1856-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_90_AlignedReads0e183ba9-44bf-42a6-abea-847b194a5e32", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 161553590, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "4034fa6c85e22f4c007bffbc1c293ed1", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6a5a4e93-6d3d-4fa3-90bd-f97e30b87554", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_90_MirnaExpressionWorkflowae86a981-cbe4-4417-b70d-ecdcdabeb21b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "316e6867-a719-461b-ba38-4f9b64e280c3", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50266, + "md5sum": "cca29982cd692cead8162f7e8f6a0801", + "file_id": "1bc3dd97-de24-4ffe-8deb-22857c39f65c", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1117-01A-02R-A96U-41", + "entity_type": "aliquot", + "case_id": "a88b7e66-5f12-4023-a7e2-fcfbd1f25977", + "entity_id": "7e9afbd6-087d-41a5-a514-13fe948d9957" + } + ], + "file_name": "031ed697-812f-41dd-9a5b-ceae4b1ed991.mirnaseq.isoforms.quantification.txt", + "submitter_id": "145da540-8bf2-4806-aa98-f198afc86633", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.987991133169655, + "total_reads": 18325376, + "access": "controlled", + "file_name": "7e9afbd6-087d-41a5-a514-13fe948d9957_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004197155, + "proportion_reads_duplicated": 0, + "submitter_id": "6b9dbe40-3c0d-4dc4-96cc-b3023c3dcd53", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 322435900, + "created_datetime": "2024-09-20T11:13:36.209572-05:00", + "average_base_quality": 36, + "md5sum": "dda9044a14dda70ee416a177f0160bda", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "99e57138-972f-4ca8-9a3f-4c67625aff62", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 33, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "031ed697-812f-41dd-9a5b-ceae4b1ed991_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "4ff07b02-e6a4-4537-9c38-29303dc215a3", + "created_datetime": "2024-09-20T11:18:17.006015-05:00" + }, + "file_size": 494409, + "md5sum": "79d6cdf3b8a2a359cbcc7e7c0fc1227a", + "file_id": "d19b35ed-15e3-4b20-ac17-22ba5c03d949", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-20-0990-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "c9524775-6b50-4793-8858-24b6a6d3e4e6", + "entity_id": "67af5b15-53e8-4069-af1d-149c909c76db" + } + ], + "file_name": "681ecf0b-0418-444e-98f5-148f1a957b2b.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_194_MirnaExpression100bc05a-a8cd-454f-8b84-13560bb60a95_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-20-0990-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_194_AlignedReads100bc05a-a8cd-454f-8b84-13560bb60a95", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 95626220, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "8a17bc5abdcaca83b07e32978d2acd1c", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "f6574963-6932-43e2-834a-341d37f0f173", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_194_MirnaExpressionWorkflowe4e5b8f6-6211-4fc5-98d5-03c55e8e0a5f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b6670896-d250-4507-adab-a9aeccc3c0e5", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 206959, + "md5sum": "7cb386a127176698b11f7b01193153c4", + "file_id": "12751a1c-3b67-4f53-844e-f894be9fcdf3", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-20-0990-01A-01R-A96U-41", + "entity_type": "aliquot", + "case_id": "c9524775-6b50-4793-8858-24b6a6d3e4e6", + "entity_id": "5973c0fb-55fa-45cf-a0f1-096819543438" + } + ], + "file_name": "bcade1c9-49ae-4874-b5a2-43a54c7ce4c5.mirnaseq.mirnas.quantification.txt", + "submitter_id": "6579739e-e3ca-4250-9e4b-accbab5ce62e", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9931507517586566, + "total_reads": 19883642, + "access": "controlled", + "file_name": "5973c0fb-55fa-45cf-a0f1-096819543438_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003125603, + "proportion_reads_duplicated": 0, + "submitter_id": "9f74b60c-4944-49b4-9cdd-cb9f53cb4920", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 306209862, + "created_datetime": "2024-09-20T11:13:01.821863-05:00", + "average_base_quality": 36, + "md5sum": "dd480ce5feb2452d8d775946ee50bcf9", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "1427fb91-0c90-4349-b940-f07af4bd059e", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 38, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "bcade1c9-49ae-4874-b5a2-43a54c7ce4c5_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2f118779-8f58-4a2b-b922-28111b613fd9", + "created_datetime": "2024-09-20T11:17:58.052957-05:00" + }, + "file_size": 50547, + "md5sum": "f15789e1fe234ea6817501ba1c9c3ec3", + "file_id": "8290fb45-cda2-46fb-802b-11616175c0d5", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-10-0930-01A-02R-A96S-41", + "entity_type": "aliquot", + "case_id": "99f1ae02-86ec-4d93-8cd4-650bf6f02c10", + "entity_id": "fdec15df-85b8-4439-8677-da26ba15b47f" + } + ], + "file_name": "ca8b1b15-238e-4763-9f26-71f5e71d7ac0.mirnaseq.mirnas.quantification.txt", + "submitter_id": "09b5ee4f-be01-4a8c-ac91-df569a1d4a61", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9897463163045241, + "total_reads": 30083920, + "access": "controlled", + "file_name": "fdec15df-85b8-4439-8677-da26ba15b47f_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003737508, + "proportion_reads_duplicated": 0, + "submitter_id": "62d6f862-ea2f-4ab5-93ce-305c3e59b28d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 490735157, + "created_datetime": "2024-09-20T11:14:12.823486-05:00", + "average_base_quality": 36, + "md5sum": "3c3d693c0fdce1ad84f7f10bd65a3b1d", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "7a8469e6-f8e1-479a-81a7-e7ab6e086ef0", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 35, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "ca8b1b15-238e-4763-9f26-71f5e71d7ac0_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "94676c58-68f6-4e7b-8973-a646b378ac4c", + "created_datetime": "2024-09-20T11:17:04.628899-05:00" + }, + "file_size": 50669, + "md5sum": "1862268f204175a1444c8d537e67acb1", + "file_id": "687abb9b-fc28-45a4-b8ad-13ec6ac3de52", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1487-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "c9e28934-8379-4511-817c-d787f2c4ca3a", + "entity_id": "55704c3f-7261-4ab1-bb1e-d8957bfd8952" + } + ], + "file_name": "dc2acc89-19d4-4795-aa36-983fe1029e86.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_255_MirnaExpression294df053-3b15-4044-8932-cf925c223f54_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-1487-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "submitter_id": "8781", + "classification": "CenterNotification", + "entity_id": "55704c3f-7261-4ab1-bb1e-d8957bfd8952", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "0e65cf14-8e8a-5913-8a10-e7b87536a6b7", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:32:20.747393-05:00", + "case_id": "c9e28934-8379-4511-817c-d787f2c4ca3a", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-13-1487" + }, + { + "entity_submitter_id": "TCGA-13-1487-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29750", + "classification": "CenterNotification", + "entity_id": "55704c3f-7261-4ab1-bb1e-d8957bfd8952", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "625ae2c6-2013-5ed9-9aad-018a15cf7aa6", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "c9e28934-8379-4511-817c-d787f2c4ca3a", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-13-1487" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1487-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_255_AlignedReads294df053-3b15-4044-8932-cf925c223f54", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 231811301, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "193246886e43070449632f6aedfc643b", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "024777da-f72e-4318-91ce-4c87f7bfaef3", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_255_MirnaExpressionWorkflowad8fbd3e-948e-4114-a594-0bb96d6254aa_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1a40c38d-5b15-4058-a702-21fb0f90c4fb", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50144, + "md5sum": "56968490fa59e1c2413755ec03ebc5eb", + "file_id": "9c72c1d0-73b3-4cc5-915a-bc92393aaa40", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1849-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "94efd4f9-69b0-4efa-8a0c-61106e898fdd", + "entity_id": "58f3764a-4651-4c26-a667-74aef5c5679c" + } + ], + "file_name": "0b5a33a3-d5ab-4d17-8215-9052767e44c8.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_176_MirnaExpression59b568c3-6d3c-49cb-9d4c-171a40430e9a_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1849-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_176_AlignedReads59b568c3-6d3c-49cb-9d4c-171a40430e9a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 153842820, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "7610be243e82b7bf647aae4e27717e9e", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "cd12f545-e3fc-4c02-9eb2-b24d78c661f0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_176_MirnaExpressionWorkflowbd2f1d9e-59bf-46c6-b98d-b3fa3903a483_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "431182be-0bef-4154-ab5d-bba209d33c2a", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 328126, + "md5sum": "4a7fae79589bd518e54fc1833e0c8412", + "file_id": "5a6bd2cc-5401-4cc5-9e59-abcf8204c5b2", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1487-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "c9e28934-8379-4511-817c-d787f2c4ca3a", + "entity_id": "55704c3f-7261-4ab1-bb1e-d8957bfd8952" + } + ], + "file_name": "dc2acc89-19d4-4795-aa36-983fe1029e86.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_255_MirnaExpression294df053-3b15-4044-8932-cf925c223f54_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-1487-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "submitter_id": "8781", + "classification": "CenterNotification", + "entity_id": "55704c3f-7261-4ab1-bb1e-d8957bfd8952", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "0e65cf14-8e8a-5913-8a10-e7b87536a6b7", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:32:20.747393-05:00", + "case_id": "c9e28934-8379-4511-817c-d787f2c4ca3a", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-13-1487" + }, + { + "entity_submitter_id": "TCGA-13-1487-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29750", + "classification": "CenterNotification", + "entity_id": "55704c3f-7261-4ab1-bb1e-d8957bfd8952", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "625ae2c6-2013-5ed9-9aad-018a15cf7aa6", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "c9e28934-8379-4511-817c-d787f2c4ca3a", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-13-1487" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1487-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_255_AlignedReads294df053-3b15-4044-8932-cf925c223f54", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 231811301, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "193246886e43070449632f6aedfc643b", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "024777da-f72e-4318-91ce-4c87f7bfaef3", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_255_MirnaExpressionWorkflowad8fbd3e-948e-4114-a594-0bb96d6254aa_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1a40c38d-5b15-4058-a702-21fb0f90c4fb", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 297154, + "md5sum": "37c977fa386b516b2a05443f48741e3f", + "file_id": "4ca695f3-5e52-41b3-a4a4-2f1200e2ca7d", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2038-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "17181157-c9e2-4bd6-8653-f5dce56f9053", + "entity_id": "372a8471-dff3-44c0-9393-94ad511a7374" + } + ], + "file_name": "1f1e8c1b-1eb8-4efd-bf25-0c8c7e939c30.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_23_MirnaExpression71d2011f-9a31-433f-87df-190c562ad5a6_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2038-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_23_AlignedReads71d2011f-9a31-433f-87df-190c562ad5a6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 192008514, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "e3f967fb79c1939634ec03db96016b69", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "edc0e6ee-3acd-4c1b-8326-d74adf55fb28", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_23_MirnaExpressionWorkflow05440115-88f4-4e98-92fc-ce7fcf969b44_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5afc6381-3628-4213-a189-2b707ddda71c", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 310471, + "md5sum": "41589dbf9e440588cfa04dd174264a68", + "file_id": "5ba50377-7b3b-488a-a939-e0b76113a8d2", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1701-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "86b513ba-df09-485d-92d4-fb9e888f7350", + "entity_id": "e5e6f25b-d641-4598-8bb1-0850750ef048" + } + ], + "file_name": "78db0e91-71ff-46bf-9ace-22ae8aba21fa.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_356_MirnaExpressiondf445a9e-fe38-4210-be9c-a446c6dc35e0_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1701-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_356_AlignedReadsdf445a9e-fe38-4210-be9c-a446c6dc35e0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 181197793, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "edd48059c345450356fba38cc98a5de8", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a9468f95-f816-46f7-95e6-f9c9ec1fe3cf", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_356_MirnaExpressionWorkflowa3841e86-695d-4665-9259-70ebed1cfab8_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d2c8c73c-1700-4b78-90d8-5298597bdc55", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 325234, + "md5sum": "79689985889b5c359c98c3bf6de55b66", + "file_id": "74aba152-e71a-4175-8cbf-17890188fe40", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1365-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "0484a929-7a7f-4926-8d25-470ddab082ec", + "entity_id": "2535da6b-39f0-41de-afd3-82cb37916b95" + } + ], + "file_name": "78c9c71a-7ed8-4e63-8b06-aa8c5f8a1f16.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_50_MirnaExpression7baa5594-b5b6-427f-8bd8-a671c214ac6c_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1365-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_50_AlignedReads7baa5594-b5b6-427f-8bd8-a671c214ac6c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 131855407, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "98c3412a98d9bfd16f0fbbaf907efab4", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "42854b8b-dcfa-426e-9e37-b46de0f652f4", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_50_MirnaExpressionWorkflowcbc85c05-3ae2-4d43-992f-795a55596cd3_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "386d5d2e-fb32-4a11-bcc6-3c76fd3a3c2a", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 315546, + "md5sum": "5b333792c18f25c4b36fbe47905334f0", + "file_id": "dfcda3da-8004-439b-8bc4-ec6b94a63378", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1477-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "13f5814c-1f99-4ffa-84a4-3bbd8979faae", + "entity_id": "eb7fbe7d-ca45-4f35-b384-0d396349da06" + } + ], + "file_name": "ef2cb396-9fe1-41ef-a637-86c1d0cf669b.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_407_MirnaExpression60f5165f-50bc-4bb0-8a4a-aa6ace3987e5_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "f2ce1574-f4c0-5f07-9665-a7844967e5f9", + "entity_submitter_id": "TCGA-13-1477-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8840", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "eb7fbe7d-ca45-4f35-b384-0d396349da06", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "f38d6971-195e-563f-8bb0-561999742565", + "entity_submitter_id": "TCGA-13-1477-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29746", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "eb7fbe7d-ca45-4f35-b384-0d396349da06", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1477-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_407_AlignedReads60f5165f-50bc-4bb0-8a4a-aa6ace3987e5", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 162123731, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "2c6f7249adfbe6aef49fa807e7a50f83", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b090364a-7e30-4c50-9021-6a5a4d5bd655", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_407_MirnaExpressionWorkflow23a47183-f420-4c72-9bd2-9cc6af337647_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8d69c0de-524b-453a-934c-e734eec3c516", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 311545, + "md5sum": "be78b570ea37339a2f69a2daf86a76ee", + "file_id": "c4458b18-ae36-4d0b-bf82-04c8f40b7afc", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1498-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "56a30462-2819-4c18-95be-8e73880a4921", + "entity_id": "176d1ca2-eb1d-4f49-9b10-c129c822fa5a" + } + ], + "file_name": "495bd808-d3f9-4490-9e29-8afb0211f9a1.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_88_MirnaExpression7f9080ab-619c-4349-a35c-54d1bee630e3_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1498-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_88_AlignedReads7f9080ab-619c-4349-a35c-54d1bee630e3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 236132462, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "206f91a0c707ff234eef7bf291d8be00", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "53bf2172-e9ec-443a-907a-290017e11a64", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_88_MirnaExpressionWorkflow38165ad2-2d53-4012-ba87-d358ce45dca1_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "08794c15-77d2-4942-8de4-2a8bac50e21e", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50322, + "md5sum": "fa8e9bd6dd75c39d504db4025620bb9b", + "file_id": "51d8da81-e323-4f90-8b46-8da93d289ee4", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-30-1866-01A-02R-1568-13", + "entity_type": "aliquot", + "case_id": "cbc7f427-5f7b-4267-ad56-055d8880a4cc", + "entity_id": "e2c174f6-eac3-449e-879c-9335ccf4ccd6" + } + ], + "file_name": "4c7812eb-0939-4521-8dbf-bfe2cb1c73d9.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_165_MirnaExpression09f49835-1db6-415a-a066-19b0d835ef9e_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "e7bfe297-42b5-55dd-a49a-2cf3d318368c", + "entity_submitter_id": "TCGA-30-1866-01A-02R-1568-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8747", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "e2c174f6-eac3-449e-879c-9335ccf4ccd6", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "f2630f7f-8fb5-59d9-996e-87fc72ff3223", + "entity_submitter_id": "TCGA-30-1866-01A-02R-1568-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29802", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "e2c174f6-eac3-449e-879c-9335ccf4ccd6", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-30-1866-01A-02R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_165_AlignedReads09f49835-1db6-415a-a066-19b0d835ef9e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 183308054, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "4d0b1016047edee589921979d51538df", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "f711834a-086a-41c8-983e-fc0538062303", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_165_MirnaExpressionWorkflow44eab5cb-38a5-4e18-abe9-c3cdc6108f5a_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "13b755be-c42d-4f84-8196-dcd46dcfc290", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50184, + "md5sum": "7f7e982446e016033b9f38a4f67f85d7", + "file_id": "19e322d3-be7c-45e2-9548-d567d14b709e", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-30-1866-01A-02R-1568-13", + "entity_type": "aliquot", + "case_id": "cbc7f427-5f7b-4267-ad56-055d8880a4cc", + "entity_id": "e2c174f6-eac3-449e-879c-9335ccf4ccd6" + } + ], + "file_name": "4c7812eb-0939-4521-8dbf-bfe2cb1c73d9.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_165_MirnaExpression09f49835-1db6-415a-a066-19b0d835ef9e_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "e7bfe297-42b5-55dd-a49a-2cf3d318368c", + "entity_submitter_id": "TCGA-30-1866-01A-02R-1568-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8747", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "e2c174f6-eac3-449e-879c-9335ccf4ccd6", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "f2630f7f-8fb5-59d9-996e-87fc72ff3223", + "entity_submitter_id": "TCGA-30-1866-01A-02R-1568-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29802", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "e2c174f6-eac3-449e-879c-9335ccf4ccd6", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-30-1866-01A-02R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_165_AlignedReads09f49835-1db6-415a-a066-19b0d835ef9e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 183308054, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "4d0b1016047edee589921979d51538df", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "f711834a-086a-41c8-983e-fc0538062303", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_165_MirnaExpressionWorkflow44eab5cb-38a5-4e18-abe9-c3cdc6108f5a_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "13b755be-c42d-4f84-8196-dcd46dcfc290", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 326980, + "md5sum": "74e18219fbf2beecb38e97c82766649a", + "file_id": "f3f19a33-9ff9-4225-97ef-7873dd48e37e", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1474-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "d7b3156d-672a-4a55-868d-9ca6a09fcb0f", + "entity_id": "4da3ccd5-53e1-46f5-874d-e5d131dbfc52" + } + ], + "file_name": "e61d4ce3-c0f1-4d4d-9205-f09fed9bf43f.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_107_MirnaExpression6f722aa1-7783-4e26-861c-7e705123aea0_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1474-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_107_AlignedReads6f722aa1-7783-4e26-861c-7e705123aea0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 187332417, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "55fded9438f980ac17cbf6b9f7cc948c", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b3e06533-494f-454c-9a31-9f8660252941", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_107_MirnaExpressionWorkflowca5acfcc-a9f4-4a66-b706-308648741071_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1bc9dbfe-4206-4a0f-bb0d-770f1a25f85d", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50187, + "md5sum": "5deafe7e5fea39902e6af650866b2f80", + "file_id": "ebf7fe08-225f-48c3-8fa2-b76579b95289", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1022-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "d0673efd-3315-4dd5-8ab6-912bfa07dceb", + "entity_id": "2eeb258f-bbc2-4412-9673-cc39915da304" + } + ], + "file_name": "139df8ff-6e24-465c-970b-20f7ff444afb.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_252_MirnaExpressionb5730959-1a73-4830-92be-e7d7510f33de_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "0513b14d-97fb-5baf-9147-55bd72502eff", + "entity_submitter_id": "TCGA-23-1022-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29764", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "2eeb258f-bbc2-4412-9673-cc39915da304", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "a3e1c1a3-2044-55e0-88eb-fe71472eca3a", + "entity_submitter_id": "TCGA-23-1022-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8824", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "2eeb258f-bbc2-4412-9673-cc39915da304", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1022-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_252_AlignedReadsb5730959-1a73-4830-92be-e7d7510f33de", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 160304255, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "91f18c19baff13c7987888d78df06920", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "818fa21c-9311-4395-9dd5-8ed6afc57418", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_252_MirnaExpressionWorkflowf0578915-9deb-43a3-989c-005a75fb997c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ed8e345d-4773-4c53-8049-ffb7274803a3", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50041, + "md5sum": "80cbad1335f49ee6a7e4ad62bd898ef9", + "file_id": "bd69bd70-9b09-4d08-a738-5a58606be02f", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1346-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "25a0a9e6-4f5b-45d8-8f34-abfd31d5ff1b", + "entity_id": "e44d2f5c-c06c-4ce5-8f3a-8810dc4e1e8c" + } + ], + "file_name": "c0d5ebbc-312d-4b7b-98ef-6938080ff4e5.mirnaseq.isoforms.quantification.txt", + "submitter_id": "60b27bc1-1436-48b6-bc54-843497f5dcbc", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9875324816367611, + "total_reads": 30091233, + "access": "controlled", + "file_name": "e44d2f5c-c06c-4ce5-8f3a-8810dc4e1e8c_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004285913, + "proportion_reads_duplicated": 0, + "submitter_id": "ee940b52-7974-4b06-b406-77c4de08a6d2", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 509858444, + "created_datetime": "2024-09-20T11:14:01.571456-05:00", + "average_base_quality": 36, + "md5sum": "9190453a932fee342a586c1e0a53b482", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "112cf4fe-2d8e-484a-89ac-08d294a50ae0", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "c0d5ebbc-312d-4b7b-98ef-6938080ff4e5_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5312916b-0312-4ea4-ad2e-f7f7d0d07103", + "created_datetime": "2024-09-20T11:18:11.614589-05:00" + }, + "file_size": 625497, + "md5sum": "84f20ce17758886fa695de01a5cad8b8", + "file_id": "a5763cc9-3217-41d7-be0b-9e9285eecd22", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1346-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "25a0a9e6-4f5b-45d8-8f34-abfd31d5ff1b", + "entity_id": "c3c1d49c-c63c-4d76-be7c-3176fb07367b" + } + ], + "file_name": "b81a1160-be17-47ef-b8fb-0e022340edb6.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_272_MirnaExpressione22e279a-d9c0-4409-a6de-40a00f65d2c4_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1346-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_272_AlignedReadse22e279a-d9c0-4409-a6de-40a00f65d2c4", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 180026393, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "a837aa0f3c14dd84d159cd7f5e6caad3", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c50434bf-bdc3-4be1-8e68-8a3f61cfe170", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_272_MirnaExpressionWorkflowa9a75c19-978f-4db2-9d2c-840b57876934_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "22ca40fa-b5bb-4df6-85be-5de086fba0eb", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 394628, + "md5sum": "6a2ec006af363c3c78ca63ff11216911", + "file_id": "4fc5f12d-f241-4bbd-aa88-62d75fd18acc", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0801-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "b8c3d99c-429b-42a3-b486-6fbcb90cc2e0", + "entity_id": "c51dee3c-5047-4dde-b454-2474de5cf025" + } + ], + "file_name": "313bf802-3721-4ec1-87fd-3bab7c541f32.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_257_MirnaExpression31552e58-a26c-42d5-9886-e1c84e9fdd78_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0801-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_257_AlignedReads31552e58-a26c-42d5-9886-e1c84e9fdd78", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 122538582, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "c9e257b57e67a257eb07f3cfe690225e", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "067a245d-c6a3-4ed3-bc44-f81fc79dcfa6", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_257_MirnaExpressionWorkflow619c84d1-c0f1-47d8-9b16-e167832ef2b2_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "be981aba-d99c-4835-b054-e523edb30f8c", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50126, + "md5sum": "56cdef5fe7034bd1c44f0d5998bce9bd", + "file_id": "5364ad12-30c5-4a84-94e6-772d6d6a5344", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1783-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "460616ec-f66f-483b-88c1-757edd86261d", + "entity_id": "dad3688e-fdd7-4c85-a1df-cf0e1cc0a235" + } + ], + "file_name": "27b7aae2-07ed-4a4f-a6fa-c27a41355b90.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_470_MirnaExpression88a6a56f-db0e-47c2-842c-02cbd16735fe_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1783-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_470_AlignedReads88a6a56f-db0e-47c2-842c-02cbd16735fe", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 202851942, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "3c4d570c5dfcc32773107451a6e14028", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a402ebe7-561c-486b-a1f6-266d51c5ec9d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_470_MirnaExpressionWorkflowcee93e21-9af1-4656-b595-2ff1f9825165_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ec66504e-847e-4cb0-b1d3-3354f8706403", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 327308, + "md5sum": "b7b8acd30e933ed74cdeeebe305e6c8f", + "file_id": "6f5416da-4162-4190-8baf-35f9779ea007", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1553-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "08c64000-d320-4e4d-974b-da503d48890c", + "entity_id": "7c607e77-a353-4995-855b-36ccaaf3bde6" + } + ], + "file_name": "16fc7599-1ca5-4179-ac55-811a89c3ec32.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_215_MirnaExpression184b9bdb-bc6a-411b-b9e8-5c2bf293bd6b_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1553-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_215_AlignedReads184b9bdb-bc6a-411b-b9e8-5c2bf293bd6b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 122317628, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "9e0e4db20881fc727180a37141e83da7", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c4e67fce-3b31-4ebe-96fa-afe3aa8a5885", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_215_MirnaExpressionWorkflow8ae98c6b-1b20-4f0e-b42f-759f107f1f0f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1f0e02d6-3304-4477-b915-425d6dc757bf", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 285127, + "md5sum": "2b445acd525396e89386fde8ab7f380b", + "file_id": "7947ae39-264a-42f1-b22a-a60e3760e568", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1424-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "c3e443b9-5dc5-4793-91e3-534f21485268", + "entity_id": "d3fbcdaa-11af-4233-9700-57c6e1628c4b" + } + ], + "file_name": "c47dcf28-933f-408f-ad07-0c760c6314bd.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_245_MirnaExpressionf897ee5b-245a-4b78-8326-d40e828f2ef1_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1424-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_245_AlignedReadsf897ee5b-245a-4b78-8326-d40e828f2ef1", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 221728497, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "560d3d1b51bb0bf00b00cd8cbe803ce7", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "e3a4a21c-aa08-4ecc-8da3-3efeacd783f2", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_245_MirnaExpressionWorkflow9a9252bc-e758-4e1b-9f4e-522ebb652982_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "32887195-9df4-4186-ba16-ceca275e7040", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50431, + "md5sum": "dd02ae0781982b58eed751208a1ed502", + "file_id": "9e14d7af-3396-4ede-b51e-c961a95f305e", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1332-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "b46263ab-c3ca-4fda-a895-74c7e6e6fe22", + "entity_id": "08e7c700-7038-40b5-bec0-2dd402e1a225" + } + ], + "file_name": "559313a3-7242-4619-9a97-1f24e26dae26.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_472_MirnaExpression0a28814b-a073-4338-8aec-635846d21335_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "12dff6bb-0d3a-550d-9e24-898678b83bdf", + "entity_submitter_id": "TCGA-04-1332-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29687", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "08e7c700-7038-40b5-bec0-2dd402e1a225", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "ef198191-f361-52df-a099-a83b9df1f295", + "entity_submitter_id": "TCGA-04-1332-01A-01R-1564-13", + "notes": "RNA-seq:HIGH rRNA CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8829", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "08e7c700-7038-40b5-bec0-2dd402e1a225", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1332-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_472_AlignedReads0a28814b-a073-4338-8aec-635846d21335", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 139509188, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "417f7553885331907a676912b85e727b", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c0b14cde-7e94-45d8-856c-06eb5226eb7a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_472_MirnaExpressionWorkflow98fb916c-d1a7-4724-acca-e5bb87eb40c8_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "757a7f60-f014-4da3-abd7-e9d32aa12a9d", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50088, + "md5sum": "0874128ac47cf1720f3b622f490eed64", + "file_id": "9f323175-4196-4406-a12a-3883dee09de1", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1424-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "c3e443b9-5dc5-4793-91e3-534f21485268", + "entity_id": "d3fbcdaa-11af-4233-9700-57c6e1628c4b" + } + ], + "file_name": "c47dcf28-933f-408f-ad07-0c760c6314bd.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_245_MirnaExpressionf897ee5b-245a-4b78-8326-d40e828f2ef1_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1424-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_245_AlignedReadsf897ee5b-245a-4b78-8326-d40e828f2ef1", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 221728497, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "560d3d1b51bb0bf00b00cd8cbe803ce7", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "e3a4a21c-aa08-4ecc-8da3-3efeacd783f2", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_245_MirnaExpressionWorkflow9a9252bc-e758-4e1b-9f4e-522ebb652982_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "32887195-9df4-4186-ba16-ceca275e7040", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 419728, + "md5sum": "d99effb880946396768d6ebf972c1eaf", + "file_id": "5b11fe93-9545-4a52-afc9-21eb78ad0821", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1914-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "8e1b8811-1eb2-4337-852c-c19eaa0ee418", + "entity_id": "0d75483f-eab3-41c8-b2cc-453af29b6f44" + } + ], + "file_name": "20e569b2-2679-4e3a-b81d-3c210253c3e1.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_385_MirnaExpressione3dfab7f-664d-4bf6-aea4-57f28c3d0e97_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1914-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_385_AlignedReadse3dfab7f-664d-4bf6-aea4-57f28c3d0e97", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 345637854, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "ec9672efb2ea81a8a6268027395052a0", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c0fe0305-090a-476d-9875-fc6be933ae45", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_385_MirnaExpressionWorkflowf267c5bc-ae7e-4cc7-b943-e1560d257850_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b70dee22-d257-46c3-b574-0abbd93f4c69", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 431645, + "md5sum": "0311e2c917b8a0e80e20987020128562", + "file_id": "154e54df-fe2d-4087-a435-e469a24a5b3c", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1114-01B-01R-1566-13", + "entity_type": "aliquot", + "case_id": "c0c3caab-9277-4a31-a96c-c607e38d5ccc", + "entity_id": "7cfe1419-65be-4860-9f99-75f4a139d9ac" + } + ], + "file_name": "e13b4565-bb53-404e-a71b-0b37700e9727.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_122_MirnaExpression23cef87f-70b7-4cb7-92b5-be43bd16d032_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1114-01B-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_122_AlignedReads23cef87f-70b7-4cb7-92b5-be43bd16d032", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 113405603, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "8051f83acd420702cda9cb43703bf513", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "7cc2955d-fec5-42aa-9b0a-7f57145ec5ea", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_122_MirnaExpressionWorkflow648b73e7-a09e-49f2-860e-5e664f37e5a6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c7d4ca17-bafb-4519-95a2-145c3f541f18", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 313362, + "md5sum": "32da2716d606abd5a8abedd22183b188", + "file_id": "06b54636-5027-4e65-9d92-5af434943689", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1103-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "f34aa3b6-e966-49c6-bc55-130545772c53", + "entity_id": "202abe19-20e0-4ea9-8653-bf5145da351c" + } + ], + "file_name": "0b5a0f87-7a1a-4e7f-9b04-347f5270fe4f.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_147_MirnaExpression3908383f-c54b-4101-9e4c-522cd32fa043_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1103-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_147_AlignedReads3908383f-c54b-4101-9e4c-522cd32fa043", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 185200929, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "3556f4d93e611e60dbaeeb9353bc321d", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "d9f1f018-c0e1-4dd3-9ee1-62365a2f1d7f", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_147_MirnaExpressionWorkflowe9c5370d-b091-4378-bc74-3501945486f2_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ad76c114-36e9-4d3d-b4f7-8317fd9b75ae", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50367, + "md5sum": "848eea9e01843d267be9727881e9acc5", + "file_id": "98978d5c-9f2b-4f89-899f-ce8a08290ff9", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1103-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "f34aa3b6-e966-49c6-bc55-130545772c53", + "entity_id": "202abe19-20e0-4ea9-8653-bf5145da351c" + } + ], + "file_name": "0b5a0f87-7a1a-4e7f-9b04-347f5270fe4f.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_147_MirnaExpression3908383f-c54b-4101-9e4c-522cd32fa043_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1103-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_147_AlignedReads3908383f-c54b-4101-9e4c-522cd32fa043", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 185200929, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "3556f4d93e611e60dbaeeb9353bc321d", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "d9f1f018-c0e1-4dd3-9ee1-62365a2f1d7f", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_147_MirnaExpressionWorkflowe9c5370d-b091-4378-bc74-3501945486f2_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "ad76c114-36e9-4d3d-b4f7-8317fd9b75ae", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 388880, + "md5sum": "e37c90454009394800d8d69f646349f3", + "file_id": "c7745005-e749-4888-a916-56e42c357cb9", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-1911-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "93095c36-2263-438f-a619-a4a4d6ae13c7", + "entity_id": "1ec9cbc3-fd76-4d44-be24-8ff296d3c4c9" + } + ], + "file_name": "9f76cbf7-4885-49b9-950f-94b693afdb2b.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_280_MirnaExpression295f4429-615c-4f97-a0e1-304dd5b39fee_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "5f3da0b2-a969-568e-9182-7cd830e7e92b", + "entity_submitter_id": "TCGA-61-1911-01A-01R-1567-13", + "notes": "RNA-seq:INSUFFICIENT INPUT MATERIAL,LOW SEQUENCE YIELD/DIVERSITY;LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8813", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "1ec9cbc3-fd76-4d44-be24-8ff296d3c4c9", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "97d1b82a-bd8d-59de-baf3-f8826ec5d5b0", + "entity_submitter_id": "TCGA-61-1911-01A-01R-1567-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29805", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "1ec9cbc3-fd76-4d44-be24-8ff296d3c4c9", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-1911-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_280_AlignedReads295f4429-615c-4f97-a0e1-304dd5b39fee", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 191438599, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "4c9e6a9d960b1de02598e06afbddc273", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "fe8f47db-02e3-489e-ad0a-4cf0ed212e9f", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_280_MirnaExpressionWorkflow8a5a9920-df0f-4541-8659-2d5eaa916ab0_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7ed51331-2702-4d98-ab82-77fb2fc0e033", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50270, + "md5sum": "871e6e0d1a0c7ada520751cd6f7e0fd9", + "file_id": "d72f9eb2-e0d6-4834-b890-4f8caf17a938", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-2053-01C-01R-1568-13", + "entity_type": "aliquot", + "case_id": "ea605be2-6578-4e01-8ec3-bbd84c0b7f1d", + "entity_id": "fd1b7b74-067f-4fc9-820a-b80b5954ee10" + } + ], + "file_name": "e13810e3-d924-435f-92f5-972ede0ba5c8.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_67_MirnaExpression19808c6e-c9df-4126-b55e-ee7052a5f193_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "186dfa32-7196-5d18-8808-410880592bb9", + "entity_submitter_id": "TCGA-09-2053-01C-01R-1568-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8864", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "fd1b7b74-067f-4fc9-820a-b80b5954ee10", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "18eaf778-9e8a-535d-a50e-56cdfba66e22", + "entity_submitter_id": "TCGA-09-2053-01C-01R-1568-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29705", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "fd1b7b74-067f-4fc9-820a-b80b5954ee10", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-2053-01C-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_67_AlignedReads19808c6e-c9df-4126-b55e-ee7052a5f193", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 243185226, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "6ee17d9f8536a9e85f429afd9d0c571f", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "cbc586d1-1fc7-41da-acc6-7fec0b93eb70", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_67_MirnaExpressionWorkflowfd8dd3a0-9c2b-4e3f-a7d7-ba13ff56e542_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "608b3220-1203-4023-8f39-d45a66ad2ca1", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50471, + "md5sum": "f9933aaff106302602cf875e23d2af49", + "file_id": "ca88293f-037a-4726-8f3b-c859c3e6ab95", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1550-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "1858b58f-fdf4-413c-9c29-96ae85b88a74", + "entity_id": "648cb96f-df1c-48c1-bb15-c37a2784a9db" + } + ], + "file_name": "219985f8-56c1-4e98-bdaf-ed154f838787.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_225_MirnaExpressionb3b5c22e-e114-4b0c-9676-2ca332398484_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1550-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_225_AlignedReadsb3b5c22e-e114-4b0c-9676-2ca332398484", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 156246570, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "9a7bd55628ca474c83c2f63e4febe83a", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "74d8fb32-61aa-4323-9ad3-8587af1d44df", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_225_MirnaExpressionWorkflowf88d2733-97bb-422e-8d9e-0d1dcaba19a4_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "61f9dc54-d9a4-466d-9c99-35c23fcac1f3", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 389277, + "md5sum": "afbe976f4f9eebf5c4acf5341f406135", + "file_id": "c29dcd2f-9341-49ac-828b-4158810879b1", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1550-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "1858b58f-fdf4-413c-9c29-96ae85b88a74", + "entity_id": "648cb96f-df1c-48c1-bb15-c37a2784a9db" + } + ], + "file_name": "219985f8-56c1-4e98-bdaf-ed154f838787.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_225_MirnaExpressionb3b5c22e-e114-4b0c-9676-2ca332398484_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1550-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_225_AlignedReadsb3b5c22e-e114-4b0c-9676-2ca332398484", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 156246570, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "9a7bd55628ca474c83c2f63e4febe83a", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "74d8fb32-61aa-4323-9ad3-8587af1d44df", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_225_MirnaExpressionWorkflowf88d2733-97bb-422e-8d9e-0d1dcaba19a4_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "61f9dc54-d9a4-466d-9c99-35c23fcac1f3", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50438, + "md5sum": "716a593673c42b6fefa4e488d093cdad", + "file_id": "ddc960ba-6afe-4702-acd1-a97752a3ec0d", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1763-01A-02R-1567-13", + "entity_type": "aliquot", + "case_id": "242da7d0-8c6a-4395-9a0d-aa36e7c25ce6", + "entity_id": "af63aa43-ab5f-44c5-85cf-01d84be261a3" + } + ], + "file_name": "789ae3f2-df58-48b1-b017-4f47f761ad57.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_241_MirnaExpression64fcf846-a521-44fa-b945-1b8adeebf040_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1763-01A-02R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_241_AlignedReads64fcf846-a521-44fa-b945-1b8adeebf040", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 168331924, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "77ec0d4721a00667bf97cb25757635ae", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c9a05973-e7a1-45f2-9543-0e107438887e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_241_MirnaExpressionWorkflowe0ffc2ac-cdf4-4930-8b73-fb096aa0d055_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2bc84f6a-9e29-4fc7-86f9-25ad4e3ad7b7", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50350, + "md5sum": "e3e969542859283678bf4c9e74854b24", + "file_id": "644eaddc-cc18-4d10-9375-02f9c1627c7c", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1544-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "21f6bf91-dfc6-4a59-8b76-88a0f95c7b47", + "entity_id": "83333a5a-de0b-4d72-b886-e5488c619827" + } + ], + "file_name": "60b196ad-8929-404d-b2a2-14ef281cdf6b.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_120_MirnaExpression11123029-32f5-4e04-a31d-846e04429ebe_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1544-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_120_AlignedReads11123029-32f5-4e04-a31d-846e04429ebe", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 225543643, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "f1d49c70e06d46e087aeadc8e7df8a25", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "add4adeb-e7a3-40f5-b1fb-b5e86b4c5993", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_120_MirnaExpressionWorkflowe1dd6270-9858-4c5c-bec4-daeb37724627_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "da03837d-a65f-4a30-8d96-8b870570903c", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50210, + "md5sum": "446ab761b409ed3c1b2d570d4ddf4185", + "file_id": "ec6a0945-1e62-4a61-bd6a-0dbb82058a7d", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1499-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "b25570ed-baca-4e3f-87c6-2ef18119ba49", + "entity_id": "1f677d4c-6feb-4a3a-9f12-ba1d43920a80" + } + ], + "file_name": "d78a635f-6a46-4c82-a6cb-20f133148214.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_416_MirnaExpression066b2759-9bee-45b7-aee7-489279875968_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "7a1a3234-d1b3-5763-a749-3e71a84495e3", + "entity_submitter_id": "TCGA-13-1499-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8792", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "1f677d4c-6feb-4a3a-9f12-ba1d43920a80", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "e2f50d89-54ee-512f-83e9-6c0d7ce28cd6", + "entity_submitter_id": "TCGA-13-1499-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29756", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "1f677d4c-6feb-4a3a-9f12-ba1d43920a80", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1499-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_416_AlignedReads066b2759-9bee-45b7-aee7-489279875968", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 177924853, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "f9e7e748fc3d4e5a461c7ffda49fe5cb", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b08fb423-8a30-4a93-be17-e4ec113f2eb7", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_416_MirnaExpressionWorkflow82e18a43-959f-4769-a1ed-71b4ead6cd5b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "41c78d55-dbbc-49a8-95e1-2a8bc8a32f7f", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50405, + "md5sum": "fa89941f5eca6c48af8c9fd6f0ac56c3", + "file_id": "13ec6a53-c180-4f4d-8fcd-caf84f19ab54", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2000-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "29949b65-2913-4c86-bbd7-b85c5df6f15e", + "entity_id": "f4fccaa6-cd8c-4e5a-a7a8-beb63cf7b109" + } + ], + "file_name": "6ec97e54-755d-44d1-b5cc-c60cb736df3c.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_130_MirnaExpression6ac6905a-c7de-4f8d-bcc1-5067062f74b3_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2000-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_130_AlignedReads6ac6905a-c7de-4f8d-bcc1-5067062f74b3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 347677430, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "5d341c253498cd7046530a6999b8e7fd", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6f888588-1e0a-4db0-815f-a8f2828de0cc", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_130_MirnaExpressionWorkflowb857b13f-21b5-461c-8dca-8e3ed72f8113_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8deb2541-81b3-463b-a62b-dbeab2bf5f56", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 421148, + "md5sum": "7552989c0445ad8e2b1a9d05e6813677", + "file_id": "491ea17b-49a5-41a1-a081-b6c8b1589e3c", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-2398-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "fd4740db-76a8-4362-be71-7b609479bb67", + "entity_id": "3a080008-8266-4e2d-a143-adac14991b22" + } + ], + "file_name": "cf14f0f0-9e50-4a58-bd91-14f5c544e1be.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_349_MirnaExpression55878f5b-29aa-48d7-81c3-aa7f4d1a131f_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-2398-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_349_AlignedReads55878f5b-29aa-48d7-81c3-aa7f4d1a131f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 240097383, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "5f787cde52e30290876f63c77ceb6b9c", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4bcf900a-dea6-4b04-9883-ead8890f78d1", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_349_MirnaExpressionWorkflowaf10dc17-3790-4c2c-bf62-18d864d12678_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "22c4edb7-dd6d-4132-8af5-ae1e1cb0b14a", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50340, + "md5sum": "3750a188126103d685e047357a482dc6", + "file_id": "7c696430-8d7d-468e-8cc0-5ed72d96e469", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-30-1861-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "0724f800-e873-45d0-bc56-809d0ec4f6e9", + "entity_id": "32a58029-c8aa-4647-a932-bbf57e82fc48" + } + ], + "file_name": "dc302f21-11d9-458d-a09a-2e6f0699a04f.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_49_MirnaExpressiond25d9685-e9ee-443b-b48e-fd73e3b2a2a6_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-30-1861-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_49_AlignedReadsd25d9685-e9ee-443b-b48e-fd73e3b2a2a6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 211713342, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "7e4aa04c93e824b59e05b78cec357e82", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "2d59d3c5-e3ab-440b-be71-d34b443210b9", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_49_MirnaExpressionWorkflow1d9d2637-aa4d-4f07-9973-8c3a1b1af482_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "60e6f260-19dd-4287-90c8-424dc34ebf29", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50404, + "md5sum": "9f4106abbc3dfadc099212d3a97580fb", + "file_id": "d06ba3b8-0e99-4536-bbdb-3e6415d9adbc", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-59-2355-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "708eec28-2348-4e15-b98c-8c6f9d057b1e", + "entity_id": "866c7355-e2ec-4816-953f-7bf791033283" + } + ], + "file_name": "4522e86d-a860-4ab8-a8e8-8001d3287255.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_127_MirnaExpressionff5bb6c4-edbd-4f17-afda-23d9edfdd171_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-59-2355-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_127_AlignedReadsff5bb6c4-edbd-4f17-afda-23d9edfdd171", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 186158213, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "3584cd5a54ab69ea8de6c61edb33373a", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "05c2f235-5f51-4356-b543-b5a0a252132e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_127_MirnaExpressionWorkflow495830ab-d926-4202-b015-ebae60c6e06b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c9f6f2c3-a79f-4fff-b8b8-c1c12c9174de", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 408460, + "md5sum": "f1c0d48c0c45becb0006c979379e0724", + "file_id": "ae6955af-6dc0-4ea1-98fe-59d96f9ec253", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1425-01A-02R-1566-13", + "entity_type": "aliquot", + "case_id": "b120b701-c194-43d7-a491-3206fac38ec1", + "entity_id": "f580e84b-b405-43dc-9dae-4588cedf435f" + } + ], + "file_name": "ce5e1133-e1d1-4724-ad06-b034eaec4694.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_31_MirnaExpressionca37532d-3b43-4b3d-9802-f6d66c53c37d_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1425-01A-02R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_31_AlignedReadsca37532d-3b43-4b3d-9802-f6d66c53c37d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 104690023, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "e0a14d6b00cb6aade1567883783b106b", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "52250260-cc7b-40d5-9101-d024c8e52074", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_31_MirnaExpressionWorkflow10332056-6238-4868-bcba-0e5106abbe5e_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1d357cb6-4e52-4bc2-acdd-61e390d35bc5", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 220568, + "md5sum": "e83afdb57d7abc94a3e9dc3b69864644", + "file_id": "d4786b59-4e9d-4764-8512-a189ccf625c4", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0899-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "5c6f3cd4-19c5-418d-b1be-d3fbf63e99db", + "entity_id": "605d0aed-4637-4a09-82dd-eedd1aa76ca0" + } + ], + "file_name": "24326c13-d83a-4498-adb7-a9f340d2e5f8.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_51_MirnaExpression68424f9a-b183-44fb-9e20-32cf16f0e201_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0899-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_51_AlignedReads68424f9a-b183-44fb-9e20-32cf16f0e201", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 79697890, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "13f07f5f18184a652140559fba2bfdae", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "59749b15-8596-4b9a-a661-9edc082fd969", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_51_MirnaExpressionWorkflowf256ec27-434b-4ed7-aec3-fc9f2384c53d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "dad2f762-7b73-4ad5-93c7-1a2fb21e3929", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 258553, + "md5sum": "fadecfcf00bf5a85b6b9dc76c2bf1664", + "file_id": "286c752a-368d-4243-94cc-a7429e09cd78", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1315-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "635f5335-b008-428e-b005-615776a6643f", + "entity_id": "b6908d33-80c8-4fc0-bd1d-829ec3161527" + } + ], + "file_name": "e28327dd-1ac7-45df-b812-841bdc8d0216.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_253_MirnaExpressionc9f78af4-eb11-4886-a54d-28c2c1dd4765_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1315-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_253_AlignedReadsc9f78af4-eb11-4886-a54d-28c2c1dd4765", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 202634271, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "ab55b2e9cb48ac94f1fc46e97b78980c", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "f1cfd1f2-aeca-40fc-a579-2cd04836c748", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_253_MirnaExpressionWorkflow18e21a5d-5399-43a0-9161-e1c3526c5281_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "94576692-787b-422c-a335-d57d7868623b", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50466, + "md5sum": "e60fc2ffbca253779eb794d0b436d04d", + "file_id": "383da782-e97a-4346-82b0-8d379c83b0e0", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0899-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "5c6f3cd4-19c5-418d-b1be-d3fbf63e99db", + "entity_id": "605d0aed-4637-4a09-82dd-eedd1aa76ca0" + } + ], + "file_name": "24326c13-d83a-4498-adb7-a9f340d2e5f8.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_51_MirnaExpression68424f9a-b183-44fb-9e20-32cf16f0e201_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0899-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_51_AlignedReads68424f9a-b183-44fb-9e20-32cf16f0e201", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 79697890, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "13f07f5f18184a652140559fba2bfdae", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "59749b15-8596-4b9a-a661-9edc082fd969", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_51_MirnaExpressionWorkflowf256ec27-434b-4ed7-aec3-fc9f2384c53d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "dad2f762-7b73-4ad5-93c7-1a2fb21e3929", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50151, + "md5sum": "e800514703d3cba3f837732086929136", + "file_id": "c788469d-5fca-46af-858f-ef26624149ca", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-20-1682-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "94bd4c68-4bfc-4db3-9365-97c867747133", + "entity_id": "f03d023b-cba8-413d-a88d-0378ee7b7748" + } + ], + "file_name": "e9d2b04c-c3eb-4d71-9a33-420badc763ee.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_182_MirnaExpression4b29c1ee-bff3-41d5-9db3-74a22f95efb6_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-20-1682-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_182_AlignedReads4b29c1ee-bff3-41d5-9db3-74a22f95efb6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 134079610, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "5b2c9f1b450cfc595644a65473198c5d", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c865bf3e-6836-493f-93b0-eb1527df1548", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_182_MirnaExpressionWorkflow1b07004f-18e2-4300-81b5-137173a0903c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8723c297-647e-4c8a-92dc-efa171791a44", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50264, + "md5sum": "ece572c621a4ace9e342f85a21666a0b", + "file_id": "6d75c12f-4a60-45eb-92f0-44efb1d05980", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1324-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "c73244fd-d486-439f-a94f-fb0bd4e9ac8f", + "entity_id": "790c6d79-9f7d-4e9a-89db-43b26fe16816" + } + ], + "file_name": "dbc68340-b121-4f8b-86f6-5baee0ae60c2.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_444_MirnaExpressionbdee8668-6543-4cba-8558-c9dca9272796_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1324-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_444_AlignedReadsbdee8668-6543-4cba-8558-c9dca9272796", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 319382100, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "adf5606a05c4b1910f36a2f8884e288e", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "3dfd5345-93c7-49cd-b781-de6bf46966f5", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_444_MirnaExpressionWorkflow575a5ae0-b816-49cd-8155-1c43163ff6b7_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b78cc004-a51a-4fb8-b7ba-771842e5fa0c", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50325, + "md5sum": "b1ad6658fcfd1023315f40e9f14403f0", + "file_id": "e36694c5-431c-4405-acbc-cc56b32ea4b5", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2097-01A-02R-1568-13", + "entity_type": "aliquot", + "case_id": "47681e4b-01e8-4779-b966-ce57aff4b712", + "entity_id": "d76a99a6-18cd-4a50-9945-ebf5c5ccbfd1" + } + ], + "file_name": "13f82612-0824-461f-b5b4-03322e7984e6.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_431_MirnaExpressionc1e915d4-8679-49d6-b5f2-5b12e944894f_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2097-01A-02R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_431_AlignedReadsc1e915d4-8679-49d6-b5f2-5b12e944894f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 272114823, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "57ce333285f5a8ae757030a370478936", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "58eb0e0e-d5b1-478d-a2db-3c61a704cb12", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_431_MirnaExpressionWorkflow2518436a-7e7b-44a7-a091-714abfabe13f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1fbfb562-76ef-4b39-bc33-38ec2f02b647", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 429118, + "md5sum": "9f3d7aec9c69241abb2da5aaf2d7d516", + "file_id": "cf5ac1ad-cdf6-430d-8440-c3b0a6fad177", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1317-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "78777a80-cc6c-46c9-a14a-837ac7943719", + "entity_id": "423f3c95-8bf5-4c2c-8b7a-343d9af1d0bf" + } + ], + "file_name": "7ea6581d-bb19-49e0-a430-7796d0b651c6.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_42_MirnaExpressionbf5146ad-789a-4fb7-b2bb-35c4e5c61dce_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1317-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_42_AlignedReadsbf5146ad-789a-4fb7-b2bb-35c4e5c61dce", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 183790966, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "31455f6fc48d4b95cf0f61def6d01e0f", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "d5aee73a-c717-4043-82c4-839a471c3d67", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_42_MirnaExpressionWorkflowd12e3c48-dcf5-4963-a06a-98104790e2ae_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "bee8eb14-a8b4-406c-a14a-11402b71867e", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50271, + "md5sum": "2c86e137de3400028c78cbd2cac87f6c", + "file_id": "bdc72569-8da5-45fd-9633-17c38481a370", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2097-01A-02R-1568-13", + "entity_type": "aliquot", + "case_id": "47681e4b-01e8-4779-b966-ce57aff4b712", + "entity_id": "d76a99a6-18cd-4a50-9945-ebf5c5ccbfd1" + } + ], + "file_name": "13f82612-0824-461f-b5b4-03322e7984e6.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_431_MirnaExpressionc1e915d4-8679-49d6-b5f2-5b12e944894f_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2097-01A-02R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_431_AlignedReadsc1e915d4-8679-49d6-b5f2-5b12e944894f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 272114823, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "57ce333285f5a8ae757030a370478936", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "58eb0e0e-d5b1-478d-a2db-3c61a704cb12", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_431_MirnaExpressionWorkflow2518436a-7e7b-44a7-a091-714abfabe13f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1fbfb562-76ef-4b39-bc33-38ec2f02b647", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50444, + "md5sum": "2c533fb296f2ac809cc3c0d6b6022984", + "file_id": "18e6779a-fa91-475a-b412-7945af45d87b", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2003-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "33dc48d8-2e01-482b-944c-ac10da727ec9", + "entity_id": "bc200f3a-6d31-4480-8785-987f14cfa319" + } + ], + "file_name": "28bfb2b0-4e14-44e5-ad3a-e1d7ca3e4efd.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_326_MirnaExpression94683c88-dd6e-4783-a454-5d9c090b3890_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2003-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_326_AlignedReads94683c88-dd6e-4783-a454-5d9c090b3890", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 190656071, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "77c7a580f87e2d3fa3e63c88dcf45281", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "5767849c-7ca8-431a-9a5e-585bae74dc13", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_326_MirnaExpressionWorkflow9d8448f6-b61d-4a20-b047-88147a159278_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e74f653e-df46-4433-acec-e3ef765eecb8", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 392628, + "md5sum": "5e422a5b4ff370ac3aaf1010bc0b8fd3", + "file_id": "595b4228-c831-429e-8406-da881e32a45e", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1349-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "4b930a10-4b12-4428-84f9-3255b4a3bc4f", + "entity_id": "3befd649-a80c-40ac-87c4-84c13b8ba0ed" + } + ], + "file_name": "5c324295-219b-491d-9d05-2030b839eb82.mirnaseq.mirnas.quantification.txt", + "submitter_id": "5f2f13a0-f6d7-402a-8de8-7895bc045f20", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9895681699661999, + "total_reads": 25887500, + "access": "controlled", + "file_name": "3befd649-a80c-40ac-87c4-84c13b8ba0ed_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004657032, + "proportion_reads_duplicated": 0, + "submitter_id": "45db5f70-e529-4c9b-9fc7-5c4b44dede36", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 426225234, + "created_datetime": "2024-09-20T11:14:16.425631-05:00", + "average_base_quality": 36, + "md5sum": "abad65f56d8cb14aaa1acc04efa1c22b", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "fcfd5b8c-370c-405b-9842-79534a6691f9", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 32, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "5c324295-219b-491d-9d05-2030b839eb82_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "79ca76ad-c209-47cf-aa4b-09701aab0bf7", + "created_datetime": "2024-09-20T11:18:15.652445-05:00" + }, + "file_size": 50617, + "md5sum": "a18e7f806b01a16626513047840e5784", + "file_id": "39eab952-2e4b-4a71-8394-6f7e15d71680", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1349-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "4b930a10-4b12-4428-84f9-3255b4a3bc4f", + "entity_id": "398474b9-1ca6-414a-ada9-31c435f34a74" + } + ], + "file_name": "39598a1c-cfa9-4660-b39b-0b17fc87443e.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_206_MirnaExpressionee66b38f-1633-4b70-93b5-cf41f809ab30_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1349-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_206_AlignedReadsee66b38f-1633-4b70-93b5-cf41f809ab30", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 218508872, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "e11a9bb10793ad5de935ab14f2739643", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c47e2b81-625a-41e1-8de1-7c22b917e884", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_206_MirnaExpressionWorkflowd371b9b2-1a55-407c-b863-3593b545239a_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "99ab0fe3-49e3-439f-b693-5784989cffaf", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 389553, + "md5sum": "515620d52343776283afb87e30195b57", + "file_id": "40f6c5a3-8807-428e-b0ab-70673377803f", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1649-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "314e446d-3a57-4c91-ac2e-4fc211456ee6", + "entity_id": "173e872e-1ec9-467d-840a-260dd81371e8" + } + ], + "file_name": "67b376d2-5852-4bab-8ec9-afc8b803b186.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_177_MirnaExpression51c5ef67-9cc2-41b6-96b8-b7c72f9b9a8c_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1649-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_177_AlignedReads51c5ef67-9cc2-41b6-96b8-b7c72f9b9a8c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 203509889, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "bf6b70cb1c20bff112c224aaf5255e8d", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "483a6771-ca4f-4752-975f-3bae10f5266e", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_177_MirnaExpressionWorkflowceb78ed1-55eb-4bec-b571-94a2b3c9759d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "47bdd434-a495-4c67-be31-38e65fb7939d", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50360, + "md5sum": "c02d81fdfc5bd1469788a6f0246140e8", + "file_id": "8c753196-0344-48cd-944e-97002e56a8c0", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-57-1585-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "5ed14506-f69a-4da8-9965-72d3270b9f72", + "entity_id": "06df1324-bc1b-4bc3-bb01-4ef55a5aeef5" + } + ], + "file_name": "7e2036aa-30da-41ef-87c4-e0dae7341aa7.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_108_MirnaExpressionbb635150-55ff-49e2-9e0b-ccc7854d259b_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-57-1585-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_108_AlignedReadsbb635150-55ff-49e2-9e0b-ccc7854d259b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 282335374, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "ef753115ee7d83083830b6500972d074", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "f5289485-f5ef-4d87-8ed0-062ac84efc7a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_108_MirnaExpressionWorkflowa4ee6e23-20a8-4311-8bd4-2b16237c2a32_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "41751d63-8f4e-4fde-a347-6096fefb1e54", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 400202, + "md5sum": "2b09ee6a486e0731d03be5deb45d554b", + "file_id": "4c23dd73-bc49-4fda-bc0f-9208e6060ac1", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-A5FT-01A-11R-A407-13", + "entity_type": "aliquot", + "case_id": "f3618472-32dc-4c90-a407-90050f68be85", + "entity_id": "30d1276f-9f3b-4f53-b4f9-6e3aa8c715e4" + } + ], + "file_name": "c7448ff7-9f40-4a67-9bd1-3d990508124e.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_6_MirnaExpression4e2d338f-aa99-4898-83d2-927770ee5ccb_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-A5FT-01A-11R-A407-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_6_AlignedReads4e2d338f-aa99-4898-83d2-927770ee5ccb", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 192703433, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "d25e7040de27dd266cbd3fd08bc8ab7c", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "62e2f4ac-d862-4bff-8689-2527e1b96316", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_6_MirnaExpressionWorkflow22ba28e2-c148-4f51-953b-0fcb47f2aeac_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "3168098d-0e03-452a-b7e5-15357a93f651", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50419, + "md5sum": "ddc8f1bb65fd0a2b5f4b8e58e1402234", + "file_id": "2cba33ba-2a15-45fd-9f1e-799c79b22287", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-57-1585-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "5ed14506-f69a-4da8-9965-72d3270b9f72", + "entity_id": "06df1324-bc1b-4bc3-bb01-4ef55a5aeef5" + } + ], + "file_name": "7e2036aa-30da-41ef-87c4-e0dae7341aa7.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_108_MirnaExpressionbb635150-55ff-49e2-9e0b-ccc7854d259b_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-57-1585-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_108_AlignedReadsbb635150-55ff-49e2-9e0b-ccc7854d259b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 282335374, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "ef753115ee7d83083830b6500972d074", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "f5289485-f5ef-4d87-8ed0-062ac84efc7a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_108_MirnaExpressionWorkflowa4ee6e23-20a8-4311-8bd4-2b16237c2a32_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "41751d63-8f4e-4fde-a347-6096fefb1e54", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50377, + "md5sum": "88f44787244b5e30e8432f556d1571bf", + "file_id": "ab759b77-b63b-48d9-9703-658b9502557d", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1105-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2", + "entity_id": "fd57adc4-669c-4916-a2f5-e5f92cb0adb6" + } + ], + "file_name": "1ba68c7a-b648-4830-a5df-07b1f2de563b.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_350_MirnaExpression0f8d09bd-25cb-40dd-942d-d793f8e8b4cf_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "856b9eea-f270-5864-a462-65dff34e7d05", + "entity_submitter_id": "TCGA-24-1105-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29781", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "fd57adc4-669c-4916-a2f5-e5f92cb0adb6", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "d50a67b6-0a53-581e-81c8-6953d4ac137c", + "entity_submitter_id": "TCGA-24-1105-01A-01R-1565-13", + "notes": "RNA-seq:HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8789", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "fd57adc4-669c-4916-a2f5-e5f92cb0adb6", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1105-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_350_AlignedReads0f8d09bd-25cb-40dd-942d-d793f8e8b4cf", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 200879986, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "0c2cd431eb9bbd80b15f18a2e77fd8ee", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c6d60632-aec8-4e92-adab-eb9ca9f3ce79", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_350_MirnaExpressionWorkflow5e9cbac5-d058-4073-96ec-388133434d4d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "59eb79e0-9add-4401-a846-b59c9f7f06d7", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 366890, + "md5sum": "27af19e65a88ef2afd49f385628f083c", + "file_id": "bdd5a846-9e0a-4c2a-9738-3f96025cfa3e", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1105-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2", + "entity_id": "fd57adc4-669c-4916-a2f5-e5f92cb0adb6" + } + ], + "file_name": "1ba68c7a-b648-4830-a5df-07b1f2de563b.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_350_MirnaExpression0f8d09bd-25cb-40dd-942d-d793f8e8b4cf_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "856b9eea-f270-5864-a462-65dff34e7d05", + "entity_submitter_id": "TCGA-24-1105-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29781", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "fd57adc4-669c-4916-a2f5-e5f92cb0adb6", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "d50a67b6-0a53-581e-81c8-6953d4ac137c", + "entity_submitter_id": "TCGA-24-1105-01A-01R-1565-13", + "notes": "RNA-seq:HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8789", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "fd57adc4-669c-4916-a2f5-e5f92cb0adb6", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1105-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_350_AlignedReads0f8d09bd-25cb-40dd-942d-d793f8e8b4cf", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 200879986, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "0c2cd431eb9bbd80b15f18a2e77fd8ee", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c6d60632-aec8-4e92-adab-eb9ca9f3ce79", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_350_MirnaExpressionWorkflow5e9cbac5-d058-4073-96ec-388133434d4d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "59eb79e0-9add-4401-a846-b59c9f7f06d7", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50227, + "md5sum": "5da2ba23110e1de78f11639eba685f74", + "file_id": "4e051a9b-9e96-42e9-99bf-e4692e25df19", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-30-1891-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3", + "entity_id": "690d1437-2a05-4263-8fa7-8f4481893b83" + } + ], + "file_name": "b495eb0f-a0b2-4017-8989-86f9bc116742.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_211_MirnaExpression5bc20651-e9ab-43ca-b7a7-179f3dffc450_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-30-1891-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_211_AlignedReads5bc20651-e9ab-43ca-b7a7-179f3dffc450", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 165658252, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "b4282769de177e5874e0b096cb6299fa", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "0fd78924-9e34-442d-a984-bf9249245098", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_211_MirnaExpressionWorkflowceb10a24-fa40-4671-89c2-1bdd43ba8afb_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d2b1ca89-807a-458d-87c2-55b836b54aab", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50138, + "md5sum": "af2fe7715bff5b312fce40c1111bee47", + "file_id": "134a20fa-1b48-4c14-a962-dbc1521e6788", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1625-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "88d61634-913c-435a-8d25-e019c8dab7da", + "entity_id": "921fab94-5522-4c08-8e02-13fb6ea2d388" + } + ], + "file_name": "d1a64a3b-7d3b-4636-8d2a-baf56068b1dd.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_228_MirnaExpressiona261391a-745c-4b87-a50f-46387d4f2d51_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1625-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_228_AlignedReadsa261391a-745c-4b87-a50f-46387d4f2d51", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 155704001, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "80a778753487db8dfc31202a9a3518b3", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "e0d41efe-d51a-4d7b-ba47-e17e0d10c616", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_228_MirnaExpressionWorkflowe182e5b6-acae-4bb3-9f4c-a439c8653fd5_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "90b08641-5971-416f-bde9-a43683684179", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50286, + "md5sum": "cb4d7ce39b6753b8072bea71e564f253", + "file_id": "78f4f9f4-2391-4c4a-a06c-bf6f3df1bd85", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1316-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "58427bce-6b81-4083-aeda-25f59e292bbc", + "entity_id": "6cb5e275-1284-482b-a4e9-933acf9aad44" + } + ], + "file_name": "f7df30ab-bdd8-4ddd-becd-4843a779586f.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_371_MirnaExpression3b91b829-1e21-40b8-9ea2-ef4b1ebc66cc_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1316-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_371_AlignedReads3b91b829-1e21-40b8-9ea2-ef4b1ebc66cc", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 217326482, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "083b6bb8736ce59d2ed3e6b04ed4d0fd", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "bf2eb26f-314e-4068-87b1-0dc649e7ec94", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_371_MirnaExpressionWorkflowd58228fd-0a28-40b6-af14-aaed212d3ba5_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "da6a3464-ceaa-455b-bc6a-760fb496701a", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 365401, + "md5sum": "8d9a514aaf8bd4ffd497146bae8eeebc", + "file_id": "e9005d0f-bf41-4abd-887b-7821246318fa", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1124-01A-01R-A96U-41", + "entity_type": "aliquot", + "case_id": "8a6d2ce3-cc57-451b-9b07-8263782aa23f", + "entity_id": "51804220-0077-40ce-a454-8481834d96b7" + } + ], + "file_name": "ca58ca71-b14f-4a77-9f63-2b02ff9a99d8.mirnaseq.mirnas.quantification.txt", + "submitter_id": "2924ec45-142b-4d03-8c61-5356885b927c", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9924457043189334, + "total_reads": 33190255, + "access": "controlled", + "file_name": "51804220-0077-40ce-a454-8481834d96b7_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.00367498, + "proportion_reads_duplicated": 0, + "submitter_id": "3091d5c7-5442-465a-84c5-87b1abab0db1", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 527795205, + "created_datetime": "2024-09-20T11:12:57.124601-05:00", + "average_base_quality": 36, + "md5sum": "bb1aa2a46406416f33ff3edbcb697997", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "71f9fbba-fc4b-4c66-9f82-5bf4548f360e", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 32, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "ca58ca71-b14f-4a77-9f63-2b02ff9a99d8_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "00fa24d9-5012-460e-a6e7-c3c6b27a3c7e", + "created_datetime": "2024-09-20T11:17:27.202125-05:00" + }, + "file_size": 50940, + "md5sum": "cd4a833e5d61d0e16b81614a8cb36725", + "file_id": "88ad986f-d9cd-437e-b5be-642a563191a8", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1124-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "8a6d2ce3-cc57-451b-9b07-8263782aa23f", + "entity_id": "9309e1c6-f225-4bdd-a958-c49173bbe1c4" + } + ], + "file_name": "8fc1da04-3059-4d14-9e79-0b4f5046ea78.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_346_MirnaExpression46cad067-24ea-4ebd-a4c1-6b40ef343ff0_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1124-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_346_AlignedReads46cad067-24ea-4ebd-a4c1-6b40ef343ff0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 207964969, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "15174b3470d2c0521f676b8f320c0f5f", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "af3fb70e-4edd-432f-84dd-ef9d181931a7", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_346_MirnaExpressionWorkflowcdcda324-b709-47f0-8793-e986a929b23e_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2c71feea-fbc0-42b9-b36a-6f4539253c54", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 458959, + "md5sum": "60ee81cff725e3ff0287c505c10efed2", + "file_id": "8c8d42af-67aa-41be-bce1-868d5db907ac", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1323-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "2ee36d9d-128b-4761-aa1a-a637da106f3d", + "entity_id": "cd401b89-ae05-4775-94b0-6800f88652b0" + } + ], + "file_name": "04276a5a-23dd-467f-b8c8-60ce5e892f0c.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_146_MirnaExpression92ef646e-4f6d-40b5-8f36-26415db429ce_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1323-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_146_AlignedReads92ef646e-4f6d-40b5-8f36-26415db429ce", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 242134059, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "165caccd2acba7d9cf4359d2ad5c640b", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "23d90167-bb53-4aaa-81ee-4419c23e3b07", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_146_MirnaExpressionWorkflow02e3d8e7-c9cf-47c0-aa3e-4b07ef2f6db6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "663c2ddc-a7d4-4a0c-87cf-362de6599a1b", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 426367, + "md5sum": "7761e2b2c0a1c8787fbaa086cb05c3db", + "file_id": "a38ba416-8749-4e05-b335-99397bbc4a53", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-2404-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "22178c3c-6b04-46d8-8041-dc83fa195029", + "entity_id": "05ab6bb9-0cb1-47f1-8dd2-92a48239e82e" + } + ], + "file_name": "bb5d455e-c711-4ef2-8246-eade36c730e9.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_204_MirnaExpression095c0ceb-c54c-4932-90f5-d2f88f4b9f96_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-2404-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_204_AlignedReads095c0ceb-c54c-4932-90f5-d2f88f4b9f96", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 280392771, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "ef0f2c06958e984ab64e01c3793058ea", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "28389883-048e-4206-a932-839ff9f17693", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_204_MirnaExpressionWorkflowbd7d1737-9153-46e8-8285-dec8f0cc1d0d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8c52777b-bdd6-4cc2-89a8-b6ab6cc3ccfe", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 489518, + "md5sum": "4fda6bd9b633eb8afa0ae324b6d27f3a", + "file_id": "c9c6abf6-f3d6-467d-8992-fa6c24a0392b", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1027-01A-02R-1564-13", + "entity_type": "aliquot", + "case_id": "c9e58844-9d61-44a2-aee6-1760bc19711b", + "entity_id": "edbc81a6-2593-45c5-8131-3c4615d1807f" + } + ], + "file_name": "203185b2-ccff-49c5-a00f-d37f6737a4bb.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_452_MirnaExpressioned8e78d8-45ff-4556-a82e-3ff10766db07_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1027-01A-02R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_452_AlignedReadsed8e78d8-45ff-4556-a82e-3ff10766db07", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 142816478, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "b09db76147d5feb6ea9733ae267c7323", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "5476cc02-491c-4259-a632-6fe8fd828ecf", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_452_MirnaExpressionWorkflowb2d12335-8f7a-4b4d-b1b6-18a76c3dabb1_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "3a644b75-2d76-4ee3-9240-72c7f2f18748", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50120, + "md5sum": "33601af60bf181d167cab4c5d9f8ed3f", + "file_id": "d8cf9f92-de90-45a8-b1a4-5303edde0963", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1027-01A-02R-1564-13", + "entity_type": "aliquot", + "case_id": "c9e58844-9d61-44a2-aee6-1760bc19711b", + "entity_id": "edbc81a6-2593-45c5-8131-3c4615d1807f" + } + ], + "file_name": "203185b2-ccff-49c5-a00f-d37f6737a4bb.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_452_MirnaExpressioned8e78d8-45ff-4556-a82e-3ff10766db07_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1027-01A-02R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_452_AlignedReadsed8e78d8-45ff-4556-a82e-3ff10766db07", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 142816478, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "b09db76147d5feb6ea9733ae267c7323", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "5476cc02-491c-4259-a632-6fe8fd828ecf", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_452_MirnaExpressionWorkflowb2d12335-8f7a-4b4d-b1b6-18a76c3dabb1_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "3a644b75-2d76-4ee3-9240-72c7f2f18748", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 296554, + "md5sum": "779a06d8d3d2f55e3cf23f8c460f8186", + "file_id": "ad9b1cb9-c458-4772-998d-8e325a1174cc", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0793-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "5e90e1ed-cbfd-44ba-a6ff-63ff576b3c73", + "entity_id": "b85b22ff-3d9e-4e05-8186-9e5cf2bd5fbf" + } + ], + "file_name": "005f1d2c-c079-4ce0-8d91-ddc8799a3b50.mirnaseq.isoforms.quantification.txt", + "submitter_id": "0740c38c-b3b3-45f3-8ec2-40cf60b88032", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9846218800454026, + "total_reads": 21323868, + "access": "controlled", + "file_name": "b85b22ff-3d9e-4e05-8186-9e5cf2bd5fbf_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004014661, + "proportion_reads_duplicated": 0, + "submitter_id": "032c1679-f907-4225-a7a4-8e1341fd3dbe", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 442611287, + "created_datetime": "2024-09-20T11:14:08.328846-05:00", + "average_base_quality": 36, + "md5sum": "a5b49e512bea4525492301f7b34c4fd9", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "0edefdb2-408d-4e48-ae8d-9aed9d5c2dcb", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 30, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "005f1d2c-c079-4ce0-8d91-ddc8799a3b50_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "34547c9a-a5e3-46e8-86e8-518475b37d89", + "created_datetime": "2024-09-20T11:17:35.269902-05:00" + }, + "file_size": 423121, + "md5sum": "45df112cb6cdaafaf0217169eeb9ab58", + "file_id": "b23efaab-c0a4-4264-9077-2d0f45c68481", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-1670-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "60014a6e-6a13-4f92-bbfd-eeeee9632f98", + "entity_id": "eb2322dd-5a7f-41c0-9be2-7e1f7dc485b4" + } + ], + "file_name": "05327ee7-fee0-44f7-94f4-1f350c783410.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_232_MirnaExpression342cfede-1194-4d23-9c88-4c7e5dfccfdf_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-1670-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_232_AlignedReads342cfede-1194-4d23-9c88-4c7e5dfccfdf", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 168246386, + "created_datetime": "2018-03-20T06:50:11.472674-05:00", + "md5sum": "4554ef784c1353eab8b2429f39f44f21", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "038d7b7a-e59d-4c0d-aa3d-1d10af867a3b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_232_MirnaExpressionWorkflow579db6b3-8a5f-40ff-a608-a4dddcb181be_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e6b3cdaa-5c80-4e11-92f2-c6c904f1b67e", + "created_datetime": "2018-03-20T06:50:11.472674-05:00" + }, + "platform": "Illumina", + "file_size": 50265, + "md5sum": "53aa8119886064a56cfa037884e2897b", + "file_id": "03cacdbc-0a68-4ea4-9bad-f3bae67d2047", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1616-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "5d7027f5-60a0-47ab-a79d-667c9acc0e54", + "entity_id": "c334b353-0652-49fb-8cd6-5bcf8485e5d0" + } + ], + "file_name": "0cb0d80c-c3cb-4981-b07e-b8babe1ec06e.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_97_MirnaExpression35e61948-6108-445d-8d71-897a74b38911_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1616-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_97_AlignedReads35e61948-6108-445d-8d71-897a74b38911", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 126726606, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "0107c69bcc04ec9a01b980bfff1ee279", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6d7ba0f3-1ee6-40a0-9f6c-5689260b3218", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_97_MirnaExpressionWorkflow328bcfb8-ee5a-41d7-a9ad-3eb466ffbc58_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0ea69c92-3df8-4cd7-a317-2ee618e3aab6", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50362, + "md5sum": "25ceda919f5e9de1b8c335846f35edba", + "file_id": "8df16847-ab8d-4231-b88f-e61bb75e050f", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-2050-01A-01R-A96S-41", + "entity_type": "aliquot", + "case_id": "3c037acf-f453-4513-a6dd-129163ddde2a", + "entity_id": "70e21821-a89c-40fb-bc61-0fce58de73f4" + } + ], + "file_name": "bc6d7b65-d651-4f9e-a3f0-4f098b01e7c4.mirnaseq.mirnas.quantification.txt", + "submitter_id": "f9f8598f-a1d4-45ca-8962-07ba4971b0de", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9912571009124895, + "total_reads": 24832724, + "access": "controlled", + "file_name": "70e21821-a89c-40fb-bc61-0fce58de73f4_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004028073, + "proportion_reads_duplicated": 0, + "submitter_id": "236e2a85-5f09-400d-a791-1381cf7719d6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 396332130, + "created_datetime": "2024-09-20T11:13:52.034430-05:00", + "average_base_quality": 37, + "md5sum": "61c39aa08fa2107185b5a5ddd04e860c", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "bc9f236c-3254-43f5-88a5-192ea0d4eb3e", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 33, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "bc6d7b65-d651-4f9e-a3f0-4f098b01e7c4_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f21a8b1c-dab8-4450-9e10-36985b813e3b", + "created_datetime": "2024-09-20T11:16:50.431759-05:00" + }, + "file_size": 50790, + "md5sum": "08472f4d1d32d02aa67c7a36aaa3b799", + "file_id": "660b4e8f-73d6-4533-8ec3-36d3de86ebd8", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-2050-01A-01R-A96S-41", + "entity_type": "aliquot", + "case_id": "3c037acf-f453-4513-a6dd-129163ddde2a", + "entity_id": "70e21821-a89c-40fb-bc61-0fce58de73f4" + } + ], + "file_name": "bc6d7b65-d651-4f9e-a3f0-4f098b01e7c4.mirnaseq.isoforms.quantification.txt", + "submitter_id": "4f8e6f10-0235-4035-907c-7c1f23ea5a51", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9912571009124895, + "total_reads": 24832724, + "access": "controlled", + "file_name": "70e21821-a89c-40fb-bc61-0fce58de73f4_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004028073, + "proportion_reads_duplicated": 0, + "submitter_id": "236e2a85-5f09-400d-a791-1381cf7719d6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 396332130, + "created_datetime": "2024-09-20T11:13:52.034430-05:00", + "average_base_quality": 37, + "md5sum": "61c39aa08fa2107185b5a5ddd04e860c", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "bc9f236c-3254-43f5-88a5-192ea0d4eb3e", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 33, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "bc6d7b65-d651-4f9e-a3f0-4f098b01e7c4_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f21a8b1c-dab8-4450-9e10-36985b813e3b", + "created_datetime": "2024-09-20T11:16:50.431759-05:00" + }, + "file_size": 604211, + "md5sum": "00678f482cc86fd11441e116bc06ed13", + "file_id": "7e5f91e4-66ab-497b-b768-efdfcf184004", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1121-01A-01R-A96U-41", + "entity_type": "aliquot", + "case_id": "81005bae-686a-4598-8994-49d90ebac56f", + "entity_id": "4ff7e436-94c9-4cae-847c-ff21b5311689" + } + ], + "file_name": "d51c919f-6b47-4881-8b11-05b39a2d2111.mirnaseq.mirnas.quantification.txt", + "submitter_id": "02b48b23-c2ee-471c-b48d-d131880a05cc", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9892753294986186, + "total_reads": 26494800, + "access": "controlled", + "file_name": "4ff7e436-94c9-4cae-847c-ff21b5311689_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005148863, + "proportion_reads_duplicated": 0, + "submitter_id": "c4b75791-dc4a-491a-8a1d-65b23c191b58", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 460942898, + "created_datetime": "2024-09-20T11:14:11.214025-05:00", + "average_base_quality": 36, + "md5sum": "3c7d8cd9e4994115fd9a8861dd5b6b9f", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "fa081233-8529-40c2-afd2-2ec96bab6bc7", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "d51c919f-6b47-4881-8b11-05b39a2d2111_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "20448496-aa21-417c-bf01-31cd7c61efb7", + "created_datetime": "2024-09-20T11:17:51.173492-05:00" + }, + "file_size": 50904, + "md5sum": "0faeb98b4a03e80b3018cd13213682b8", + "file_id": "db90a623-fab3-4e4b-9387-d3f2315a01eb", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1113-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "6209e80d-a115-4f8e-bf0d-18461401a1c6", + "entity_id": "88656b94-cd24-4c4c-b625-635ef692cf13" + } + ], + "file_name": "c714e40e-9084-495a-ab7d-a262c878bcfd.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_386_MirnaExpression28535c56-4a51-4d7c-a014-b2d00ca46502_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "5c5aab21-eda9-5d5d-97f7-7914d1caa379", + "entity_submitter_id": "TCGA-23-1113-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "29771", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "88656b94-cd24-4c4c-b625-635ef692cf13", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "f2cc30ad-5e30-5c44-af7b-4f1d5564091e", + "entity_submitter_id": "TCGA-23-1113-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8767", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "88656b94-cd24-4c4c-b625-635ef692cf13", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1113-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_386_AlignedReads28535c56-4a51-4d7c-a014-b2d00ca46502", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 215600096, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "31e6e63878ba0197af1a525899dd96a7", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "08be6ad6-b058-42a7-a9bd-b5f81a5dae79", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_386_MirnaExpressionWorkflow6ed0add6-abd9-48fd-97c9-420485c0d8bd_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "fda3e912-a991-4e47-9150-9f2966c6be64", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50075, + "md5sum": "3fd920e67010ff75e9a33de9cc72f36f", + "file_id": "82723d57-95d6-42f7-8253-0cd75b6c3c0d", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2102-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "7a08efd0-f984-430e-a8eb-1881047214b6", + "entity_id": "7ac6af79-c14a-4026-84aa-a288afcb96da" + } + ], + "file_name": "6432f7d5-aae4-46ac-bc8a-580d9047579c.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_409_MirnaExpression184e9102-9ebd-4ed1-8944-968dc36d9299_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2102-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_409_AlignedReads184e9102-9ebd-4ed1-8944-968dc36d9299", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 208921097, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "0eef52f61582635d4d281acc8572d1c5", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "793f5530-11ee-46de-8c2b-da3de0490c9b", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_409_MirnaExpressionWorkflowf0ebc956-62e0-47f3-b89d-aa42f7f32bb4_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "db46c886-8116-41fa-b613-83d3a100395e", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 50335, + "md5sum": "bf119a37b776b7558be8aade61326274", + "file_id": "f464b430-d095-4c05-82ce-437b5ceccab5", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1631-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "6a1be87b-c4e0-4fd4-b050-50a245b22038", + "entity_id": "29c4cab9-c19e-4416-ad88-484cc02a980f" + } + ], + "file_name": "e45dfc8a-c255-4b54-8f25-bab9306ea813.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_293_MirnaExpression5cdbdccc-f9a0-421f-83e7-6294ffa91d68_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1631-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_293_AlignedReads5cdbdccc-f9a0-421f-83e7-6294ffa91d68", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 142988549, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "07ce09deaf56298d737737517ab457ff", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "4d6df5b0-e0dd-44a9-a00e-0973d2cb658f", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_293_MirnaExpressionWorkflow630fe7ee-ddda-404a-b9ac-e286b08c9ed9_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "aedd6970-0ad2-47db-8d0b-383084a365d2", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50281, + "md5sum": "0026cd6689bff5739fe6bb604f1a5ae1", + "file_id": "998c84c9-d2f3-456a-aa74-a0dbbb7c9dba", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1552-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "62379be5-13f0-474b-94d3-6f944ec4ee96", + "entity_id": "990bcb1f-7269-4020-8ea5-8ba338b390b8" + } + ], + "file_name": "86760094-294f-4fbb-b768-4381f658bead.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_427_MirnaExpression220f50ce-2e02-46ee-81d6-e4976532a147_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1552-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_427_AlignedReads220f50ce-2e02-46ee-81d6-e4976532a147", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 143219702, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "d1f18ae9180fa89b0dcdc1de5cef4878", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b3a9db71-6bd2-4fc9-864f-668dfe357580", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_427_MirnaExpressionWorkflowc955ea6e-b843-448b-94f6-16899127e55c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f3f025ca-5d63-4185-be07-734d36c7b52a", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 293304, + "md5sum": "8efa7da7b49ed813176cbf753dc9faa0", + "file_id": "a5ddff83-d3f6-4931-8211-c5964f8fc726", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1644-01B-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "6f592f17-e00b-4d04-a45b-d9d4cf4c3075", + "entity_id": "f6594cb1-3d1c-40db-9e83-ae6237eb1ee5" + } + ], + "file_name": "286f0db7-60b7-42bd-9161-585384c38fe6.mirnaseq.isoforms.quantification.txt", + "submitter_id": "a5a15c77-f1d4-4d87-aa8f-6acc1458a0ab", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9892300329818606, + "total_reads": 26861735, + "access": "controlled", + "file_name": "f6594cb1-3d1c-40db-9e83-ae6237eb1ee5_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005973278, + "proportion_reads_duplicated": 0, + "submitter_id": "aadfb7c9-e609-4bd8-83f7-4d0d529f7203", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 451414818, + "created_datetime": "2024-09-20T11:13:15.931529-05:00", + "average_base_quality": 36, + "md5sum": "097b304057566cfdad80468161864369", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "5415dda5-a34c-4e02-8eda-b4ded21bb1d9", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 30, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "286f0db7-60b7-42bd-9161-585384c38fe6_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "3fef2e01-3dc8-4148-8d8e-0c892575fba6", + "created_datetime": "2024-09-20T11:17:06.122035-05:00" + }, + "file_size": 656943, + "md5sum": "c67b28e99e42f157a798a4e4c33215a8", + "file_id": "84c6c90a-f2c6-457d-94ed-2b67ec8e3595", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0762-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "6485b68f-caa7-45cd-9bc5-78c2add8191d", + "entity_id": "c2f1b1b8-f914-4665-a779-901ebb41965f" + } + ], + "file_name": "a65ab1cb-c2c6-44c2-a265-4bb9a8a6b4e5.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_261_MirnaExpressionaf2cbdaa-3461-42da-a4da-128f2b6be63d_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "807f0285-9532-5679-a094-4a06a0f133d1", + "entity_submitter_id": "TCGA-13-0762-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29720", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "c2f1b1b8-f914-4665-a779-901ebb41965f", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "cb3c19ad-a1b5-5b4c-a428-04fe947b645a", + "entity_submitter_id": "TCGA-13-0762-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8763", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "c2f1b1b8-f914-4665-a779-901ebb41965f", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0762-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_261_AlignedReadsaf2cbdaa-3461-42da-a4da-128f2b6be63d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 138747521, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "e3c893d4617debdec37c631dd2dbb03a", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "d0a64372-645e-409b-bb50-173a10d0d0d9", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_261_MirnaExpressionWorkflowbde9fd84-e43c-423b-88dc-7974d74362b2_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "196403ed-b14c-4be3-b56b-8eb2204986e3", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50217, + "md5sum": "fa95781f7650d9b57e2dbd23f2201167", + "file_id": "4a33ffe1-1e0e-42b2-a5ac-6fa99a00e91b", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-1662-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "867f9563-16c9-45a8-b519-6df61ba1b6b7", + "entity_id": "759060d9-af2e-4098-b4ee-7aa2214acba8" + } + ], + "file_name": "27b3ce43-b028-4639-afdf-4ef2ef3592d2.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_397_MirnaExpression4d4e546b-3f1b-42de-b0d3-a0e160dcd1fe_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-1662-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_397_AlignedReads4d4e546b-3f1b-42de-b0d3-a0e160dcd1fe", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 141234426, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "66e7c3108cf191730ead7c0487947409", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "f7af8272-f385-47b9-a2d3-36a192fcdc59", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_397_MirnaExpressionWorkflowfb012e5f-e356-467f-bba4-9b3cb3cbfd28_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "460dc6cb-db53-4947-8839-6284faab2319", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 334159, + "md5sum": "9dd975b92c894af615bf220ee3fd1696", + "file_id": "f12d3ca0-340f-48bb-9499-79ebab516a1c", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-10-0938-01A-02R-1564-13", + "entity_type": "aliquot", + "case_id": "7ca97692-0bf5-4bbd-81ce-10a051d04bd5", + "entity_id": "f7b5774e-bfb3-4e6d-8a24-009f3c294109" + } + ], + "file_name": "3b523d31-7ec4-43d8-8a0c-7438293431d2.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_85_MirnaExpressionc1294078-e3cf-473b-96e6-f18ddff98322_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-10-0938-01A-02R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "submitter_id": "8770", + "classification": "CenterNotification", + "entity_id": "f7b5774e-bfb3-4e6d-8a24-009f3c294109", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "19cab1bd-47e2-56a9-b58b-6094d0352ac2", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "7ca97692-0bf5-4bbd-81ce-10a051d04bd5", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-10-0938" + }, + { + "entity_submitter_id": "TCGA-10-0938-01A-02R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29712", + "classification": "CenterNotification", + "entity_id": "f7b5774e-bfb3-4e6d-8a24-009f3c294109", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "73d18873-5c3c-53f4-8489-df4eb4c150c8", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "7ca97692-0bf5-4bbd-81ce-10a051d04bd5", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-10-0938" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-10-0938-01A-02R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_85_AlignedReadsc1294078-e3cf-473b-96e6-f18ddff98322", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 173145344, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "c7cf5391f022973da9cc7240c52e2559", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "f511d7cb-0e35-405f-bc32-d49ed99f5115", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_85_MirnaExpressionWorkflow4de5d33d-bd41-4f09-8d5f-33443eadb91d_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "16f4328f-f922-4431-8c19-72a688ae0760", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50325, + "md5sum": "96a05aea476cd32ee2bdda3e3ef6e7ec", + "file_id": "b8d3e38d-67fa-4d5b-9e7b-202ac5ad547b", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1342-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "8727855e-120a-4216-a803-8cc6cd1159be", + "entity_id": "2a74ee8b-923a-4141-a0bd-ad1206a329f2" + } + ], + "file_name": "c618942d-7a4a-4648-8e97-d7fb6b43f83a.mirnaseq.mirnas.quantification.txt", + "submitter_id": "5155a2c9-2444-4e81-9510-db3d471139f4", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9885270628725634, + "total_reads": 27695785, + "access": "controlled", + "file_name": "2a74ee8b-923a-4141-a0bd-ad1206a329f2_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004546058, + "proportion_reads_duplicated": 0, + "submitter_id": "90d57c4d-14dc-48cd-a3f0-c4f2d9285e04", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 490160974, + "created_datetime": "2024-09-20T11:12:44.054974-05:00", + "average_base_quality": 36, + "md5sum": "6728b74e77c60e9c7787a20028196b65", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "3187d8fb-21ab-402b-b580-6adfd6083350", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "c618942d-7a4a-4648-8e97-d7fb6b43f83a_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "631e5e40-4d4a-4b26-bd2f-7b8a28ac9958", + "created_datetime": "2024-09-20T11:16:35.336620-05:00" + }, + "file_size": 50853, + "md5sum": "a222dd78b19881e15d6e918089443414", + "file_id": "b7a21d1a-3b75-4c14-a31e-5a7e38c0c369", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1845-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "a782352e-c4bb-4c3e-ba82-456a47c3689a", + "entity_id": "78b612c0-5323-46e9-962e-497ad3c877c1" + } + ], + "file_name": "f1c88ee9-a82c-4feb-b5cf-5d2eb23e7d03.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_375_MirnaExpression835319b0-0d35-4414-be57-ab32ac206029_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "0c9a35a5-0325-578f-8053-1fcc829c371a", + "entity_submitter_id": "TCGA-24-1845-01A-01R-1567-13", + "notes": "RNA-seq:HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8815", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "78b612c0-5323-46e9-962e-497ad3c877c1", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "920ec917-1199-57a4-b472-cb955eb66b51", + "entity_submitter_id": "TCGA-24-1845-01A-01R-1567-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29788", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "78b612c0-5323-46e9-962e-497ad3c877c1", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1845-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_375_AlignedReads835319b0-0d35-4414-be57-ab32ac206029", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 195658031, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "ec2e6c78fc7823dc29d656f2868dd8e5", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "0b22e519-66ea-4279-82c4-1c9259446435", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_375_MirnaExpressionWorkflow60515809-9ef7-40a2-a339-26a714155262_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "9bdd530c-a113-4216-88e7-0bdbb2656cfb", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 322790, + "md5sum": "69f5f3fbf27afd068b500ac1424d6fd7", + "file_id": "edd0949f-7f47-478f-bae1-9a8b52f8ae55", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-20-1684-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "94030805-8beb-441a-af73-11a80768edb5", + "entity_id": "91b2872a-73bc-4f52-a8f6-96ce81cbef8a" + } + ], + "file_name": "f796e328-7a09-4ee3-b7e9-76db92e849bf.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_344_MirnaExpression135773c7-5ae7-479b-9179-2650c3e6fff6_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-20-1684-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_344_AlignedReads135773c7-5ae7-479b-9179-2650c3e6fff6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 84639112, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "a875dd64864e4abb2e07d4293a86b2ec", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "f20216cb-1f24-4aa3-b6fa-bd1be2d04a93", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_344_MirnaExpressionWorkflow6d94f1fc-c951-4f58-b075-fb155db75607_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "755f1808-5bfb-4dff-94f2-65d6811c18d0", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50120, + "md5sum": "c3dbe547fcf47181408d1698a337fba3", + "file_id": "63111a58-b63a-410a-86f6-a34c1813d509", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-20-1684-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "94030805-8beb-441a-af73-11a80768edb5", + "entity_id": "91b2872a-73bc-4f52-a8f6-96ce81cbef8a" + } + ], + "file_name": "f796e328-7a09-4ee3-b7e9-76db92e849bf.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_344_MirnaExpression135773c7-5ae7-479b-9179-2650c3e6fff6_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-20-1684-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_344_AlignedReads135773c7-5ae7-479b-9179-2650c3e6fff6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 84639112, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "a875dd64864e4abb2e07d4293a86b2ec", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "f20216cb-1f24-4aa3-b6fa-bd1be2d04a93", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_344_MirnaExpressionWorkflow6d94f1fc-c951-4f58-b075-fb155db75607_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "755f1808-5bfb-4dff-94f2-65d6811c18d0", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 276283, + "md5sum": "18ff78e4806adbe0689b0fd51c4dc667", + "file_id": "ed3610a4-08cc-4d0d-bfb3-604b759051aa", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1505-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "914f84bf-578b-4f4d-93cb-378228ea58f6", + "entity_id": "7774b7d4-2935-4b9b-bf76-312a625629e1" + } + ], + "file_name": "90b48c1e-e0af-474f-bd6f-aff3f69504fc.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_284_MirnaExpressionb21f2802-0ed0-48d5-b0a0-bf2e75828a2c_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1505-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_284_AlignedReadsb21f2802-0ed0-48d5-b0a0-bf2e75828a2c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 192680339, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "ab384f1ae9a2c93a6bb4b1a4574a0941", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5d811e1e-94e1-44d6-ab50-2183918e8348", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_284_MirnaExpressionWorkflow9efc099b-1b0b-4f44-96df-680c6598484a_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d1352300-f276-4bee-833e-e03858edb1e7", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 362627, + "md5sum": "412ac3453ac125a8390a308677cf43f1", + "file_id": "af71412b-71d4-43d7-820e-14af5f79b9a2", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-10-0933-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "9446e349-71e6-455a-aa8f-53ec96597146", + "entity_id": "484100a8-fa3b-4d8a-9051-de0ba8035cb4" + } + ], + "file_name": "7dc2c098-cb0c-48ef-8dcc-80007e7e3855.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_298_MirnaExpression4f6815d9-2167-4d1e-8b7c-caa47665d78b_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-10-0933-01A-01R-1569-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29709", + "classification": "CenterNotification", + "entity_id": "484100a8-fa3b-4d8a-9051-de0ba8035cb4", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "b0eaaf5c-c64c-5e04-a55e-70b7dd489d8f", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "case_id": "9446e349-71e6-455a-aa8f-53ec96597146", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-10-0933" + }, + { + "entity_submitter_id": "TCGA-10-0933-01A-01R-1569-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "submitter_id": "8854", + "classification": "CenterNotification", + "entity_id": "484100a8-fa3b-4d8a-9051-de0ba8035cb4", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "c5af37ff-7b8c-5fd4-a71a-501878eb6a31", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "9446e349-71e6-455a-aa8f-53ec96597146", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-10-0933" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-10-0933-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_298_AlignedReads4f6815d9-2167-4d1e-8b7c-caa47665d78b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 293348832, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "50533e9e8a25ea375252b0c328e6817d", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "669a5395-93aa-4924-8c96-e5b8b32936cd", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_298_MirnaExpressionWorkflowf381ab63-c873-4df6-8307-6cac6a80eae4_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a0f118ea-2869-4acc-94b6-1c0eec710705", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 489645, + "md5sum": "f58c1201d8810e7691fe96f95a7104b0", + "file_id": "d95ba6b9-adde-4dae-bfe5-dd58fcd4df16", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0724-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "a9abe7a7-4126-414b-87d2-a6d25abcf1fa", + "entity_id": "fc6df206-8c77-486c-bc38-06b6cf20139d" + } + ], + "file_name": "5b19c09a-3eee-4f0c-8cc9-355dea7cb4d1.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_63_MirnaExpression59a4f0cc-b746-4467-b205-625e3a3ff579_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "5d4309b2-459e-5ac0-b042-451b611bfeb3", + "entity_submitter_id": "TCGA-13-0724-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8823", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "fc6df206-8c77-486c-bc38-06b6cf20139d", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "6cba365c-faac-5b58-b165-a88c307fb0d8", + "entity_submitter_id": "TCGA-13-0724-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29715", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "fc6df206-8c77-486c-bc38-06b6cf20139d", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0724-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_63_AlignedReads59a4f0cc-b746-4467-b205-625e3a3ff579", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 127967423, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "bb5a647b681cf199c0cdd6160dd1a42b", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "24455052-9fd6-4fcd-ba98-3390776119c0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_63_MirnaExpressionWorkflowf5174089-249c-46bd-8502-0af559c2d025_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8043be03-bc2a-4c75-aa8b-7418e903d163", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 256844, + "md5sum": "350ca5ce5e4af3b682893573c297b1f5", + "file_id": "4e412aaf-5de4-4fd5-bd1d-891129efbb42", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-30-1880-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "bc873b2a-35b7-4365-a2cc-e6a83063556e", + "entity_id": "25365350-2673-4608-a351-74eac9a75d46" + } + ], + "file_name": "1eb184aa-cef0-4605-bbfe-8960a186f66e.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_103_MirnaExpressionc1d0e43b-00ea-490d-b02f-cf04bba784ee_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-30-1880-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_103_AlignedReadsc1d0e43b-00ea-490d-b02f-cf04bba784ee", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 126876679, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "af12081565533e2a4a885171dd864f11", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "8103aacf-a455-4400-87e4-23ef6f48ffcb", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_103_MirnaExpressionWorkflowf6642bee-3e5d-425a-b9aa-9c64b4f4c0ba_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e813359b-62fb-4b3a-a637-ddc43752fa2a", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 260111, + "md5sum": "abad7d60e6ba2fbfce7bbc15617eb8e8", + "file_id": "4487ff79-37ce-4c3d-868c-6af84314ad65", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1703-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "b3511675-fd68-4745-8020-e290ca0fd115", + "entity_id": "64e3f978-d213-45e2-bb52-e9b9a2032dc0" + } + ], + "file_name": "5e283d2e-75c9-4757-b226-1fff7325a853.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_318_MirnaExpression9a5939e9-cbcb-479c-96d0-5d400245792f_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1703-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_318_AlignedReads9a5939e9-cbcb-479c-96d0-5d400245792f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 228088188, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "302dacf5b20192d6ff45e905c9bf4e43", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "ad506ef9-3c42-4fc5-8184-7f9be1006e2d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_318_MirnaExpressionWorkflowd81a162a-bfae-445c-b43f-743e429e5e94_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b775033f-25c0-4bc9-8a47-7cc5eeef4701", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 431789, + "md5sum": "e338168ec4c8bdce2f017c4c5a86f389", + "file_id": "5d2a0d79-b0b4-447d-aeb0-8087781508ef", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2009-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "ae914f23-87b9-4169-a7f7-a3483078c902", + "entity_id": "b6ed2184-0885-49ba-8b00-a3e57e4e5500" + } + ], + "file_name": "72a38b5e-82ed-40db-a6b8-3c5d9500783a.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_11_MirnaExpressiona423c2cf-0202-4905-9452-5b3157ccf987_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2009-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_11_AlignedReadsa423c2cf-0202-4905-9452-5b3157ccf987", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 138268908, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "699a843c5d29e8788e13c18cb03bc4d3", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "9825b7fd-0d72-4770-92c9-049eb23c6b14", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_11_MirnaExpressionWorkflow2abe4a62-6650-4b23-99aa-dadd9804f4de_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "aa7aa92c-cd9a-44f8-8d6b-b537c741e2c5", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50272, + "md5sum": "0fd7f426093ed6a844684c6a9abcc435", + "file_id": "36ef794f-d4e9-4fa1-be9a-4992b3799f2d", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-2393-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "b4b49027-7815-4813-9769-a3fe3a26a37a", + "entity_id": "93a88ec4-e3ed-4e8d-a83c-3e6c4605e89e" + } + ], + "file_name": "9f803e43-f74e-4fb8-b8d3-f590d2098a1c.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_475_MirnaExpression8a9d0098-b809-42b2-86a9-a1a151ad254c_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-2393-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_475_AlignedReads8a9d0098-b809-42b2-86a9-a1a151ad254c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 300000203, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "76577431449fe1f1a009d0cd7fdac5dc", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "8b6281b4-c966-4adc-a727-f099364e9b88", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_475_MirnaExpressionWorkflowb45fc4bc-38a5-4671-bb69-1f3286f40bea_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "9f995d86-7c00-40a4-ad2f-7c90c045a99a", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50496, + "md5sum": "30f6999320faf18d2ca79e60726457c6", + "file_id": "e77fb21a-3041-42f3-8d13-ec15262fea60", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2009-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "ae914f23-87b9-4169-a7f7-a3483078c902", + "entity_id": "b6ed2184-0885-49ba-8b00-a3e57e4e5500" + } + ], + "file_name": "72a38b5e-82ed-40db-a6b8-3c5d9500783a.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_11_MirnaExpressiona423c2cf-0202-4905-9452-5b3157ccf987_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2009-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_11_AlignedReadsa423c2cf-0202-4905-9452-5b3157ccf987", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 138268908, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "699a843c5d29e8788e13c18cb03bc4d3", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "9825b7fd-0d72-4770-92c9-049eb23c6b14", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_11_MirnaExpressionWorkflow2abe4a62-6650-4b23-99aa-dadd9804f4de_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "aa7aa92c-cd9a-44f8-8d6b-b537c741e2c5", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 336293, + "md5sum": "5dab241885c47a5b8ba8f7f6d0d890bb", + "file_id": "85bed994-df2a-487e-a8e4-295642368075", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0792-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "c11cae7e-91cd-4470-a9d8-188a4f6b8fa1", + "entity_id": "a1440677-d6e4-4f16-9627-cdb503e81234" + } + ], + "file_name": "594f25dc-c106-4f7c-bb4c-ec5e177c219b.mirnaseq.mirnas.quantification.txt", + "submitter_id": "b6f0584f-878f-46fd-afa0-cf3264f43e5b", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9894170099237038, + "total_reads": 26474087, + "access": "controlled", + "file_name": "a1440677-d6e4-4f16-9627-cdb503e81234_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004615108, + "proportion_reads_duplicated": 0, + "submitter_id": "6382854f-2b0e-4f09-ac1a-f33512b623b7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 459537829, + "created_datetime": "2024-09-20T11:13:56.713277-05:00", + "average_base_quality": 36, + "md5sum": "26171e9b836dc4760567b66b00aa1dae", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "9a419efc-5847-46c8-9f74-cee644de8f04", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 31, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "594f25dc-c106-4f7c-bb4c-ec5e177c219b_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "44de8ec9-f9e1-4f39-810d-02d656ab5bf7", + "created_datetime": "2024-09-20T11:17:09.575047-05:00" + }, + "file_size": 50724, + "md5sum": "a80525f0ead630a14f7558b0943e7a8e", + "file_id": "7b1bd134-4587-4b23-9513-ff49400b3b92", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1322-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "b520aae5-65a6-4b27-bc2a-10b02c7b1aeb", + "entity_id": "bce04e1e-a90c-4e81-bd16-415cccc9d7e2" + } + ], + "file_name": "13eae60e-6622-4a9f-a67f-3b6558a61b64.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_104_MirnaExpressionf5545b99-74b1-4a87-921c-4cc217ab7b12_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1322-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_104_AlignedReadsf5545b99-74b1-4a87-921c-4cc217ab7b12", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 222768212, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "77d0c834151819cda6233da861c071ce", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "9d974536-fe2e-4c49-9abd-49a6b61f4a0d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_104_MirnaExpressionWorkflow0494b3b7-a782-4127-b158-6762fb9bec7e_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "00d64113-bdb6-4dbd-846a-a6aeabc97e88", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50390, + "md5sum": "736182972e98673fb1582f9d086da4f3", + "file_id": "d1573eaf-1557-4cfd-bd29-d02395e12d12", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-25-1322-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "b520aae5-65a6-4b27-bc2a-10b02c7b1aeb", + "entity_id": "bce04e1e-a90c-4e81-bd16-415cccc9d7e2" + } + ], + "file_name": "13eae60e-6622-4a9f-a67f-3b6558a61b64.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_104_MirnaExpressionf5545b99-74b1-4a87-921c-4cc217ab7b12_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-25-1322-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_104_AlignedReadsf5545b99-74b1-4a87-921c-4cc217ab7b12", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 222768212, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "77d0c834151819cda6233da861c071ce", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "9d974536-fe2e-4c49-9abd-49a6b61f4a0d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_104_MirnaExpressionWorkflow0494b3b7-a782-4127-b158-6762fb9bec7e_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "00d64113-bdb6-4dbd-846a-a6aeabc97e88", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 415098, + "md5sum": "fa7262f41c25fec0a5010a8cec75e0da", + "file_id": "4c47c81a-f5fe-48b7-80d1-9fdc386d199f", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1481-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "c5355491-e1e8-46a4-a05e-bafcaf2e7459", + "entity_id": "761f9668-304f-4e22-87cd-2005aa86152c" + } + ], + "file_name": "7d39fb27-9748-46a4-b7dc-34921f90339c.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_126_MirnaExpression2fb4944d-9f3a-439d-9d6e-2120f73a029b_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1481-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_126_AlignedReads2fb4944d-9f3a-439d-9d6e-2120f73a029b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 219837165, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "a17c772ef1c734e0c7d3431d2a7ece17", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "369bdddb-c91e-478e-a42e-5e58cf588c7f", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_126_MirnaExpressionWorkflow00c496ae-c8b1-432f-b31e-f067e74f6f6f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7ae77432-1175-4218-8f50-c888e7e77cf1", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50327, + "md5sum": "e5ddf78eb45323dc654522bf6e1cafd2", + "file_id": "b10221df-896b-449f-8526-a606763c95f0", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1565-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "cf1e86ec-4bcb-403c-831b-d67bddef14eb", + "entity_id": "0d80226b-8c70-44ab-a6d9-f054d89330f3" + } + ], + "file_name": "6a5618e4-8576-4fd4-b8df-40387045f0de.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_429_MirnaExpression5e947a40-0453-436e-a2d8-d8a55d1ee26a_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "1bc99a0a-74e2-5271-b9bb-8bc1565394f7", + "entity_submitter_id": "TCGA-24-1565-01A-01R-1566-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29787", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "0d80226b-8c70-44ab-a6d9-f054d89330f3", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "40e562d2-f3a1-5229-80ce-581c86913730", + "entity_submitter_id": "TCGA-24-1565-01A-01R-1566-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8808", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "0d80226b-8c70-44ab-a6d9-f054d89330f3", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1565-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_429_AlignedReads5e947a40-0453-436e-a2d8-d8a55d1ee26a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 203840639, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "debc276aadb1f51aaf4fdcc3d2a5ad3f", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b7959965-8dd7-4299-8c9f-c42de122b366", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_429_MirnaExpressionWorkflowf14e4610-f117-4ca6-830c-e3e726ee22e5_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8a495d87-941d-4b3f-8b79-7ba49ea3fd70", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 390664, + "md5sum": "77d9557f64b7ae5fb91ca5f3b2111531", + "file_id": "eb7fc76f-f368-4f23-a0ff-c4e6685a5849", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1343-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "b7715ff6-57a6-4513-9447-aa8bc93f16d4", + "entity_id": "e7aeb2b8-2a2d-4175-94f4-0192bd467fed" + } + ], + "file_name": "8154f10d-7460-49cd-b309-829ef0d1ac24.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_463_MirnaExpressionce1751d5-6e15-4b12-809d-372acaac7116_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "3c3289ea-09db-59de-b1f8-4c5d2c9afa9d", + "entity_submitter_id": "TCGA-04-1343-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29691", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "e7aeb2b8-2a2d-4175-94f4-0192bd467fed", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "6f9f1b44-9c9a-58ad-b02e-37730add72d9", + "entity_submitter_id": "TCGA-04-1343-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8757", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "e7aeb2b8-2a2d-4175-94f4-0192bd467fed", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1343-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_463_AlignedReadsce1751d5-6e15-4b12-809d-372acaac7116", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 184566825, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "2289dbcef7b60f973e2e5dd4c4e0b71f", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "734b1520-b581-480b-85f4-b1c59b2c08a0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_463_MirnaExpressionWorkflow550eba4d-a0f6-4bf0-98d4-55c6c54e5b7e_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "6375410b-ffea-4f18-bb02-a7be814cc6ba", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 381084, + "md5sum": "6b323a33df1b261d2e1f96f5ed493287", + "file_id": "f08123cf-5773-448d-b773-c74c18c0df50", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1646-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "d38ca631-ed5c-4182-a647-625060726fa7", + "entity_id": "92c7fb18-a71c-4200-bcf8-90b69ad63266" + } + ], + "file_name": "69f6ed98-6cab-4404-b8ee-6f4c2fc72f64.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_384_MirnaExpression704bc1dd-682b-402e-b454-da37dbc956df_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1646-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_384_AlignedReads704bc1dd-682b-402e-b454-da37dbc956df", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 244252368, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "37e947eee4a2d49508938265e0c9d0f1", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "b4e8eedd-558a-4867-8534-28b8e1291701", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_384_MirnaExpressionWorkflowbb4ab4c8-6639-4539-b323-054b29df381b_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5d9a8b30-f8f6-405c-9f01-26b310fcb126", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 414351, + "md5sum": "e229c38033995ec7d35f1842bc52eed0", + "file_id": "368f5107-b487-46a3-8afc-b7e3f2fafe3b", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1764-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "c70228cc-79c0-4c00-8926-6671c1474701", + "entity_id": "45e0b8d5-5af3-4b60-94b8-c15d98c7ccf8" + } + ], + "file_name": "267afda3-a583-405d-83f4-77ab73658349.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_83_MirnaExpressionb525744c-d248-4c53-85c8-90a0c71d8b9e_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1764-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_83_AlignedReadsb525744c-d248-4c53-85c8-90a0c71d8b9e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 217036860, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "1d66fdaf67a0e445f89e27868b6519bd", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "1081aa4f-77b4-4815-a2c9-a92177826053", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_83_MirnaExpressionWorkflowd31225a0-af97-4b69-b0ec-15bfc3b89e0c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7a0ed8e1-6cf5-4671-9aae-d0a3c029c020", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50218, + "md5sum": "20a6de4ab615e8d15b1ada2271300d22", + "file_id": "0c966e5a-edde-4a34-9170-c36cf32503d7", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-29-1764-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "c70228cc-79c0-4c00-8926-6671c1474701", + "entity_id": "45e0b8d5-5af3-4b60-94b8-c15d98c7ccf8" + } + ], + "file_name": "267afda3-a583-405d-83f4-77ab73658349.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_83_MirnaExpressionb525744c-d248-4c53-85c8-90a0c71d8b9e_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-29-1764-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_83_AlignedReadsb525744c-d248-4c53-85c8-90a0c71d8b9e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 217036860, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "1d66fdaf67a0e445f89e27868b6519bd", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "1081aa4f-77b4-4815-a2c9-a92177826053", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_83_MirnaExpressionWorkflowd31225a0-af97-4b69-b0ec-15bfc3b89e0c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7a0ed8e1-6cf5-4671-9aae-d0a3c029c020", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 326848, + "md5sum": "a95cfa6023691e82173a12282cba0ad5", + "file_id": "0bc92ff6-ee8d-487d-a48b-8f87023e41b0", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0910-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "b783f33b-734a-4801-bf39-b559a2035c6f", + "entity_id": "d0369513-eacb-47c0-8b80-da610f7d477f" + } + ], + "file_name": "bda2d3fd-a28f-4b5d-aff9-267d757b3872.mirnaseq.mirnas.quantification.txt", + "submitter_id": "97cb5f1f-ede7-4e65-9bc1-da7b84084f5d", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9902386618805149, + "total_reads": 25295200, + "access": "controlled", + "file_name": "d0369513-eacb-47c0-8b80-da610f7d477f_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004870239, + "proportion_reads_duplicated": 0, + "submitter_id": "41caa1f1-8dca-47b5-ae59-c8c786928e3e", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 412708899, + "created_datetime": "2024-09-20T11:12:42.414180-05:00", + "average_base_quality": 36, + "md5sum": "4324dd00f201eb3c4944db09b3482594", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "1dd2f277-cf81-4138-973f-c36e823e0fcf", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 33, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "bda2d3fd-a28f-4b5d-aff9-267d757b3872_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "c81613c2-d45b-4d06-ab2c-edc524969458", + "created_datetime": "2024-09-20T11:17:15.743260-05:00" + }, + "file_size": 50744, + "md5sum": "32d1fb3520e17bc61978ad97582f2265", + "file_id": "3c3a5e8d-c69c-417e-8a1b-5328c830f79e", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0910-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "b783f33b-734a-4801-bf39-b559a2035c6f", + "entity_id": "71baee64-10da-4993-89d8-a9d9a964a230" + } + ], + "file_name": "191aa531-3494-42fa-8996-af204937fa87.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_53_MirnaExpression355fcb1d-20e1-41b9-8c7a-19fd6b23de3c_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0910-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_53_AlignedReads355fcb1d-20e1-41b9-8c7a-19fd6b23de3c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 139194705, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "fdc25a3d93a2332129d0ed75890bd262", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c2251c32-8020-415d-b9b1-412567359866", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_53_MirnaExpressionWorkflowb7343ff0-9039-4c6e-bcea-5d4ebf645784_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e4b56a41-6220-434e-a484-a3ddfe953f7c", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50213, + "md5sum": "7754a5104ed360c1096bb35482be10ac", + "file_id": "cca12e1f-e86a-4cdd-801b-47278cd34138", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1564-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "d77ef9cf-f8e6-4ee9-8d4f-1106885f6b06", + "entity_id": "03b8480f-d19e-43e4-8a09-f9230c525c1e" + } + ], + "file_name": "3d04b083-eb9e-4d9d-85be-f1779bdce885.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_383_MirnaExpression5214a358-732d-47d7-a3a8-6c1dc193a883_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1564-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_383_AlignedReads5214a358-732d-47d7-a3a8-6c1dc193a883", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 156625795, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "fe73b8a82a8bd6856f7e4e3e06c0e483", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "62f8d3d1-c0be-4031-945c-9666baa527b6", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_383_MirnaExpressionWorkflow70202a9f-08f4-4888-a549-2b3b36cb2c36_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "22734dae-a5fd-4a30-b067-69eba97c1f04", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50357, + "md5sum": "020e11d50167dcd1c1463ebcd03ae596", + "file_id": "6aceb340-257c-4c3a-a62d-5a1e5d20b2c0", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1638-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "c75c915f-ef4b-4c19-8ace-995e6c6015fd", + "entity_id": "6d514a06-f3cb-4b26-b89d-470d12890398" + } + ], + "file_name": "5eb1c64c-6766-44e2-9842-632b8c3c1831.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_68_MirnaExpression5b84f889-0ded-4ecb-b11a-aa129d2a21f1_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1638-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_68_AlignedReads5b84f889-0ded-4ecb-b11a-aa129d2a21f1", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 227164310, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "20bb8992b2702b3c8bc9174e0565a04a", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "014fc0b4-3bd4-4410-92a0-41c6b6bf8e8c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_68_MirnaExpressionWorkflow7b2a5a0f-d12a-4a0e-bc9f-e5c1aec5287c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "96e47e33-ce0b-42a8-bd7a-1f6e6c981eb6", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 403365, + "md5sum": "5760f5ffd25c465f5bb2b0858946c133", + "file_id": "5f5688d4-d6be-466f-b200-24dd603c4d5a", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1638-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "c75c915f-ef4b-4c19-8ace-995e6c6015fd", + "entity_id": "6d514a06-f3cb-4b26-b89d-470d12890398" + } + ], + "file_name": "5eb1c64c-6766-44e2-9842-632b8c3c1831.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_68_MirnaExpression5b84f889-0ded-4ecb-b11a-aa129d2a21f1_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1638-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_68_AlignedReads5b84f889-0ded-4ecb-b11a-aa129d2a21f1", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 227164310, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "20bb8992b2702b3c8bc9174e0565a04a", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "014fc0b4-3bd4-4410-92a0-41c6b6bf8e8c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_68_MirnaExpressionWorkflow7b2a5a0f-d12a-4a0e-bc9f-e5c1aec5287c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "96e47e33-ce0b-42a8-bd7a-1f6e6c981eb6", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50348, + "md5sum": "8348f72184d23e7ac4a33dc0e1658bbf", + "file_id": "7ea5358d-cef3-4043-8bc9-7350e279d060", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1638-01A-01R-A96R-41", + "entity_type": "aliquot", + "case_id": "c75c915f-ef4b-4c19-8ace-995e6c6015fd", + "entity_id": "09a5f9ce-9024-431d-b7a2-b1c8d26b2680" + } + ], + "file_name": "8e007476-d52c-4896-93ca-d55dcbb14bfe.mirnaseq.isoforms.quantification.txt", + "submitter_id": "84247186-1a58-4248-ac5a-dd8f7970970d", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9845040651872149, + "total_reads": 26626080, + "access": "controlled", + "file_name": "09a5f9ce-9024-431d-b7a2-b1c8d26b2680_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007508148, + "proportion_reads_duplicated": 0, + "submitter_id": "5d1abab2-e583-4de7-ac63-7d2fdbafaf86", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 444043857, + "created_datetime": "2024-09-20T11:14:14.252948-05:00", + "average_base_quality": 36, + "md5sum": "ef207ff967dca5c6420f9b57ef737ace", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "edbdbe37-8c89-4d04-8115-0b77e0bc5aa1", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 32, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "8e007476-d52c-4896-93ca-d55dcbb14bfe_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d78d1641-fd29-432c-9eed-8dca3cbaf4cd", + "created_datetime": "2024-09-20T11:16:49.141786-05:00" + }, + "file_size": 468353, + "md5sum": "ee327a28178dfa8aeff92aacd2f61c73", + "file_id": "945466d1-9d25-478c-b645-5a33647459cc", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-20-0990-01A-01R-A96U-41", + "entity_type": "aliquot", + "case_id": "c9524775-6b50-4793-8858-24b6a6d3e4e6", + "entity_id": "5973c0fb-55fa-45cf-a0f1-096819543438" + } + ], + "file_name": "bcade1c9-49ae-4874-b5a2-43a54c7ce4c5.mirnaseq.isoforms.quantification.txt", + "submitter_id": "6620a3f3-7db4-4f34-b6be-818f73cd610b", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9931507517586566, + "total_reads": 19883642, + "access": "controlled", + "file_name": "5973c0fb-55fa-45cf-a0f1-096819543438_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.003125603, + "proportion_reads_duplicated": 0, + "submitter_id": "9f74b60c-4944-49b4-9cdd-cb9f53cb4920", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 306209862, + "created_datetime": "2024-09-20T11:13:01.821863-05:00", + "average_base_quality": 36, + "md5sum": "dd480ce5feb2452d8d775946ee50bcf9", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "1427fb91-0c90-4349-b940-f07af4bd059e", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 38, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "bcade1c9-49ae-4874-b5a2-43a54c7ce4c5_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2f118779-8f58-4a2b-b922-28111b613fd9", + "created_datetime": "2024-09-20T11:17:58.052957-05:00" + }, + "file_size": 421975, + "md5sum": "d778d6d2694cf046b1fae1f304b49459", + "file_id": "c98bc573-975e-4784-bf80-3482bb1708d3", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-1564-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "d77ef9cf-f8e6-4ee9-8d4f-1106885f6b06", + "entity_id": "03b8480f-d19e-43e4-8a09-f9230c525c1e" + } + ], + "file_name": "3d04b083-eb9e-4d9d-85be-f1779bdce885.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_383_MirnaExpression5214a358-732d-47d7-a3a8-6c1dc193a883_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-1564-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_383_AlignedReads5214a358-732d-47d7-a3a8-6c1dc193a883", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 156625795, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "fe73b8a82a8bd6856f7e4e3e06c0e483", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "62f8d3d1-c0be-4031-945c-9666baa527b6", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_383_MirnaExpressionWorkflow70202a9f-08f4-4888-a549-2b3b36cb2c36_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "22734dae-a5fd-4a30-b067-69eba97c1f04", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 371358, + "md5sum": "05d5e4cf02953359d03ca4b9e0886739", + "file_id": "dddd5360-1e06-4d6b-b1a6-f7c454d4cc4d", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-59-2354-01A-01R-1569-13", + "entity_type": "aliquot", + "case_id": "d7925dfc-18ce-46ab-a47b-9d06eacc96d0", + "entity_id": "33367eb6-4ca9-4daf-9e47-30a47a78e144" + } + ], + "file_name": "3b89783c-8650-45f3-ac39-96b8cb4c911e.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_137_MirnaExpression03e38365-05b1-4ade-b055-4dbb9fc55061_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-59-2354-01A-01R-1569-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_137_AlignedReads03e38365-05b1-4ade-b055-4dbb9fc55061", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 188641935, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "ca1bc28051b5f658cde8386abf568cb7", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "a687d58b-06b5-4dc2-ab1f-1befef4db5b5", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_137_MirnaExpressionWorkflow9e31c7ce-67fd-4bb8-8f34-ec70da728d0f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "92d8728b-a02c-4a09-b65b-c8e98ad6dbe3", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50420, + "md5sum": "8aa4f55cf2bd31be94e56c207f6daa30", + "file_id": "586bcf84-4b83-458f-8d9d-1cdc39b4af83", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-3P-A9WA-01A-11R-A407-13", + "entity_type": "aliquot", + "case_id": "e35b2813-427e-4e83-95f6-4f0281f42a59", + "entity_id": "3280e41e-de2e-4a4a-b7b7-06fd06def017" + } + ], + "file_name": "ca74d2ee-20e5-4a73-ad1b-033c7be2cd89.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_5_MirnaExpression593805b9-72a1-4d54-8412-5af06457818a_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-3P-A9WA-01A-11R-A407-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_5_AlignedReads593805b9-72a1-4d54-8412-5af06457818a", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 142105285, + "created_datetime": "2018-03-20T06:44:11.472655-05:00", + "md5sum": "8a08f373a4bff10641b22054d3d4d572", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "de993d76-f923-450f-b980-bb0cecdc43b0", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_5_MirnaExpressionWorkflow2161e86e-0faa-4d54-8e3f-72b6779f7b82_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8aa8051f-510b-4bd6-a021-e94e0da1c89a", + "created_datetime": "2018-03-20T06:44:11.472655-05:00" + }, + "platform": "Illumina", + "file_size": 50321, + "md5sum": "3b4e7c2e9f266a0d726a49fb3b725d2d", + "file_id": "49375bab-4df4-409c-9516-9f4f935f457f", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0924-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "fbb45305-de8d-4baf-8bd0-047b29c2e9d9", + "entity_id": "85a4c41b-9829-48f8-9c7a-a9de870332b6" + } + ], + "file_name": "11e937c8-a130-469d-8dfd-35f304318fb5.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_188_MirnaExpression808d0544-2e44-4712-b0e3-0e3c486d2320_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0924-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_188_AlignedReads808d0544-2e44-4712-b0e3-0e3c486d2320", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 102991568, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "0180d8d9e749d03efbd838f15828ef91", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "ddbecca2-1230-4b33-8b02-88d5a7c8227a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_188_MirnaExpressionWorkflow3f19dfa7-de88-458d-8452-a38e8ace333e_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b4d247d0-8bce-40b1-b1a0-9733b52754da", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 280182, + "md5sum": "7a93ebdca8c4d0175c95d87a70780a68", + "file_id": "4f5e85e2-4041-484f-8404-590b71bf6c82", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0889-01A-01R-A96T-41", + "entity_type": "aliquot", + "case_id": "e3712e5a-4575-440f-89d1-8db9498baa88", + "entity_id": "c3d9b91a-a4e4-463d-9504-3bb952f9953c" + } + ], + "file_name": "9a945c94-acc7-48ac-83a3-58263e035a22.mirnaseq.mirnas.quantification.txt", + "submitter_id": "1b8d0d1a-41e5-41ff-954a-fb1909f9d124", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9890457928211721, + "total_reads": 26336639, + "access": "controlled", + "file_name": "c3d9b91a-a4e4-463d-9504-3bb952f9953c_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004537408, + "proportion_reads_duplicated": 0, + "submitter_id": "276efe45-ca2c-48a0-b9fc-eb5afbef4fc8", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 440121158, + "created_datetime": "2024-09-20T11:14:32.718723-05:00", + "average_base_quality": 36, + "md5sum": "3f2bad3a0b52e178b3464a3223606585", + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "file_id": "e4acf021-9385-4751-94a9-bedbdba1d495", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 34, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-01-23T04:34:27.723594-06:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "9a945c94-acc7-48ac-83a3-58263e035a22_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "8015e2d3-84ad-47ba-9f30-d45233358fe5", + "created_datetime": "2024-09-20T11:17:44.520309-05:00" + }, + "file_size": 50670, + "md5sum": "9d1a5fda3727de617d51a28d91aa25a1", + "file_id": "3f543827-8e29-4bf6-8403-a4355a542c05", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0906-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "e43d3769-e25f-4fb7-9080-ea26defaf094", + "entity_id": "7fa0eba3-8a33-425d-a7fb-2fa169e5f8e6" + } + ], + "file_name": "e9a0f14a-1f8e-4466-8c22-3b88ab6b03a6.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_185_MirnaExpression2ad76573-d681-443f-8e30-bc8c1786ca05_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-0906-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "submitter_id": "8776", + "classification": "CenterNotification", + "entity_id": "7fa0eba3-8a33-425d-a7fb-2fa169e5f8e6", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "4490b972-96f9-582b-9958-bc62e26a086a", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:32:20.747393-05:00", + "case_id": "e43d3769-e25f-4fb7-9080-ea26defaf094", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-13-0906" + }, + { + "entity_submitter_id": "TCGA-13-0906-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29736", + "classification": "CenterNotification", + "entity_id": "7fa0eba3-8a33-425d-a7fb-2fa169e5f8e6", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "bafdcefd-73e4-5ed1-97ea-c0a26997fbae", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "e43d3769-e25f-4fb7-9080-ea26defaf094", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-13-0906" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0906-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_185_AlignedReads2ad76573-d681-443f-8e30-bc8c1786ca05", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 142354383, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "1ebf411a4ea554104825ed57beb167d9", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "3dadda65-f05b-4d41-8f9a-0e3c594becef", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_185_MirnaExpressionWorkflowf1424edc-a7ed-4dd6-bd0f-4aaf200f5798_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "98515414-1e5f-42de-aca1-b9018573cf43", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 267667, + "md5sum": "2eaf273d7b17489c187a9059bd32da00", + "file_id": "afe28f50-0a11-4ddb-b3a9-5b5bf888c5e9", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-0906-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "e43d3769-e25f-4fb7-9080-ea26defaf094", + "entity_id": "7fa0eba3-8a33-425d-a7fb-2fa169e5f8e6" + } + ], + "file_name": "e9a0f14a-1f8e-4466-8c22-3b88ab6b03a6.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_185_MirnaExpression2ad76573-d681-443f-8e30-bc8c1786ca05_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "entity_submitter_id": "TCGA-13-0906-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "submitter_id": "8776", + "classification": "CenterNotification", + "entity_id": "7fa0eba3-8a33-425d-a7fb-2fa169e5f8e6", + "created_datetime": "2012-07-20T00:00:00", + "annotation_id": "4490b972-96f9-582b-9958-bc62e26a086a", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:32:20.747393-05:00", + "case_id": "e43d3769-e25f-4fb7-9080-ea26defaf094", + "state": "released", + "category": "Center QC failed", + "status": "Approved", + "case_submitter_id": "TCGA-13-0906" + }, + { + "entity_submitter_id": "TCGA-13-0906-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "submitter_id": "29736", + "classification": "CenterNotification", + "entity_id": "7fa0eba3-8a33-425d-a7fb-2fa169e5f8e6", + "created_datetime": "2015-12-11T00:00:00", + "annotation_id": "bafdcefd-73e4-5ed1-97ea-c0a26997fbae", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "case_id": "e43d3769-e25f-4fb7-9080-ea26defaf094", + "state": "released", + "category": "Item flagged DNU", + "status": "Approved", + "case_submitter_id": "TCGA-13-0906" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-0906-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_185_AlignedReads2ad76573-d681-443f-8e30-bc8c1786ca05", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 142354383, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "1ebf411a4ea554104825ed57beb167d9", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "3dadda65-f05b-4d41-8f9a-0e3c594becef", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_185_MirnaExpressionWorkflowf1424edc-a7ed-4dd6-bd0f-4aaf200f5798_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "98515414-1e5f-42de-aca1-b9018573cf43", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50129, + "md5sum": "a5df66e674b0315522f823cc03a248d3", + "file_id": "03d2af4b-0032-43b0-a49b-c9d4fe316e42", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1482-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "f3af727e-b592-4828-94f5-22008666cf8c", + "entity_id": "197bc1c2-fb72-422a-b6b0-d07cf5b737ef" + } + ], + "file_name": "56d7e454-061d-4af1-b72e-154ce9d395ea.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_156_MirnaExpressionc8c45415-177e-4c34-8acb-60ad18f97c61_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "2064d2a8-3132-5ac4-ab9d-333952c68d0a", + "entity_submitter_id": "TCGA-13-1482-01A-01R-1565-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29747", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "197bc1c2-fb72-422a-b6b0-d07cf5b737ef", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "780388a8-b273-5344-bc59-fff11acb315d", + "entity_submitter_id": "TCGA-13-1482-01A-01R-1565-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:32:20.747393-05:00", + "submitter_id": "8795", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "197bc1c2-fb72-422a-b6b0-d07cf5b737ef", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1482-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_156_AlignedReadsc8c45415-177e-4c34-8acb-60ad18f97c61", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 246715463, + "created_datetime": "2018-03-20T06:47:48.697071-05:00", + "md5sum": "b062413b50883756299642b948d861c8", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "5c10425a-f83a-473c-8031-74adb30c6d0c", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_156_MirnaExpressionWorkflowb1a8f968-05a3-40e5-b32c-c78ab4617171_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2f4531d9-d0da-4b92-9fb1-0d8f5ae6f1bb", + "created_datetime": "2018-03-20T06:47:48.697071-05:00" + }, + "platform": "Illumina", + "file_size": 50393, + "md5sum": "bc2ebf4552ca374882bbdcd367321b36", + "file_id": "51d53856-444f-40f5-8313-75153ab11d53", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1120-01A-02R-1565-13", + "entity_type": "aliquot", + "case_id": "fdf83fdf-dfbb-4306-9a1b-b4487d18b402", + "entity_id": "9b64998e-eed9-428b-97ac-4de398caaf81" + } + ], + "file_name": "ca44698c-e99e-4789-a606-28b44af5d8e8.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_387_MirnaExpression4cabbd35-9ab0-4c01-bffd-e12319900f1d_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1120-01A-02R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_387_AlignedReads4cabbd35-9ab0-4c01-bffd-e12319900f1d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 178434378, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "209b27aa4f20092ba517e9ea5702f994", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "66be195f-b62f-44b6-a354-c213d645d2cd", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_387_MirnaExpressionWorkflow3c01ba70-48e5-4a1d-a621-f01d65b173c6_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "b3cd1221-98de-4d9f-83ce-468ce98eb878", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50269, + "md5sum": "5dd8e3cdd53291df213a88233127ebab", + "file_id": "14d25bf8-ab6b-43d3-ae13-e3092eb9fe68", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-31-1946-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "da274941-3edd-420b-9262-bbd959923c67", + "entity_id": "05abb2f5-07c3-42da-92d9-0b4560fb6f09" + } + ], + "file_name": "f0f36077-a302-4304-8e6e-017164e3e9a4.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_139_MirnaExpressionf83a7441-8de7-4f70-a258-10a7830114b5_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-31-1946-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_139_AlignedReadsf83a7441-8de7-4f70-a258-10a7830114b5", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 224488824, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "addf0cf1ec174f2a83b46799445d9567", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "d0484969-74dd-4eb8-99e2-031fece791fe", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_139_MirnaExpressionWorkflow97b2862d-c1d1-435e-ae12-a2e400e2f595_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "19aed87b-7a58-426d-b5ea-99e85e8bd356", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 398300, + "md5sum": "ae1ae263bf21f8920f8d191c05872007", + "file_id": "60ef973e-76af-46a6-80c5-f2ce1f85539b", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-31-1946-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "da274941-3edd-420b-9262-bbd959923c67", + "entity_id": "05abb2f5-07c3-42da-92d9-0b4560fb6f09" + } + ], + "file_name": "f0f36077-a302-4304-8e6e-017164e3e9a4.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_139_MirnaExpressionf83a7441-8de7-4f70-a258-10a7830114b5_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-31-1946-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_139_AlignedReadsf83a7441-8de7-4f70-a258-10a7830114b5", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 224488824, + "created_datetime": "2018-03-20T06:46:01.945851-05:00", + "md5sum": "addf0cf1ec174f2a83b46799445d9567", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "d0484969-74dd-4eb8-99e2-031fece791fe", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_139_MirnaExpressionWorkflow97b2862d-c1d1-435e-ae12-a2e400e2f595_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "19aed87b-7a58-426d-b5ea-99e85e8bd356", + "created_datetime": "2018-03-20T06:46:01.945851-05:00" + }, + "platform": "Illumina", + "file_size": 50378, + "md5sum": "10a9e74047b3a97e275302aed9aa3380", + "file_id": "6f44c3ca-ee47-41fc-bd26-351acbb2f35d", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2109-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "dc5a6ce7-01e5-408d-812e-e3e0ddc1cde5", + "entity_id": "c87ddfc3-d7a4-4704-b3cc-a19edfb63452" + } + ], + "file_name": "e79c63db-7a28-4079-b4c3-c3b511c92934.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_58_MirnaExpression1f2821b1-d245-451b-b7a2-f5c92d174b0b_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2109-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_58_AlignedReads1f2821b1-d245-451b-b7a2-f5c92d174b0b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 363703367, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "612f8161c6d1809eedf822dcc77ca38b", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "8ab2c305-b6ab-4731-8a79-f5aee7e2123d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_58_MirnaExpressionWorkflow73cd03e4-1dc7-4410-a72c-03578f80e799_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "11b56f3b-221b-4d74-a4bb-efd798d34859", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 483813, + "md5sum": "0408cddd5f7ff44f342036c89a1747b9", + "file_id": "19fc5f2b-4b1c-439a-8b1e-2da86d479413", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-61-2109-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "dc5a6ce7-01e5-408d-812e-e3e0ddc1cde5", + "entity_id": "c87ddfc3-d7a4-4704-b3cc-a19edfb63452" + } + ], + "file_name": "e79c63db-7a28-4079-b4c3-c3b511c92934.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_58_MirnaExpression1f2821b1-d245-451b-b7a2-f5c92d174b0b_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-61-2109-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_58_AlignedReads1f2821b1-d245-451b-b7a2-f5c92d174b0b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 363703367, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "612f8161c6d1809eedf822dcc77ca38b", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "8ab2c305-b6ab-4731-8a79-f5aee7e2123d", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_58_MirnaExpressionWorkflow73cd03e4-1dc7-4410-a72c-03578f80e799_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "11b56f3b-221b-4d74-a4bb-efd798d34859", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 50477, + "md5sum": "d994077164725f4cb96af14f7a49e333", + "file_id": "550f465e-bcda-4c3e-aa8f-c05063d5307d", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1519-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "e9b5336e-d724-4e7d-8c81-1147abd0a80d", + "entity_id": "193d3e7f-ec7f-453a-9c2a-77b240c4ba19" + } + ], + "file_name": "a5fc4b34-2f6a-47a5-8962-18c8023623c6.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_372_MirnaExpression24f4740c-4bf4-4fd5-b590-3d261a6d3706_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1519-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_372_AlignedReads24f4740c-4bf4-4fd5-b590-3d261a6d3706", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 119594835, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "ecbce5c52dc041b5b1414991dbbf94dc", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "c23b0419-9814-4556-be4c-c62e5be2985a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_372_MirnaExpressionWorkflowb95a14f4-2ace-4dbf-97df-50950d34a73c_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7c8de143-3ce4-4277-9d38-851db9f860ca", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50142, + "md5sum": "5619e06b854e1643eb5ca5e63ffcc00a", + "file_id": "5fa22735-fdbd-4dc4-bb32-beeff84f8496", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1484-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "ead71c90-cc5e-42ce-8754-c3cf15a41134", + "entity_id": "40962924-2877-4597-9ec5-e038898868d1" + } + ], + "file_name": "4ef3cd73-d552-4ad4-a040-2642163ef710.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_373_MirnaExpression0f867046-26ec-4d87-8f6c-b3bcf30b99c0_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1484-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_373_AlignedReads0f867046-26ec-4d87-8f6c-b3bcf30b99c0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 135743175, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "871dec7af28472d2e4cfb9613370c045", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "edd96b05-333c-47ea-b451-cdac0a87affd", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_373_MirnaExpressionWorkflow35b23fa9-5120-474c-9c08-87022fbbc0bd_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "daabcaad-5401-464d-a44e-fda0c4f4a8d4", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 50139, + "md5sum": "b81fc3d2e2a5eea901373e63493aee48", + "file_id": "76ae6192-e0ea-49d0-856c-c62a89e10d54", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-23-1028-01A-01R-1564-13", + "entity_type": "aliquot", + "case_id": "df53c3c0-3605-4d2b-bdc7-96d9beab27ea", + "entity_id": "8f6e45b3-2857-4eb8-a723-5429f7fd8f0c" + } + ], + "file_name": "42fc169b-a145-44c5-8beb-b3f3268e7f75.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_302_MirnaExpressioned537b4b-c05b-4815-b655-8a8e5d972b35_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "6f70f783-555c-50a9-b08c-d8fe2a53c33e", + "entity_submitter_id": "TCGA-23-1028-01A-01R-1564-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "29766", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "8f6e45b3-2857-4eb8-a723-5429f7fd8f0c", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "e43525ad-a14c-51d3-a4d3-2333e4dd43b1", + "entity_submitter_id": "TCGA-23-1028-01A-01R-1564-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "8835", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "8f6e45b3-2857-4eb8-a723-5429f7fd8f0c", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-23-1028-01A-01R-1564-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_302_AlignedReadsed537b4b-c05b-4815-b655-8a8e5d972b35", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 264379724, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "2eb0e2ccb756a298b073817f909e10fd", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "fb276481-d889-4e58-a09b-52304fb69bd9", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_302_MirnaExpressionWorkflow60a82ad9-9c3f-4ee2-ac08-952e81d58908_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f94ba059-84f0-4b7c-be62-cac110e27b6d", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 50287, + "md5sum": "71c587a06d3f29af54d06cc5c4221c01", + "file_id": "818f3729-4ffa-4471-a537-f37c21e317ed", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-13-1484-01A-01R-1565-13", + "entity_type": "aliquot", + "case_id": "ead71c90-cc5e-42ce-8754-c3cf15a41134", + "entity_id": "40962924-2877-4597-9ec5-e038898868d1" + } + ], + "file_name": "4ef3cd73-d552-4ad4-a040-2642163ef710.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_373_MirnaExpression0f867046-26ec-4d87-8f6c-b3bcf30b99c0_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-13-1484-01A-01R-1565-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_373_AlignedReads0f867046-26ec-4d87-8f6c-b3bcf30b99c0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 135743175, + "created_datetime": "2018-03-20T07:01:47.420343-05:00", + "md5sum": "871dec7af28472d2e4cfb9613370c045", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "edd96b05-333c-47ea-b451-cdac0a87affd", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_373_MirnaExpressionWorkflow35b23fa9-5120-474c-9c08-87022fbbc0bd_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "daabcaad-5401-464d-a44e-fda0c4f4a8d4", + "created_datetime": "2018-03-20T07:01:47.420343-05:00" + }, + "platform": "Illumina", + "file_size": 244604, + "md5sum": "051ecd7414ffba4c39bd6451449c28de", + "file_id": "93569cc8-a2a5-4434-976a-d2858cc8a871", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2020-01A-01R-1567-13", + "entity_type": "aliquot", + "case_id": "e20ea417-7296-4da8-9fdb-71cd1f45153a", + "entity_id": "19765b4f-458e-4f02-bf96-01498d80ac83" + } + ], + "file_name": "e9a951fc-2027-4b3d-8e8c-078868678b18.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_434_MirnaExpression204a30e5-ada2-4393-8a34-ea6225ace489_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2020-01A-01R-1567-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_434_AlignedReads204a30e5-ada2-4393-8a34-ea6225ace489", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 254726143, + "created_datetime": "2018-03-20T07:07:09.485122-05:00", + "md5sum": "6277c5e15194d22b64e176d2a924db57", + "updated_datetime": "2023-07-12T10:13:37.487117-05:00", + "file_id": "3e182aad-e084-46e6-b5c1-0c19e444799a", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_434_MirnaExpressionWorkflow2a540e3c-846f-44a9-8dff-e8c29501d61f_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d183643f-534e-441e-bd80-7915a2dc0103", + "created_datetime": "2018-03-20T07:07:09.485122-05:00" + }, + "platform": "Illumina", + "file_size": 459165, + "md5sum": "aba16065d21be6b6d61ae23b8f2362a7", + "file_id": "7d59a5e2-ade3-4039-aab7-28fb4d4e481e", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-36-1577-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "e294b940-2828-499c-be24-47ef6c2e9035", + "entity_id": "9ec93bbd-5c62-4974-984f-f86301f0d27e" + } + ], + "file_name": "ebe282a9-c211-4f2e-8769-07cab70c3906.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_86_MirnaExpression98386d7c-d3a8-4d62-8133-a7088e3b4e67_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-36-1577-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_86_AlignedReads98386d7c-d3a8-4d62-8133-a7088e3b4e67", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 157404810, + "created_datetime": "2018-03-20T06:44:51.672601-05:00", + "md5sum": "34ae4cf009e22a0e0ef5936cae3e5d72", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "f8c13da0-f6ba-4066-b5ed-9b90cb8805a2", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_86_MirnaExpressionWorkflow7f6ecc4d-be15-4abe-8bdf-41fd9697c8c5_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "63dd448a-b124-4dee-ac8f-c4d6ba39782e", + "created_datetime": "2018-03-20T06:44:51.672601-05:00" + }, + "platform": "Illumina", + "file_size": 374732, + "md5sum": "122124dbf345b4d075540b3b703710a9", + "file_id": "c9e66f79-e45b-4831-a5bf-707e3c7f3036", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-04-1655-01A-01R-1566-13", + "entity_type": "aliquot", + "case_id": "f8a5547f-f1bc-4c01-8b68-25b5ee0caeab", + "entity_id": "520e1d91-a556-4443-8c08-feec29c0c4fe" + } + ], + "file_name": "4f659b4e-e335-4fdd-acdd-f4d363440ef6.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_307_MirnaExpressiona1912316-a37b-436f-8a70-15e8a6c52cae_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "aebc7105-ccf9-5d51-9ef0-f47b624fc5a3", + "entity_submitter_id": "TCGA-04-1655-01A-01R-1566-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:44:52.002023-05:00", + "submitter_id": "8811", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "520e1d91-a556-4443-8c08-feec29c0c4fe", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "b6f46396-6466-5e39-b6d2-1bff80825df8", + "entity_submitter_id": "TCGA-04-1655-01A-01R-1566-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29702", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "520e1d91-a556-4443-8c08-feec29c0c4fe", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-04-1655-01A-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_307_AlignedReadsa1912316-a37b-436f-8a70-15e8a6c52cae", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 231513836, + "created_datetime": "2018-03-20T06:57:11.515261-05:00", + "md5sum": "61fe0c550c20146357b506ed049039aa", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "983e11d2-1808-49b9-ade8-a0efa9323da3", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_307_MirnaExpressionWorkflow6079d9c6-6c39-44d1-902a-5b243f925c67_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "56ad3e6b-b2d6-44e1-8240-fc81e1f2da5d", + "created_datetime": "2018-03-20T06:57:11.515261-05:00" + }, + "platform": "Illumina", + "file_size": 356198, + "md5sum": "e6a62a744fdc90562e0275b402bf533c", + "file_id": "8382eea2-d18b-415c-a224-fed6e6ffbbab", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2261-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "eec69ea9-ceb8-456a-aff4-41fb8a261e36", + "entity_id": "75e9506a-d007-4fb2-8bdd-7e7780653a63" + } + ], + "file_name": "0bc6e13f-37e2-4ca6-8db3-a57bbfccaa18.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_263_MirnaExpression3c8fce94-c7a0-4d12-a985-a848db817e1d_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2261-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_263_AlignedReads3c8fce94-c7a0-4d12-a985-a848db817e1d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 162782118, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "629887ed728d74046519ab311984adfe", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "ad7b932a-5073-4707-80f4-2420941c5ab6", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_263_MirnaExpressionWorkflow2140d6d0-48aa-4bbd-a835-f94cb7cdabfb_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "05043792-5cd5-4b9c-92ec-debe8ba521c9", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 50304, + "md5sum": "a8b2682a5c63383b9fc17ca1a317fdf1", + "file_id": "2127eee4-8fb3-41f3-a6b7-aa85591aab28", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-24-2261-01A-01R-1568-13", + "entity_type": "aliquot", + "case_id": "eec69ea9-ceb8-456a-aff4-41fb8a261e36", + "entity_id": "75e9506a-d007-4fb2-8bdd-7e7780653a63" + } + ], + "file_name": "0bc6e13f-37e2-4ca6-8db3-a57bbfccaa18.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_263_MirnaExpression3c8fce94-c7a0-4d12-a985-a848db817e1d_isoform_profiling", + "data_category": "Transcriptome Profiling", + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-24-2261-01A-01R-1568-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_263_AlignedReads3c8fce94-c7a0-4d12-a985-a848db817e1d", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 162782118, + "created_datetime": "2018-03-20T06:53:18.942635-05:00", + "md5sum": "629887ed728d74046519ab311984adfe", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "ad7b932a-5073-4707-80f4-2420941c5ab6", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_263_MirnaExpressionWorkflow2140d6d0-48aa-4bbd-a835-f94cb7cdabfb_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "05043792-5cd5-4b9c-92ec-debe8ba521c9", + "created_datetime": "2018-03-20T06:53:18.942635-05:00" + }, + "platform": "Illumina", + "file_size": 380874, + "md5sum": "0540fc6b03ab8a67fa60dec1daa1f7c2", + "file_id": "1fb59801-516b-4f6f-8897-9a61383d8f89", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-1661-01B-01R-1566-13", + "entity_type": "aliquot", + "case_id": "f8e9d538-7291-4fe7-b3f2-d01676a027f9", + "entity_id": "582e6ac5-273a-423d-9169-6393e1b79393" + } + ], + "file_name": "b3de131e-cfcc-4a2e-a4b4-6c759d3b1341.mirbase21.mirnas.quantification.txt", + "submitter_id": "mirna_swap_dr11_454_MirnaExpression1df0f621-5622-4f87-8cfa-0578b7abaf88_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "6ccfee1d-4c12-597f-b5fd-b82d9995220d", + "entity_submitter_id": "TCGA-09-1661-01B-01R-1566-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8843", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "582e6ac5-273a-423d-9169-6393e1b79393", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "b0194836-d807-5158-96dd-b88868ef3853", + "entity_submitter_id": "TCGA-09-1661-01B-01R-1566-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29703", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "582e6ac5-273a-423d-9169-6393e1b79393", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-1661-01B-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_454_AlignedReads1df0f621-5622-4f87-8cfa-0578b7abaf88", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 87922000, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "54a365b58430b325c8725e5ebb7235b5", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6a5db872-e91e-4e84-b64b-db89ff1480eb", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_454_MirnaExpressionWorkflowd6cbbce7-1cca-490f-9de9-9a5855aec828_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2d5b969a-1fd5-4c8b-b4e8-8df9fa4747ca", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 50223, + "md5sum": "be58600556f224a6049b99facd191967", + "file_id": "d4efbd0c-2c6d-4649-b2c1-9061d0799be5", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TXT", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "TCGA-09-1661-01B-01R-1566-13", + "entity_type": "aliquot", + "case_id": "f8e9d538-7291-4fe7-b3f2-d01676a027f9", + "entity_id": "582e6ac5-273a-423d-9169-6393e1b79393" + } + ], + "file_name": "b3de131e-cfcc-4a2e-a4b4-6c759d3b1341.mirbase21.isoforms.quantification.txt", + "submitter_id": "mirna_swap_dr11_454_MirnaExpression1df0f621-5622-4f87-8cfa-0578b7abaf88_isoform_profiling", + "data_category": "Transcriptome Profiling", + "annotations": [ + { + "annotation_id": "6ccfee1d-4c12-597f-b5fd-b82d9995220d", + "entity_submitter_id": "TCGA-09-1661-01B-01R-1566-13", + "notes": "RNA-seq:LOW 5/3 COVERAGE RATIO;HIGH MITOCHONDRIAL CONTENT", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:40:40.694077-05:00", + "submitter_id": "8843", + "state": "released", + "category": "Center QC failed", + "classification": "CenterNotification", + "entity_id": "582e6ac5-273a-423d-9169-6393e1b79393", + "created_datetime": "2012-07-20T00:00:00", + "status": "Approved" + }, + { + "annotation_id": "b0194836-d807-5158-96dd-b88868ef3853", + "entity_submitter_id": "TCGA-09-1661-01B-01R-1566-13", + "notes": "QC Warning- Expression quality metrics (e.g. 3-prime bias, high duplicate rate, genomic contamination, or low alignment rate) are well below average for this file, which should be used with caution, if at all, for expression analysis. However, other analyses, e.g. mutation and structural variant calling, may still give reliable result.", + "entity_type": "aliquot", + "updated_datetime": "2018-08-23T16:48:57.467171-05:00", + "submitter_id": "29703", + "state": "released", + "category": "Item flagged DNU", + "classification": "CenterNotification", + "entity_id": "582e6ac5-273a-423d-9169-6393e1b79393", + "created_datetime": "2015-12-11T00:00:00", + "status": "Approved" + } + ], + "analysis": { + "input_files": [ + { + "data_format": "BAM", + "access": "controlled", + "file_name": "TCGA-09-1661-01B-01R-1566-13_mirna_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "submitter_id": "mirna_swap_dr11_454_AlignedReads1df0f621-5622-4f87-8cfa-0578b7abaf88", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 87922000, + "created_datetime": "2018-03-20T07:13:23.430654-05:00", + "md5sum": "54a365b58430b325c8725e5ebb7235b5", + "updated_datetime": "2023-07-12T10:30:33.988062-05:00", + "file_id": "6a5db872-e91e-4e84-b64b-db89ff1480eb", + "data_type": "Aligned Reads", + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2018-09-10T15:07:38.324258-05:00", + "workflow_link": "https://github.com/NCI-GDC/gdc-dnaseq-cwl/blob/gdc-active-submission/workflows/mirnaseq/runner.cwl", + "submitter_id": "mirna_swap_dr11_454_MirnaExpressionWorkflowd6cbbce7-1cca-490f-9de9-9a5855aec828_pipeline:mirnaseq0.0.1", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2d5b969a-1fd5-4c8b-b4e8-8df9fa4747ca", + "created_datetime": "2018-03-20T07:13:23.430654-05:00" + }, + "platform": "Illumina", + "file_size": 260157, + "md5sum": "a649b59950a56fb3850506f147b9b016", + "file_id": "24ef1178-31a6-4573-a946-209800c91935", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0868-C56-85A-01R-A885-41", + "entity_type": "aliquot", + "case_id": "9c439d71-50e3-48d2-82a6-4ff0b4ce284a", + "entity_id": "ce32f341-254d-4827-924c-9a3c0bcca1c0" + } + ], + "file_name": "41bd2df3-9714-4471-a39b-5250a15c293e.mirnaseq.isoforms.quantification.txt", + "submitter_id": "473d456e-2949-4ebd-a9b2-6070d560bf09", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9773485888241541, + "total_reads": 12884716, + "access": "controlled", + "file_name": "ce32f341-254d-4827-924c-9a3c0bcca1c0_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005553966, + "proportion_reads_duplicated": 0, + "submitter_id": "e6390e82-5b76-4a73-8ac3-b6676e2c0abf", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 293967430, + "created_datetime": "2024-04-02T12:05:41.912941-05:00", + "average_base_quality": 36, + "md5sum": "905d06b7f8eeb1343abd26df7e7e68e7", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "fc9b8ab7-4412-41cd-abb9-8676d4207dd0", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 28, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "41bd2df3-9714-4471-a39b-5250a15c293e_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d8fecb7e-8585-4bda-841c-3437ccaadc84", + "created_datetime": "2024-04-02T12:55:15.898787-05:00" + }, + "platform": "Illumina", + "file_size": 521696, + "md5sum": "1ade4d83b472c06311313f024f29b054", + "file_id": "fff29d00-c8aa-4233-ba50-8afeb5aa306b", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-BROD-1117-C56-85A-01R-A88J-41", + "entity_type": "aliquot", + "case_id": "a8856f5a-594e-4ce6-86f2-4ddc5ec46df5", + "entity_id": "72071065-e32d-4cf1-be2d-e7d24e530cf1" + } + ], + "file_name": "0a4770f8-2ba0-4c6c-91ea-0e19058612ca.mirnaseq.mirnas.quantification.txt", + "submitter_id": "11b09a27-7d53-4aa0-8f24-5b7dd6c4320a", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9892413344154384, + "total_reads": 11674775, + "access": "controlled", + "file_name": "72071065-e32d-4cf1-be2d-e7d24e530cf1_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.006184521, + "proportion_reads_duplicated": 0, + "submitter_id": "22396433-cad8-4fc3-a3b9-902a6e509185", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 225779740, + "created_datetime": "2024-04-02T12:09:32.942169-05:00", + "average_base_quality": 36, + "md5sum": "f6431b5847cc2ed6b20d4c3abe14d84a", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "836c974c-9d5b-4191-b837-60c17135c119", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 27, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "0a4770f8-2ba0-4c6c-91ea-0e19058612ca_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "94f1765f-cf39-40db-9def-c355b867e0b1", + "created_datetime": "2024-04-02T12:50:13.391034-05:00" + }, + "platform": "Illumina", + "file_size": 50765, + "md5sum": "7af0cb88bb3f3e49795d062ad105d3f1", + "file_id": "3736871a-cea8-4c66-b80c-8c56d202fccd", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-BROD-1117-C56-85A-01R-A88J-41", + "entity_type": "aliquot", + "case_id": "a8856f5a-594e-4ce6-86f2-4ddc5ec46df5", + "entity_id": "72071065-e32d-4cf1-be2d-e7d24e530cf1" + } + ], + "file_name": "0a4770f8-2ba0-4c6c-91ea-0e19058612ca.mirnaseq.isoforms.quantification.txt", + "submitter_id": "508c80df-45c0-48fd-9ba3-8d4edb246b4f", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9892413344154384, + "total_reads": 11674775, + "access": "controlled", + "file_name": "72071065-e32d-4cf1-be2d-e7d24e530cf1_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.006184521, + "proportion_reads_duplicated": 0, + "submitter_id": "22396433-cad8-4fc3-a3b9-902a6e509185", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 225779740, + "created_datetime": "2024-04-02T12:09:32.942169-05:00", + "average_base_quality": 36, + "md5sum": "f6431b5847cc2ed6b20d4c3abe14d84a", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "836c974c-9d5b-4191-b837-60c17135c119", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 27, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "0a4770f8-2ba0-4c6c-91ea-0e19058612ca_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "94f1765f-cf39-40db-9def-c355b867e0b1", + "created_datetime": "2024-04-02T12:50:13.391034-05:00" + }, + "platform": "Illumina", + "file_size": 645310, + "md5sum": "fd6eb5c48e7e350c1850da3f31dc9e10", + "file_id": "3d45c639-675f-4e9f-b391-e1bdf06d4db3", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-BROD-1129-C56-85B-01R-A88J-41", + "entity_type": "aliquot", + "case_id": "ca7bc7fd-6ce1-4d63-b935-804ff4d3abc2", + "entity_id": "440c06bd-8ca1-4c74-b4db-52066b708645" + } + ], + "file_name": "fc62cd94-42d1-40ff-94b9-4b838122d26e.mirnaseq.mirnas.quantification.txt", + "submitter_id": "c9e93c84-9694-4e3c-81dc-3262cff9d452", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9740695915067507, + "total_reads": 17096684, + "access": "controlled", + "file_name": "440c06bd-8ca1-4c74-b4db-52066b708645_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.009136749, + "proportion_reads_duplicated": 0, + "submitter_id": "e745206e-9a2c-4e91-802a-1dcd4f4e5cd6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 298783834, + "created_datetime": "2024-04-02T12:24:22.271237-05:00", + "average_base_quality": 36, + "md5sum": "0490ee6d6943ac27d0aca2672ee141c7", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "d2298b27-7ec1-4466-b5d9-0b44fc7f6400", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 25, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "fc62cd94-42d1-40ff-94b9-4b838122d26e_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5373d682-301e-42a8-b880-c1cb71fa8cfe", + "created_datetime": "2024-04-02T13:48:12.117414-05:00" + }, + "platform": "Illumina", + "file_size": 50823, + "md5sum": "c5ed2e5b424ebcdce8cc631cc5d44b81", + "file_id": "e9e99950-e8eb-485c-b896-2cb42bde452c", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0768-C56-85B-01R-A88J-41", + "entity_type": "aliquot", + "case_id": "d341953c-f4a1-4c6b-ac1a-50f1b956c696", + "entity_id": "9db6e3a3-e9e1-449e-8ab1-8310f6c6c8c7" + } + ], + "file_name": "d17b7165-5159-4c16-9d91-cbf705aa2f2a.mirnaseq.isoforms.quantification.txt", + "submitter_id": "c86f0428-0d4c-4761-81cd-e9adcbfcb382", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.986040457113267, + "total_reads": 16352971, + "access": "controlled", + "file_name": "9db6e3a3-e9e1-449e-8ab1-8310f6c6c8c7_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005758039, + "proportion_reads_duplicated": 0, + "submitter_id": "5356dbbd-88ac-439e-b241-ee08293051a6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 271843752, + "created_datetime": "2024-04-02T12:07:51.392995-05:00", + "average_base_quality": 36, + "md5sum": "ce28b2cb21ddae0f5775c62817f90f35", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "729f3f75-a29e-45b8-b061-288f49b43940", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 25, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "d17b7165-5159-4c16-9d91-cbf705aa2f2a_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f0a46532-8d48-4e9a-938c-b9479e137d0a", + "created_datetime": "2024-04-02T13:51:34.577610-05:00" + }, + "platform": "Illumina", + "file_size": 717576, + "md5sum": "e54e030ee1fbfa2d6f101d8d4b05df26", + "file_id": "a25a563c-14bd-479e-9c59-81b7d275e8c3", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0768-C56-85O-01R-A88J-41", + "entity_type": "aliquot", + "case_id": "d341953c-f4a1-4c6b-ac1a-50f1b956c696", + "entity_id": "83ccf296-a4c8-40d8-88fc-e288366b3d15" + } + ], + "file_name": "f3f2634f-f137-460c-aab5-bca4162082d0.mirnaseq.isoforms.quantification.txt", + "submitter_id": "cbf03458-ef61-42c0-85d8-7eac23aa8767", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9806043666356106, + "total_reads": 20215014, + "access": "controlled", + "file_name": "83ccf296-a4c8-40d8-88fc-e288366b3d15_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.006929651, + "proportion_reads_duplicated": 0, + "submitter_id": "00040200-d05f-406b-be40-af7267bb13a4", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 324156397, + "created_datetime": "2024-04-02T12:14:45.286708-05:00", + "average_base_quality": 36, + "md5sum": "57824f502e3b5606e69a7365d5993140", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "730b1857-3b79-4bb1-b602-ef0d9e6f8361", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 24, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "f3f2634f-f137-460c-aab5-bca4162082d0_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2245e4cb-0c30-45e7-b31b-b4109a6ca126", + "created_datetime": "2024-04-02T13:51:25.288782-05:00" + }, + "platform": "Illumina", + "file_size": 501044, + "md5sum": "efe786e1ea92072ef949d5a3763d6920", + "file_id": "e1e5d8af-9a43-49b6-bb58-de9dd3cbea93", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0801-C56-85B-01R-A88J-41", + "entity_type": "aliquot", + "case_id": "e4b062d4-30a1-4661-b5ec-28c532cbad0d", + "entity_id": "293ddb2a-d10b-4555-b989-d73f6ec30007" + } + ], + "file_name": "99a72ef1-21f0-4623-8d6b-f3d0ffc7e6da.mirnaseq.mirnas.quantification.txt", + "submitter_id": "2e2b8619-b10b-429d-9971-286b541aa877", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9818053298321171, + "total_reads": 14449836, + "access": "controlled", + "file_name": "293ddb2a-d10b-4555-b989-d73f6ec30007_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.006466412, + "proportion_reads_duplicated": 0, + "submitter_id": "0b5b61a8-1bdc-4290-a960-332d5ff8d196", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 271640357, + "created_datetime": "2024-04-02T12:15:17.100097-05:00", + "average_base_quality": 36, + "md5sum": "708b6a7c16e040cee2504f3402fec1f0", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "06648fd8-6d31-490e-ab52-3c7848017f6a", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 28, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "99a72ef1-21f0-4623-8d6b-f3d0ffc7e6da_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7f7b2b54-9f94-4d8e-b79e-349f2dec184d", + "created_datetime": "2024-04-02T13:50:40.322166-05:00" + }, + "platform": "Illumina", + "file_size": 50609, + "md5sum": "3df6749fe9118ce71ab2fbcc08636a47", + "file_id": "ad6562ce-eeb9-4195-b24d-e325a644bd80", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0516-C56-85B-01R-A94Q-41", + "entity_type": "aliquot", + "case_id": "2df05263-7905-463f-9a78-3ece600174e5", + "entity_id": "a4d0c171-6141-40a5-a2b8-08d3528e5f3b" + } + ], + "file_name": "d60780c8-4ea9-4f1f-839d-20051dd9d315.mirnaseq.isoforms.quantification.txt", + "submitter_id": "e9d55fdb-c8f0-4cd1-854e-054014a16726", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9687020178995114, + "total_reads": 13568862, + "access": "controlled", + "file_name": "a4d0c171-6141-40a5-a2b8-08d3528e5f3b_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007955726, + "proportion_reads_duplicated": 0, + "submitter_id": "6c891239-9104-455d-bdeb-db94b3c87039", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 267595429, + "created_datetime": "2024-04-02T12:07:10.005174-05:00", + "average_base_quality": 36, + "md5sum": "46e704d05aa91d5b65cd4330a7cc118b", + "updated_datetime": "2025-03-31T16:34:59.906497-05:00", + "file_id": "3642df35-f858-48da-8246-a261f85ad4df", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 26, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-03-31T16:34:59.906497-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "d60780c8-4ea9-4f1f-839d-20051dd9d315_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a39781d7-d14a-48d3-a74f-5821850a003c", + "created_datetime": "2024-04-02T12:53:48.655445-05:00" + }, + "platform": "Illumina", + "file_size": 483365, + "md5sum": "56df7cdd8f1e58206bb3b93a847f8007", + "file_id": "03c2d687-d2f8-4664-850a-631a7ef5a76d", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0467-C56-85M-01R-A885-41", + "entity_type": "aliquot", + "case_id": "aa78feca-4396-4e6b-8621-84fafedf29c9", + "entity_id": "64beaa2e-e227-4fa1-b099-d88dec1c1d2c" + } + ], + "file_name": "99110560-03b9-4865-b3b4-ac2897f6655c.mirnaseq.isoforms.quantification.txt", + "submitter_id": "b50775b2-186c-49ec-a28b-ac19cbcccb9c", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.976006969851595, + "total_reads": 15117682, + "access": "controlled", + "file_name": "64beaa2e-e227-4fa1-b099-d88dec1c1d2c_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005724254, + "proportion_reads_duplicated": 0, + "submitter_id": "025b6605-70dc-4cdc-8dd1-824d4cf175e8", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 300249391, + "created_datetime": "2024-04-02T12:15:29.852698-05:00", + "average_base_quality": 36, + "md5sum": "8f9f4d5e524373371a9e15d894c8d32c", + "updated_datetime": "2025-03-31T16:34:59.906497-05:00", + "file_id": "fbfbb96b-0393-4c5f-b59f-4ab8536cf14f", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 30, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-03-31T16:34:59.906497-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "99110560-03b9-4865-b3b4-ac2897f6655c_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e1646f84-df42-47f4-aa2b-9e5dcba89c5c", + "created_datetime": "2024-04-02T12:50:52.694077-05:00" + }, + "platform": "Illumina", + "file_size": 696597, + "md5sum": "df9b92f2af506fce07c5433f555ad83e", + "file_id": "ecd4c2a7-ce91-4b22-b01c-ba64f896f151", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0516-C56-85B-01R-A94Q-41", + "entity_type": "aliquot", + "case_id": "2df05263-7905-463f-9a78-3ece600174e5", + "entity_id": "a4d0c171-6141-40a5-a2b8-08d3528e5f3b" + } + ], + "file_name": "d60780c8-4ea9-4f1f-839d-20051dd9d315.mirnaseq.mirnas.quantification.txt", + "submitter_id": "29c4d36e-3a54-44c6-a89e-d7b2d1b1c9d8", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9687020178995114, + "total_reads": 13568862, + "access": "controlled", + "file_name": "a4d0c171-6141-40a5-a2b8-08d3528e5f3b_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007955726, + "proportion_reads_duplicated": 0, + "submitter_id": "6c891239-9104-455d-bdeb-db94b3c87039", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 267595429, + "created_datetime": "2024-04-02T12:07:10.005174-05:00", + "average_base_quality": 36, + "md5sum": "46e704d05aa91d5b65cd4330a7cc118b", + "updated_datetime": "2025-03-31T16:34:59.906497-05:00", + "file_id": "3642df35-f858-48da-8246-a261f85ad4df", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 26, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-03-31T16:34:59.906497-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "d60780c8-4ea9-4f1f-839d-20051dd9d315_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a39781d7-d14a-48d3-a74f-5821850a003c", + "created_datetime": "2024-04-02T12:53:48.655445-05:00" + }, + "platform": "Illumina", + "file_size": 50439, + "md5sum": "55fdcfb3ee85fa9b7df07a92ccc768ee", + "file_id": "c685031c-4344-4ff1-96d4-9d22101d2c24", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-BROD-0476-C56-85M-01R-A82J-41", + "entity_type": "aliquot", + "case_id": "30eb4b39-20c9-4d1c-8d87-ec84971943fc", + "entity_id": "e6d1474f-46b0-4566-94d0-43b8b98786a7" + } + ], + "file_name": "68dcd330-1b92-455b-98dd-277752982324.mirnaseq.isoforms.quantification.txt", + "submitter_id": "d88f9102-6a71-47ac-a26f-561e05851977", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9807492051425201, + "total_reads": 16416465, + "access": "controlled", + "file_name": "e6d1474f-46b0-4566-94d0-43b8b98786a7_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.008032383, + "proportion_reads_duplicated": 0, + "submitter_id": "749e1681-c3f2-450d-a14f-4cca15dab3de", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 249501614, + "created_datetime": "2024-04-02T12:12:15.432620-05:00", + "average_base_quality": 36, + "md5sum": "171710894967266a8b1a92443d751b93", + "updated_datetime": "2025-03-31T16:34:59.906497-05:00", + "file_id": "8c0c715b-6d4a-4900-a07f-641ed242ebe3", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 25, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-03-31T16:34:59.906497-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "68dcd330-1b92-455b-98dd-277752982324_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2e13b8d8-c3bf-41f5-a64c-985ea5b6bb4b", + "created_datetime": "2024-04-02T12:54:28.975829-05:00" + }, + "platform": "Illumina", + "file_size": 493261, + "md5sum": "513d32887c6887ae07b8cee920f3d085", + "file_id": "64bad3e0-92d2-4c6b-bda0-edba27c66516", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0868-C56-85A-01R-A885-41", + "entity_type": "aliquot", + "case_id": "9c439d71-50e3-48d2-82a6-4ff0b4ce284a", + "entity_id": "ce32f341-254d-4827-924c-9a3c0bcca1c0" + } + ], + "file_name": "41bd2df3-9714-4471-a39b-5250a15c293e.mirnaseq.mirnas.quantification.txt", + "submitter_id": "ba7a80fe-9e7e-47ea-8107-7431693b7949", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9773485888241541, + "total_reads": 12884716, + "access": "controlled", + "file_name": "ce32f341-254d-4827-924c-9a3c0bcca1c0_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005553966, + "proportion_reads_duplicated": 0, + "submitter_id": "e6390e82-5b76-4a73-8ac3-b6676e2c0abf", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 293967430, + "created_datetime": "2024-04-02T12:05:41.912941-05:00", + "average_base_quality": 36, + "md5sum": "905d06b7f8eeb1343abd26df7e7e68e7", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "fc9b8ab7-4412-41cd-abb9-8676d4207dd0", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 28, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "41bd2df3-9714-4471-a39b-5250a15c293e_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d8fecb7e-8585-4bda-841c-3437ccaadc84", + "created_datetime": "2024-04-02T12:55:15.898787-05:00" + }, + "platform": "Illumina", + "file_size": 50553, + "md5sum": "23ac3b47cea4051795269d63da721f54", + "file_id": "99527841-1f59-4ab9-8022-a937af3b3eda", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0868-C56-06A-11R-A885-41", + "entity_type": "aliquot", + "case_id": "9c439d71-50e3-48d2-82a6-4ff0b4ce284a", + "entity_id": "4ee3cd7d-7ed7-46fe-9fd1-b0c9c151a179" + } + ], + "file_name": "d5d04a49-4d50-4890-91ef-32ec23f24b8b.mirnaseq.isoforms.quantification.txt", + "submitter_id": "7160e8e8-fb33-4a58-a97b-91d4977196b5", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9948385488963852, + "total_reads": 13755434, + "access": "controlled", + "file_name": "4ee3cd7d-7ed7-46fe-9fd1-b0c9c151a179_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.009256612, + "proportion_reads_duplicated": 0, + "submitter_id": "3291c0ef-35a0-4690-b4b9-6bc9c1b1f96f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 206202568, + "created_datetime": "2024-04-02T12:10:41.507431-05:00", + "average_base_quality": 36, + "md5sum": "e57b6048a774c30028ccb815d4940ce4", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "4a59957e-ca92-4241-96f9-f1e177327b1f", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 23, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "d5d04a49-4d50-4890-91ef-32ec23f24b8b_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a034040e-40b0-442c-9172-af699aa522c8", + "created_datetime": "2024-04-02T12:53:44.589432-05:00" + }, + "platform": "Illumina", + "file_size": 634252, + "md5sum": "9c44478732d767e146cfa07856490b7d", + "file_id": "8aef6504-dee4-4549-9fe8-3adb4716e421", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0853-C56-06A-11R-A885-41", + "entity_type": "aliquot", + "case_id": "a7364c7c-cc66-468d-8a6e-11cc58adf3d6", + "entity_id": "7f6ae301-d062-4ab6-b5ef-5a0c9919f8de" + } + ], + "file_name": "42b6beaf-9d3d-412d-8bb2-49ce227cd1fe.mirnaseq.isoforms.quantification.txt", + "submitter_id": "4deb8df4-eb3c-480e-aa28-938b587bd86a", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9883585770419216, + "total_reads": 24322628, + "access": "controlled", + "file_name": "7f6ae301-d062-4ab6-b5ef-5a0c9919f8de_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004878785, + "proportion_reads_duplicated": 0, + "submitter_id": "b611c3b3-bce9-43cc-bf5c-77e52f0a5ea7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 470574872, + "created_datetime": "2024-04-02T12:23:52.961879-05:00", + "average_base_quality": 36, + "md5sum": "61ff8247d4d736d4846477d81cacb3f9", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "7d7bb7a3-d134-42ff-b45e-63619c9e7968", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 24, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "42b6beaf-9d3d-412d-8bb2-49ce227cd1fe_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "6cd14f4f-26ea-4101-9d0c-1730408a4a0f", + "created_datetime": "2024-04-02T12:50:33.207336-05:00" + }, + "platform": "Illumina", + "file_size": 1173051, + "md5sum": "059490755cdddf25bdc59dcaa38b82c1", + "file_id": "0f1f422b-8008-42d5-b068-d941e510fdf2", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0853-C56-06A-11R-A885-41", + "entity_type": "aliquot", + "case_id": "a7364c7c-cc66-468d-8a6e-11cc58adf3d6", + "entity_id": "7f6ae301-d062-4ab6-b5ef-5a0c9919f8de" + } + ], + "file_name": "42b6beaf-9d3d-412d-8bb2-49ce227cd1fe.mirnaseq.mirnas.quantification.txt", + "submitter_id": "4d08b013-8717-449b-b975-39952dba82e3", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9883585770419216, + "total_reads": 24322628, + "access": "controlled", + "file_name": "7f6ae301-d062-4ab6-b5ef-5a0c9919f8de_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004878785, + "proportion_reads_duplicated": 0, + "submitter_id": "b611c3b3-bce9-43cc-bf5c-77e52f0a5ea7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 470574872, + "created_datetime": "2024-04-02T12:23:52.961879-05:00", + "average_base_quality": 36, + "md5sum": "61ff8247d4d736d4846477d81cacb3f9", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "7d7bb7a3-d134-42ff-b45e-63619c9e7968", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 24, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "42b6beaf-9d3d-412d-8bb2-49ce227cd1fe_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "6cd14f4f-26ea-4101-9d0c-1730408a4a0f", + "created_datetime": "2024-04-02T12:50:33.207336-05:00" + }, + "platform": "Illumina", + "file_size": 51071, + "md5sum": "9f05a02bff623be0762730ce52aa29f8", + "file_id": "77aa8fe0-a4ea-4004-8b0d-5abf4c9d3c4b", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0853-C56-07B-11R-A885-41", + "entity_type": "aliquot", + "case_id": "a7364c7c-cc66-468d-8a6e-11cc58adf3d6", + "entity_id": "395d3282-5561-4ff5-85a8-21fc011de5be" + } + ], + "file_name": "b0795825-67f0-434f-9c43-1e16c5193370.mirnaseq.mirnas.quantification.txt", + "submitter_id": "0c041103-3921-4add-a3c6-da2b63078867", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9900331178106268, + "total_reads": 59164841, + "access": "controlled", + "file_name": "395d3282-5561-4ff5-85a8-21fc011de5be_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004627482, + "proportion_reads_duplicated": 0, + "submitter_id": "2e1ff6be-841b-4f16-8530-64dece44d6a3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 1040868699, + "created_datetime": "2024-04-02T12:21:50.961493-05:00", + "average_base_quality": 36, + "md5sum": "ad2317cd558f45fbe4d3e980d9f6d7ef", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "206887a8-819b-4c8f-978a-a914d4ecc573", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 24, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "b0795825-67f0-434f-9c43-1e16c5193370_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5f57b696-0f03-4f69-9ef1-44d5c188272a", + "created_datetime": "2024-04-02T12:55:25.240208-05:00" + }, + "platform": "Illumina", + "file_size": 51352, + "md5sum": "dfb3e11b6259f41df25a3017d4a7209c", + "file_id": "652086d7-4ef9-4785-abba-2d83dcbcae28", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0853-C56-85B-01R-A885-41", + "entity_type": "aliquot", + "case_id": "a7364c7c-cc66-468d-8a6e-11cc58adf3d6", + "entity_id": "0e3d8eb3-2b78-45c4-a811-e2ad46022caa" + } + ], + "file_name": "f16225c7-5770-43ce-a136-b485c86598cc.mirnaseq.mirnas.quantification.txt", + "submitter_id": "87934f4a-8079-4d4b-8114-087ef2499741", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9897684614508396, + "total_reads": 18198827, + "access": "controlled", + "file_name": "0e3d8eb3-2b78-45c4-a811-e2ad46022caa_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.00488811, + "proportion_reads_duplicated": 0, + "submitter_id": "aa7e05db-8d9b-40ff-befd-d0206a8deb32", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 311631428, + "created_datetime": "2024-04-02T12:06:30.424159-05:00", + "average_base_quality": 36, + "md5sum": "7bd23e283f8b37aa65b0bea5681d0aa0", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "499e3900-51c1-4441-9ec6-bd4cfd0ffd81", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 25, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "f16225c7-5770-43ce-a136-b485c86598cc_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e986e6d1-f14d-489e-828f-5a43f1667f30", + "created_datetime": "2024-04-02T12:48:47.387482-05:00" + }, + "platform": "Illumina", + "file_size": 50958, + "md5sum": "1b4052e3ac14979390a2f0670d112746", + "file_id": "944922c0-7c97-4fd3-92eb-842d2bf6602d", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0768-C56-85O-01R-A88J-41", + "entity_type": "aliquot", + "case_id": "d341953c-f4a1-4c6b-ac1a-50f1b956c696", + "entity_id": "83ccf296-a4c8-40d8-88fc-e288366b3d15" + } + ], + "file_name": "f3f2634f-f137-460c-aab5-bca4162082d0.mirnaseq.mirnas.quantification.txt", + "submitter_id": "20c36958-a717-4e19-96ce-95dfb3403ec1", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9806043666356106, + "total_reads": 20215014, + "access": "controlled", + "file_name": "83ccf296-a4c8-40d8-88fc-e288366b3d15_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.006929651, + "proportion_reads_duplicated": 0, + "submitter_id": "00040200-d05f-406b-be40-af7267bb13a4", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 324156397, + "created_datetime": "2024-04-02T12:14:45.286708-05:00", + "average_base_quality": 36, + "md5sum": "57824f502e3b5606e69a7365d5993140", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "730b1857-3b79-4bb1-b602-ef0d9e6f8361", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 24, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "f3f2634f-f137-460c-aab5-bca4162082d0_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2245e4cb-0c30-45e7-b31b-b4109a6ca126", + "created_datetime": "2024-04-02T13:51:25.288782-05:00" + }, + "platform": "Illumina", + "file_size": 50770, + "md5sum": "2ad489f977727218caae6f5d514c64cd", + "file_id": "30a2f034-6f30-4bde-8ee6-09a84fc9c154", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0801-C56-85B-01R-A88J-41", + "entity_type": "aliquot", + "case_id": "e4b062d4-30a1-4661-b5ec-28c532cbad0d", + "entity_id": "293ddb2a-d10b-4555-b989-d73f6ec30007" + } + ], + "file_name": "99a72ef1-21f0-4623-8d6b-f3d0ffc7e6da.mirnaseq.isoforms.quantification.txt", + "submitter_id": "c51946a5-4e47-44a9-ade1-3fbf32ec1197", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9818053298321171, + "total_reads": 14449836, + "access": "controlled", + "file_name": "293ddb2a-d10b-4555-b989-d73f6ec30007_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.006466412, + "proportion_reads_duplicated": 0, + "submitter_id": "0b5b61a8-1bdc-4290-a960-332d5ff8d196", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 271640357, + "created_datetime": "2024-04-02T12:15:17.100097-05:00", + "average_base_quality": 36, + "md5sum": "708b6a7c16e040cee2504f3402fec1f0", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "06648fd8-6d31-490e-ab52-3c7848017f6a", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 28, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "99a72ef1-21f0-4623-8d6b-f3d0ffc7e6da_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7f7b2b54-9f94-4d8e-b79e-349f2dec184d", + "created_datetime": "2024-04-02T13:50:40.322166-05:00" + }, + "platform": "Illumina", + "file_size": 561611, + "md5sum": "83483cf6484a1b42b105fbbb3d5f76bb", + "file_id": "e5d00f31-018a-4d88-9069-6a3bf09fe679", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-WCMC-1074-C56-85A-01R-A88J-41", + "entity_type": "aliquot", + "case_id": "5538445e-03c2-4466-a09a-83d5a527b26e", + "entity_id": "18c07c7d-562f-4de2-81ad-978b460d5d1c" + } + ], + "file_name": "62d717d1-2ecb-4f2b-a904-8cb837c87cbc.mirnaseq.isoforms.quantification.txt", + "submitter_id": "1cce4421-2624-4c39-b949-36cbb1286048", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9553357990242357, + "total_reads": 12024216, + "access": "controlled", + "file_name": "18c07c7d-562f-4de2-81ad-978b460d5d1c_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.009937381, + "proportion_reads_duplicated": 0, + "submitter_id": "ad8b5634-10d5-475b-b87e-8a1e3e53f5e7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 232855750, + "created_datetime": "2024-04-02T12:02:43.304010-05:00", + "average_base_quality": 36, + "md5sum": "0db19c7a81b2b18f7794fa1442bd2265", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "83fb5c56-c792-4851-896b-cb9def5b1358", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 25, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "62d717d1-2ecb-4f2b-a904-8cb837c87cbc_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "16f60fa2-a5ba-4a87-bb53-9afef34e805d", + "created_datetime": "2024-04-02T12:56:45.177442-05:00" + }, + "platform": "Illumina", + "file_size": 490357, + "md5sum": "16f9375bd48869be91eaf8434f0a846e", + "file_id": "a608b7ce-dc3c-400a-9100-4d4463585f9f", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-WCMC-1074-C56-85A-01R-A88J-41", + "entity_type": "aliquot", + "case_id": "5538445e-03c2-4466-a09a-83d5a527b26e", + "entity_id": "18c07c7d-562f-4de2-81ad-978b460d5d1c" + } + ], + "file_name": "62d717d1-2ecb-4f2b-a904-8cb837c87cbc.mirnaseq.mirnas.quantification.txt", + "submitter_id": "036c8e30-de8b-4373-b82d-9102e1632ce9", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9553357990242357, + "total_reads": 12024216, + "access": "controlled", + "file_name": "18c07c7d-562f-4de2-81ad-978b460d5d1c_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.009937381, + "proportion_reads_duplicated": 0, + "submitter_id": "ad8b5634-10d5-475b-b87e-8a1e3e53f5e7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 232855750, + "created_datetime": "2024-04-02T12:02:43.304010-05:00", + "average_base_quality": 36, + "md5sum": "0db19c7a81b2b18f7794fa1442bd2265", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "83fb5c56-c792-4851-896b-cb9def5b1358", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 25, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "62d717d1-2ecb-4f2b-a904-8cb837c87cbc_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "16f60fa2-a5ba-4a87-bb53-9afef34e805d", + "created_datetime": "2024-04-02T12:56:45.177442-05:00" + }, + "platform": "Illumina", + "file_size": 50497, + "md5sum": "f120f004953d4860b66022df2d728f6f", + "file_id": "3a8aea9f-e23a-43fa-8b16-970317dc85d5", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0467-C56-85M-01R-A885-41", + "entity_type": "aliquot", + "case_id": "aa78feca-4396-4e6b-8621-84fafedf29c9", + "entity_id": "64beaa2e-e227-4fa1-b099-d88dec1c1d2c" + } + ], + "file_name": "99110560-03b9-4865-b3b4-ac2897f6655c.mirnaseq.mirnas.quantification.txt", + "submitter_id": "67a86e6b-9210-4a4a-bd81-0a3e58a0a96f", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.976006969851595, + "total_reads": 15117682, + "access": "controlled", + "file_name": "64beaa2e-e227-4fa1-b099-d88dec1c1d2c_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005724254, + "proportion_reads_duplicated": 0, + "submitter_id": "025b6605-70dc-4cdc-8dd1-824d4cf175e8", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 300249391, + "created_datetime": "2024-04-02T12:15:29.852698-05:00", + "average_base_quality": 36, + "md5sum": "8f9f4d5e524373371a9e15d894c8d32c", + "updated_datetime": "2025-03-31T16:34:59.906497-05:00", + "file_id": "fbfbb96b-0393-4c5f-b59f-4ab8536cf14f", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 30, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-03-31T16:34:59.906497-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "99110560-03b9-4865-b3b4-ac2897f6655c_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e1646f84-df42-47f4-aa2b-9e5dcba89c5c", + "created_datetime": "2024-04-02T12:50:52.694077-05:00" + }, + "platform": "Illumina", + "file_size": 50925, + "md5sum": "1ae46d57ecef06180eea3d2ebc0898ce", + "file_id": "e46a93e0-0f27-4e7e-83c3-55986533ef5f", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0467-C56-06A-11R-A885-41", + "entity_type": "aliquot", + "case_id": "aa78feca-4396-4e6b-8621-84fafedf29c9", + "entity_id": "836e7a6f-74fe-4581-9d39-18567dfe4ed4" + } + ], + "file_name": "100b356f-b4e6-4f47-8894-872a8d2294d1.mirnaseq.isoforms.quantification.txt", + "submitter_id": "84a4b7ad-b8dc-423d-aadc-788bfcdb24f0", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.985988102521269, + "total_reads": 32756520, + "access": "controlled", + "file_name": "836e7a6f-74fe-4581-9d39-18567dfe4ed4_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004175945, + "proportion_reads_duplicated": 0, + "submitter_id": "0fb52afa-a863-4138-b614-a3b5cb384d59", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 677035200, + "created_datetime": "2024-04-02T12:16:26.500141-05:00", + "average_base_quality": 34, + "md5sum": "cf505422bdbfd13fe01ac201238e5dac", + "updated_datetime": "2025-03-31T16:34:59.906497-05:00", + "file_id": "4259718a-6f2a-4236-91b7-697003a26278", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 24, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-03-31T16:34:59.906497-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "100b356f-b4e6-4f47-8894-872a8d2294d1_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "cc443020-b483-48db-a9b6-9e86fed921ef", + "created_datetime": "2024-04-02T13:47:51.407904-05:00" + }, + "platform": "Illumina", + "file_size": 1050968, + "md5sum": "62892c9579c82f811f5c28d8f3efd4a4", + "file_id": "c5458e6e-0fc5-445f-80e7-aa080ce72234", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0467-C56-06A-11R-A885-41", + "entity_type": "aliquot", + "case_id": "aa78feca-4396-4e6b-8621-84fafedf29c9", + "entity_id": "836e7a6f-74fe-4581-9d39-18567dfe4ed4" + } + ], + "file_name": "100b356f-b4e6-4f47-8894-872a8d2294d1.mirnaseq.mirnas.quantification.txt", + "submitter_id": "d3f7a8b4-aff7-4a01-a637-31ed88168b34", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.985988102521269, + "total_reads": 32756520, + "access": "controlled", + "file_name": "836e7a6f-74fe-4581-9d39-18567dfe4ed4_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004175945, + "proportion_reads_duplicated": 0, + "submitter_id": "0fb52afa-a863-4138-b614-a3b5cb384d59", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 677035200, + "created_datetime": "2024-04-02T12:16:26.500141-05:00", + "average_base_quality": 34, + "md5sum": "cf505422bdbfd13fe01ac201238e5dac", + "updated_datetime": "2025-03-31T16:34:59.906497-05:00", + "file_id": "4259718a-6f2a-4236-91b7-697003a26278", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 24, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-03-31T16:34:59.906497-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "100b356f-b4e6-4f47-8894-872a8d2294d1_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "cc443020-b483-48db-a9b6-9e86fed921ef", + "created_datetime": "2024-04-02T13:47:51.407904-05:00" + }, + "platform": "Illumina", + "file_size": 51110, + "md5sum": "f4838504b053e7f7512454df5d1db488", + "file_id": "63bdbfbf-f0cb-4c35-a1cb-e2c875e178fb", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-BROD-0476-C56-85M-01R-A82J-41", + "entity_type": "aliquot", + "case_id": "30eb4b39-20c9-4d1c-8d87-ec84971943fc", + "entity_id": "e6d1474f-46b0-4566-94d0-43b8b98786a7" + } + ], + "file_name": "68dcd330-1b92-455b-98dd-277752982324.mirnaseq.mirnas.quantification.txt", + "submitter_id": "f78a9fbe-2fa3-4dcb-9f18-e3b1acf15491", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9807492051425201, + "total_reads": 16416465, + "access": "controlled", + "file_name": "e6d1474f-46b0-4566-94d0-43b8b98786a7_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.008032383, + "proportion_reads_duplicated": 0, + "submitter_id": "749e1681-c3f2-450d-a14f-4cca15dab3de", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 249501614, + "created_datetime": "2024-04-02T12:12:15.432620-05:00", + "average_base_quality": 36, + "md5sum": "171710894967266a8b1a92443d751b93", + "updated_datetime": "2025-03-31T16:34:59.906497-05:00", + "file_id": "8c0c715b-6d4a-4900-a07f-641ed242ebe3", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 25, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-03-31T16:34:59.906497-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "68dcd330-1b92-455b-98dd-277752982324_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2e13b8d8-c3bf-41f5-a64c-985ea5b6bb4b", + "created_datetime": "2024-04-02T12:54:28.975829-05:00" + }, + "platform": "Illumina", + "file_size": 50616, + "md5sum": "165a8f5db94c910df10c242ddd8ae186", + "file_id": "6b674aa3-eb3a-4667-bd43-30c065c41c72", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0639-C56-85A-01R-A88J-41", + "entity_type": "aliquot", + "case_id": "4a10c499-7f11-49dc-b865-b6cbaf5b1df7", + "entity_id": "daa617e1-f3ce-487d-abab-c17d7c2bac1c" + } + ], + "file_name": "f8456da0-a9f1-42d8-ab76-3d3a5e6b2287.mirnaseq.isoforms.quantification.txt", + "submitter_id": "ab04a9bd-d5bc-42e3-978f-554bb514b787", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9828300996856202, + "total_reads": 15038177, + "access": "controlled", + "file_name": "daa617e1-f3ce-487d-abab-c17d7c2bac1c_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.006398812, + "proportion_reads_duplicated": 0, + "submitter_id": "8937d55a-a4bb-4baf-a6a5-a23e002448b3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 262545790, + "created_datetime": "2024-04-02T12:12:19.876382-05:00", + "average_base_quality": 36, + "md5sum": "ca2fa5ecc492038d9f284e1e7a4e04c5", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "99ebafc7-c044-479f-8b9a-000d4c3a826a", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 23, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "f8456da0-a9f1-42d8-ab76-3d3a5e6b2287_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f8891c4f-d12d-49e0-9106-f434804d3c36", + "created_datetime": "2024-04-02T13:52:24.469208-05:00" + }, + "platform": "Illumina", + "file_size": 632018, + "md5sum": "77f083ace0f96d3a266e9a2a711f3461", + "file_id": "628fbd32-0757-4044-b29a-296379ee5096", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0868-C56-06A-11R-A885-41", + "entity_type": "aliquot", + "case_id": "9c439d71-50e3-48d2-82a6-4ff0b4ce284a", + "entity_id": "4ee3cd7d-7ed7-46fe-9fd1-b0c9c151a179" + } + ], + "file_name": "d5d04a49-4d50-4890-91ef-32ec23f24b8b.mirnaseq.mirnas.quantification.txt", + "submitter_id": "cf29557a-1613-4a4e-8d9a-6cff77d365d2", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9948385488963852, + "total_reads": 13755434, + "access": "controlled", + "file_name": "4ee3cd7d-7ed7-46fe-9fd1-b0c9c151a179_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.009256612, + "proportion_reads_duplicated": 0, + "submitter_id": "3291c0ef-35a0-4690-b4b9-6bc9c1b1f96f", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 206202568, + "created_datetime": "2024-04-02T12:10:41.507431-05:00", + "average_base_quality": 36, + "md5sum": "e57b6048a774c30028ccb815d4940ce4", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "4a59957e-ca92-4241-96f9-f1e177327b1f", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 23, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "d5d04a49-4d50-4890-91ef-32ec23f24b8b_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "a034040e-40b0-442c-9172-af699aa522c8", + "created_datetime": "2024-04-02T12:53:44.589432-05:00" + }, + "platform": "Illumina", + "file_size": 50716, + "md5sum": "ceb2374349c488f54f617059b66a939d", + "file_id": "c7cc9cb9-c739-4bdb-a987-6a8074855598", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0853-C56-07B-11R-A885-41", + "entity_type": "aliquot", + "case_id": "a7364c7c-cc66-468d-8a6e-11cc58adf3d6", + "entity_id": "395d3282-5561-4ff5-85a8-21fc011de5be" + } + ], + "file_name": "b0795825-67f0-434f-9c43-1e16c5193370.mirnaseq.isoforms.quantification.txt", + "submitter_id": "f12521b5-a709-4416-8195-08c360d51f6c", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9900331178106268, + "total_reads": 59164841, + "access": "controlled", + "file_name": "395d3282-5561-4ff5-85a8-21fc011de5be_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004627482, + "proportion_reads_duplicated": 0, + "submitter_id": "2e1ff6be-841b-4f16-8530-64dece44d6a3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 1040868699, + "created_datetime": "2024-04-02T12:21:50.961493-05:00", + "average_base_quality": 36, + "md5sum": "ad2317cd558f45fbe4d3e980d9f6d7ef", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "206887a8-819b-4c8f-978a-a914d4ecc573", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 24, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "b0795825-67f0-434f-9c43-1e16c5193370_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5f57b696-0f03-4f69-9ef1-44d5c188272a", + "created_datetime": "2024-04-02T12:55:25.240208-05:00" + }, + "platform": "Illumina", + "file_size": 1542537, + "md5sum": "093e52f4b0eb7b64c9dda49b77121fff", + "file_id": "5132720a-88c1-41af-9c12-c446d475a393", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0853-C56-85B-01R-A885-41", + "entity_type": "aliquot", + "case_id": "a7364c7c-cc66-468d-8a6e-11cc58adf3d6", + "entity_id": "0e3d8eb3-2b78-45c4-a811-e2ad46022caa" + } + ], + "file_name": "f16225c7-5770-43ce-a136-b485c86598cc.mirnaseq.isoforms.quantification.txt", + "submitter_id": "415bba33-3567-4fee-8748-bd49b2ee7432", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9897684614508396, + "total_reads": 18198827, + "access": "controlled", + "file_name": "0e3d8eb3-2b78-45c4-a811-e2ad46022caa_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.00488811, + "proportion_reads_duplicated": 0, + "submitter_id": "aa7e05db-8d9b-40ff-befd-d0206a8deb32", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 311631428, + "created_datetime": "2024-04-02T12:06:30.424159-05:00", + "average_base_quality": 36, + "md5sum": "7bd23e283f8b37aa65b0bea5681d0aa0", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "499e3900-51c1-4441-9ec6-bd4cfd0ffd81", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 25, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "f16225c7-5770-43ce-a136-b485c86598cc_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e986e6d1-f14d-489e-828f-5a43f1667f30", + "created_datetime": "2024-04-02T12:48:47.387482-05:00" + }, + "platform": "Illumina", + "file_size": 887341, + "md5sum": "47804f7c646f9d75110939411c6a9fcc", + "file_id": "bc47bd7f-93df-4d26-9fc6-68edb7b2936f", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0853-C56-85D-01R-A885-41", + "entity_type": "aliquot", + "case_id": "a7364c7c-cc66-468d-8a6e-11cc58adf3d6", + "entity_id": "5912155b-e3da-4ca6-a46b-e5a9fbea2ce6" + } + ], + "file_name": "ee8e7cb7-88c3-4515-8357-a8ae3e648115.mirnaseq.mirnas.quantification.txt", + "submitter_id": "57bd797c-7a0f-4e77-814c-11e823d3709a", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9907458686548035, + "total_reads": 14652915, + "access": "controlled", + "file_name": "5912155b-e3da-4ca6-a46b-e5a9fbea2ce6_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005078867, + "proportion_reads_duplicated": 0, + "submitter_id": "2b50392f-e075-4ed7-9ab9-bab086f81066", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 246959845, + "created_datetime": "2024-04-02T12:13:29.891550-05:00", + "average_base_quality": 36, + "md5sum": "eb27d4d96dd00e5defc766f5b41fa962", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "15590b87-3c5b-4b13-9560-fa46620dfabc", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 25, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "ee8e7cb7-88c3-4515-8357-a8ae3e648115_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7f7537dd-6625-4ed4-9429-8e6353fc5193", + "created_datetime": "2024-04-02T12:48:52.553062-05:00" + }, + "platform": "Illumina", + "file_size": 50885, + "md5sum": "dd6fd535fb5900a88a4fdfe1838dd37a", + "file_id": "8338b7f9-e8d7-47ad-935e-7901af0f1a1a", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0853-C56-85D-01R-A885-41", + "entity_type": "aliquot", + "case_id": "a7364c7c-cc66-468d-8a6e-11cc58adf3d6", + "entity_id": "5912155b-e3da-4ca6-a46b-e5a9fbea2ce6" + } + ], + "file_name": "ee8e7cb7-88c3-4515-8357-a8ae3e648115.mirnaseq.isoforms.quantification.txt", + "submitter_id": "e72c2d5a-bc19-4764-bf08-69f7243c04bc", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9907458686548035, + "total_reads": 14652915, + "access": "controlled", + "file_name": "5912155b-e3da-4ca6-a46b-e5a9fbea2ce6_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005078867, + "proportion_reads_duplicated": 0, + "submitter_id": "2b50392f-e075-4ed7-9ab9-bab086f81066", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 246959845, + "created_datetime": "2024-04-02T12:13:29.891550-05:00", + "average_base_quality": 36, + "md5sum": "eb27d4d96dd00e5defc766f5b41fa962", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "15590b87-3c5b-4b13-9560-fa46620dfabc", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 25, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "ee8e7cb7-88c3-4515-8357-a8ae3e648115_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "7f7537dd-6625-4ed4-9429-8e6353fc5193", + "created_datetime": "2024-04-02T12:48:52.553062-05:00" + }, + "platform": "Illumina", + "file_size": 785692, + "md5sum": "71039e8508b810c48b0172fbe4c9e77d", + "file_id": "e115ec61-3a86-47b2-b8aa-f29d31031a3e", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0853-C56-07A-11R-A885-41", + "entity_type": "aliquot", + "case_id": "a7364c7c-cc66-468d-8a6e-11cc58adf3d6", + "entity_id": "72bd450c-a2f9-49ba-8ff6-d94cb21e0959" + } + ], + "file_name": "4f065202-1678-436b-9236-6bd407b3b12d.mirnaseq.isoforms.quantification.txt", + "submitter_id": "c40babfe-7cda-4669-8d07-288fff1fbdf8", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9866537529471392, + "total_reads": 85283975, + "access": "controlled", + "file_name": "72bd450c-a2f9-49ba-8ff6-d94cb21e0959_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.004902771, + "proportion_reads_duplicated": 0, + "submitter_id": "b9b4e8a1-a4c7-4b6d-971f-8a2b65443453", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 1552009560, + "created_datetime": "2024-04-02T12:14:49.784829-05:00", + "average_base_quality": 36, + "md5sum": "5e8d07ee90a7ae60e81d2964a8f395a5", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "b63d7c30-7db8-4378-9117-a7fd7ae6353e", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 24, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "4f065202-1678-436b-9236-6bd407b3b12d_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "d2ea1ba3-38a7-47aa-a57f-9e75edbe6e1a", + "created_datetime": "2024-04-02T12:52:13.219474-05:00" + }, + "platform": "Illumina", + "file_size": 1691716, + "md5sum": "54267373df5e7f01e9eefb131e28d0bd", + "file_id": "f145e0d7-c567-488c-864f-c52536489f79", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0765-C56-85P-01R-A88J-41", + "entity_type": "aliquot", + "case_id": "d2d0522a-bad8-4282-b67d-bed52e7efab4", + "entity_id": "7cde7280-5f39-4491-869d-b375dc2e9ccc" + } + ], + "file_name": "110de312-1030-4a49-bfe3-30908efc35d0.mirnaseq.isoforms.quantification.txt", + "submitter_id": "510fe6b2-7e81-42ed-8740-9a71dce2244d", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9700019304041242, + "total_reads": 18514258, + "access": "controlled", + "file_name": "7cde7280-5f39-4491-869d-b375dc2e9ccc_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007074196, + "proportion_reads_duplicated": 0, + "submitter_id": "9bc7d7ac-ca33-4fdc-bfb0-204a97232bb0", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 311989882, + "created_datetime": "2024-04-02T12:16:44.367057-05:00", + "average_base_quality": 36, + "md5sum": "9a14e7ffc9d77e2ac641a4aa2e913608", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "dbca52d3-a8c4-4343-949f-595917fcde1f", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 25, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "110de312-1030-4a49-bfe3-30908efc35d0_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5106868e-08a4-46d5-8785-373b5fce0d6a", + "created_datetime": "2024-04-02T13:51:17.665089-05:00" + }, + "platform": "Illumina", + "file_size": 605997, + "md5sum": "5eafbceb77c9f7130f105cc5a3bb4c47", + "file_id": "53fe998f-200d-4f18-be9f-1481db2189ed", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-BROD-1129-C56-85B-01R-A88J-41", + "entity_type": "aliquot", + "case_id": "ca7bc7fd-6ce1-4d63-b935-804ff4d3abc2", + "entity_id": "440c06bd-8ca1-4c74-b4db-52066b708645" + } + ], + "file_name": "fc62cd94-42d1-40ff-94b9-4b838122d26e.mirnaseq.isoforms.quantification.txt", + "submitter_id": "d023e9b0-e315-456d-9098-33d3881fac30", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9740695915067507, + "total_reads": 17096684, + "access": "controlled", + "file_name": "440c06bd-8ca1-4c74-b4db-52066b708645_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.009136749, + "proportion_reads_duplicated": 0, + "submitter_id": "e745206e-9a2c-4e91-802a-1dcd4f4e5cd6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 298783834, + "created_datetime": "2024-04-02T12:24:22.271237-05:00", + "average_base_quality": 36, + "md5sum": "0490ee6d6943ac27d0aca2672ee141c7", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "d2298b27-7ec1-4466-b5d9-0b44fc7f6400", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 25, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "fc62cd94-42d1-40ff-94b9-4b838122d26e_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5373d682-301e-42a8-b880-c1cb71fa8cfe", + "created_datetime": "2024-04-02T13:48:12.117414-05:00" + }, + "platform": "Illumina", + "file_size": 642850, + "md5sum": "5c4446eca39f6d74a4af6d711faa8625", + "file_id": "3da5cb80-f24d-49e2-b8d6-ef461559fd2b", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0768-C56-85N-01R-A88J-41", + "entity_type": "aliquot", + "case_id": "d341953c-f4a1-4c6b-ac1a-50f1b956c696", + "entity_id": "e0a1903c-48d2-48e6-8476-8740521ee4e0" + } + ], + "file_name": "c1574073-aa1e-4a6f-89d5-567031a63940.mirnaseq.mirnas.quantification.txt", + "submitter_id": "ede35172-68ef-4710-91ef-8e7b779e7927", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9856997667262131, + "total_reads": 15832469, + "access": "controlled", + "file_name": "e0a1903c-48d2-48e6-8476-8740521ee4e0_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005485239, + "proportion_reads_duplicated": 0, + "submitter_id": "fbb007ee-e71a-49cf-99ca-0fa4c8e9522c", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 271319722, + "created_datetime": "2024-04-02T12:15:48.813557-05:00", + "average_base_quality": 36, + "md5sum": "ba70466bdacbebc58f1b736605de7dba", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "84c58d93-a1f8-4ebe-9b0c-907911169edf", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 26, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "c1574073-aa1e-4a6f-89d5-567031a63940_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "e3d3f797-2fba-4147-a38e-c692340be54f", + "created_datetime": "2024-04-02T13:55:19.642972-05:00" + }, + "platform": "Illumina", + "file_size": 50595, + "md5sum": "3aaa8799d989547f570ac6ab7ba614d9", + "file_id": "dba14e53-5cbc-450b-aae7-1f51c14e1589", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0768-C56-85B-01R-A88J-41", + "entity_type": "aliquot", + "case_id": "d341953c-f4a1-4c6b-ac1a-50f1b956c696", + "entity_id": "9db6e3a3-e9e1-449e-8ab1-8310f6c6c8c7" + } + ], + "file_name": "d17b7165-5159-4c16-9d91-cbf705aa2f2a.mirnaseq.mirnas.quantification.txt", + "submitter_id": "c41b6d6a-0257-4e09-8659-de31ab410dd6", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.986040457113267, + "total_reads": 16352971, + "access": "controlled", + "file_name": "9db6e3a3-e9e1-449e-8ab1-8310f6c6c8c7_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005758039, + "proportion_reads_duplicated": 0, + "submitter_id": "5356dbbd-88ac-439e-b241-ee08293051a6", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 271843752, + "created_datetime": "2024-04-02T12:07:51.392995-05:00", + "average_base_quality": 36, + "md5sum": "ce28b2cb21ddae0f5775c62817f90f35", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "729f3f75-a29e-45b8-b061-288f49b43940", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 25, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "d17b7165-5159-4c16-9d91-cbf705aa2f2a_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "f0a46532-8d48-4e9a-938c-b9479e137d0a", + "created_datetime": "2024-04-02T13:51:34.577610-05:00" + }, + "platform": "Illumina", + "file_size": 50837, + "md5sum": "df9058108b101b15bf32fc190d07ea7a", + "file_id": "d93fbcbe-0d45-47e6-9950-69869f8d4226", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-WCMC-1074-C56-01A-01R-A94R-41", + "entity_type": "aliquot", + "case_id": "5538445e-03c2-4466-a09a-83d5a527b26e", + "entity_id": "288d99d2-296d-4f5f-9966-fa307f8072b5" + } + ], + "file_name": "d4a02d52-9fd2-40f3-ad2b-b7774fc90526.mirnaseq.mirnas.quantification.txt", + "submitter_id": "f41bc8df-184a-43b0-9a8e-c566f2f9cae0", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9869628138311892, + "total_reads": 11867208, + "access": "controlled", + "file_name": "288d99d2-296d-4f5f-9966-fa307f8072b5_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.013511, + "proportion_reads_duplicated": 0, + "submitter_id": "19758e2e-bea3-4cff-8335-9de0a459d2a5", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 194672680, + "created_datetime": "2024-04-02T12:14:18.896126-05:00", + "average_base_quality": 36, + "md5sum": "1fd9b7e9b00b8c51bc833c24e39a7170", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "cbd4ac24-8370-468d-a016-1ba93b77708f", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "d4a02d52-9fd2-40f3-ad2b-b7774fc90526_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "fdfc4afc-2994-4f56-9f6e-061cd126608a", + "created_datetime": "2024-04-02T13:51:31.178653-05:00" + }, + "platform": "Illumina", + "file_size": 50794, + "md5sum": "fe973766fa398f659606211b2b342993", + "file_id": "769a368c-797b-4eda-8a1d-1d478ed43547", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-BROD-0650-C56-06A-01R-A885-41", + "entity_type": "aliquot", + "case_id": "05cbd57f-0c12-486e-8ced-edb9ed3cbbb0", + "entity_id": "ee5ae31f-6f43-451e-950d-8881b3459174" + } + ], + "file_name": "e6717ec1-5854-4b60-9483-3bd64d43b2fe.mirnaseq.mirnas.quantification.txt", + "submitter_id": "12678253-71ea-4f03-9216-3fd21eda31dd", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.990831798283243, + "total_reads": 16912586, + "access": "controlled", + "file_name": "ee5ae31f-6f43-451e-950d-8881b3459174_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005583993, + "proportion_reads_duplicated": 0, + "submitter_id": "7d705b79-8d30-4563-ac3b-5bb25e56dcf7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 259095873, + "created_datetime": "2024-04-02T12:08:19.477959-05:00", + "average_base_quality": 36, + "md5sum": "f6996d057aeb241c1e4374705fa13f5e", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "a69fd308-9c50-4f5f-9172-8926c6d77f2e", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 24, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "e6717ec1-5854-4b60-9483-3bd64d43b2fe_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "35417580-0119-4ec6-85f8-874a239938fc", + "created_datetime": "2024-04-02T12:49:32.878955-05:00" + }, + "platform": "Illumina", + "file_size": 50810, + "md5sum": "36381efe2217cdde747c945983edad64", + "file_id": "b85596d2-efb8-4b29-a8bc-27c06f607de4", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0818-C56-85P-01R-A885-41", + "entity_type": "aliquot", + "case_id": "1bfa0189-6e43-4d76-928c-026673ec775e", + "entity_id": "a0a9fd27-7a6a-4562-987d-88436fa242b0" + } + ], + "file_name": "66510711-8197-481d-b071-89dc4a3d8f35.mirnaseq.mirnas.quantification.txt", + "submitter_id": "974ed4a8-1cae-46cd-a94b-16d7cf00ca07", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9875289093998988, + "total_reads": 39898355, + "access": "controlled", + "file_name": "a0a9fd27-7a6a-4562-987d-88436fa242b0_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005813162, + "proportion_reads_duplicated": 0, + "submitter_id": "08cfbadf-3515-4d7b-b30d-a322d0c55bf7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 595736809, + "created_datetime": "2024-04-02T12:21:37.707410-05:00", + "average_base_quality": 36, + "md5sum": "f3c40d2a0386a024edffe2bb1e5a0484", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "cb3105eb-dd09-4c28-8ba6-6bc856d40e40", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 25, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "66510711-8197-481d-b071-89dc4a3d8f35_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "53bb7e3c-deab-4229-a504-20936fc8fb54", + "created_datetime": "2024-04-02T13:51:45.769576-05:00" + }, + "platform": "Illumina", + "file_size": 51072, + "md5sum": "1f943970f04bb18fae130d076028377c", + "file_id": "a02963f1-61f9-4c3d-bc09-343b29145d5f", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-BROD-0650-C56-85N-01R-A885-41", + "entity_type": "aliquot", + "case_id": "05cbd57f-0c12-486e-8ced-edb9ed3cbbb0", + "entity_id": "823f971b-15e8-4261-89be-6b06e7a2ddd2" + } + ], + "file_name": "7050665c-3623-4d2c-ba18-6659eb94472b.mirnaseq.mirnas.quantification.txt", + "submitter_id": "5911a229-9cdf-4917-8753-8f62bb4e6244", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9765523574569893, + "total_reads": 10009663, + "access": "controlled", + "file_name": "823f971b-15e8-4261-89be-6b06e7a2ddd2_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007434031, + "proportion_reads_duplicated": 0, + "submitter_id": "e8b1d02a-f239-4609-be2c-7f47e7cdfaf3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 169492666, + "created_datetime": "2024-04-02T12:13:07.088885-05:00", + "average_base_quality": 36, + "md5sum": "cd77e800669844b988bb4cf93fb75316", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "680aacd7-0df3-4e11-8154-a5b9ea11c046", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 25, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "7050665c-3623-4d2c-ba18-6659eb94472b_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2412d52f-db41-4466-be46-3b67313630a6", + "created_datetime": "2024-04-02T13:50:33.576871-05:00" + }, + "platform": "Illumina", + "file_size": 50644, + "md5sum": "9dab582c062b2beab548645a0fc479ba", + "file_id": "e7ddbc2c-df6a-46ff-80e5-33ff8ccc3dae", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-BROD-0650-C56-85N-01R-A885-41", + "entity_type": "aliquot", + "case_id": "05cbd57f-0c12-486e-8ced-edb9ed3cbbb0", + "entity_id": "823f971b-15e8-4261-89be-6b06e7a2ddd2" + } + ], + "file_name": "7050665c-3623-4d2c-ba18-6659eb94472b.mirnaseq.isoforms.quantification.txt", + "submitter_id": "45040fca-a250-4d87-af06-022a38577874", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9765523574569893, + "total_reads": 10009663, + "access": "controlled", + "file_name": "823f971b-15e8-4261-89be-6b06e7a2ddd2_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007434031, + "proportion_reads_duplicated": 0, + "submitter_id": "e8b1d02a-f239-4609-be2c-7f47e7cdfaf3", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 169492666, + "created_datetime": "2024-04-02T12:13:07.088885-05:00", + "average_base_quality": 36, + "md5sum": "cd77e800669844b988bb4cf93fb75316", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "680aacd7-0df3-4e11-8154-a5b9ea11c046", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 25, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "7050665c-3623-4d2c-ba18-6659eb94472b_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "2412d52f-db41-4466-be46-3b67313630a6", + "created_datetime": "2024-04-02T13:50:33.576871-05:00" + }, + "platform": "Illumina", + "file_size": 433227, + "md5sum": "41d2fbb24f5f8d743b6b914f64549b4d", + "file_id": "3f67c103-fbb2-4bab-97f2-ab60da1751d3", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-WCMC-0673-C56-01A-10R-A85D-41", + "entity_type": "aliquot", + "case_id": "0bcca666-3c62-4eb9-a47c-93bb7c020ad6", + "entity_id": "bc998cf2-52e8-4b2b-b352-7f37c74a3312" + } + ], + "file_name": "4fbb2e62-35bd-4a09-8d7b-9b25ba1de902.mirnaseq.mirnas.quantification.txt", + "submitter_id": "ca4f5dd7-d272-4821-890a-e1c0800efb25", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9871373544382699, + "total_reads": 11405041, + "access": "controlled", + "file_name": "bc998cf2-52e8-4b2b-b352-7f37c74a3312_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.0133534, + "proportion_reads_duplicated": 0, + "submitter_id": "5694745f-cbcb-4ad3-8ce1-f81af24ad81b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 195363566, + "created_datetime": "2024-04-02T12:18:30.386010-05:00", + "average_base_quality": 36, + "md5sum": "7198db127844090ce396a0a2cee92670", + "updated_datetime": "2024-07-12T14:21:22.363574-05:00", + "file_id": "97a61db1-6d94-4fed-8bdc-0cb1f7beaec0", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 23, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2024-07-12T14:21:22.363574-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "4fbb2e62-35bd-4a09-8d7b-9b25ba1de902_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1ecdd034-9827-42e0-87dd-3a2d0e7d7cd5", + "created_datetime": "2024-04-02T12:56:47.847093-05:00" + }, + "platform": "Illumina", + "file_size": 50791, + "md5sum": "505dc9961ede04d8c1f364cf0c49bcab", + "file_id": "0f02b60d-fafc-4fac-b6c4-2a531a8316b4", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0818-C56-85P-01R-A885-41", + "entity_type": "aliquot", + "case_id": "1bfa0189-6e43-4d76-928c-026673ec775e", + "entity_id": "a0a9fd27-7a6a-4562-987d-88436fa242b0" + } + ], + "file_name": "66510711-8197-481d-b071-89dc4a3d8f35.mirnaseq.isoforms.quantification.txt", + "submitter_id": "ca1e8020-a975-4357-ad68-46ad33abbb8f", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9875289093998988, + "total_reads": 39898355, + "access": "controlled", + "file_name": "a0a9fd27-7a6a-4562-987d-88436fa242b0_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005813162, + "proportion_reads_duplicated": 0, + "submitter_id": "08cfbadf-3515-4d7b-b30d-a322d0c55bf7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 595736809, + "created_datetime": "2024-04-02T12:21:37.707410-05:00", + "average_base_quality": 36, + "md5sum": "f3c40d2a0386a024edffe2bb1e5a0484", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "cb3105eb-dd09-4c28-8ba6-6bc856d40e40", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 25, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "66510711-8197-481d-b071-89dc4a3d8f35_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "53bb7e3c-deab-4229-a504-20936fc8fb54", + "created_datetime": "2024-04-02T13:51:45.769576-05:00" + }, + "platform": "Illumina", + "file_size": 938989, + "md5sum": "6ae9b7aef3ca173fefff0585a1b754c8", + "file_id": "b99f73d1-353f-4338-857c-75cab69c2a37", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-BROD-0958-C56-85B-01R-A88J-41", + "entity_type": "aliquot", + "case_id": "5fd76dd8-87e1-422d-bac2-63e447ca3ba4", + "entity_id": "567c3683-fb4a-4f1d-acbf-f74e8c5c2e88" + } + ], + "file_name": "afa25f5f-eb4d-4f0e-ae49-320b7ce604df.mirnaseq.mirnas.quantification.txt", + "submitter_id": "20f32504-41f2-47b7-84a9-231fe92467f0", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9713134336525773, + "total_reads": 15313579, + "access": "controlled", + "file_name": "567c3683-fb4a-4f1d-acbf-f74e8c5c2e88_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007570665, + "proportion_reads_duplicated": 0, + "submitter_id": "b17f8969-4f32-4c52-952f-257fb100dd44", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 306084281, + "created_datetime": "2024-04-02T12:18:59.455204-05:00", + "average_base_quality": 36, + "md5sum": "8e584c1bfd6abffd1b033251864d0ef7", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "cb38a81e-ab28-4dc0-9d86-69d84f791481", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 27, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "afa25f5f-eb4d-4f0e-ae49-320b7ce604df_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0d92c9a7-e989-4309-90c7-ab7fdc118b11", + "created_datetime": "2024-04-02T12:57:12.801243-05:00" + }, + "platform": "Illumina", + "file_size": 50930, + "md5sum": "623e34ddf4a1fe101dcc5660ad131cf2", + "file_id": "2f68765d-2ac7-4496-bba7-c0912a3741b4", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-WCMC-1074-C56-01A-01R-A94R-41", + "entity_type": "aliquot", + "case_id": "5538445e-03c2-4466-a09a-83d5a527b26e", + "entity_id": "288d99d2-296d-4f5f-9966-fa307f8072b5" + } + ], + "file_name": "d4a02d52-9fd2-40f3-ad2b-b7774fc90526.mirnaseq.isoforms.quantification.txt", + "submitter_id": "7f1a8596-d030-4d88-a805-ef22f87f3cae", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9869628138311892, + "total_reads": 11867208, + "access": "controlled", + "file_name": "288d99d2-296d-4f5f-9966-fa307f8072b5_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.013511, + "proportion_reads_duplicated": 0, + "submitter_id": "19758e2e-bea3-4cff-8335-9de0a459d2a5", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 194672680, + "created_datetime": "2024-04-02T12:14:18.896126-05:00", + "average_base_quality": 36, + "md5sum": "1fd9b7e9b00b8c51bc833c24e39a7170", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "cbd4ac24-8370-468d-a016-1ba93b77708f", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 22, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "d4a02d52-9fd2-40f3-ad2b-b7774fc90526_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "fdfc4afc-2994-4f56-9f6e-061cd126608a", + "created_datetime": "2024-04-02T13:51:31.178653-05:00" + }, + "platform": "Illumina", + "file_size": 629329, + "md5sum": "ba1bc7c7ab62acb4aa57c8a4605d2654", + "file_id": "8017b394-4fc0-4009-8f58-30d83e148dcf", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-BROD-0650-C56-06A-01R-A885-41", + "entity_type": "aliquot", + "case_id": "05cbd57f-0c12-486e-8ced-edb9ed3cbbb0", + "entity_id": "ee5ae31f-6f43-451e-950d-8881b3459174" + } + ], + "file_name": "e6717ec1-5854-4b60-9483-3bd64d43b2fe.mirnaseq.isoforms.quantification.txt", + "submitter_id": "388ccd86-56bb-42dc-a06d-a6ce127b081a", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.990831798283243, + "total_reads": 16912586, + "access": "controlled", + "file_name": "ee5ae31f-6f43-451e-950d-8881b3459174_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005583993, + "proportion_reads_duplicated": 0, + "submitter_id": "7d705b79-8d30-4563-ac3b-5bb25e56dcf7", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 259095873, + "created_datetime": "2024-04-02T12:08:19.477959-05:00", + "average_base_quality": 36, + "md5sum": "f6996d057aeb241c1e4374705fa13f5e", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "a69fd308-9c50-4f5f-9172-8926c6d77f2e", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 24, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "e6717ec1-5854-4b60-9483-3bd64d43b2fe_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "35417580-0119-4ec6-85f8-874a239938fc", + "created_datetime": "2024-04-02T12:49:32.878955-05:00" + }, + "platform": "Illumina", + "file_size": 757621, + "md5sum": "5769cc547dd1a8f161177a4c0f0dded2", + "file_id": "1d1ec4e9-6e9e-491f-aa35-98e5ccf511d9", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-WCMC-0673-C56-01A-10R-A85D-41", + "entity_type": "aliquot", + "case_id": "0bcca666-3c62-4eb9-a47c-93bb7c020ad6", + "entity_id": "bc998cf2-52e8-4b2b-b352-7f37c74a3312" + } + ], + "file_name": "4fbb2e62-35bd-4a09-8d7b-9b25ba1de902.mirnaseq.isoforms.quantification.txt", + "submitter_id": "3621dea2-d391-432f-9c2d-a72ed9f20475", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9871373544382699, + "total_reads": 11405041, + "access": "controlled", + "file_name": "bc998cf2-52e8-4b2b-b352-7f37c74a3312_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.0133534, + "proportion_reads_duplicated": 0, + "submitter_id": "5694745f-cbcb-4ad3-8ce1-f81af24ad81b", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 195363566, + "created_datetime": "2024-04-02T12:18:30.386010-05:00", + "average_base_quality": 36, + "md5sum": "7198db127844090ce396a0a2cee92670", + "updated_datetime": "2024-07-12T14:21:22.363574-05:00", + "file_id": "97a61db1-6d94-4fed-8bdc-0cb1f7beaec0", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 23, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2024-07-12T14:21:22.363574-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "4fbb2e62-35bd-4a09-8d7b-9b25ba1de902_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "1ecdd034-9827-42e0-87dd-3a2d0e7d7cd5", + "created_datetime": "2024-04-02T12:56:47.847093-05:00" + }, + "platform": "Illumina", + "file_size": 665424, + "md5sum": "a48aaa200e27347aa56a21f68c304277", + "file_id": "f3af7d05-7eab-4f87-a1cb-7827ea07d9bf", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0818-C56-06A-11R-A885-41", + "entity_type": "aliquot", + "case_id": "1bfa0189-6e43-4d76-928c-026673ec775e", + "entity_id": "c70b0dca-2499-4721-b7b7-313f86229269" + } + ], + "file_name": "9fb875c6-d3a9-4d36-b84a-a4bd8cc7eb5c.mirnaseq.isoforms.quantification.txt", + "submitter_id": "212e0d24-0bbd-4261-8eeb-e881ec9338ef", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9938344122292353, + "total_reads": 15150056, + "access": "controlled", + "file_name": "c70b0dca-2499-4721-b7b7-313f86229269_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005960307, + "proportion_reads_duplicated": 0, + "submitter_id": "ea867c53-b179-4ec0-b241-c51f313777d2", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 223799885, + "created_datetime": "2024-04-02T12:20:51.328681-05:00", + "average_base_quality": 36, + "md5sum": "5444ee47038bd16372179a8f5071fb6b", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "b42042f0-695c-4881-8f60-12f5d57c0770", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 23, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "9fb875c6-d3a9-4d36-b84a-a4bd8cc7eb5c_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5a4fcbc3-3f2b-423b-bbc6-03e48bdcb8b4", + "created_datetime": "2024-04-02T12:52:44.370991-05:00" + }, + "platform": "Illumina", + "file_size": 787481, + "md5sum": "f805a45c3e579a465e076d7c15fcd6aa", + "file_id": "13a8689f-f04b-4034-9396-403f07a54382", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-CSHL-0818-C56-06A-11R-A885-41", + "entity_type": "aliquot", + "case_id": "1bfa0189-6e43-4d76-928c-026673ec775e", + "entity_id": "c70b0dca-2499-4721-b7b7-313f86229269" + } + ], + "file_name": "9fb875c6-d3a9-4d36-b84a-a4bd8cc7eb5c.mirnaseq.mirnas.quantification.txt", + "submitter_id": "f0699a35-3ebe-489d-9fcb-49c918a941cd", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9938344122292353, + "total_reads": 15150056, + "access": "controlled", + "file_name": "c70b0dca-2499-4721-b7b7-313f86229269_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.005960307, + "proportion_reads_duplicated": 0, + "submitter_id": "ea867c53-b179-4ec0-b241-c51f313777d2", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 223799885, + "created_datetime": "2024-04-02T12:20:51.328681-05:00", + "average_base_quality": 36, + "md5sum": "5444ee47038bd16372179a8f5071fb6b", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "b42042f0-695c-4881-8f60-12f5d57c0770", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 23, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "9fb875c6-d3a9-4d36-b84a-a4bd8cc7eb5c_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "5a4fcbc3-3f2b-423b-bbc6-03e48bdcb8b4", + "created_datetime": "2024-04-02T12:52:44.370991-05:00" + }, + "platform": "Illumina", + "file_size": 50903, + "md5sum": "c9ab0089f816dcbf80b26bbb4924ce3c", + "file_id": "e12972c9-7b9e-4a04-8e8c-dcff1eac1503", + "data_type": "miRNA Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +},{ + "data_format": "TSV", + "access": "open", + "associated_entities": [ + { + "entity_submitter_id": "HCM-BROD-0958-C56-85B-01R-A88J-41", + "entity_type": "aliquot", + "case_id": "5fd76dd8-87e1-422d-bac2-63e447ca3ba4", + "entity_id": "567c3683-fb4a-4f1d-acbf-f74e8c5c2e88" + } + ], + "file_name": "afa25f5f-eb4d-4f0e-ae49-320b7ce604df.mirnaseq.isoforms.quantification.txt", + "submitter_id": "b9d60494-ae0a-42ff-a144-f0f9bcc66f00", + "data_category": "Transcriptome Profiling", + "analysis": { + "workflow_version": "20231108T2122Z", + "input_files": [ + { + "data_format": "BAM", + "proportion_reads_mapped": 0.9713134336525773, + "total_reads": 15313579, + "access": "controlled", + "file_name": "567c3683-fb4a-4f1d-acbf-f74e8c5c2e88_mirnaseq_gdc_realn.bam", + "wgs_coverage": "Not Applicable", + "proportion_base_mismatch": 0.007570665, + "proportion_reads_duplicated": 0, + "submitter_id": "b17f8969-4f32-4c52-952f-257fb100dd44", + "data_category": "Sequencing Reads", + "platform": "Illumina", + "file_size": 306084281, + "created_datetime": "2024-04-02T12:18:59.455204-05:00", + "average_base_quality": 36, + "md5sum": "8e584c1bfd6abffd1b033251864d0ef7", + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "file_id": "cb38a81e-ab28-4dc0-9d86-69d84f791481", + "pairs_on_diff_chr": 0, + "data_type": "Aligned Reads", + "average_insert_size": 0, + "average_read_length": 27, + "state": "released", + "experimental_strategy": "miRNA-Seq" + } + ], + "updated_datetime": "2025-04-07T17:13:09.336794-05:00", + "workflow_link": "docker.osdc.io/ncigdc", + "submitter_id": "afa25f5f-eb4d-4f0e-ae49-320b7ce604df_mirna_expression_workflow", + "state": "released", + "workflow_type": "BCGSC miRNA Profiling", + "analysis_id": "0d92c9a7-e989-4309-90c7-ab7fdc118b11", + "created_datetime": "2024-04-02T12:57:12.801243-05:00" + }, + "platform": "Illumina", + "file_size": 791366, + "md5sum": "3a26595264a477a4c5263fd589586618", + "file_id": "f30bc32d-7f7b-47e4-86ac-541755e23809", + "data_type": "Isoform Expression Quantification", + "state": "released", + "experimental_strategy": "miRNA-Seq" +}] \ No newline at end of file diff --git a/mirna_metadata_table.tsv b/mirna_metadata_table.tsv new file mode 100644 index 0000000..bb57f7d --- /dev/null +++ b/mirna_metadata_table.tsv @@ -0,0 +1,1335 @@ +file_name case_id file_id +f8456da0-a9f1-42d8-ab76-3d3a5e6b2287.mirnaseq.mirnas.quantification.txt 4a10c499-7f11-49dc-b865-b6cbaf5b1df7 2c3e23cf-5503-4841-a893-1d789498aad2 +4f065202-1678-436b-9236-6bd407b3b12d.mirnaseq.mirnas.quantification.txt a7364c7c-cc66-468d-8a6e-11cc58adf3d6 66a94a90-637c-41d2-b160-950b62f9d464 +e9248621-af9b-46b2-882f-284e20ed69c2.mirnaseq.isoforms.quantification.txt a7364c7c-cc66-468d-8a6e-11cc58adf3d6 b6d6bba7-95ab-4ffc-9fe6-32c17ad2d274 +fa6cd1b7-37d1-4e42-9207-f25a082e320d.mirnaseq.mirnas.quantification.txt a7364c7c-cc66-468d-8a6e-11cc58adf3d6 8b1df08e-9fca-4546-9e81-95998768012b +fa6cd1b7-37d1-4e42-9207-f25a082e320d.mirnaseq.isoforms.quantification.txt a7364c7c-cc66-468d-8a6e-11cc58adf3d6 ca0e9f63-d3b0-4c20-a523-d7112d301ed0 +e9248621-af9b-46b2-882f-284e20ed69c2.mirnaseq.mirnas.quantification.txt a7364c7c-cc66-468d-8a6e-11cc58adf3d6 1fd333e5-0241-4f37-b0cf-4adf1c753dec +110de312-1030-4a49-bfe3-30908efc35d0.mirnaseq.mirnas.quantification.txt d2d0522a-bad8-4282-b67d-bed52e7efab4 823d4fd7-e651-4f1a-b9e9-c6b422c8c2d8 +c1574073-aa1e-4a6f-89d5-567031a63940.mirnaseq.isoforms.quantification.txt d341953c-f4a1-4c6b-ac1a-50f1b956c696 eb0028ab-45b5-48f6-a21d-28d27a72340a +cfbddfd6-113d-45fe-a0e0-e8745fcfadd4.mirbase21.mirnas.quantification.txt 929505f7-0270-475e-a9d6-00bf38dc78ba 3b687aa2-96b5-4caa-ba89-db716eb4acfe +cfbddfd6-113d-45fe-a0e0-e8745fcfadd4.mirbase21.isoforms.quantification.txt 929505f7-0270-475e-a9d6-00bf38dc78ba 933b8f77-9bb1-465a-b55c-9ea99871cd63 +84d4b868-2ddb-4081-b0fe-ebe35464a898.mirbase21.isoforms.quantification.txt 929505f7-0270-475e-a9d6-00bf38dc78ba 4a3ad76e-8a37-4b0f-8bf3-640dcf1aefe4 +84d4b868-2ddb-4081-b0fe-ebe35464a898.mirbase21.mirnas.quantification.txt 929505f7-0270-475e-a9d6-00bf38dc78ba 23a0e495-05c7-4d89-8f72-0ae4f3633007 +26e7326d-6c1e-4af5-ab54-78be4526d569.mirbase21.isoforms.quantification.txt f9c835db-2ab6-4bf5-826f-48723493c0ec ca357223-fcbf-4cbb-b254-9bc3f7707a91 +4015424e-d713-461f-b5c7-ad244b910901.mirbase21.mirnas.quantification.txt f9c835db-2ab6-4bf5-826f-48723493c0ec 957646b5-62bf-4563-a741-efcd07ad3e6f +201e24bd-7ad4-48e2-8a12-7af9ab368822.mirbase21.mirnas.quantification.txt 97ad0360-3be4-401a-a94c-7f2800a1b519 a2e648f1-c2ac-4aea-ae7f-5cb1bfb99fd5 +201e24bd-7ad4-48e2-8a12-7af9ab368822.mirbase21.isoforms.quantification.txt 97ad0360-3be4-401a-a94c-7f2800a1b519 41b4be60-8757-4474-a8ba-619916f72b1e +7daa1443-4ed1-420a-bcca-98e60b42f59d.mirbase21.isoforms.quantification.txt 4261267c-7042-4c6e-83ed-12fb401003fc 1c5984df-9783-4f08-a9e6-263e9d7b1754 +7daa1443-4ed1-420a-bcca-98e60b42f59d.mirbase21.mirnas.quantification.txt 4261267c-7042-4c6e-83ed-12fb401003fc 1ba7b9de-8b91-46f8-b67b-7d9fc6374510 +66a1a1f5-8439-4d7b-b1e2-09492a19f24a.mirnaseq.isoforms.quantification.txt e0502c47-3234-4609-a8d5-730a9e6eb5b8 8750b613-4b44-4e61-ad51-3f1caaf210d5 +66a1a1f5-8439-4d7b-b1e2-09492a19f24a.mirnaseq.mirnas.quantification.txt e0502c47-3234-4609-a8d5-730a9e6eb5b8 d5a28456-63d4-4513-9ddb-5c88253bb8d3 +990ea311-990d-4c0c-9f02-f745307d013e.mirnaseq.isoforms.quantification.txt 0fc8777c-8f12-472f-a0ea-085139b35d1f 70e00801-8d95-4530-a358-215b9592d18c +990ea311-990d-4c0c-9f02-f745307d013e.mirnaseq.mirnas.quantification.txt 0fc8777c-8f12-472f-a0ea-085139b35d1f e4896155-cbca-4115-8277-800b02172147 +dde71bf7-8c91-4a6f-aa6f-615a6a2f8fda.mirbase21.mirnas.quantification.txt 778ce436-a825-4689-81c1-b7c965404163 af9ec356-9301-47b1-b6b8-8baf776aeedb +dde71bf7-8c91-4a6f-aa6f-615a6a2f8fda.mirbase21.isoforms.quantification.txt 778ce436-a825-4689-81c1-b7c965404163 43c68b48-27e0-42d3-836e-f13567ae1791 +895e0ae3-9618-4668-8562-8031984fa460.mirbase21.mirnas.quantification.txt 9e18238f-ae85-4b75-ae87-d92da9731a40 b42e5562-d17a-4b3d-a676-1a18ccd4b884 +a4e47184-7dc6-4f4b-a41c-42b6185f9db5.mirbase21.mirnas.quantification.txt 40635bf3-d8ba-4833-b623-547e55e5d07e bd203703-c17e-4ba8-baf0-ce903700d341 +b59ff5ba-775a-4fc3-8a39-1e6f3da99d1b.mirbase21.isoforms.quantification.txt 9e18238f-ae85-4b75-ae87-d92da9731a40 ecd489f9-5df1-4244-aa64-27088024bf69 +827219c7-837c-44e5-9ac6-6530112ca91f.mirbase21.mirnas.quantification.txt 3e8a51bf-7e1f-4eab-af83-3c60d04db1bf 9f8cd1ab-2a7c-4701-813d-b22f302fa670 +5ce230b0-d8b8-4718-aea5-83e3083a9dbe.mirnaseq.mirnas.quantification.txt f4b56568-a74a-4a2e-89d9-11722ecf5948 73fe40ee-5824-4f43-ab8c-5b7d8126d396 +7d8f9433-da28-46c7-b06a-d5cbb4c67041.mirnaseq.mirnas.quantification.txt 05eb8bd5-d31b-4595-921a-366e53ea5a8b c246946a-2dc2-4cd9-950b-8a118805d0c6 +7d8f9433-da28-46c7-b06a-d5cbb4c67041.mirnaseq.isoforms.quantification.txt 05eb8bd5-d31b-4595-921a-366e53ea5a8b f7e83e16-cb60-4488-9af3-82db3a4266a2 +c5580440-b191-46c0-baae-cf00393ab3fa.mirbase21.mirnas.quantification.txt 7e4e7914-ec23-4c55-98d6-3c5eecffa8e4 cc55f096-7de6-4dd0-bdef-030c1c98084e +3cf91aaa-a006-42af-9547-a227a7e21f75.mirbase21.isoforms.quantification.txt 5abb6d80-fc39-49a4-8db5-3db24543feb6 85f0d159-a737-4f27-8556-b554f74b98ad +c5580440-b191-46c0-baae-cf00393ab3fa.mirbase21.isoforms.quantification.txt 7e4e7914-ec23-4c55-98d6-3c5eecffa8e4 5dd38294-a856-49f6-8576-c2b7c44bd81f +68208daf-fbb4-4fde-ab16-33670694a00e.mirbase21.mirnas.quantification.txt 3ac45a71-c463-4f0f-b030-58c475a34418 c441b2f4-fc62-4e39-922d-b4a087ca235a +afc4a9bb-0dd1-42f1-8c4f-3cc912441a44.mirbase21.mirnas.quantification.txt 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 a1002e85-1c89-4ffd-bd2e-3cc4be1c4982 +b56790d6-3678-40bf-9e05-d5956086ae0d.mirbase21.isoforms.quantification.txt a2319490-b85d-4219-a1b0-fa1ec432d5c8 0be5ed0b-55ed-49b2-aada-fe1e3c0d2f36 +2faf0039-d422-46ea-8bea-fcd4d1d6a46b.mirbase21.isoforms.quantification.txt b45c543a-40d9-423a-a7fa-98e4b325b487 93cecbbb-ac2f-48e5-8394-3608975e3503 +b56790d6-3678-40bf-9e05-d5956086ae0d.mirbase21.mirnas.quantification.txt a2319490-b85d-4219-a1b0-fa1ec432d5c8 11b1bb3b-5c4c-43dd-ac68-7d4d7fa466b1 +ad304861-0a5c-4225-9a9a-445f306c40ac.mirbase21.isoforms.quantification.txt 70fe08bd-a0b4-4a88-b82e-813b176f8e40 3c50e862-4d74-4162-8eb2-18a6bc9b166a +4c1e41e7-725e-477d-95e5-17befad245a5.mirbase21.isoforms.quantification.txt f6ebf3a7-31c6-4f4c-9a0b-74cf35bfedf6 03f72444-d095-4615-a516-1b7e6222bdb3 +4c1e41e7-725e-477d-95e5-17befad245a5.mirbase21.mirnas.quantification.txt f6ebf3a7-31c6-4f4c-9a0b-74cf35bfedf6 1a4121a4-48b3-4524-8f7e-ce162ca89af4 +5e859806-0cf7-456b-a50b-92e574142dbd.mirbase21.isoforms.quantification.txt b0585c7a-7205-4dac-9d54-6da89674accb 97607f3f-e016-4b4d-9476-bce9223f6cd3 +3acb3de6-45b2-4bf6-bbdd-4fee94bbe9bb.mirnaseq.isoforms.quantification.txt 8d1dcf21-efd3-4fbe-ad44-f43a19239383 08a17f2f-717b-47a7-a293-0fa197f20e3d +a476e22c-6fa4-4a78-a525-9338cdda214c.mirbase21.isoforms.quantification.txt fe0e3851-d8cb-4533-9536-b4826cd25f87 8e36b6af-d56a-44ae-bfa5-30c722523523 +a5ace577-a313-4622-9151-3154a21c46ba.mirbase21.mirnas.quantification.txt f4d95c8e-fb84-46ca-acc0-827015cc9d0a d43fb380-ef52-46c3-9141-fa66985f79f9 +a5ace577-a313-4622-9151-3154a21c46ba.mirbase21.isoforms.quantification.txt f4d95c8e-fb84-46ca-acc0-827015cc9d0a fa149c66-7aab-485f-b21e-00ae2090282c +8c6b3fc8-d4d9-49c8-9bc3-915c4b99ff87.mirbase21.isoforms.quantification.txt 1592af8e-8d11-4325-8a2b-e0c690b15b58 7fe549bf-7a5c-4779-9392-35a408e6973b +fd24d2f0-999d-44c5-a62e-141888de2c6d.mirbase21.mirnas.quantification.txt a9d3a7b0-faf8-4e56-8600-d9e6882a4f23 9c4734f6-e7b3-4ee2-a421-a5e374d2ce74 +627d040c-9a26-4ece-9a1b-f17bdac45a87.mirnaseq.mirnas.quantification.txt 1592af8e-8d11-4325-8a2b-e0c690b15b58 bd3bc699-df53-41f1-b17e-382e66970294 +b11f9bbf-5c77-43aa-8c58-17edc9f181a5.mirbase21.mirnas.quantification.txt 48e66676-dbed-48a4-9a7f-a6d247b15c17 132d842d-b7d9-42d8-811a-85cf9580d8e5 +0b1a587e-17cc-4553-bb7c-2ad09cf1c657.mirbase21.mirnas.quantification.txt 186d40cd-624c-4016-a497-b30c892d393c 6f8e3e33-1309-4de6-8b41-d989ba538b67 +0b1a587e-17cc-4553-bb7c-2ad09cf1c657.mirbase21.isoforms.quantification.txt 186d40cd-624c-4016-a497-b30c892d393c 1a8fce69-d941-46a9-93ca-2ec52945ca36 +a28f9f92-05d0-4e51-aba7-bdfbd6e5430d.mirbase21.mirnas.quantification.txt 6264e699-d40b-4ebc-b443-0a0edcb220dc 9395e22f-965b-4f1b-a83c-d48c98301777 +b6315f3a-b332-4b8a-8f32-682a5153eb3d.mirbase21.isoforms.quantification.txt f9793a4b-c0e7-4475-bf80-69543b7ee2f6 81b864a4-2c3a-4e8e-acc6-36b8ef972d99 +e179cb5a-fec4-4633-a063-98a8360de051.mirbase21.mirnas.quantification.txt 42ebd30b-175e-4ece-a806-e55cb7e40e96 c0c08c65-e27c-49be-b958-602a73a32cf2 +e179cb5a-fec4-4633-a063-98a8360de051.mirbase21.isoforms.quantification.txt 42ebd30b-175e-4ece-a806-e55cb7e40e96 6c93fadd-0796-43aa-a531-1ab2be7f2648 +1c37ce94-fb8b-45b4-b93e-ee66cc4d58fe.mirbase21.mirnas.quantification.txt 1cc02c64-a34e-46ae-9bc7-5d50f2fefb31 739b154f-a457-4241-8b0d-819098d491b7 +1c37ce94-fb8b-45b4-b93e-ee66cc4d58fe.mirbase21.isoforms.quantification.txt 1cc02c64-a34e-46ae-9bc7-5d50f2fefb31 3fcf9a75-c34f-44cc-8ee3-03d8416ac06c +b69419cc-f6e0-4d44-bd54-1342f70a7a85.mirbase21.mirnas.quantification.txt 19427350-619b-4b9c-a3ba-37f667bb2843 801e17be-92a0-4919-9916-772698483e0b +db912961-b914-487b-b71c-d66b572273f0.mirbase21.isoforms.quantification.txt 74dcdfb4-a637-4111-9a22-4b4bc7bbc8f7 6ea2175c-4fde-44aa-899e-fe7aaec0d874 +db912961-b914-487b-b71c-d66b572273f0.mirbase21.mirnas.quantification.txt 74dcdfb4-a637-4111-9a22-4b4bc7bbc8f7 4e5b8999-66ab-4b2c-9eeb-4baf6c59b021 +238a6bce-4789-4165-af73-63cb2d6cd888.mirbase21.mirnas.quantification.txt f553e953-6464-421f-8933-26ca82cb79d3 6d2498c3-bf71-45c1-aeaf-60aec414cc6a +238a6bce-4789-4165-af73-63cb2d6cd888.mirbase21.isoforms.quantification.txt f553e953-6464-421f-8933-26ca82cb79d3 fc2846cf-f814-4304-9dac-4a6d73993fec +f422d7b9-4f8f-4f7d-a6fd-2d0565afb8ef.mirbase21.mirnas.quantification.txt 09820a33-80b1-42d0-8366-a0ddaf94b122 66e5ff50-a921-4667-ba1f-f12267198f65 +989b0cf1-2efd-4d8b-9d87-fd2ad199f8d7.mirbase21.mirnas.quantification.txt 8fe44099-b313-4bfd-a94a-27e72f2a818c 0ed8db01-fc31-4f6b-9181-f4d9f0f7c064 +989b0cf1-2efd-4d8b-9d87-fd2ad199f8d7.mirbase21.isoforms.quantification.txt 8fe44099-b313-4bfd-a94a-27e72f2a818c 96ee0718-e3fc-4a76-ac66-6b6ccfc78ed1 +336bdf94-2c7c-4f4e-a046-09421240e273.mirbase21.isoforms.quantification.txt b0839f46-8c82-4619-be3d-c857a1759463 a289b7b7-ff73-4edf-9369-4436cddb6b23 +38d3a4c2-6ccb-48f3-b672-1d61a7fc4d25.mirbase21.mirnas.quantification.txt 260723bf-9620-450d-bf31-f3a45543f9db 9b1f40a0-da2c-4b21-b6d4-c22f391f38ab +80f7de09-642a-40b2-8175-8bcd3f25ed5c.mirnaseq.mirnas.quantification.txt bff84539-7862-45b2-b5fc-e77291fcca8b 6aa6a356-a793-4eb4-ac97-5f35a17977cc +80f7de09-642a-40b2-8175-8bcd3f25ed5c.mirnaseq.isoforms.quantification.txt bff84539-7862-45b2-b5fc-e77291fcca8b 1e08bb1b-8568-481c-88c5-685d9f754194 +017c892f-c964-4bb1-966b-959b87194658.mirbase21.mirnas.quantification.txt d86adfac-56be-4a69-9315-5a90b4113e65 dcd54044-55e7-4dbb-9d69-7a38ed4ee094 +32970028-8168-47b4-bf46-7e7658246b98.mirnaseq.isoforms.quantification.txt 838778c3-0b33-4fc5-97fc-5da163475485 8d5c3b9d-8b05-4798-921d-d4135c02bf21 +32970028-8168-47b4-bf46-7e7658246b98.mirnaseq.mirnas.quantification.txt 838778c3-0b33-4fc5-97fc-5da163475485 00d8eb33-1a1d-4c25-9ed4-f55f80edd7f3 +bdd98975-906f-4a9d-9add-d77bf82509be.mirbase21.mirnas.quantification.txt c8febeef-8e7e-459e-88cb-8086692dc559 6f0acc1c-adda-431d-b6d9-77d5ca076d27 +0e5a354f-02fb-4dfc-8680-293e3cad57c3.mirbase21.mirnas.quantification.txt 15f1a992-0724-4d76-a71a-702ac7753a41 8771d62e-48a9-4c9b-af65-5bea2d8e12f9 +cebb6715-88e3-4c25-bff6-15a7fc44d183.mirbase21.isoforms.quantification.txt 2bb96e1e-6992-434d-83e5-2f03713b3911 bc61479e-3e57-4032-87e2-740153554a4a +5441d128-830d-4d59-bf51-d72960e424bf.mirbase21.mirnas.quantification.txt 46395c3d-5e51-477f-946e-e58b87cc7baa 665c6a4b-ac00-4054-a994-0502ddcecf34 +7ce526cd-59d2-4e95-ba31-43480c795985.mirbase21.mirnas.quantification.txt 94769f2c-b6fd-48ec-af34-b41165340b7c 46784a04-4439-476f-ad77-2649e8da4a53 +36f2b200-3e96-475e-8cdf-5df3a85cb2ca.mirbase21.mirnas.quantification.txt 384170fc-e8be-426a-a54e-bf1ca61f2986 8c5ecd8f-f39a-4583-a7ef-e7bce8343d33 +735a2b61-3da0-4fe1-9eac-9bcb468c750c.mirbase21.mirnas.quantification.txt a09f0626-002a-48fd-8b2d-c66b8285cf23 7a57d284-8c8e-41d7-9e12-579575393c5e +261caf5a-43ec-4c1f-9627-781b234ff451.mirbase21.mirnas.quantification.txt 54cf3bfe-51c0-4cca-9054-bf76b05a9371 f22a6795-c9fb-469b-899c-589411bf90b3 +e172d14b-489d-449d-9dfd-2874eb4b377c.mirbase21.isoforms.quantification.txt b63cad1b-b4c7-4e50-8acb-5cee4e9ce4a9 461e9f22-05bf-4c59-bed1-6724ba9191a9 +0777e813-fd55-4951-989d-df0005926d79.mirnaseq.isoforms.quantification.txt b63cad1b-b4c7-4e50-8acb-5cee4e9ce4a9 5a98f0bb-579e-46cd-9833-e1627859b6ea +e04fc9ad-f44a-49e4-b019-71fe06c85a44.mirbase21.mirnas.quantification.txt 6b2a9f9a-fe96-4311-a330-925c4ad36fe7 5814fee7-2dde-4e59-aa17-56377dff36d0 +3606aeab-e636-441d-89b0-d4d9454ea665.mirbase21.mirnas.quantification.txt 8e107f4b-1912-4d3e-814a-b863e2d65ed7 23f116ef-bc50-4901-8626-0781f84014a2 +406bd343-0d59-403d-b5d8-2e2176da2e39.mirnaseq.mirnas.quantification.txt e3ea5137-76b8-4afc-9b80-ed74714e7172 66d50e42-c84f-4b4e-9669-8d78c3a83af1 +4f9c89b8-8395-41f1-ad03-5efb9c1a3bf8.mirbase21.mirnas.quantification.txt e3ea5137-76b8-4afc-9b80-ed74714e7172 70c15617-2509-4334-8806-dc858212de36 +e83ec329-a390-464e-b760-28de78fd1532.mirbase21.isoforms.quantification.txt 219f54ef-4235-482d-b799-f2fa9930105c 586aedeb-5cc2-4ed1-aed5-f2f2d43740a7 +8fc5d76c-59f4-498d-9646-17b4f8320180.mirbase21.mirnas.quantification.txt 5c127332-5ca0-45f1-a5ac-4876ad94e491 c1cf3470-d631-4d6d-9be9-90f5cdd36de4 +e9dcc282-3fcd-4f6c-b33d-70380cbf3201.mirnaseq.isoforms.quantification.txt 31872f6a-d225-4f91-b38d-4505d19e406c e73ff8cf-2a87-49cf-bdf2-47438dce621a +2cb11f1f-8746-45a1-ac30-abae78f071ca.mirbase21.isoforms.quantification.txt 1fe19c6b-71d0-4b07-923b-74ea32210db0 512daff6-41ee-4a3a-901f-93998f62aea5 +b420b0bf-ed7e-4299-8ee1-b344b971231b.mirbase21.mirnas.quantification.txt a6eb0cd0-fe57-41b0-8593-776208684293 4b6fb2ec-b7ff-48cf-9925-3ea227853ce6 +2cb11f1f-8746-45a1-ac30-abae78f071ca.mirbase21.mirnas.quantification.txt 1fe19c6b-71d0-4b07-923b-74ea32210db0 3422eec9-e2b3-4cb1-9edc-3b004c68d5af +2120ff7c-af0d-439f-97a2-4cc0fe3c095e.mirbase21.mirnas.quantification.txt 6f25001a-f890-4fd0-a994-e62a9ea5c6f3 7c4f1e23-3a42-4cc8-b167-44f60e716364 +4796bcd9-5010-4e94-b2be-904bf925d9fd.mirbase21.mirnas.quantification.txt 49d2c0cf-a3f3-4519-a755-0a5f769df2ea 82e76884-d0ca-4223-be9c-54e6b82f3fe7 +4796bcd9-5010-4e94-b2be-904bf925d9fd.mirbase21.isoforms.quantification.txt 49d2c0cf-a3f3-4519-a755-0a5f769df2ea 528b8b01-cc6e-4a05-9f87-35cb4a8b4fca +9eb52286-e11c-4c30-b950-c464ce3effc7.mirbase21.isoforms.quantification.txt 0aa020cb-69d2-4235-a609-c279a133d8bb 3600cff6-b63b-4779-a64d-2e6867615f51 +2120ff7c-af0d-439f-97a2-4cc0fe3c095e.mirbase21.isoforms.quantification.txt 6f25001a-f890-4fd0-a994-e62a9ea5c6f3 11fcb695-10f7-40ae-ba83-ffc1825b5a7b +17476252-748e-4652-9edc-b436467bd0f5.mirnaseq.isoforms.quantification.txt 49e5ee61-a1c9-4038-84ac-92683e573a65 7448ad9d-52d5-4537-a4a5-804e2f5c876f +33ec3a0b-ff6a-44b1-aeb8-c72e3e50336c.mirbase21.mirnas.quantification.txt 85bb4987-51e7-40fe-ad59-2aa56754eca9 2882d0b0-ca47-4625-ba49-6a40409f9237 +5637de49-a56c-45e0-8671-e953d66bcb1d.mirbase21.isoforms.quantification.txt e9483296-cb91-497a-b955-39a3c3289dac ef79fc7e-54cb-4bd6-bdf3-cf76f5124428 +10374faa-0c3c-4b94-89f3-9dab21b222e3.mirbase21.isoforms.quantification.txt 8628f1b2-3763-4ba9-a375-083874bb18f2 a6291b46-0cd7-4d85-b972-5e7fb14f8413 +10374faa-0c3c-4b94-89f3-9dab21b222e3.mirbase21.mirnas.quantification.txt 8628f1b2-3763-4ba9-a375-083874bb18f2 64b88bdd-c814-4736-9d64-e7578549860c +1c5eed72-c7f8-4320-baaf-1338cddd6618.mirbase21.mirnas.quantification.txt f58e49fc-9641-4b46-be4c-766445ec70a3 93f18080-ede6-49bb-94bf-74d626c1b589 +1c5eed72-c7f8-4320-baaf-1338cddd6618.mirbase21.isoforms.quantification.txt f58e49fc-9641-4b46-be4c-766445ec70a3 24989ea6-0dd2-47eb-8f02-47c3a7ce0ca2 +598539fc-0c4d-41ec-998a-853094b4c7ce.mirbase21.mirnas.quantification.txt 15fc17cd-d073-4f81-a4a2-2db3cb9d7069 9383f1be-6abc-499d-b962-4236887a9a25 +161fc178-9a31-41fb-84ac-47d1ac5d5bea.mirbase21.isoforms.quantification.txt 87cdf9a8-0579-4d3e-b4df-0f8eef63d7f4 a49594ce-8964-4376-8051-5f7a1755471f +598539fc-0c4d-41ec-998a-853094b4c7ce.mirbase21.isoforms.quantification.txt 15fc17cd-d073-4f81-a4a2-2db3cb9d7069 4ac5536a-7399-435a-90b0-e377ef4eb119 +df348536-bdd8-4747-8d10-bd23cb16709b.mirbase21.isoforms.quantification.txt ad2b1a0a-153f-483d-b228-5763eba3f6cc 5d98cf9d-b031-44e8-a033-6cfe7eaa1851 +5b3bd1e9-bde7-4821-8694-53bffd484b15.mirbase21.isoforms.quantification.txt 09c77947-a333-4392-b18d-a6c1f08764a1 2ebc6a36-49ae-4528-ad51-74b27fe07abf +895e0ae3-9618-4668-8562-8031984fa460.mirbase21.isoforms.quantification.txt 9e18238f-ae85-4b75-ae87-d92da9731a40 075d3156-c8c1-4f0b-8276-dc08160c0d67 +a4e47184-7dc6-4f4b-a41c-42b6185f9db5.mirbase21.isoforms.quantification.txt 40635bf3-d8ba-4833-b623-547e55e5d07e 1f3d6d22-3721-4709-9528-5d4998ea233b +0a07b199-d93d-4202-a63a-b38e39dc5ca4.mirbase21.mirnas.quantification.txt ea6405c4-0fe4-4f37-bef2-275072f91e39 57189b44-c62b-4182-800e-e41f6322edc1 +0a07b199-d93d-4202-a63a-b38e39dc5ca4.mirbase21.isoforms.quantification.txt ea6405c4-0fe4-4f37-bef2-275072f91e39 d6919406-6b75-42dc-9715-f9798156e9f5 +6a7d6268-43fe-4116-bf2d-ed887897ce23.mirbase21.isoforms.quantification.txt 7248cd60-be22-44bc-bc58-f644db0940a2 0866b33c-2efc-4ddb-944a-2d2b25ee0424 +2974afc9-7021-45f3-9c04-3ad77d15ab75.mirbase21.mirnas.quantification.txt 7248cd60-be22-44bc-bc58-f644db0940a2 09d1176d-2b04-41cd-93f9-93ea01102912 +2974afc9-7021-45f3-9c04-3ad77d15ab75.mirbase21.isoforms.quantification.txt 7248cd60-be22-44bc-bc58-f644db0940a2 927786c6-c3ba-4184-9610-56bf27f2f55b +3cf91aaa-a006-42af-9547-a227a7e21f75.mirbase21.mirnas.quantification.txt 5abb6d80-fc39-49a4-8db5-3db24543feb6 91a11236-396b-4e8d-985f-e092aae2de69 +18d4a739-9caf-450c-84ae-1b0c319eb182.mirbase21.mirnas.quantification.txt 1c0318d9-0472-4840-add4-46bb9f914a30 df6485ff-5f8f-41fd-bf70-8ba151f56cbe +18d4a739-9caf-450c-84ae-1b0c319eb182.mirbase21.isoforms.quantification.txt 1c0318d9-0472-4840-add4-46bb9f914a30 f86cd088-de94-498f-9dd3-0de999026874 +a177947e-4ac4-431d-a431-54c756eaabd2.mirbase21.mirnas.quantification.txt 3ac45a71-c463-4f0f-b030-58c475a34418 175bf112-2708-4824-ae07-ed711bac260b +8b9e4554-691f-4e50-a80e-0f5c2d2a8c95.mirbase21.isoforms.quantification.txt 7fd6ab8a-201e-431d-a886-6ab553b6ca36 c3d72739-430f-48a5-8bfa-e31be4821e94 +68208daf-fbb4-4fde-ab16-33670694a00e.mirbase21.isoforms.quantification.txt 3ac45a71-c463-4f0f-b030-58c475a34418 5e3a58e8-ef5c-48b2-81e2-0e61307c59c0 +8b9e4554-691f-4e50-a80e-0f5c2d2a8c95.mirbase21.mirnas.quantification.txt 7fd6ab8a-201e-431d-a886-6ab553b6ca36 e61f3200-3132-46af-99ab-418a8cbe89b4 +d3a67ee5-83cc-44a4-bb3f-8d7eb755ccf4.mirbase21.mirnas.quantification.txt 90118207-8f11-4784-ac1b-0deec2e7af3a 55bb83d2-de6f-489d-9b6e-d455065f5463 +cc6332c0-893e-4b1d-8248-f2f87b1cc933.mirbase21.mirnas.quantification.txt 7fd6ab8a-201e-431d-a886-6ab553b6ca36 ecc79dac-f4f2-4911-b190-34d46c34739c +2faf0039-d422-46ea-8bea-fcd4d1d6a46b.mirbase21.mirnas.quantification.txt b45c543a-40d9-423a-a7fa-98e4b325b487 dcbcea5d-da1f-46c5-99b1-29ab90cf1b1d +263589cd-6469-447a-a1a1-04df3080df27.mirbase21.mirnas.quantification.txt a2319490-b85d-4219-a1b0-fa1ec432d5c8 746364e5-99d3-46a2-ac22-6bc9fd0c2c1b +263589cd-6469-447a-a1a1-04df3080df27.mirbase21.isoforms.quantification.txt a2319490-b85d-4219-a1b0-fa1ec432d5c8 97b2a9b1-3d01-41f8-9481-30e4d7f9de8f +ad304861-0a5c-4225-9a9a-445f306c40ac.mirbase21.mirnas.quantification.txt 70fe08bd-a0b4-4a88-b82e-813b176f8e40 48b3948c-c610-4afe-a857-d4b932c523f5 +5e859806-0cf7-456b-a50b-92e574142dbd.mirbase21.mirnas.quantification.txt b0585c7a-7205-4dac-9d54-6da89674accb c80b58cf-321b-45da-b819-9ac2674305d9 +862a677b-94b4-47eb-8d81-340de9ca1784.mirbase21.mirnas.quantification.txt 9bf16a89-2fc7-4c08-93bc-3105eec5c3cc 34cccb22-5ade-4c67-a635-bab6bab28928 +862a677b-94b4-47eb-8d81-340de9ca1784.mirbase21.isoforms.quantification.txt 9bf16a89-2fc7-4c08-93bc-3105eec5c3cc 20e3c72d-b315-4230-99ee-007373bea47e +3acb3de6-45b2-4bf6-bbdd-4fee94bbe9bb.mirnaseq.mirnas.quantification.txt 8d1dcf21-efd3-4fbe-ad44-f43a19239383 ec1abb13-1d3d-4341-8016-65e067fb349d +d21fe1b2-b8e2-42b7-8326-3659d4bf1736.mirbase21.isoforms.quantification.txt eb7c3b35-7a5e-4621-b31f-9775c51f9a23 88f20417-f5b8-4876-997a-d7f55b38c5ad +6ab6b5fa-0704-4636-8a23-4916811be004.mirbase21.mirnas.quantification.txt bc2591b0-65d7-48c3-a5cc-783f67b65869 574e455f-c91b-4b33-b01d-eb18f9a904a2 +77a724bd-49ef-4cee-a6b7-0ea370194ed0.mirbase21.isoforms.quantification.txt f007fa7a-7da9-4cb0-8aea-623af1a122c5 13223125-7524-434a-a530-5af47084186f +a476e22c-6fa4-4a78-a525-9338cdda214c.mirbase21.mirnas.quantification.txt fe0e3851-d8cb-4533-9536-b4826cd25f87 222df5b5-fb9a-407c-ad25-0f19a61768c0 +77a724bd-49ef-4cee-a6b7-0ea370194ed0.mirbase21.mirnas.quantification.txt f007fa7a-7da9-4cb0-8aea-623af1a122c5 76d750ed-7a37-4537-88ff-af88a68d6092 +627d040c-9a26-4ece-9a1b-f17bdac45a87.mirnaseq.isoforms.quantification.txt 1592af8e-8d11-4325-8a2b-e0c690b15b58 fe1f4714-e4c1-4a0c-97c9-6bd8a8b33526 +d8d3c671-32b1-482f-a880-e076d3d30828.mirbase21.mirnas.quantification.txt dce71741-ccbe-40b7-a0b8-2048d07187a4 c70f35a8-45aa-4521-95d2-089067e75d47 +d8d3c671-32b1-482f-a880-e076d3d30828.mirbase21.isoforms.quantification.txt dce71741-ccbe-40b7-a0b8-2048d07187a4 cffb822a-0080-458d-9b21-929e6571a153 +a28f9f92-05d0-4e51-aba7-bdfbd6e5430d.mirbase21.isoforms.quantification.txt 6264e699-d40b-4ebc-b443-0a0edcb220dc c80fd476-ed24-46f7-96bd-c07661c2f56b +fe0c108c-7565-4139-b0c7-f90e8a0f2a04.mirbase21.mirnas.quantification.txt b8023162-5e82-40e6-ad8c-8acf81821f01 6d8ed1c3-dddf-40c1-8993-afe57eecf0f3 +fe0c108c-7565-4139-b0c7-f90e8a0f2a04.mirbase21.isoforms.quantification.txt b8023162-5e82-40e6-ad8c-8acf81821f01 561151e6-f1b3-47ff-ae43-7df960d0d91d +cd83442c-a9dc-4f4a-99e4-b1e1cae19623.mirbase21.isoforms.quantification.txt 61feee94-3ac9-42fe-aaa3-dc6a3efe563c 54ed8d55-1a62-4a77-a927-7eb30e0bc149 +cd83442c-a9dc-4f4a-99e4-b1e1cae19623.mirbase21.mirnas.quantification.txt 61feee94-3ac9-42fe-aaa3-dc6a3efe563c e66f04ed-0dca-4e85-a76f-9307c7a05977 +2e4b6448-f67e-47f7-bc7e-1274b719b612.mirbase21.mirnas.quantification.txt 9bdbaccf-b43b-4ec3-8b9b-dff65215eb00 0d8166a0-52be-4c02-976e-34e503c90a77 +2e4b6448-f67e-47f7-bc7e-1274b719b612.mirbase21.isoforms.quantification.txt 9bdbaccf-b43b-4ec3-8b9b-dff65215eb00 425b3fef-f433-4801-8ddd-2eb40ef488d5 +38d3a4c2-6ccb-48f3-b672-1d61a7fc4d25.mirbase21.isoforms.quantification.txt 260723bf-9620-450d-bf31-f3a45543f9db 24416565-3620-43ff-9fa5-7d36845408f5 +35ab51e3-aa59-4b00-9554-068064c5fbea.mirbase21.isoforms.quantification.txt f0c353fd-947c-41e2-b643-3ecc0d69796c 65e4ca80-3e3c-4d6d-a5b6-be612898dfba +35ab51e3-aa59-4b00-9554-068064c5fbea.mirbase21.mirnas.quantification.txt f0c353fd-947c-41e2-b643-3ecc0d69796c 30325d3a-4563-48ff-87a9-2645d222b469 +f77ca65d-5775-44d9-b4d3-07256c35153a.mirbase21.isoforms.quantification.txt 16829472-5666-4fba-9bf9-360ec1689aa0 aff04f34-fee4-4cca-97af-c763c2e3df4a +bdd98975-906f-4a9d-9add-d77bf82509be.mirbase21.isoforms.quantification.txt c8febeef-8e7e-459e-88cb-8086692dc559 77f303f6-6d35-479a-944f-9488c2317b5b +4cb6de9b-6a8f-49c5-913a-e951d2a78edb.mirnaseq.isoforms.quantification.txt c8febeef-8e7e-459e-88cb-8086692dc559 3e0f0173-24d2-44e7-983b-4cb84c4be405 +5441d128-830d-4d59-bf51-d72960e424bf.mirbase21.isoforms.quantification.txt 46395c3d-5e51-477f-946e-e58b87cc7baa 4ea52ef0-437a-4436-be1f-ec35818df90d +0ede0d69-1aaf-4777-b03e-cc4a106b07d6.mirbase21.isoforms.quantification.txt a3e26259-732b-49fb-bc95-2f0ec7a0494e 7d424d76-db8d-438f-938f-205e5c013b64 +0777e813-fd55-4951-989d-df0005926d79.mirnaseq.mirnas.quantification.txt b63cad1b-b4c7-4e50-8acb-5cee4e9ce4a9 07cd3ccb-c072-4d59-b419-c1f13546cb4e +e2659515-39da-4e65-b7b0-af85f76fc3c9.mirbase21.mirnas.quantification.txt 0a2d29de-869a-4dc8-ad11-6ee0d0a3a895 4a976c0a-d3d1-4655-bd1e-ca4f4ec94b1c +e2659515-39da-4e65-b7b0-af85f76fc3c9.mirbase21.isoforms.quantification.txt 0a2d29de-869a-4dc8-ad11-6ee0d0a3a895 cdfb66dd-7afe-4202-a30b-fb3801d663ef +d50573c9-d6a4-49d3-8b70-afbd3f39425b.mirnaseq.mirnas.quantification.txt 1c86e4e5-ecc9-4f6d-a557-77bf396a653b 1d0ec5c4-7db8-4d30-a49a-f2fff222ae2b +ff410495-335f-42d8-8654-b7610dd42f74.mirbase21.isoforms.quantification.txt 97efb80d-4f46-4aef-b95e-20d260de01b2 907e92e4-9734-4242-9a5f-8ccf12d354d2 +d50573c9-d6a4-49d3-8b70-afbd3f39425b.mirnaseq.isoforms.quantification.txt 1c86e4e5-ecc9-4f6d-a557-77bf396a653b e1ea97c5-f54f-4aaa-81c5-091e65bc6a2c +ff410495-335f-42d8-8654-b7610dd42f74.mirbase21.mirnas.quantification.txt 97efb80d-4f46-4aef-b95e-20d260de01b2 df341b71-c88e-45ad-96fd-b5c4e1c725c5 +955af0e2-8562-4ded-a3e5-9e88ee9def83.mirbase21.isoforms.quantification.txt 5f60bc2d-738f-43fc-a3fb-61ec6e80e3d4 ab6f1164-e56c-4aee-b720-ad05952edeaf +97b587bc-f32b-4542-bed0-9a10f12488b2.mirnaseq.isoforms.quantification.txt 54cf3bfe-51c0-4cca-9054-bf76b05a9371 da4737ff-70f9-44b1-a254-cba8092ae0ea +e172d14b-489d-449d-9dfd-2874eb4b377c.mirbase21.mirnas.quantification.txt b63cad1b-b4c7-4e50-8acb-5cee4e9ce4a9 a4420ddb-399e-4f21-bbc3-9fa7bf42c525 +3606aeab-e636-441d-89b0-d4d9454ea665.mirbase21.isoforms.quantification.txt 8e107f4b-1912-4d3e-814a-b863e2d65ed7 2eb78ba1-4d33-4957-a47a-051aff614d0a +b930e9a2-09a2-45bd-82dc-552afa7539ec.mirbase21.isoforms.quantification.txt 0ba7b6cc-e5f5-47d7-859a-24e31aa336ab 3257ae7a-48f2-4bad-880b-dcbaabd0a697 +df5a89e9-3a01-45b0-aa49-c0ff89e726b4.mirbase21.isoforms.quantification.txt 171f7917-69eb-4a3f-9cc0-0e1dffd412c1 9fedc221-c922-47b7-9046-c6fcf06e5ada +fff42272-072c-49f3-bd29-3862e50ed9d3.mirbase21.isoforms.quantification.txt f2ce00e4-0d4f-4faa-bee1-ddf1b306e97b 738ba401-4df7-48fb-b141-dfd811c72fbf +fb28f9e2-9d63-4414-baa4-1479b3d26e4f.mirbase21.isoforms.quantification.txt 7ebc776e-bde1-4563-adb1-8bd441872733 703712ff-be4e-475e-b339-51ba652f6dce +4cedeef4-d1a0-4016-83fc-c21bd6fbe551.mirbase21.isoforms.quantification.txt bbbf1184-1e19-479a-b31f-daa692d52e02 cf7bb560-9c16-47ef-a01f-9b634cc8446a +4cedeef4-d1a0-4016-83fc-c21bd6fbe551.mirbase21.mirnas.quantification.txt bbbf1184-1e19-479a-b31f-daa692d52e02 f9d4818a-dbce-42e3-a9d2-4ed427e4f677 +e9dcc282-3fcd-4f6c-b33d-70380cbf3201.mirnaseq.mirnas.quantification.txt 31872f6a-d225-4f91-b38d-4505d19e406c f1ca9d7d-90d7-423a-ab4b-3d93ccced65d +4daf8c79-d47b-4be2-a037-9f7b87b0fa7b.mirnaseq.mirnas.quantification.txt ab3dbbbe-eed6-4a35-a505-1815225e86c9 e9f9a37b-9744-4dfd-9702-388856d3899b +2c2b36e6-6508-405e-bc84-1d8b929fd6b9.mirbase21.isoforms.quantification.txt 23d32627-9fd2-4312-bcda-ee7409e3983f bf43b446-d9c9-4b4d-afae-e435dc39bf74 +a9fbcbb3-0d3f-483f-8286-c23f7b1fef31.mirbase21.mirnas.quantification.txt 3491d67a-4f83-4f67-8085-bbb9fe942be5 a3cdbdc5-ea49-4d9f-9ce3-9492c42fc996 +b420b0bf-ed7e-4299-8ee1-b344b971231b.mirbase21.isoforms.quantification.txt a6eb0cd0-fe57-41b0-8593-776208684293 8dd54e85-462e-4b50-adb6-aa89379ab05d +00ed6a2a-f49f-4fde-b82d-6405562a6976.mirbase21.isoforms.quantification.txt 931738a7-4b5b-46dc-b69f-72600862d8af b66b00b9-6f9c-4745-acdf-47ca241cfb5e +3446bcfb-1b6a-4863-a481-f19e4474d9b0.mirbase21.mirnas.quantification.txt c9226204-cb61-40b8-8a94-a7e71c14ea3a 5b8804d9-b010-4abf-80a6-313003ef7649 +28a69387-df6e-4d1b-8d45-d74624a53136.mirnaseq.isoforms.quantification.txt c7c3fe4a-327a-4b7e-a259-989b72971209 3f29aff9-f28c-4178-b6af-2116506b475a +33ec3a0b-ff6a-44b1-aeb8-c72e3e50336c.mirbase21.isoforms.quantification.txt 85bb4987-51e7-40fe-ad59-2aa56754eca9 cc2916c9-4917-4d0a-a2a0-5ca43f3fb6a9 +b1c0b5c7-626f-4708-a432-9194287c35fa.mirbase21.mirnas.quantification.txt 99a61986-7b23-46b5-99a4-efba6bad3766 aded3597-9cb6-4811-9231-daa7887f9307 +68dd81a3-d1d8-4562-9127-17b4db200be1.mirnaseq.isoforms.quantification.txt 66a0df9b-096b-4e8e-9b9c-54bf8637720b b1ab9fd9-4057-48ce-85e3-1f8c658fd0b0 +0caa173c-a21a-485f-badd-562cd6b415c2.mirbase21.isoforms.quantification.txt cbd87697-7708-4b69-9e50-9ee474feabe1 aa4f7849-9b39-420a-a6bf-b4bbec785260 +39a34789-fd59-4215-b6f2-e6a1c8d5ba92.mirbase21.mirnas.quantification.txt ff33db70-91d4-4dbb-a4fc-d81a128d0f32 8537bf67-17d6-4e5e-ab15-6b6300c2d874 +39a34789-fd59-4215-b6f2-e6a1c8d5ba92.mirbase21.isoforms.quantification.txt ff33db70-91d4-4dbb-a4fc-d81a128d0f32 4f63a09d-d0f9-4859-a008-df3d83cfff2e +df348536-bdd8-4747-8d10-bd23cb16709b.mirbase21.mirnas.quantification.txt ad2b1a0a-153f-483d-b228-5763eba3f6cc 830cb854-788a-4eb3-8940-17dc10d3ebf3 +bff64718-2f96-4e0a-9376-ccf2f0f16ff3.mirbase21.mirnas.quantification.txt 774ce281-96b2-467a-9170-079797ee10f7 7f6b44e4-c1c8-4f50-b8af-f89a33005e6b +a177947e-4ac4-431d-a431-54c756eaabd2.mirbase21.isoforms.quantification.txt 3ac45a71-c463-4f0f-b030-58c475a34418 2ddbcaf5-b12d-40d2-a14e-0061f8a9a9da +199502b9-4230-43df-a904-659ffe33e794.mirnaseq.isoforms.quantification.txt 90118207-8f11-4784-ac1b-0deec2e7af3a b4fd1a4e-dfe6-4d2b-a6e0-9869129a9bd6 +aa4bfbb3-fdfc-4389-b565-ac2e90c77739.mirbase21.isoforms.quantification.txt 90118207-8f11-4784-ac1b-0deec2e7af3a 0ca77382-0f14-400c-91e7-ffaa90162dad +aa4bfbb3-fdfc-4389-b565-ac2e90c77739.mirbase21.mirnas.quantification.txt 90118207-8f11-4784-ac1b-0deec2e7af3a d27cc176-5113-45a9-a7ba-0beb39a6275f +199502b9-4230-43df-a904-659ffe33e794.mirnaseq.mirnas.quantification.txt 90118207-8f11-4784-ac1b-0deec2e7af3a 58a0c1b0-5916-466c-9ba1-a1ee3f28f3c4 +cc6332c0-893e-4b1d-8248-f2f87b1cc933.mirbase21.isoforms.quantification.txt 7fd6ab8a-201e-431d-a886-6ab553b6ca36 508634ea-9a5b-46d2-a0a2-eadeafac0deb +d3a67ee5-83cc-44a4-bb3f-8d7eb755ccf4.mirbase21.isoforms.quantification.txt 90118207-8f11-4784-ac1b-0deec2e7af3a 3109e81d-956d-4ea6-8d0a-5c2abe228e16 +afc4a9bb-0dd1-42f1-8c4f-3cc912441a44.mirbase21.isoforms.quantification.txt 80f85c54-e12f-4afa-8fa5-5f3e083b6f95 b986edf0-8287-419c-8262-dc81f06ec211 +fd24d2f0-999d-44c5-a62e-141888de2c6d.mirbase21.isoforms.quantification.txt a9d3a7b0-faf8-4e56-8600-d9e6882a4f23 86ba6ad7-143e-46ac-a67b-c114a6b4676d +d21fe1b2-b8e2-42b7-8326-3659d4bf1736.mirbase21.mirnas.quantification.txt eb7c3b35-7a5e-4621-b31f-9775c51f9a23 63e4b723-a2f5-4936-a41f-93ee582e641e +6ab6b5fa-0704-4636-8a23-4916811be004.mirbase21.isoforms.quantification.txt bc2591b0-65d7-48c3-a5cc-783f67b65869 a2075f67-4a27-4988-817e-f81455198c23 +8c6b3fc8-d4d9-49c8-9bc3-915c4b99ff87.mirbase21.mirnas.quantification.txt 1592af8e-8d11-4325-8a2b-e0c690b15b58 305f5852-36a9-4e9f-a1e6-e120799da4b8 +b11f9bbf-5c77-43aa-8c58-17edc9f181a5.mirbase21.isoforms.quantification.txt 48e66676-dbed-48a4-9a7f-a6d247b15c17 5811f4e3-a4f9-475b-97fc-b7a147b7e780 +c3478c98-0e20-4059-8271-4b9afb66d6b4.mirbase21.isoforms.quantification.txt fef1696c-a8f4-4db6-8615-e486522baaaa b92f7adb-0228-433c-8770-a22c9d326671 +c3478c98-0e20-4059-8271-4b9afb66d6b4.mirbase21.mirnas.quantification.txt fef1696c-a8f4-4db6-8615-e486522baaaa 29a55ada-ed8f-4541-ad88-5e1f080cefbd +b6315f3a-b332-4b8a-8f32-682a5153eb3d.mirbase21.mirnas.quantification.txt f9793a4b-c0e7-4475-bf80-69543b7ee2f6 cd27feb0-46e2-46a0-9517-3e51f704526f +92aa4586-c552-41d1-9fbe-262d86d246df.mirbase21.mirnas.quantification.txt 7d03ddb6-f3fe-4b50-8bba-514aa65e7d0e 65522b73-34ad-453e-8d5e-76916ffc7d59 +92aa4586-c552-41d1-9fbe-262d86d246df.mirbase21.isoforms.quantification.txt 7d03ddb6-f3fe-4b50-8bba-514aa65e7d0e be63f4f7-8ed2-496a-8991-797f07635ff5 +b69419cc-f6e0-4d44-bd54-1342f70a7a85.mirbase21.isoforms.quantification.txt 19427350-619b-4b9c-a3ba-37f667bb2843 073365a1-e468-4e6f-956f-dd48680dbdd2 +f422d7b9-4f8f-4f7d-a6fd-2d0565afb8ef.mirbase21.isoforms.quantification.txt 09820a33-80b1-42d0-8366-a0ddaf94b122 dffb3669-74e6-40e2-a66a-06f493645ea3 +017c892f-c964-4bb1-966b-959b87194658.mirbase21.isoforms.quantification.txt d86adfac-56be-4a69-9315-5a90b4113e65 bc578bea-5f48-409e-954b-c3477b901912 +5b6dce21-6736-48a0-a805-2e4a9b1c940c.mirbase21.mirnas.quantification.txt 35b1bb47-b32b-4acd-8e5e-fe6bd56c0289 133ca53d-cbe1-433d-a539-21c1e1488106 +4cb6de9b-6a8f-49c5-913a-e951d2a78edb.mirnaseq.mirnas.quantification.txt c8febeef-8e7e-459e-88cb-8086692dc559 744805b4-efff-46d6-8054-e136486cd00a +cebb6715-88e3-4c25-bff6-15a7fc44d183.mirbase21.mirnas.quantification.txt 2bb96e1e-6992-434d-83e5-2f03713b3911 8f5f844f-98ad-4a2a-985d-06ff90901833 +5b6dce21-6736-48a0-a805-2e4a9b1c940c.mirbase21.isoforms.quantification.txt 35b1bb47-b32b-4acd-8e5e-fe6bd56c0289 6350804a-48e5-4896-b66a-01ba29bd337c +a1981850-49b7-4841-9e58-dada0c3de058.mirnaseq.isoforms.quantification.txt 2bb96e1e-6992-434d-83e5-2f03713b3911 0077e63e-a8e4-4f78-be4c-8562af503794 +e82e5a67-9628-425e-9509-8e59dac8801e.mirbase21.isoforms.quantification.txt 5d1a54fe-e0df-4c17-b623-b649a136dc82 ff13ca63-d6e5-4f90-b6e1-11de047970ea +955af0e2-8562-4ded-a3e5-9e88ee9def83.mirbase21.mirnas.quantification.txt 5f60bc2d-738f-43fc-a3fb-61ec6e80e3d4 47b74b74-b798-4b95-9e25-d72f58bc3177 +97b587bc-f32b-4542-bed0-9a10f12488b2.mirnaseq.mirnas.quantification.txt 54cf3bfe-51c0-4cca-9054-bf76b05a9371 5112fa79-69f9-4366-bd3e-fcaaa67741e6 +261caf5a-43ec-4c1f-9627-781b234ff451.mirbase21.isoforms.quantification.txt 54cf3bfe-51c0-4cca-9054-bf76b05a9371 5b7c4e7d-7170-4d09-a7b0-62422abc176c +e04fc9ad-f44a-49e4-b019-71fe06c85a44.mirbase21.isoforms.quantification.txt 6b2a9f9a-fe96-4311-a330-925c4ad36fe7 d09d2d08-5b71-4c3f-8d42-0aec8fe892f4 +b930e9a2-09a2-45bd-82dc-552afa7539ec.mirbase21.mirnas.quantification.txt 0ba7b6cc-e5f5-47d7-859a-24e31aa336ab d693f0be-e9c9-4be4-8a4f-3a256b846b8b +4b69f0d4-5d54-418a-8fbf-b5e28a0c3652.mirbase21.isoforms.quantification.txt ef653772-e5d2-46ec-8610-f81d75d7353c 6089bed2-325c-4d2d-8723-f0d8afc762b2 +4b69f0d4-5d54-418a-8fbf-b5e28a0c3652.mirbase21.mirnas.quantification.txt ef653772-e5d2-46ec-8610-f81d75d7353c f29dd584-9bef-4a38-9794-ee2bcbca74b5 +fff42272-072c-49f3-bd29-3862e50ed9d3.mirbase21.mirnas.quantification.txt f2ce00e4-0d4f-4faa-bee1-ddf1b306e97b 9898d8ec-d128-4ac1-ba45-5a8827342c05 +94741406-595c-456b-9a27-2d838ca91557.mirbase21.mirnas.quantification.txt d73a0a33-e4e8-44bd-9580-2038ab06583a 792d6268-dee2-4ffe-9632-610b6d6af622 +406bd343-0d59-403d-b5d8-2e2176da2e39.mirnaseq.isoforms.quantification.txt e3ea5137-76b8-4afc-9b80-ed74714e7172 a0cc7809-6bd1-41ff-adc2-e9ae48709bd8 +4f9c89b8-8395-41f1-ad03-5efb9c1a3bf8.mirbase21.isoforms.quantification.txt e3ea5137-76b8-4afc-9b80-ed74714e7172 57c9964b-83e5-443e-b99b-fdeb1fee17db +94741406-595c-456b-9a27-2d838ca91557.mirbase21.isoforms.quantification.txt d73a0a33-e4e8-44bd-9580-2038ab06583a f6847e4f-2f97-44a2-8d02-36418e2dec0f +87821081-c9cb-4fc5-b526-a519ac58c9a1.mirbase21.mirnas.quantification.txt bbad2efe-e9c7-4f8f-924b-ebbbe4c181d4 6fe0b82a-9571-4456-ba35-121161450d5d +fb28f9e2-9d63-4414-baa4-1479b3d26e4f.mirbase21.mirnas.quantification.txt 7ebc776e-bde1-4563-adb1-8bd441872733 24455347-10dc-4a0e-8ab3-3021c590cc0a +87821081-c9cb-4fc5-b526-a519ac58c9a1.mirbase21.isoforms.quantification.txt bbad2efe-e9c7-4f8f-924b-ebbbe4c181d4 a53d20d4-1cea-42bc-a8d8-f2d08fc429cf +2c2b36e6-6508-405e-bc84-1d8b929fd6b9.mirbase21.mirnas.quantification.txt 23d32627-9fd2-4312-bcda-ee7409e3983f 99dd4058-384b-443b-b2b0-4b68161541ba +8fc5d76c-59f4-498d-9646-17b4f8320180.mirbase21.isoforms.quantification.txt 5c127332-5ca0-45f1-a5ac-4876ad94e491 b11afd75-e356-454d-bfb5-27ee5ab0b4b8 +9eb52286-e11c-4c30-b950-c464ce3effc7.mirbase21.mirnas.quantification.txt 0aa020cb-69d2-4235-a609-c279a133d8bb 76cd7b71-a512-4993-aff7-9692e615569c +17476252-748e-4652-9edc-b436467bd0f5.mirnaseq.mirnas.quantification.txt 49e5ee61-a1c9-4038-84ac-92683e573a65 53d170f3-f046-494b-b3e4-dc661e4a2c6e +f996a109-74e5-473c-a312-96dfb6153734.mirbase21.isoforms.quantification.txt e1158102-06f2-47bb-9fe0-49b57f070755 00cec9b6-244c-44ff-9ac2-91fed660de97 +4015424e-d713-461f-b5c7-ad244b910901.mirbase21.isoforms.quantification.txt f9c835db-2ab6-4bf5-826f-48723493c0ec 2ef04af4-e629-4382-9d9c-ded0b3861100 +1e0d261b-645d-46dc-8cb9-8ba6b57a0368.mirbase21.isoforms.quantification.txt a3898640-0d85-441d-a000-b5b8ff857399 28356624-64aa-4099-9e1c-63a831a3e058 +f996a109-74e5-473c-a312-96dfb6153734.mirbase21.mirnas.quantification.txt e1158102-06f2-47bb-9fe0-49b57f070755 62efb1f3-7d3e-48ac-b84b-f0f89936d85f +bff64718-2f96-4e0a-9376-ccf2f0f16ff3.mirbase21.isoforms.quantification.txt 774ce281-96b2-467a-9170-079797ee10f7 49f8811e-6955-4cc9-842b-77955be0c158 +b59ff5ba-775a-4fc3-8a39-1e6f3da99d1b.mirbase21.mirnas.quantification.txt 9e18238f-ae85-4b75-ae87-d92da9731a40 50a23e46-efd3-4c37-b9c2-383d5b11fecc +6a7d6268-43fe-4116-bf2d-ed887897ce23.mirbase21.mirnas.quantification.txt 7248cd60-be22-44bc-bc58-f644db0940a2 81036e0d-152c-44f7-a940-3bbda5fe16b1 +8e6b2db9-07aa-4c54-9cd4-30ba0932cb81.mirbase21.mirnas.quantification.txt 3e8a51bf-7e1f-4eab-af83-3c60d04db1bf 7160d2d7-9db8-4da5-a1fe-a547d171cba7 +2a2beb9b-5869-421f-ab4c-c36e5bef515c.mirbase21.mirnas.quantification.txt b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b bf5c0ffa-bb5a-4fa6-9861-6c41b2af7894 +2a2beb9b-5869-421f-ab4c-c36e5bef515c.mirbase21.isoforms.quantification.txt b4225c44-b9b6-46c5-aabf-7b0d9a9fe20b 527c6f82-a57e-4aee-be18-2de45a16dcfb +827219c7-837c-44e5-9ac6-6530112ca91f.mirbase21.isoforms.quantification.txt 3e8a51bf-7e1f-4eab-af83-3c60d04db1bf 3a290952-fb87-4986-bd40-11245ce4eef8 +8e6b2db9-07aa-4c54-9cd4-30ba0932cb81.mirbase21.isoforms.quantification.txt 3e8a51bf-7e1f-4eab-af83-3c60d04db1bf e35d2b3d-c8cb-4c7c-a0da-038b68af3180 +5ce230b0-d8b8-4718-aea5-83e3083a9dbe.mirnaseq.isoforms.quantification.txt f4b56568-a74a-4a2e-89d9-11722ecf5948 1737057a-e8b2-4e06-89db-ad61d9b0c827 +201695f4-5983-43fb-abe4-b8665c6ac027.mirbase21.isoforms.quantification.txt 5abb6d80-fc39-49a4-8db5-3db24543feb6 3bf0c1e7-53c8-4988-b1a8-d54c19b7c139 +201695f4-5983-43fb-abe4-b8665c6ac027.mirbase21.mirnas.quantification.txt 5abb6d80-fc39-49a4-8db5-3db24543feb6 3bc37b15-a26c-4cc5-b030-cb894d7aa69a +f8275247-c285-4175-bdb5-fc1dad344fc3.mirbase21.isoforms.quantification.txt 4e6f88de-7624-4719-8234-4c9e5b2e2988 27c221b0-0b09-4671-90d0-85838635702a +f77ca65d-5775-44d9-b4d3-07256c35153a.mirbase21.mirnas.quantification.txt 16829472-5666-4fba-9bf9-360ec1689aa0 c161f52a-a65b-422b-9767-0c104008ba91 +f8275247-c285-4175-bdb5-fc1dad344fc3.mirbase21.mirnas.quantification.txt 4e6f88de-7624-4719-8234-4c9e5b2e2988 e5babf00-45fc-4e4f-a26b-08fe08e9c660 +74765af0-0860-4a85-a788-ec981d9f71c3.mirbase21.isoforms.quantification.txt f9f44f86-10c7-4473-b156-5afbfa9a2ad0 8ecf6544-85ea-4916-a7fb-51c700ccd89d +74765af0-0860-4a85-a788-ec981d9f71c3.mirbase21.mirnas.quantification.txt f9f44f86-10c7-4473-b156-5afbfa9a2ad0 120a8002-353e-413e-be06-cd679ae63a0c +4dc19548-6030-4bfa-a09c-50a2fa7a4e26.mirnaseq.mirnas.quantification.txt d86adfac-56be-4a69-9315-5a90b4113e65 4bc9c77a-a29f-4658-8472-b91334eb03c6 +d4599d77-b03b-4ec5-8dae-53d0da4bc869.mirnaseq.isoforms.quantification.txt 644a88a7-dc56-468a-af5c-60278aab7642 ae3fc2e8-04b8-4d2a-90dd-a18c98a1e64c +4dc19548-6030-4bfa-a09c-50a2fa7a4e26.mirnaseq.isoforms.quantification.txt d86adfac-56be-4a69-9315-5a90b4113e65 dfd11b50-c86d-478a-8575-41cb3e573b7a +d4599d77-b03b-4ec5-8dae-53d0da4bc869.mirnaseq.mirnas.quantification.txt 644a88a7-dc56-468a-af5c-60278aab7642 895a9a47-a1bc-4b99-a7b9-dd4f05444b69 +0ede0d69-1aaf-4777-b03e-cc4a106b07d6.mirbase21.mirnas.quantification.txt a3e26259-732b-49fb-bc95-2f0ec7a0494e 0e0713c3-9ba1-4758-be9d-97c9aeaecfc8 +0e5a354f-02fb-4dfc-8680-293e3cad57c3.mirbase21.isoforms.quantification.txt 15f1a992-0724-4d76-a71a-702ac7753a41 afeac78f-e033-4024-8be3-5f57ad5b0607 +a1981850-49b7-4841-9e58-dada0c3de058.mirnaseq.mirnas.quantification.txt 2bb96e1e-6992-434d-83e5-2f03713b3911 6e194836-785b-4139-b6cf-375de35eca5a +eee30a6c-2b86-48e4-ac22-961dc52fe45e.mirbase21.mirnas.quantification.txt 15170c7f-5880-4fb6-82ce-68d3df0dfb68 6c51563f-ea48-4751-a1a1-476f94a6d842 +eee30a6c-2b86-48e4-ac22-961dc52fe45e.mirbase21.isoforms.quantification.txt 15170c7f-5880-4fb6-82ce-68d3df0dfb68 944b3462-e68a-410e-a99b-da2d8d66b710 +e8639999-1068-4cdc-a745-58c547d062b3.mirbase21.isoforms.quantification.txt 0f4a4ad1-e394-45c4-9aa9-aadf2bff0628 2070846c-7692-4c9a-a61a-e588e6303a76 +7ce526cd-59d2-4e95-ba31-43480c795985.mirbase21.isoforms.quantification.txt 94769f2c-b6fd-48ec-af34-b41165340b7c 7d0a6130-bb06-40bb-a0ee-59eda10a0827 +e8639999-1068-4cdc-a745-58c547d062b3.mirbase21.mirnas.quantification.txt 0f4a4ad1-e394-45c4-9aa9-aadf2bff0628 679b31d8-f963-4555-8db7-ea49976df089 +735a2b61-3da0-4fe1-9eac-9bcb468c750c.mirbase21.isoforms.quantification.txt a09f0626-002a-48fd-8b2d-c66b8285cf23 d46aafb3-2584-43c0-8f02-9cfe9413eb7d +36f2b200-3e96-475e-8cdf-5df3a85cb2ca.mirbase21.isoforms.quantification.txt 384170fc-e8be-426a-a54e-bf1ca61f2986 b1ac88e8-d3cf-4340-8bdb-8576f14a4f60 +eb0ed599-e679-4ccb-b76b-9156a4b21f35.mirbase21.isoforms.quantification.txt b6b607cd-67b8-4c04-a212-a4e8c0743f05 8832447f-5473-4220-8e7e-6d89e06e7b2f +eb0ed599-e679-4ccb-b76b-9156a4b21f35.mirbase21.mirnas.quantification.txt b6b607cd-67b8-4c04-a212-a4e8c0743f05 25d89cc7-1929-4ea2-a5c8-dbea62301fc2 +e82e5a67-9628-425e-9509-8e59dac8801e.mirbase21.mirnas.quantification.txt 5d1a54fe-e0df-4c17-b623-b649a136dc82 e0acfdd1-c6bb-417a-9c89-01d47c5c0ee6 +336bdf94-2c7c-4f4e-a046-09421240e273.mirbase21.mirnas.quantification.txt b0839f46-8c82-4619-be3d-c857a1759463 42346878-816d-4a45-9c35-194b3a7d89d2 +df5a89e9-3a01-45b0-aa49-c0ff89e726b4.mirbase21.mirnas.quantification.txt 171f7917-69eb-4a3f-9cc0-0e1dffd412c1 e65e034d-a6c2-47c8-994b-f9faf54c762a +e83ec329-a390-464e-b760-28de78fd1532.mirbase21.mirnas.quantification.txt 219f54ef-4235-482d-b799-f2fa9930105c 6b1c8ae8-ac1c-468c-9c96-f5461faa72c8 +4daf8c79-d47b-4be2-a037-9f7b87b0fa7b.mirnaseq.isoforms.quantification.txt ab3dbbbe-eed6-4a35-a505-1815225e86c9 1863e00d-61ba-4484-815d-947ca05f718c +a9fbcbb3-0d3f-483f-8286-c23f7b1fef31.mirbase21.isoforms.quantification.txt 3491d67a-4f83-4f67-8085-bbb9fe942be5 1e677ab6-d525-4bc8-968b-bb251b6e4950 +00ed6a2a-f49f-4fde-b82d-6405562a6976.mirbase21.mirnas.quantification.txt 931738a7-4b5b-46dc-b69f-72600862d8af e0da46e3-a245-4f27-88d4-cdf0741c647e +0d206137-dd6e-466f-9966-30331b36bd31.mirbase21.isoforms.quantification.txt 9e7d3dea-5d81-4f10-819c-1c2a68ddd150 1d48bf45-061f-45ae-a386-f268b93b953b +0d206137-dd6e-466f-9966-30331b36bd31.mirbase21.mirnas.quantification.txt 9e7d3dea-5d81-4f10-819c-1c2a68ddd150 daf89bb5-9f20-4ad0-8958-e99b54d2c108 +28a69387-df6e-4d1b-8d45-d74624a53136.mirnaseq.mirnas.quantification.txt c7c3fe4a-327a-4b7e-a259-989b72971209 8c25b7c5-b526-4458-969c-72d293bdd6e2 +5637de49-a56c-45e0-8671-e953d66bcb1d.mirbase21.mirnas.quantification.txt e9483296-cb91-497a-b955-39a3c3289dac 4018f453-3dae-4504-b0f6-e0e509df69d0 +68dd81a3-d1d8-4562-9127-17b4db200be1.mirnaseq.mirnas.quantification.txt 66a0df9b-096b-4e8e-9b9c-54bf8637720b b98f49e0-f338-487a-8f47-24685e74dc60 +b1c0b5c7-626f-4708-a432-9194287c35fa.mirbase21.isoforms.quantification.txt 99a61986-7b23-46b5-99a4-efba6bad3766 858a03d1-3055-48a7-badf-7fd879af3705 +26e7326d-6c1e-4af5-ab54-78be4526d569.mirbase21.mirnas.quantification.txt f9c835db-2ab6-4bf5-826f-48723493c0ec cf594c07-8200-4e5c-a0bc-dcf2ea55f2b2 +0caa173c-a21a-485f-badd-562cd6b415c2.mirbase21.mirnas.quantification.txt cbd87697-7708-4b69-9e50-9ee474feabe1 1be45c68-66dd-44db-9c4a-c958f458e6eb +1e93f0a7-1ca8-4ea6-b917-e166e7508819.mirbase21.mirnas.quantification.txt 062982f8-9f49-425a-99e9-008af5ed9040 3c5f619c-9a12-47cb-aa37-4124ca50beb0 +1e93f0a7-1ca8-4ea6-b917-e166e7508819.mirbase21.isoforms.quantification.txt 062982f8-9f49-425a-99e9-008af5ed9040 b0efdacf-345d-4c4d-bc7e-69cadd33c443 +70f92ff5-e211-4b29-ac29-14f7f7c4b0de.mirbase21.mirnas.quantification.txt 07a859fc-6f78-4905-9035-90e2403dbe8d 5905a69b-50df-4426-913b-173a2b935733 +161fc178-9a31-41fb-84ac-47d1ac5d5bea.mirbase21.mirnas.quantification.txt 87cdf9a8-0579-4d3e-b4df-0f8eef63d7f4 f0a5816e-a3cd-4bd1-9f8a-2540f58d7514 +70f92ff5-e211-4b29-ac29-14f7f7c4b0de.mirbase21.isoforms.quantification.txt 07a859fc-6f78-4905-9035-90e2403dbe8d 8568393a-749f-4015-ada5-45c36c9a412c +425fcf70-5b63-4b81-98f8-ec5212be70dd.mirbase21.mirnas.quantification.txt 8449955f-42d9-46f6-919a-5cc5d59e6284 5a25340d-36f3-4cbf-a756-7e1dd24ec2b2 +1e0d261b-645d-46dc-8cb9-8ba6b57a0368.mirbase21.mirnas.quantification.txt a3898640-0d85-441d-a000-b5b8ff857399 76d9eef5-8078-4e68-9154-e18f41ba1b90 +425fcf70-5b63-4b81-98f8-ec5212be70dd.mirbase21.isoforms.quantification.txt 8449955f-42d9-46f6-919a-5cc5d59e6284 af5240bc-fe35-4c23-9072-009b1e7e8417 +4508c46a-7ecc-4031-9936-4c4746ce5a8d.mirbase21.mirnas.quantification.txt 20cf00ea-d7da-42bb-bce7-f005f0b952eb 8438ca9e-78a4-40de-82e1-da30489e695c +e61d4ce3-c0f1-4d4d-9205-f09fed9bf43f.mirbase21.isoforms.quantification.txt d7b3156d-672a-4a55-868d-9ca6a09fcb0f 3d2b4d1e-32a9-40c9-9efd-4f19c624949d +1243e3ec-e09f-48fe-a2fd-2035eb202af1.mirbase21.isoforms.quantification.txt cd6e5d3d-1c86-40dd-9cb3-b2e2075dec56 83cc9884-157b-43a2-850e-b373ea0af02c +6c23024c-aa93-44c7-a89d-46e545e13e18.mirbase21.isoforms.quantification.txt 533f5ff9-466c-4cdb-9c46-b841c2626775 dbdd912e-9f6a-49b6-8ff6-99df4f049f29 +6c23024c-aa93-44c7-a89d-46e545e13e18.mirbase21.mirnas.quantification.txt 533f5ff9-466c-4cdb-9c46-b841c2626775 5d2de448-9931-42aa-8c42-6bc3127b9966 +4cbbf25f-4fc6-4590-96d1-832a6ab2708b.mirbase21.mirnas.quantification.txt 32d4d200-1fdf-44ed-b81f-1954a9c93926 f9cb899f-0625-412f-abeb-06a2c9ace5e5 +78db0e91-71ff-46bf-9ace-22ae8aba21fa.mirbase21.mirnas.quantification.txt 86b513ba-df09-485d-92d4-fb9e888f7350 f03073cf-9898-46ff-838f-4982afde29df +495bd808-d3f9-4490-9e29-8afb0211f9a1.mirbase21.isoforms.quantification.txt 56a30462-2819-4c18-95be-8e73880a4921 59a3b85a-cea4-4477-a560-53772d006b83 +3832b832-ddf2-4632-8be7-03946e864a96.mirbase21.isoforms.quantification.txt d1e974e7-dd68-40cc-ad06-2b57d964e5a1 565fd0d2-defb-4517-8b8f-45f109e9e6e2 +33028eea-2d01-4442-bef7-7f4bd3b00fae.mirbase21.mirnas.quantification.txt 7d1e9451-7a6a-4086-af7f-3ed57505daf0 b9a73c51-3c5f-418b-a381-289a4a04bf52 +33028eea-2d01-4442-bef7-7f4bd3b00fae.mirbase21.isoforms.quantification.txt 7d1e9451-7a6a-4086-af7f-3ed57505daf0 3d6f60d6-3179-4a53-ac95-1b54d6f9017e +c7a39416-e802-40f9-923a-d8c212bea633.mirbase21.isoforms.quantification.txt ba68f2cf-9271-41fd-9655-1fac7681f588 f422faa4-62d5-4097-ab70-340904d7d405 +c7a39416-e802-40f9-923a-d8c212bea633.mirbase21.mirnas.quantification.txt ba68f2cf-9271-41fd-9655-1fac7681f588 1efd87f1-c7e3-4b1a-9970-26f2e9ae19c7 +139df8ff-6e24-465c-970b-20f7ff444afb.mirbase21.isoforms.quantification.txt d0673efd-3315-4dd5-8ab6-912bfa07dceb be19627a-16f3-4ad7-b382-5916dda40e35 +6a310ab7-7902-4654-9ca4-8ee005a94b97.mirbase21.isoforms.quantification.txt cbcf6922-a3c0-43a1-826e-642918b0a635 8984dace-18f1-467c-a9a8-ceb13def0ced +6a310ab7-7902-4654-9ca4-8ee005a94b97.mirbase21.mirnas.quantification.txt cbcf6922-a3c0-43a1-826e-642918b0a635 b44ac8a0-c1a4-49a1-9d1c-0df0440a8048 +84913533-60d5-4f98-8cd2-4a01e836ee52.mirbase21.mirnas.quantification.txt e732f81c-9b7d-44bd-a905-ff53fbed5009 3e516dea-6051-4c6f-b13c-b4cbffb392bf +84913533-60d5-4f98-8cd2-4a01e836ee52.mirbase21.isoforms.quantification.txt e732f81c-9b7d-44bd-a905-ff53fbed5009 dc86c47f-50ae-486f-bda1-0ca1e5497500 +2a58319d-778c-46a5-84b3-67594c8121b9.mirbase21.isoforms.quantification.txt 48f831b0-5d91-44ae-bc4e-db57ca84fe46 89e71f52-9497-4c3c-a888-9b206c3fe7a8 +2a58319d-778c-46a5-84b3-67594c8121b9.mirbase21.mirnas.quantification.txt 48f831b0-5d91-44ae-bc4e-db57ca84fe46 72ea515c-a955-4ea4-8007-c27c37a0151a +8b2fd9eb-933c-4522-ae0f-2cd892c66621.mirbase21.isoforms.quantification.txt 206ce0ed-36a4-47ab-ac8e-f6fca6ac5c18 ceb7d410-c4d9-427c-b580-b997a4125cb7 +8b2fd9eb-933c-4522-ae0f-2cd892c66621.mirbase21.mirnas.quantification.txt 206ce0ed-36a4-47ab-ac8e-f6fca6ac5c18 414e904c-6f97-4958-800f-b338c2f29635 +e13b4565-bb53-404e-a71b-0b37700e9727.mirbase21.mirnas.quantification.txt c0c3caab-9277-4a31-a96c-c607e38d5ccc bea90154-777e-4462-80b1-b6f12e9428e1 +c0d5ebbc-312d-4b7b-98ef-6938080ff4e5.mirnaseq.mirnas.quantification.txt 25a0a9e6-4f5b-45d8-8f34-abfd31d5ff1b 6e77bda2-17e0-40b6-a8dc-ebfe9c048393 +b81a1160-be17-47ef-b8fb-0e022340edb6.mirbase21.mirnas.quantification.txt 25a0a9e6-4f5b-45d8-8f34-abfd31d5ff1b 24460ff7-c030-4f96-9219-dc6280431ef9 +313bf802-3721-4ec1-87fd-3bab7c541f32.mirbase21.isoforms.quantification.txt b8c3d99c-429b-42a3-b486-6fbcb90cc2e0 9b69127a-1af2-4724-a791-ea0719c82df5 +16fc7599-1ca5-4179-ac55-811a89c3ec32.mirbase21.mirnas.quantification.txt 08c64000-d320-4e4d-974b-da503d48890c 5298d88d-73ef-4a86-9ee1-1420df8be60c +27b7aae2-07ed-4a4f-a6fa-c27a41355b90.mirbase21.mirnas.quantification.txt 460616ec-f66f-483b-88c1-757edd86261d 12f7f577-b78e-4dbb-a3ea-e1879063ff97 +559313a3-7242-4619-9a97-1f24e26dae26.mirbase21.isoforms.quantification.txt b46263ab-c3ca-4fda-a895-74c7e6e6fe22 b4fb1037-1915-41cb-b102-9d652018b81b +c771d5ee-c270-4c69-a740-290d0962846a.mirbase21.isoforms.quantification.txt dac96910-0cb2-44ea-b108-2d6d51b07112 958a302d-ae6c-4ad2-8765-ba6d34faa6f5 +20e569b2-2679-4e3a-b81d-3c210253c3e1.mirbase21.mirnas.quantification.txt 8e1b8811-1eb2-4337-852c-c19eaa0ee418 1a515ae6-353c-4312-afbc-ee9800f51164 +806e63e0-463e-4370-acf8-a2787c33c683.mirbase21.mirnas.quantification.txt f2ec64f5-a414-4c34-99c7-d59bc4e831e0 7cfcf2e2-fdc6-493a-a87e-5e66ec04c17f +72502bda-8a92-4683-8407-ed1bf1fe638f.mirbase21.isoforms.quantification.txt 15556b28-c6bd-455a-87b6-4b7b3e33d0e4 a706f8ee-652a-4dbc-aa57-3d7a52e547ed +7bf48040-2885-469d-9671-58c0a08cf4b3.mirbase21.isoforms.quantification.txt 02594e5e-8751-47c1-9245-90c66984b665 efb7bb49-3089-4f5b-9f28-320583b2fd54 +e13810e3-d924-435f-92f5-972ede0ba5c8.mirbase21.isoforms.quantification.txt ea605be2-6578-4e01-8ec3-bbd84c0b7f1d aa1b565a-213c-4e85-92a3-75696cac1859 +062184e2-d589-42de-966b-d88ad1773828.mirbase21.isoforms.quantification.txt 0f530b3e-5b6d-4892-9ebd-9138d76fdca7 5e2d1a73-11fc-4c14-91ac-76543ffa27ae +062184e2-d589-42de-966b-d88ad1773828.mirbase21.mirnas.quantification.txt 0f530b3e-5b6d-4892-9ebd-9138d76fdca7 f3bb6627-fefc-4714-aac0-dd6a3aea5a67 +21a6b0ca-53c3-4e0a-9a03-9db95a3c9606.mirbase21.isoforms.quantification.txt 7413c891-f74e-456f-bc70-69c83fb53c70 4bc4b0b4-cd8a-4b6e-a89a-91e811a62dea +59a2fe2e-bad3-4ab8-845e-aa53f920426f.mirbase21.mirnas.quantification.txt 2dfd8a0e-e642-49b3-abd7-f0334927eebb d10fee5e-c927-4926-834c-0c875b185acb +6ec97e54-755d-44d1-b5cc-c60cb736df3c.mirbase21.mirnas.quantification.txt 29949b65-2913-4c86-bbd7-b85c5df6f15e c68cb147-873f-48f4-bb78-6acc569fbea6 +60b196ad-8929-404d-b2a2-14ef281cdf6b.mirbase21.isoforms.quantification.txt 21f6bf91-dfc6-4a59-8b76-88a0f95c7b47 4480e26f-2314-44ca-8d12-513b991002ec +cf14f0f0-9e50-4a58-bd91-14f5c544e1be.mirbase21.isoforms.quantification.txt fd4740db-76a8-4362-be71-7b609479bb67 d27d70f2-37f2-4dc7-b993-ccb83e109e8f +349fde78-3468-4f44-9b7c-db70c772d6fb.mirnaseq.isoforms.quantification.txt 56c4bd48-ab15-4b49-ae2f-968653052b50 8808e370-c4c3-4c9e-813b-eca996136a6c +746f7449-4911-49d8-8672-a867477eda73.mirbase21.isoforms.quantification.txt 05263959-c4f5-4540-b6d2-d8c8a128861f 6b16b408-a45a-419a-992d-8ef9ff89355c +07a1428c-f519-4818-853f-a9a20dc111a8.mirbase21.isoforms.quantification.txt 71faa2c1-0d5b-4dcc-bdf9-f2405f29907c 03db776b-6eef-4de9-9868-171543664f65 +c479012a-ab8b-434c-b88e-9bc28931adbe.mirbase21.mirnas.quantification.txt 9d25cd0e-0a3e-4ee0-b1a3-58ffab348c9d 98fc8c5c-b1b0-49a2-9407-63c6540d3c09 +80d179ee-dafe-46d2-9a8c-94dda800da7b.mirbase21.isoforms.quantification.txt 6fee41dc-b8a9-4347-8085-b7e05f813ad0 25b4bd85-1547-4c0a-a701-9382e9c96ea9 +a92eccd8-fc46-47e6-96b5-a614b12857d8.mirbase21.isoforms.quantification.txt 6a57948c-0dc5-4ea2-8043-380f26763752 6829c5b7-40dd-4c30-b500-9e9107836aeb +1c61adad-e43a-44a0-b6bb-69cbcc639f10.mirbase21.mirnas.quantification.txt 60cce7ac-d27d-44a6-9873-ecf91da5e906 18b2414f-662a-4157-a700-e21ec99b31a8 +f167c780-8955-4b50-b53c-41cde7cdace1.mirbase21.isoforms.quantification.txt 7f9031da-124a-4a38-83e6-878a50e58c24 edf704b0-09e1-4791-9eb8-66a6dae458d9 +f167c780-8955-4b50-b53c-41cde7cdace1.mirbase21.mirnas.quantification.txt 7f9031da-124a-4a38-83e6-878a50e58c24 688574e1-faae-4437-8f4c-d7e3b014540a +24c2025c-4eed-4fd0-8b25-3843ef6a97e1.mirnaseq.mirnas.quantification.txt 01026cf5-8582-4864-8e89-111c05660eb6 61f5b9c1-f98f-49cf-8ec4-66239fa573a6 +24c2025c-4eed-4fd0-8b25-3843ef6a97e1.mirnaseq.isoforms.quantification.txt 01026cf5-8582-4864-8e89-111c05660eb6 7d0ebbb1-e989-41e3-8c7b-6b9710d3c8bb +3738cacb-c775-4bcc-b2c2-d16a1d6ccd6f.mirnaseq.isoforms.quantification.txt 085fbb0b-0924-4c26-a240-94b13d1742b6 23aca952-5d4f-4aac-a74c-6e7f8ca0f500 +3738cacb-c775-4bcc-b2c2-d16a1d6ccd6f.mirnaseq.mirnas.quantification.txt 085fbb0b-0924-4c26-a240-94b13d1742b6 84730706-fd9b-4d78-ab9b-1d9dddbda54e +1ee86be9-53d7-4483-9141-fe8bb6ca5cff.mirnaseq.mirnas.quantification.txt 0bb7be19-e7c9-46f2-b1b3-f83f3b213475 4a14da95-9ef7-461f-a1f5-22ce76b7aedd +1ee86be9-53d7-4483-9141-fe8bb6ca5cff.mirnaseq.isoforms.quantification.txt 0bb7be19-e7c9-46f2-b1b3-f83f3b213475 a3654831-b5f4-45db-b44c-774cc9647f60 +28b2d19c-cbe0-4160-8bc6-95954b2aeea1.mirnaseq.mirnas.quantification.txt 0f875052-cf76-45f2-9c76-021ee605479d ad1bc08a-e2b8-4ae8-b848-1939cef329d6 +d2d587d7-065a-4fca-a3b8-abd85d44a4a2.mirnaseq.isoforms.quantification.txt 0f277939-aad8-48c8-9653-37c08ec8b021 d9e4d260-63d3-4802-967e-746e7d09627c +fe2345ce-9d8e-41e5-8df2-a703cf163e23.mirnaseq.mirnas.quantification.txt 116115d7-9ebb-4830-86ff-1daf3a0da9f0 31823419-6125-4888-9bbd-1a00712466ba +fe2345ce-9d8e-41e5-8df2-a703cf163e23.mirnaseq.isoforms.quantification.txt 116115d7-9ebb-4830-86ff-1daf3a0da9f0 e39cfeb7-a0b3-4936-ba34-3221ee0e92d0 +56ac98cc-4b1a-43b3-b6c8-323ac42460e0.mirnaseq.isoforms.quantification.txt 11ed8b7d-2483-4b5e-9893-3376d1d49672 a6f428d3-85f8-4629-a0c0-fef6b72ede92 +56ac98cc-4b1a-43b3-b6c8-323ac42460e0.mirnaseq.mirnas.quantification.txt 11ed8b7d-2483-4b5e-9893-3376d1d49672 91d633a2-a3c0-4d0d-a072-6dda34f8369e +a638c269-1264-4f52-b345-8bf4b5db72cf.mirnaseq.isoforms.quantification.txt 13546f31-27a6-4549-8165-126c7d847c2a 8989cf23-8835-47a4-87d2-ff15385a4135 +a638c269-1264-4f52-b345-8bf4b5db72cf.mirnaseq.mirnas.quantification.txt 13546f31-27a6-4549-8165-126c7d847c2a 04f2faf4-486e-48e2-b495-95e08605ea4b +46d63673-21f7-4c6e-a210-882a6f358f02.mirnaseq.mirnas.quantification.txt 14cca285-5fbb-45c8-bbd3-3a901154a1e3 84ff8a96-78ac-4483-b68a-ca70f3587bfa +5182585a-8d5c-4d19-ae5d-54b618ce253c.mirnaseq.mirnas.quantification.txt 2e174f9b-290f-444f-b16e-530085416b13 5bd76bf0-175a-4cc3-875b-a8c19339b0df +5182585a-8d5c-4d19-ae5d-54b618ce253c.mirnaseq.isoforms.quantification.txt 2e174f9b-290f-444f-b16e-530085416b13 07035910-c554-4945-ba21-e6040f63de3c +093b9884-2f2f-4d8e-91a7-e4b97bf5ebff.mirnaseq.mirnas.quantification.txt 35e72ed7-d7a0-4720-af25-ad4336fa7d89 27a61554-ede4-4b7a-8640-f86e242af32b +093b9884-2f2f-4d8e-91a7-e4b97bf5ebff.mirnaseq.isoforms.quantification.txt 35e72ed7-d7a0-4720-af25-ad4336fa7d89 74d0d1ad-7a3d-4b76-be6e-2b44a9bc0836 +47c7dfa6-eed8-428d-9f77-5e3bb2562de3.mirnaseq.mirnas.quantification.txt 38bb0083-a307-4cc7-b15b-581f6c678482 0b45b53d-3cd5-49fd-b912-4854fab2934b +d34172a0-c0b0-46d1-a1f3-a0c7be9f07ae.mirnaseq.mirnas.quantification.txt 426aede7-3fc5-4cf8-9d24-735da96402e9 19a4b916-39b2-4394-b3e1-795db3e88c07 +af104314-112c-4398-ad24-0fdd90d51e22.mirnaseq.isoforms.quantification.txt 46bab896-cce4-40d2-aee9-006234ec03e2 9badb697-5d66-4187-91e3-693b75157071 +fa3fc45d-1a7c-44c0-9d70-813916949abd.mirnaseq.mirnas.quantification.txt 52e4305e-1ff0-4a92-a38a-136696eb8968 cdfc8b8d-b389-4c49-b645-9fe05151355d +d57d899e-14f5-4f67-8f71-268aff92aa5f.mirnaseq.isoforms.quantification.txt 53c60788-10b1-4ba1-afdd-63376587b7cb 4636b740-0429-45de-9618-425d63b5e759 +d57d899e-14f5-4f67-8f71-268aff92aa5f.mirnaseq.mirnas.quantification.txt 53c60788-10b1-4ba1-afdd-63376587b7cb d24856e7-130d-4f7b-a012-f121ca983024 +616f5677-0978-476e-88b0-2763f15fcc4c.mirnaseq.mirnas.quantification.txt 7d7fba6d-9bbb-44a6-b91c-ca97277e49b2 dfdb8033-bca7-4fb7-a568-2f3b64c95f62 +616f5677-0978-476e-88b0-2763f15fcc4c.mirnaseq.isoforms.quantification.txt 7d7fba6d-9bbb-44a6-b91c-ca97277e49b2 ec077aa4-4d88-475a-ab09-ad50fb79a793 +4b73d25d-9515-40a2-963d-32b14ff8849a.mirnaseq.isoforms.quantification.txt 7e06a271-ede9-40dc-a5f1-6eebaa82de8b d8f5089d-4182-46ea-b09a-e1986cf5b22b +4b73d25d-9515-40a2-963d-32b14ff8849a.mirnaseq.mirnas.quantification.txt 7e06a271-ede9-40dc-a5f1-6eebaa82de8b 84d89b66-252c-4ad8-8ca3-7b11f0c259e4 +f479c11e-be87-41cf-81e5-7b7cf627fbf6.mirnaseq.mirnas.quantification.txt 7e89e67a-6376-41ee-8022-e9445e3fbfc7 e3e0ce59-f199-4fb6-a20b-7cd0bce0cd00 +7e50f090-1bc6-4123-9c5e-c08eb5497634.mirnaseq.mirnas.quantification.txt 848d4e80-9658-4f99-bcdb-e3f7275bb72d 529625ec-cfe3-4a6f-b0dd-d9b5b5d8aa5a +f479c11e-be87-41cf-81e5-7b7cf627fbf6.mirnaseq.isoforms.quantification.txt 7e89e67a-6376-41ee-8022-e9445e3fbfc7 059efef0-d802-4f74-940a-6b7114e8c457 +28c78a90-1f33-44b0-b7b0-99afed2cb895.mirnaseq.isoforms.quantification.txt 8a44e623-e199-445f-96de-0e7a5c336a1b d8d3ff1d-65b9-46e5-8179-517740745fbc +26f80c3e-311d-4185-95a1-e4ca729f6a2d.mirnaseq.mirnas.quantification.txt 8beaf23a-9e0e-4fc1-b604-5de8c857fbd9 c394ce80-bee7-4314-b4be-fc1c18aade71 +babd95ad-d3a5-485c-8af0-c036cfff7337.mirnaseq.mirnas.quantification.txt 8eee2518-57c0-4ee8-b72d-49c3187d7e1a 21a753cc-8040-4ac6-867f-55f7354a0b71 +19b57268-9861-44b9-8a50-243937c472cb.mirnaseq.mirnas.quantification.txt a7deae0d-38d2-46e4-a90b-f79f57fd2808 247f21f2-5d69-489f-89f1-622d78a8d9a1 +5e6966c3-8159-4b05-b9ba-20ec6b83a233.mirnaseq.isoforms.quantification.txt aa6ca4cf-aad7-48d5-855b-3aff763ff527 d633e082-d6f3-459c-aaf6-5cf2be4e834e +e34460ad-500e-4d3d-a2de-871d44cb677e.mirnaseq.isoforms.quantification.txt af7b9ab4-fe96-43be-ac63-0721d3689fe2 622cbd77-a6b0-4b39-a448-19c63031facd +e34460ad-500e-4d3d-a2de-871d44cb677e.mirnaseq.mirnas.quantification.txt af7b9ab4-fe96-43be-ac63-0721d3689fe2 8ac03d87-5ef9-4cb8-8222-5e94420cebf5 +c3634b8c-f0fd-4d28-92b3-77eead7a6102.mirnaseq.isoforms.quantification.txt c2126c09-0465-43c1-bae1-a50e83d5f7d0 41b073a4-f9ea-4b0a-83d8-b227d1e5beff +23749b37-2455-4e3e-b6fc-820519f94e11.mirnaseq.mirnas.quantification.txt b9337dee-3bdb-49b2-90e4-97249e30418d a5aef34d-41bc-4600-bf1d-3bb69261776f +142e0755-5538-437e-86dd-f7a769446460.mirnaseq.isoforms.quantification.txt c3a430fe-641e-4b7b-884e-9735908692d6 817dc9e1-7a3e-4c38-9c7d-7b79bac2653f +ae729b95-39c6-475f-87aa-03e18fe38015.mirnaseq.mirnas.quantification.txt cee465f1-3162-49de-ba8c-29b2f989a7bb f97cd99b-cc47-4c9d-b68c-4071a230ba6c +54dcb5d2-7d29-44e4-882f-cc7891c52e5f.mirnaseq.isoforms.quantification.txt c6006435-8e68-4d7f-9d6b-ebac520c1361 10dace4e-9ef6-43f2-8d43-1db276ad52e0 +54dcb5d2-7d29-44e4-882f-cc7891c52e5f.mirnaseq.mirnas.quantification.txt c6006435-8e68-4d7f-9d6b-ebac520c1361 d2a5f04f-8c56-4856-8a73-6099a4f18943 +d383b337-778b-44d3-a692-92c5ab9b77e7.mirnaseq.isoforms.quantification.txt caf0bcda-98b4-4ef9-a1b5-10f7a95e08fc 46f4a1ff-f885-43e9-9ee5-40471a7e83d6 +1796fc0d-475e-4753-9e87-c3d5c354d65e.mirnaseq.mirnas.quantification.txt d7e3db60-1891-494b-81cb-5412cab99f5d 0948eba4-4a62-49df-bd49-e21286db5b7e +1a87d0c7-667d-42b2-ab04-775adeb5c0ec.mirnaseq.isoforms.quantification.txt dc8e3901-b845-4419-8f76-d31750eacf60 5431018d-5e22-44a9-bc07-dc4b11716676 +2b584c7c-face-4833-a93c-f2c5ad179328.mirnaseq.isoforms.quantification.txt e7e2597f-c6a3-4bdc-9daa-d17fc8ab9f76 ce946e5c-4a6d-4098-af05-f945d064dd4e +00b91f1b-5db7-47d3-94f6-d463886edf66.mirnaseq.isoforms.quantification.txt de970d08-9907-464c-8175-47f6d2be62e0 5dcf75eb-2368-44de-92f0-a5c1747e5d15 +cd8a050b-559e-4682-a691-ceb04adb62e6.mirnaseq.isoforms.quantification.txt f169018a-e95d-4f32-a807-da64ea3b83e2 59765801-6ceb-4646-a139-17ebf2c60ec3 +cd8a050b-559e-4682-a691-ceb04adb62e6.mirnaseq.mirnas.quantification.txt f169018a-e95d-4f32-a807-da64ea3b83e2 dcb7c72d-4101-47a2-a5b1-adcf9861b386 +c5b40d79-4bd0-47f1-b91e-269ef363f39a.mirnaseq.isoforms.quantification.txt fc1c474a-93d1-4faf-9180-cb4136043ef9 60134ccf-151e-4b02-a575-36be0a83cad9 +d2d587d7-065a-4fca-a3b8-abd85d44a4a2.mirnaseq.mirnas.quantification.txt 0f277939-aad8-48c8-9653-37c08ec8b021 9ebf0e93-130a-4aef-a549-b4f4c1b9f399 +28b2d19c-cbe0-4160-8bc6-95954b2aeea1.mirnaseq.isoforms.quantification.txt 0f875052-cf76-45f2-9c76-021ee605479d d25bf326-867d-4a35-9c06-b9c135cdafa0 +46d63673-21f7-4c6e-a210-882a6f358f02.mirnaseq.isoforms.quantification.txt 14cca285-5fbb-45c8-bbd3-3a901154a1e3 e18ee5d6-0983-4ea8-ac9d-96d535e73f59 +5a76814b-59eb-4d7e-b4e1-262e17ce8efd.mirnaseq.mirnas.quantification.txt 1521ff7d-3781-439d-a4af-3acd83734b3b fcbfefe6-e787-4273-87b2-cbbc9e3798f1 +5a76814b-59eb-4d7e-b4e1-262e17ce8efd.mirnaseq.isoforms.quantification.txt 1521ff7d-3781-439d-a4af-3acd83734b3b e7c2ce3a-9389-41b5-96dd-cc1707a304b7 +940af80e-b338-41d9-ae7e-7a5f41bc85c3.mirnaseq.mirnas.quantification.txt 1c545cda-2a3a-41bd-9f99-e3712e31ecdd 36ffb319-40b8-4fa6-8d0d-c6447eea62ea +940af80e-b338-41d9-ae7e-7a5f41bc85c3.mirnaseq.isoforms.quantification.txt 1c545cda-2a3a-41bd-9f99-e3712e31ecdd 489aa9e9-a0b5-48dd-9e4b-480a16988ad5 +11f3d084-fe3c-4c70-befa-56fe5dacf1f2.mirnaseq.mirnas.quantification.txt 1e4cce58-5a8e-4bc7-98ac-2daad7721a6b 07b0168f-fe08-4b07-b002-e65d0f7d6455 +11f3d084-fe3c-4c70-befa-56fe5dacf1f2.mirnaseq.isoforms.quantification.txt 1e4cce58-5a8e-4bc7-98ac-2daad7721a6b 02c65cda-3293-4f67-967f-6ff8bab28b2c +841bb971-7dc7-443e-a945-605084f844dd.mirnaseq.isoforms.quantification.txt 1fe09e41-2ce0-4e8f-a05b-868afa54247d 64a0d2e7-94ee-4549-972d-ac697da4b71e +841bb971-7dc7-443e-a945-605084f844dd.mirnaseq.mirnas.quantification.txt 1fe09e41-2ce0-4e8f-a05b-868afa54247d e08d33f5-4083-450b-92de-817424deb9ce +fdf4a9f6-faf3-4ebc-9e57-8be6f9319147.mirnaseq.isoforms.quantification.txt 206fc122-71e4-4601-8841-ffe3843636d1 a09ab211-93e7-4932-998d-2dc8e025cbb5 +fdf4a9f6-faf3-4ebc-9e57-8be6f9319147.mirnaseq.mirnas.quantification.txt 206fc122-71e4-4601-8841-ffe3843636d1 fa5b776b-8c7c-4284-83a2-302878387862 +d51798c5-c036-4294-91c6-3fbec47194fa.mirnaseq.mirnas.quantification.txt 26e77e24-e20c-4b17-b038-e33663d72056 fff0f5ef-1b53-4148-aef0-f2550e47923e +d51798c5-c036-4294-91c6-3fbec47194fa.mirnaseq.isoforms.quantification.txt 26e77e24-e20c-4b17-b038-e33663d72056 4e4f7447-6cbe-49f0-b96b-4a7d38f172ca +ddb2c9c2-4487-467c-834a-938429aeb8f1.mirnaseq.mirnas.quantification.txt 296336a2-8f88-4a26-8c34-7cdf22dd8f9c 11da7692-6b89-4ece-b0c9-d0ce49d52213 +ddb2c9c2-4487-467c-834a-938429aeb8f1.mirnaseq.isoforms.quantification.txt 296336a2-8f88-4a26-8c34-7cdf22dd8f9c 012a0d15-2d7d-4bab-af3f-ba3d808331c1 +0cbabe1d-cbc9-41b9-8c66-0e8d7a45fdcc.mirnaseq.mirnas.quantification.txt 2c8ff3ae-ef06-4e3c-b198-fb8f57ebbd61 d19bbd8a-54e1-4d3d-9b38-f2eae298cc75 +0cbabe1d-cbc9-41b9-8c66-0e8d7a45fdcc.mirnaseq.isoforms.quantification.txt 2c8ff3ae-ef06-4e3c-b198-fb8f57ebbd61 ecdf9ebf-48ec-419b-9754-7e3a8c853086 +32540332-2dee-419f-83ba-7b570a563e38.mirnaseq.mirnas.quantification.txt 36079a28-dfac-435d-a2f0-e00f653494bd 3ecd56f4-803b-4835-a624-9006a10919a8 +32540332-2dee-419f-83ba-7b570a563e38.mirnaseq.isoforms.quantification.txt 36079a28-dfac-435d-a2f0-e00f653494bd f9202cc5-3d87-44d7-9392-98cd45f1d2d1 +47c7dfa6-eed8-428d-9f77-5e3bb2562de3.mirnaseq.isoforms.quantification.txt 38bb0083-a307-4cc7-b15b-581f6c678482 bbcf182e-b06e-48ea-9aa4-931ea78d0443 +ced2ac6a-8b9f-4f2f-a73a-ac3be4d8926c.mirnaseq.mirnas.quantification.txt 420d40ba-e71a-495f-a5fa-7bd1b9a7dcc7 8221a870-bf71-4083-955a-85af6053a0b0 +ced2ac6a-8b9f-4f2f-a73a-ac3be4d8926c.mirnaseq.isoforms.quantification.txt 420d40ba-e71a-495f-a5fa-7bd1b9a7dcc7 7fe32694-3058-497c-9313-0fdd7f9fb2e1 +d34172a0-c0b0-46d1-a1f3-a0c7be9f07ae.mirnaseq.isoforms.quantification.txt 426aede7-3fc5-4cf8-9d24-735da96402e9 7b7b6ca8-aedb-4ac9-8d47-999bf1aaf907 +bd7326d0-a521-4491-b804-9981392588b1.mirnaseq.isoforms.quantification.txt 68f99d2b-5a98-4cd8-8192-5f36fab4221b bdff0893-f501-4f15-a92d-bd36784d590f +bd7326d0-a521-4491-b804-9981392588b1.mirnaseq.mirnas.quantification.txt 68f99d2b-5a98-4cd8-8192-5f36fab4221b 4dd6d604-0a6d-4a88-b6f7-511c6a23492c +716a3d4f-ef5a-4d6a-bf51-57053a7aeee3.mirnaseq.isoforms.quantification.txt 6b343732-324e-49a8-bdcb-71c5e4bc6936 26ef55fa-3db4-4d14-814d-217d06a481ab +36ac35ec-65b4-4268-8935-65bb19c34362.mirnaseq.mirnas.quantification.txt 718dff52-0d0b-48d6-89c1-cf594a6ab883 01cae191-097d-4df3-b599-f3709c4a95f1 +36ac35ec-65b4-4268-8935-65bb19c34362.mirnaseq.isoforms.quantification.txt 718dff52-0d0b-48d6-89c1-cf594a6ab883 af195268-2dad-468a-b797-ead78e887565 +753acd34-713c-40d6-b37c-c6b58a42d4b8.mirnaseq.mirnas.quantification.txt 7cee15a6-0f80-42c8-9120-322226def3fc e2adb855-815b-47ca-a213-3023a888b02a +753acd34-713c-40d6-b37c-c6b58a42d4b8.mirnaseq.isoforms.quantification.txt 7cee15a6-0f80-42c8-9120-322226def3fc 524a9956-46ce-4d6e-93b1-52f7d2cb7d2b +c06d76b3-3158-430f-8e4e-59b9ce686909.mirnaseq.mirnas.quantification.txt 742033a6-ba74-4871-9046-14972d6676e4 dfebb692-7e21-4aa8-95ef-f7bc24fdcc9a +7e50f090-1bc6-4123-9c5e-c08eb5497634.mirnaseq.isoforms.quantification.txt 848d4e80-9658-4f99-bcdb-e3f7275bb72d 783f3377-21c3-42d7-b88c-47b5468cebc9 +28c78a90-1f33-44b0-b7b0-99afed2cb895.mirnaseq.mirnas.quantification.txt 8a44e623-e199-445f-96de-0e7a5c336a1b 692cbb6a-2b1d-4568-bebb-1312ac948a16 +4d62ceb5-2038-438c-8ff3-1463f4b4475a.mirnaseq.isoforms.quantification.txt 9c6f433a-ca9e-4590-8a7b-6ddb69cc1398 a51e5008-ba14-4816-b47d-028ce66ff179 +845fce1e-5381-4067-b1b2-18917a4d7e8b.mirnaseq.isoforms.quantification.txt b127b826-fab9-4551-9300-efb5542621d3 fb4b29a1-f456-4652-91d7-8db7dd1ae4cc +5e6966c3-8159-4b05-b9ba-20ec6b83a233.mirnaseq.mirnas.quantification.txt aa6ca4cf-aad7-48d5-855b-3aff763ff527 44e7fe01-459e-4b71-9fd6-07647aa4929a +845fce1e-5381-4067-b1b2-18917a4d7e8b.mirnaseq.mirnas.quantification.txt b127b826-fab9-4551-9300-efb5542621d3 28076d4b-141a-45a6-8633-2c3afcb648f7 +f333f4c2-c44d-4437-92f8-c092d125e018.mirnaseq.isoforms.quantification.txt b295d458-952a-42af-9f7f-2c07e895990c ee00eb65-543d-4894-95ae-6c9519cc4989 +3634fc19-ab86-4e46-b249-b19cb2a12ba4.mirnaseq.isoforms.quantification.txt b5327171-0105-403e-9b91-125eecb02389 d6ed2b15-e88c-4d03-9f98-cbfb8dc75d17 +3634fc19-ab86-4e46-b249-b19cb2a12ba4.mirnaseq.mirnas.quantification.txt b5327171-0105-403e-9b91-125eecb02389 08bb344b-b222-4356-88d9-e7fc565166e6 +cf0c7a9e-a5f5-45d4-8458-5713fa45f880.mirnaseq.mirnas.quantification.txt cbbd64b3-258c-4639-9462-d1b08f4ffc25 ac655cf8-b05e-424e-b5b0-bd6cdb5a8333 +f39b5490-4d8c-4695-b31d-bc67cdcf7756.mirnaseq.isoforms.quantification.txt df907ef8-3c26-4c50-8a87-ee8290296117 1e618816-1cf8-4258-8fc1-aeb6bdbd8c44 +35f668d1-8efd-4d4d-99f7-6d48e11782cd.mirnaseq.isoforms.quantification.txt faf8cebd-72ad-4da2-b55e-73cddd8dafff 1c9a44c8-07d2-456e-81a3-301d822d3bb2 +6a353155-669e-4a1a-b009-c155e6e37e08.mirnaseq.mirnas.quantification.txt efc15407-78da-4c08-9fbf-2b02c17894b4 4d436314-4ba4-48b0-992a-01cbbb449765 +6a353155-669e-4a1a-b009-c155e6e37e08.mirnaseq.isoforms.quantification.txt efc15407-78da-4c08-9fbf-2b02c17894b4 bc6c9c97-dd99-4561-898d-1742be8c2188 +af104314-112c-4398-ad24-0fdd90d51e22.mirnaseq.mirnas.quantification.txt 46bab896-cce4-40d2-aee9-006234ec03e2 3503c503-da29-426a-8120-1d7b9abfc1a0 +f8fbb43d-e2f1-4fb1-9360-e893c46f488c.mirnaseq.mirnas.quantification.txt 485a9225-48b0-4f4e-a59a-299046e2e992 22037193-4a2e-4416-a53b-b52b4515d149 +f8fbb43d-e2f1-4fb1-9360-e893c46f488c.mirnaseq.isoforms.quantification.txt 485a9225-48b0-4f4e-a59a-299046e2e992 854cc7c3-4d7b-461a-a694-dee51b56da66 +fa3fc45d-1a7c-44c0-9d70-813916949abd.mirnaseq.isoforms.quantification.txt 52e4305e-1ff0-4a92-a38a-136696eb8968 c0078c23-3f2c-49b8-8252-761b2dab8c5f +89ce0640-08dc-4b4c-8ef5-bc557258478e.mirnaseq.isoforms.quantification.txt 6223da27-571c-4ace-80d7-9245693382f3 bfb4ac04-fc6b-4217-b068-1f0307979308 +89ce0640-08dc-4b4c-8ef5-bc557258478e.mirnaseq.mirnas.quantification.txt 6223da27-571c-4ace-80d7-9245693382f3 446e97cb-2597-4ebd-a17e-928a17e3783c +716a3d4f-ef5a-4d6a-bf51-57053a7aeee3.mirnaseq.mirnas.quantification.txt 6b343732-324e-49a8-bdcb-71c5e4bc6936 47e44931-2946-4ed8-ad65-4619e4dc85c3 +c06d76b3-3158-430f-8e4e-59b9ce686909.mirnaseq.isoforms.quantification.txt 742033a6-ba74-4871-9046-14972d6676e4 e67c3fdf-365d-492b-9c4b-ad8e0ae108ad +26f80c3e-311d-4185-95a1-e4ca729f6a2d.mirnaseq.isoforms.quantification.txt 8beaf23a-9e0e-4fc1-b604-5de8c857fbd9 358144e6-6a89-4b0d-89fa-abcc783e5ff2 +babd95ad-d3a5-485c-8af0-c036cfff7337.mirnaseq.isoforms.quantification.txt 8eee2518-57c0-4ee8-b72d-49c3187d7e1a 584111da-24cd-4dca-a630-15bb7b1a0a6d +4c587f89-6fa3-4d62-9812-98b3a29545a7.mirnaseq.mirnas.quantification.txt 99d74447-9236-438c-8543-e876b4daa8bf 6dcc6a7d-961c-4b77-bae4-35f0d67bdeef +4c587f89-6fa3-4d62-9812-98b3a29545a7.mirnaseq.isoforms.quantification.txt 99d74447-9236-438c-8543-e876b4daa8bf 09b9e650-d2d2-4eb2-9a6b-292c277acb75 +4d62ceb5-2038-438c-8ff3-1463f4b4475a.mirnaseq.mirnas.quantification.txt 9c6f433a-ca9e-4590-8a7b-6ddb69cc1398 d3c086aa-8540-4780-8f81-b6f30088ae39 +11d418df-a910-47ea-8912-4744e1f79fa2.mirnaseq.isoforms.quantification.txt 9d33308f-f7cc-420e-9116-b9a95068d045 d3cfc465-ed6a-4260-9ec5-4142faf686b2 +11d418df-a910-47ea-8912-4744e1f79fa2.mirnaseq.mirnas.quantification.txt 9d33308f-f7cc-420e-9116-b9a95068d045 2e426153-d11c-41e9-9a51-548e974a173a +bdfa24c3-1d29-4bde-82b7-840b0cbcde8e.mirnaseq.mirnas.quantification.txt 9d4c57e1-fdca-431e-b628-36a9a16f698d e278c60f-d08c-407c-9d0d-2d06786fadd7 +bdfa24c3-1d29-4bde-82b7-840b0cbcde8e.mirnaseq.isoforms.quantification.txt 9d4c57e1-fdca-431e-b628-36a9a16f698d ec02acc3-0bad-4979-b4a6-9e90d7199957 +19b57268-9861-44b9-8a50-243937c472cb.mirnaseq.isoforms.quantification.txt a7deae0d-38d2-46e4-a90b-f79f57fd2808 5dff9145-d069-4830-a997-5aba7fc922f7 +043c5222-1b0e-40ec-8637-5dfe3a2c9911.mirnaseq.mirnas.quantification.txt aa529cf5-9837-495d-9d5d-6c81460cbac1 8a3226c3-5e82-4c34-a94c-87c36a17efbf +043c5222-1b0e-40ec-8637-5dfe3a2c9911.mirnaseq.isoforms.quantification.txt aa529cf5-9837-495d-9d5d-6c81460cbac1 7f24d99d-22b7-43bf-8563-1ee953dbd5be +f333f4c2-c44d-4437-92f8-c092d125e018.mirnaseq.mirnas.quantification.txt b295d458-952a-42af-9f7f-2c07e895990c 0f96d477-50f2-4240-9cfd-5e6b194a671e +c3634b8c-f0fd-4d28-92b3-77eead7a6102.mirnaseq.mirnas.quantification.txt c2126c09-0465-43c1-bae1-a50e83d5f7d0 b2013c73-1c5e-427b-9db4-7812b15943a5 +23749b37-2455-4e3e-b6fc-820519f94e11.mirnaseq.isoforms.quantification.txt b9337dee-3bdb-49b2-90e4-97249e30418d d1bb5b6c-c1bd-42e1-a2e5-4d2721d98b14 +142e0755-5538-437e-86dd-f7a769446460.mirnaseq.mirnas.quantification.txt c3a430fe-641e-4b7b-884e-9735908692d6 bac44c7d-55c5-4d25-9b17-c9b23eae2516 +ae729b95-39c6-475f-87aa-03e18fe38015.mirnaseq.isoforms.quantification.txt cee465f1-3162-49de-ba8c-29b2f989a7bb fa820dbf-f8f7-4757-8676-43249dce9cb1 +d383b337-778b-44d3-a692-92c5ab9b77e7.mirnaseq.mirnas.quantification.txt caf0bcda-98b4-4ef9-a1b5-10f7a95e08fc c5dd9710-f55d-4bed-b872-e5f32caffa9b +cf0c7a9e-a5f5-45d4-8458-5713fa45f880.mirnaseq.isoforms.quantification.txt cbbd64b3-258c-4639-9462-d1b08f4ffc25 fd7b6aad-84ed-49e0-a763-218ae2b24ebb +1796fc0d-475e-4753-9e87-c3d5c354d65e.mirnaseq.isoforms.quantification.txt d7e3db60-1891-494b-81cb-5412cab99f5d 41869ab8-c6a5-4c82-b30f-ec4efb0a3153 +787134f0-d02b-4377-85d6-e4bf4b1d09a6.mirnaseq.isoforms.quantification.txt d8919e26-2ca9-4d13-99b0-9fe03b41ab56 e311f938-7e19-4f7e-a420-d4306f9f168c +787134f0-d02b-4377-85d6-e4bf4b1d09a6.mirnaseq.mirnas.quantification.txt d8919e26-2ca9-4d13-99b0-9fe03b41ab56 c511af7d-cdef-49b0-83f2-4353992db149 +1a87d0c7-667d-42b2-ab04-775adeb5c0ec.mirnaseq.mirnas.quantification.txt dc8e3901-b845-4419-8f76-d31750eacf60 3a693974-f6f0-4d2f-95d2-40ae42cc0cef +2b584c7c-face-4833-a93c-f2c5ad179328.mirnaseq.mirnas.quantification.txt e7e2597f-c6a3-4bdc-9daa-d17fc8ab9f76 9962e41a-8e0c-4ba4-b5f9-067481856d99 +00b91f1b-5db7-47d3-94f6-d463886edf66.mirnaseq.mirnas.quantification.txt de970d08-9907-464c-8175-47f6d2be62e0 de89e7f4-dbaa-4e23-a5ea-0e0732e211b2 +f39b5490-4d8c-4695-b31d-bc67cdcf7756.mirnaseq.mirnas.quantification.txt df907ef8-3c26-4c50-8a87-ee8290296117 189c7f19-f3a0-4639-9600-d2007c83b593 +35f668d1-8efd-4d4d-99f7-6d48e11782cd.mirnaseq.mirnas.quantification.txt faf8cebd-72ad-4da2-b55e-73cddd8dafff be7fb10f-cd4d-49f0-8c7d-2ae0288e79db +0d27e432-da00-4ee3-8246-e4acc95c6369.mirnaseq.mirnas.quantification.txt fb3f8ed1-cc6f-406b-8b3d-a5eeff0b4196 9495e67b-8cba-4764-8499-d38a07204163 +0d27e432-da00-4ee3-8246-e4acc95c6369.mirnaseq.isoforms.quantification.txt fb3f8ed1-cc6f-406b-8b3d-a5eeff0b4196 15fd1346-aeab-490a-a74e-4ec792f5b6cb +c6964718-cb93-48e2-ba95-a6d301d1cad7.mirnaseq.mirnas.quantification.txt f502e00b-e025-481b-9593-a6f7b363b63b b9724fa9-156f-46f4-968a-842b30d7fcd0 +c6964718-cb93-48e2-ba95-a6d301d1cad7.mirnaseq.isoforms.quantification.txt f502e00b-e025-481b-9593-a6f7b363b63b bfd82371-d876-45c5-b3e1-debe5e0d821e +c5b40d79-4bd0-47f1-b91e-269ef363f39a.mirnaseq.mirnas.quantification.txt fc1c474a-93d1-4faf-9180-cb4136043ef9 64fd2320-1fc3-4c66-9ca4-aa7624f00682 +9cc3eb7c-4c11-430f-a07c-c87ceacef246.mirnaseq.isoforms.quantification.txt f76d41a1-6a21-4641-a5b3-3e008f009d80 3c78781a-b8c5-47dd-812e-ee904e87986b +9cc3eb7c-4c11-430f-a07c-c87ceacef246.mirnaseq.mirnas.quantification.txt f76d41a1-6a21-4641-a5b3-3e008f009d80 6a77347e-df31-4d21-ba3b-1d9a27d54c9f +ebfeed3f-5019-43c2-a4e0-9d7e7ec7abbf.mirbase21.mirnas.quantification.txt f5033d52-ec36-4e67-88d8-b6d898b81b2f 169fe6b4-59bf-4bb9-9abb-8f26ffdaadb7 +7bf48040-2885-469d-9671-58c0a08cf4b3.mirbase21.mirnas.quantification.txt 02594e5e-8751-47c1-9245-90c66984b665 ababbc18-dcca-4c84-895f-95f2c4d4e08d +ebfeed3f-5019-43c2-a4e0-9d7e7ec7abbf.mirbase21.isoforms.quantification.txt f5033d52-ec36-4e67-88d8-b6d898b81b2f 2a869aae-9250-437b-add8-9dc53aadb590 +361d69e3-9759-4729-97d5-4c4d8a6f2496.mirbase21.mirnas.quantification.txt 66face4a-f35c-4364-90e5-8f28e6372606 587a6a5f-4b1a-482f-bc74-1a60d9e36834 +cdcb27f9-188e-4070-831d-0c98627c7d54.mirbase21.mirnas.quantification.txt bc3e0b74-ea09-46a5-9f61-16bd15ffd883 6c86a9a5-9809-42a4-9a2b-8e4c110bbbbb +94d6fac8-c2da-42de-9a11-bf39bcb41f6c.mirbase21.mirnas.quantification.txt 2517ca7a-6057-4c19-b7e1-f6d078e9881a 8260f978-dded-4381-8013-d371b0ad1eb3 +752e5e18-ec16-4799-bdf1-a0d049192581.mirbase21.mirnas.quantification.txt a36a4440-15ef-4837-904b-380a964d16f1 1301d6e7-8c22-4487-a6f4-0fdb0a436ef9 +349fde78-3468-4f44-9b7c-db70c772d6fb.mirnaseq.mirnas.quantification.txt 56c4bd48-ab15-4b49-ae2f-968653052b50 0c34e09b-6c66-4b6c-a1ee-fba9833b491c +236d72f6-5db0-436d-99f4-e9af2a633317.mirbase21.isoforms.quantification.txt e8372916-7ac7-4535-ae97-0248208224f5 648af1ff-5e30-4526-81dc-5bcaae684f8d +97f89216-7155-4125-8743-9dfa065f18a9.mirbase21.isoforms.quantification.txt 7ab3765f-910a-41c9-86cc-08534d2a4e4b 5f0c376f-b16a-4b43-b85d-d65d5f72d73a +ea542578-b842-4114-bc06-c4b52a52c53f.mirbase21.isoforms.quantification.txt 42b3dfa3-152f-4ab7-ac9f-988c7f473bea 06053d8d-30a0-46af-a839-98253b289060 +31c47104-601c-4210-af14-ba1a8cbb339f.mirbase21.mirnas.quantification.txt b923ac70-70ea-4a82-8466-46350c5803bf c538acad-2c04-4842-bdd5-1a32225485d1 +ce5e1133-e1d1-4724-ad06-b034eaec4694.mirbase21.mirnas.quantification.txt b120b701-c194-43d7-a491-3206fac38ec1 0fecc1cc-5400-45ef-a5e2-4f68f138d8cf +e28327dd-1ac7-45df-b812-841bdc8d0216.mirbase21.isoforms.quantification.txt 635f5335-b008-428e-b005-615776a6643f 743b876e-2c59-42c6-919e-8932b5d4fecc +016a9518-4721-410d-ac2f-2a17e9f0b4a9.mirbase21.isoforms.quantification.txt 6ea9877f-eb8d-4ee9-af4c-32a78474d9a6 eef85b85-6bf1-4d54-b333-32f4864f3414 +f2526cd8-37c9-4d76-9bdc-37922ed52392.mirbase21.mirnas.quantification.txt 5495b18a-10ec-427b-83b8-03ef4b587b13 1582fe39-77d4-4513-8c38-c6a03663b6db +a3ec233d-445d-4343-8dac-5e6cd05150f9.mirbase21.isoforms.quantification.txt 8652ddee-98f4-4584-b450-e6f2f5c9d7ec a74d82b8-d012-4917-8b78-08d1cc70abb0 +16c0520b-4f7b-4391-b128-cb23d2c125a8.mirbase21.mirnas.quantification.txt a285786d-120e-4c88-b48b-8111f4413988 7ff14709-523f-4911-a539-ca7e524d97f0 +dbbf6bfa-3730-4771-9984-9dece56aef63.mirnaseq.isoforms.quantification.txt a285786d-120e-4c88-b48b-8111f4413988 8c1bf7f3-99b6-4f99-b0de-4090d05b619d +dbbf6bfa-3730-4771-9984-9dece56aef63.mirnaseq.mirnas.quantification.txt a285786d-120e-4c88-b48b-8111f4413988 2c1c5abd-96b2-4909-9d11-fe7e0454d529 +8dd59f52-54b9-4486-aade-09ce66c266e1.mirnaseq.mirnas.quantification.txt 246404ae-3bc4-4db7-aee3-0346ca3f7322 f552232f-57a6-4a27-80cb-906db98e71df +8dd59f52-54b9-4486-aade-09ce66c266e1.mirnaseq.isoforms.quantification.txt 246404ae-3bc4-4db7-aee3-0346ca3f7322 87669eae-e2fb-45e8-a6ea-e5227c59455d +adf346ae-77e4-402a-bddf-5bf2fb83eec8.mirbase21.mirnas.quantification.txt d2c0d320-d1c5-4eed-af4f-15540e60db0b 8e449c21-9dc3-4efc-960a-4d659f609c31 +17cbc4eb-a468-48be-838d-712bbf28b4ed.mirbase21.mirnas.quantification.txt 63c6a89b-b28c-434a-a632-5de6545db731 bd92bd17-fe74-4979-ba3a-2bc940a50b75 +adf346ae-77e4-402a-bddf-5bf2fb83eec8.mirbase21.isoforms.quantification.txt d2c0d320-d1c5-4eed-af4f-15540e60db0b 5bf59a88-9b74-4a82-9aa6-fcdef70ba703 +752e5e18-ec16-4799-bdf1-a0d049192581.mirbase21.isoforms.quantification.txt a36a4440-15ef-4837-904b-380a964d16f1 0679ff9c-a11a-4d39-8ba2-50929d905217 +dc4a1da0-916b-4886-b9ba-10752e37d90c.mirnaseq.mirnas.quantification.txt 5554a003-da6f-4ddf-9f05-6785987ac46c 1d2b8ec0-7593-4b40-8e03-04f3160ebeaa +6fc0d0fc-268d-4f5b-90d8-fc8fba9442af.mirbase21.isoforms.quantification.txt cd49126a-ec15-43fa-9e43-3f7460d43f2b 7b545c1c-c67a-48a7-9c29-e6e9ce02b8e1 +7615d3ba-55f9-4b35-981d-558823435049.mirnaseq.mirnas.quantification.txt f50ee039-1da9-43d9-ac01-657ec77a7f32 e50c39bb-4f25-40b7-9269-4247acf0b1cd +339ab544-050a-47bc-b59a-e1635a203c33.mirbase21.isoforms.quantification.txt 6fb71a0c-bc50-48c8-acfa-db94be1e151a 07f1474a-5345-4aa6-8066-c8b434da2b91 +39598a1c-cfa9-4660-b39b-0b17fc87443e.mirbase21.mirnas.quantification.txt 4b930a10-4b12-4428-84f9-3255b4a3bc4f 437cbda2-9bde-4075-8f3e-b49f56c50efd +339ab544-050a-47bc-b59a-e1635a203c33.mirbase21.mirnas.quantification.txt 6fb71a0c-bc50-48c8-acfa-db94be1e151a 214aaadb-7bbd-413c-97cc-230b3ca8c2b8 +c7448ff7-9f40-4a67-9bd1-3d990508124e.mirbase21.isoforms.quantification.txt f3618472-32dc-4c90-a407-90050f68be85 d8ed7ff7-13d7-4f52-bc66-9ee72170d0e1 +e6b4b4d2-566b-41b2-808f-c8a3c6538e1e.mirbase21.mirnas.quantification.txt 499a9b57-ee1a-4012-bbab-c6ad955b5e0a fc327603-49fa-40b8-a5f5-2ad39b692b61 +13f40071-fafc-412e-9edf-e67ab7b8bc79.mirbase21.isoforms.quantification.txt e07a61e2-bcd2-4a96-80df-97e04aafbd32 37295617-671d-453d-b931-328746174d8f +559df187-6d48-49d4-825d-80d9d0cbf8c0.mirbase21.mirnas.quantification.txt fe402983-70da-44db-b7b1-c32702ddde26 318c24fd-c0f9-4a11-a96e-52f4ec489942 +559df187-6d48-49d4-825d-80d9d0cbf8c0.mirbase21.isoforms.quantification.txt fe402983-70da-44db-b7b1-c32702ddde26 3a088a2d-d66e-4167-af9b-6983a606b287 +2fa90483-1efb-47b1-a949-f30f703d2cae.mirbase21.mirnas.quantification.txt 8516d4f2-0b98-4847-99c6-4d7269fa4af2 83c20325-b38b-41e9-85d7-e8e2cde9bc95 +2fa90483-1efb-47b1-a949-f30f703d2cae.mirbase21.isoforms.quantification.txt 8516d4f2-0b98-4847-99c6-4d7269fa4af2 a94569be-d9b7-4e26-9f1f-667e904de734 +a83edf78-2e81-4c38-a0d9-31ecde1f0ac1.mirbase21.isoforms.quantification.txt 95e58015-a7c0-4bdc-bf64-7617d24d0784 8cbf8ad9-5e5d-4f9a-897d-28ac0d03ee42 +04276a5a-23dd-467f-b8c8-60ce5e892f0c.mirbase21.mirnas.quantification.txt 2ee36d9d-128b-4761-aa1a-a637da106f3d 9e5e5d58-4a95-4f72-a643-4e6d879f94cb +bb5d455e-c711-4ef2-8246-eade36c730e9.mirbase21.mirnas.quantification.txt 22178c3c-6b04-46d8-8041-dc83fa195029 77547e97-d16a-4493-9fd3-ba4507807ccb +194917a1-5909-421f-8264-71c03bbe61a5.mirbase21.mirnas.quantification.txt ad2939e6-b8b8-475a-90e2-6a369c3d3167 30512297-a9be-4281-9b72-103c8cbb630c +194917a1-5909-421f-8264-71c03bbe61a5.mirbase21.isoforms.quantification.txt ad2939e6-b8b8-475a-90e2-6a369c3d3167 9a8cef9b-1b02-4bf7-ab30-ee9d50737e8c +5559a822-52f4-4c51-9b17-d87fbe81538d.mirbase21.mirnas.quantification.txt 45baebac-32ae-4093-9eba-488b95c1a58d b5652f88-4777-4ab2-9f74-a078e3c062c6 +5559a822-52f4-4c51-9b17-d87fbe81538d.mirbase21.isoforms.quantification.txt 45baebac-32ae-4093-9eba-488b95c1a58d 470f2c2b-b5d5-4803-82b0-77cc9c954ffd +1243e3ec-e09f-48fe-a2fd-2035eb202af1.mirbase21.mirnas.quantification.txt cd6e5d3d-1c86-40dd-9cb3-b2e2075dec56 9bc38484-a132-4af8-91db-bc425e47b0d9 +cc60786c-32d5-4a8d-9439-dfd61847580b.mirbase21.mirnas.quantification.txt c8acee1b-6854-409b-86ab-bf69dbe22ab6 0d2c14c5-424f-4f03-8e0b-ca890c3e7fe0 +cc60786c-32d5-4a8d-9439-dfd61847580b.mirbase21.isoforms.quantification.txt c8acee1b-6854-409b-86ab-bf69dbe22ab6 39f448d2-5eea-4b93-9627-1ece99fbfa01 +4cbbf25f-4fc6-4590-96d1-832a6ab2708b.mirbase21.isoforms.quantification.txt 32d4d200-1fdf-44ed-b81f-1954a9c93926 d428a6c3-3134-4f19-8a32-52d2c16fdad7 +1f1e8c1b-1eb8-4efd-bf25-0c8c7e939c30.mirbase21.mirnas.quantification.txt 17181157-c9e2-4bd6-8653-f5dce56f9053 8b26ec22-3cb8-4486-86e0-e80602059be4 +78c9c71a-7ed8-4e63-8b06-aa8c5f8a1f16.mirbase21.mirnas.quantification.txt 0484a929-7a7f-4926-8d25-470ddab082ec 772bdecb-a6b4-4a38-9705-ae6abec09fcd +ef2cb396-9fe1-41ef-a637-86c1d0cf669b.mirbase21.mirnas.quantification.txt 13f5814c-1f99-4ffa-84a4-3bbd8979faae b94311f6-1f4d-4276-b3e9-f4df893610ef +3832b832-ddf2-4632-8be7-03946e864a96.mirbase21.mirnas.quantification.txt d1e974e7-dd68-40cc-ad06-2b57d964e5a1 746fc39b-e56d-4d2d-8de2-9c09246fa275 +03e488fc-8516-48db-8824-485ee1ddb6ed.mirbase21.mirnas.quantification.txt 4ea50685-3b63-440a-b037-597ef2529e7d ec4c5e1b-a371-4e8a-9e3d-e02a8d161b26 +03e488fc-8516-48db-8824-485ee1ddb6ed.mirbase21.isoforms.quantification.txt 4ea50685-3b63-440a-b037-597ef2529e7d 56c06b99-b03b-48ab-b3e6-4fa0b08292a9 +72502bda-8a92-4683-8407-ed1bf1fe638f.mirbase21.mirnas.quantification.txt 15556b28-c6bd-455a-87b6-4b7b3e33d0e4 83f9806a-57d1-4254-ab77-0de03fec70c1 +c771d5ee-c270-4c69-a740-290d0962846a.mirbase21.mirnas.quantification.txt dac96910-0cb2-44ea-b108-2d6d51b07112 41b5189a-45ab-44bb-8420-ed88dd4250f7 +9f76cbf7-4885-49b9-950f-94b693afdb2b.mirbase21.isoforms.quantification.txt 93095c36-2263-438f-a619-a4a4d6ae13c7 df1af27d-3a50-4a27-824f-9a0dca8593d5 +361d69e3-9759-4729-97d5-4c4d8a6f2496.mirbase21.isoforms.quantification.txt 66face4a-f35c-4364-90e5-8f28e6372606 daa1fd49-c356-4f30-a143-43071589ce52 +789ae3f2-df58-48b1-b017-4f47f761ad57.mirbase21.isoforms.quantification.txt 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 6c5196e4-ad15-4949-bc43-0338226f776f +21a6b0ca-53c3-4e0a-9a03-9db95a3c9606.mirbase21.mirnas.quantification.txt 7413c891-f74e-456f-bc70-69c83fb53c70 e5e971e1-6802-4ded-9be9-24a36df725eb +59a2fe2e-bad3-4ab8-845e-aa53f920426f.mirbase21.isoforms.quantification.txt 2dfd8a0e-e642-49b3-abd7-f0334927eebb 2c7ef23b-feb5-4393-ba66-21c75bbead85 +cdcb27f9-188e-4070-831d-0c98627c7d54.mirbase21.isoforms.quantification.txt bc3e0b74-ea09-46a5-9f61-16bd15ffd883 c6d8311d-60b1-4bbf-9447-eff1ef28749d +10de2e1a-a9db-4b56-9ab3-a2a56673b386.mirnaseq.mirnas.quantification.txt e8372916-7ac7-4535-ae97-0248208224f5 eb3a5b1d-012e-4492-b7ef-635cae03400b +236d72f6-5db0-436d-99f4-e9af2a633317.mirbase21.mirnas.quantification.txt e8372916-7ac7-4535-ae97-0248208224f5 c403d70f-14b7-4745-9249-36802ccd4a0c +c479012a-ab8b-434c-b88e-9bc28931adbe.mirbase21.isoforms.quantification.txt 9d25cd0e-0a3e-4ee0-b1a3-58ffab348c9d 39c684d5-228f-46de-a7b6-28c82aa95623 +ea542578-b842-4114-bc06-c4b52a52c53f.mirbase21.mirnas.quantification.txt 42b3dfa3-152f-4ab7-ac9f-988c7f473bea 3e058459-7cdb-442b-aad6-085eef32e4d7 +746f7449-4911-49d8-8672-a867477eda73.mirbase21.mirnas.quantification.txt 05263959-c4f5-4540-b6d2-d8c8a128861f 9a2ee7b4-fc1c-431b-956b-393f244a6483 +4522e86d-a860-4ab8-a8e8-8001d3287255.mirbase21.mirnas.quantification.txt 708eec28-2348-4e15-b98c-8c6f9d057b1e a27c0d81-a245-4e8b-8c14-626897a39ee2 +f2526cd8-37c9-4d76-9bdc-37922ed52392.mirbase21.isoforms.quantification.txt 5495b18a-10ec-427b-83b8-03ef4b587b13 7770d350-5822-43cf-9bb7-0284daf6d6ed +016a9518-4721-410d-ac2f-2a17e9f0b4a9.mirbase21.mirnas.quantification.txt 6ea9877f-eb8d-4ee9-af4c-32a78474d9a6 d5d5fa4d-491b-4425-af2d-40e8d196d140 +a3ec233d-445d-4343-8dac-5e6cd05150f9.mirbase21.mirnas.quantification.txt 8652ddee-98f4-4584-b450-e6f2f5c9d7ec 99bb2ec2-13f3-4179-bb90-b8b54ec97cc1 +dc4a1da0-916b-4886-b9ba-10752e37d90c.mirnaseq.isoforms.quantification.txt 5554a003-da6f-4ddf-9f05-6785987ac46c 6d0a8794-9e1a-4f4e-846f-0bcb1c384bac +17cbc4eb-a468-48be-838d-712bbf28b4ed.mirbase21.isoforms.quantification.txt 63c6a89b-b28c-434a-a632-5de6545db731 3cd73a9b-868a-4717-a44c-a84411a6d7e5 +7615d3ba-55f9-4b35-981d-558823435049.mirnaseq.isoforms.quantification.txt f50ee039-1da9-43d9-ac01-657ec77a7f32 6d212166-e6b7-473e-89bf-052351a38c33 +6aeec5ae-b247-4f8a-b00f-a60c87b9c57c.mirbase21.mirnas.quantification.txt f50ee039-1da9-43d9-ac01-657ec77a7f32 d1640998-a089-4aa2-93c6-c397c1317021 +d78a635f-6a46-4c82-a6cb-20f133148214.mirbase21.isoforms.quantification.txt b25570ed-baca-4e3f-87c6-2ef18119ba49 6fab8519-c2f6-4f58-b3e2-82d926ea334f +07a1428c-f519-4818-853f-a9a20dc111a8.mirbase21.mirnas.quantification.txt 71faa2c1-0d5b-4dcc-bdf9-f2405f29907c 1985946c-99a2-4b98-84a0-b8044cdd8d55 +10de2e1a-a9db-4b56-9ab3-a2a56673b386.mirnaseq.isoforms.quantification.txt e8372916-7ac7-4535-ae97-0248208224f5 ed56e779-e1cd-421e-9f33-ac0246acee71 +97f89216-7155-4125-8743-9dfa065f18a9.mirbase21.mirnas.quantification.txt 7ab3765f-910a-41c9-86cc-08534d2a4e4b 01aa4e23-5399-491e-98c7-9465e6cd4021 +dc302f21-11d9-458d-a09a-2e6f0699a04f.mirbase21.isoforms.quantification.txt 0724f800-e873-45d0-bc56-809d0ec4f6e9 4118a2ce-c4c2-4f54-8a28-d96838b0a1ff +31c47104-601c-4210-af14-ba1a8cbb339f.mirbase21.isoforms.quantification.txt b923ac70-70ea-4a82-8466-46350c5803bf 540b4c23-e4fd-4ff2-ab72-51d62e29f193 +e9d2b04c-c3eb-4d71-9a33-420badc763ee.mirbase21.isoforms.quantification.txt 94bd4c68-4bfc-4db3-9365-97c867747133 9b724340-c5a8-4c66-b02b-e8cea413e0b6 +80d179ee-dafe-46d2-9a8c-94dda800da7b.mirbase21.mirnas.quantification.txt 6fee41dc-b8a9-4347-8085-b7e05f813ad0 d12a963e-04d1-4400-80c9-06d267060e31 +16c0520b-4f7b-4391-b128-cb23d2c125a8.mirbase21.isoforms.quantification.txt a285786d-120e-4c88-b48b-8111f4413988 e66dac04-6db9-4329-9345-c1b231e3e6ef +dbc68340-b121-4f8b-86f6-5baee0ae60c2.mirbase21.isoforms.quantification.txt c73244fd-d486-439f-a94f-fb0bd4e9ac8f dc53cd21-5c98-4b0b-9c90-e071475c6c45 +a92eccd8-fc46-47e6-96b5-a614b12857d8.mirbase21.mirnas.quantification.txt 6a57948c-0dc5-4ea2-8043-380f26763752 dd21112b-50fc-4163-944d-6023f9ca10c2 +1c61adad-e43a-44a0-b6bb-69cbcc639f10.mirbase21.isoforms.quantification.txt 60cce7ac-d27d-44a6-9873-ecf91da5e906 e34e143e-1714-4e36-8e21-fec8f50aa0fc +7ea6581d-bb19-49e0-a430-7796d0b651c6.mirbase21.isoforms.quantification.txt 78777a80-cc6c-46c9-a14a-837ac7943719 2937c19d-9b16-4cba-94e4-e7e631721099 +6fc0d0fc-268d-4f5b-90d8-fc8fba9442af.mirbase21.mirnas.quantification.txt cd49126a-ec15-43fa-9e43-3f7460d43f2b a6ec192a-7f6c-4f03-b667-155f48837164 +6aeec5ae-b247-4f8a-b00f-a60c87b9c57c.mirbase21.isoforms.quantification.txt f50ee039-1da9-43d9-ac01-657ec77a7f32 28e8e375-97f3-484f-8def-2b9bf4c5d00a +28bfb2b0-4e14-44e5-ad3a-e1d7ca3e4efd.mirbase21.mirnas.quantification.txt 33dc48d8-2e01-482b-944c-ac10da727ec9 122033cd-ead2-4d19-be67-a3c061f98d22 +5c324295-219b-491d-9d05-2030b839eb82.mirnaseq.isoforms.quantification.txt 4b930a10-4b12-4428-84f9-3255b4a3bc4f f811e056-bfbd-47af-996b-8b08a4c1cb64 +e45dce70-fc80-4eaa-af26-d934d73f6c1a.mirbase21.isoforms.quantification.txt acb7ec56-8a47-495f-a11b-2c9fb5d8fe95 2406fe1d-7348-4ffc-9ec3-004662365c94 +e45dce70-fc80-4eaa-af26-d934d73f6c1a.mirbase21.mirnas.quantification.txt acb7ec56-8a47-495f-a11b-2c9fb5d8fe95 4b239b18-ecf6-4df9-ae9e-a630f798f11d +ef8f508b-f166-4877-84f1-5b49c70de398.mirnaseq.mirnas.quantification.txt 314e446d-3a57-4c91-ac2e-4fc211456ee6 d0d62f71-204d-490e-b29c-7f4f7a42fb72 +67b376d2-5852-4bab-8ec9-afc8b803b186.mirbase21.isoforms.quantification.txt 314e446d-3a57-4c91-ac2e-4fc211456ee6 53c9d0c1-a0fd-4bf9-8839-35a5d6b65aa0 +ef8f508b-f166-4877-84f1-5b49c70de398.mirnaseq.isoforms.quantification.txt 314e446d-3a57-4c91-ac2e-4fc211456ee6 0edbe6b2-dce8-4853-a3a8-7bd0001e778a +94d6fac8-c2da-42de-9a11-bf39bcb41f6c.mirbase21.isoforms.quantification.txt 2517ca7a-6057-4c19-b7e1-f6d078e9881a 7f3b1945-4b83-4e8e-87e5-113e74f183c0 +e6b4b4d2-566b-41b2-808f-c8a3c6538e1e.mirbase21.isoforms.quantification.txt 499a9b57-ee1a-4012-bbab-c6ad955b5e0a 9c6d98a4-a294-4205-b60e-649a5ee306ef +13f40071-fafc-412e-9edf-e67ab7b8bc79.mirbase21.mirnas.quantification.txt e07a61e2-bcd2-4a96-80df-97e04aafbd32 c37e3704-3e98-4de0-9139-cee6f05d2607 +b495eb0f-a0b2-4017-8989-86f9bc116742.mirbase21.isoforms.quantification.txt 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 8f641439-1a90-446f-8b2e-eafd6913b25e +d1a64a3b-7d3b-4636-8d2a-baf56068b1dd.mirbase21.isoforms.quantification.txt 88d61634-913c-435a-8d25-e019c8dab7da d4107eda-8358-4d6d-a80f-8ce225c836d8 +f7df30ab-bdd8-4ddd-becd-4843a779586f.mirbase21.mirnas.quantification.txt 58427bce-6b81-4083-aeda-25f59e292bbc e2ab2ccb-5fcd-4582-b9fb-818d75afc1d7 +ca58ca71-b14f-4a77-9f63-2b02ff9a99d8.mirnaseq.isoforms.quantification.txt 8a6d2ce3-cc57-451b-9b07-8263782aa23f e19c5b94-d54c-4277-b28f-276de7a39220 +8fc1da04-3059-4d14-9e79-0b4f5046ea78.mirbase21.mirnas.quantification.txt 8a6d2ce3-cc57-451b-9b07-8263782aa23f d4e04ab6-8aeb-4359-a402-006b4f3e562a +a83edf78-2e81-4c38-a0d9-31ecde1f0ac1.mirbase21.mirnas.quantification.txt 95e58015-a7c0-4bdc-bf64-7617d24d0784 01beca46-2c42-4d07-a143-7b2dc70b9130 +4550f3de-3329-4313-b52a-9fbe5d5e7074.mirbase21.isoforms.quantification.txt 1d192835-524e-429d-bf74-3c4727acb446 da7b7c7e-4a4e-4211-ab07-81ba87195290 +4550f3de-3329-4313-b52a-9fbe5d5e7074.mirbase21.mirnas.quantification.txt 1d192835-524e-429d-bf74-3c4727acb446 e459d790-888c-47d5-bb77-9200d814f359 +0ebefb69-8b60-46e6-9165-53cdd735ba91.mirbase21.isoforms.quantification.txt d2ccefea-c1d6-465f-97b1-e51e29c5f1f8 9afdd9ea-0432-483d-84b5-6da9f492a9ec +3446bcfb-1b6a-4863-a481-f19e4474d9b0.mirbase21.isoforms.quantification.txt c9226204-cb61-40b8-8a94-a7e71c14ea3a 7b765771-fc1a-4fdf-994b-391cfbf39bea +c2fa8708-4e91-4ae7-8376-9e560c930943.mirnaseq.isoforms.quantification.txt ff33db70-91d4-4dbb-a4fc-d81a128d0f32 377c2c62-7394-4d26-ad5e-d8bf0437b339 +c2fa8708-4e91-4ae7-8376-9e560c930943.mirnaseq.mirnas.quantification.txt ff33db70-91d4-4dbb-a4fc-d81a128d0f32 ec60fb3c-6601-4535-bdf1-9415d279c332 +4508c46a-7ecc-4031-9936-4c4746ce5a8d.mirbase21.isoforms.quantification.txt 20cf00ea-d7da-42bb-bce7-f005f0b952eb 9ab0c07f-e104-4ead-a7b7-70e503fbca27 +5b3bd1e9-bde7-4821-8694-53bffd484b15.mirbase21.mirnas.quantification.txt 09c77947-a333-4392-b18d-a6c1f08764a1 18a28a39-8b0d-44a3-9aa7-a1075c9ed2fc +806e63e0-463e-4370-acf8-a2787c33c683.mirbase21.isoforms.quantification.txt f2ec64f5-a414-4c34-99c7-d59bc4e831e0 0149edd7-6eb1-482b-9e20-6633ea66e2bd +a8ec968d-7115-4b59-acaa-6f878023cb7f.mirbase21.isoforms.quantification.txt 700e91bb-d675-41b2-bbbd-935767c7b447 8dfb3609-c6c5-43ff-8b1f-a5c4fdba334a +f1b000fe-541d-49a5-acdc-2dbd16c2d4a3.mirbase21.mirnas.quantification.txt 077079c3-6877-467b-b9cc-5c650aae4f07 3d59f933-afd4-43cd-a5ef-d019132c0ff8 +2ebc4202-1053-45da-a924-10e8ff9ad6a2.mirbase21.isoforms.quantification.txt ff844242-7559-4b07-b09e-69ea40e5ac6b 0749ee5a-e14f-4064-94f5-d18e0741dae3 +bff56eb3-0abb-43be-97a3-545d9c748a79.mirbase21.mirnas.quantification.txt c435627c-159d-4a6d-a819-30abac24bf4d 698687e9-beab-4106-a37e-f4b2679239e7 +02d34874-3343-4c91-9ed9-47af1e8b544a.mirnaseq.isoforms.quantification.txt 44493c23-82e9-4d9f-8e3c-7b3f9ae44970 fff1c70c-54a0-4b31-bed3-4ff245c67dce +05987e47-7fa5-4323-ab5f-9810d51a7deb.mirbase21.isoforms.quantification.txt 91de8a74-a1e6-46b6-a06e-70aedf2c3eaf 6e66c78a-7762-41b6-862e-f39cec4d56d4 +05987e47-7fa5-4323-ab5f-9810d51a7deb.mirbase21.mirnas.quantification.txt 91de8a74-a1e6-46b6-a06e-70aedf2c3eaf ac692ebf-646f-434d-a55f-e65bf4d0cf3b +04f92f91-dfa4-45e5-8817-612c170610aa.mirbase21.mirnas.quantification.txt cddce77f-21e6-4124-9f03-96fb5ca7cefa 648ee215-024f-4df8-a46a-25465eb29312 +ff73a433-5f3b-41e0-aa7e-7415665ff3de.mirbase21.isoforms.quantification.txt 5d603bba-62e6-48fb-b8fc-401109abcaee fec3a211-7980-400c-a15c-cb12a6be2add +fd49b73a-7479-4275-8069-491d0a62f439.mirbase21.isoforms.quantification.txt 72c40fba-f502-489b-ad87-843f52655894 1e1c6cca-fa7d-433e-b50d-f3556879ffef +ff73a433-5f3b-41e0-aa7e-7415665ff3de.mirbase21.mirnas.quantification.txt 5d603bba-62e6-48fb-b8fc-401109abcaee 14f9ac7a-e3f6-4363-9cd5-6ebeda9be45d +fb3178bf-1785-4dad-b4d1-e09541819db4.mirbase21.isoforms.quantification.txt 5ced5b58-fab4-4bcd-b706-d6e49ce0cfc5 d8da707e-4eb4-440d-b7b4-d6fd332b5a36 +897f330c-09c1-4a3b-afcb-bba15eaf9367.mirbase21.isoforms.quantification.txt 18e0e996-8f23-4f53-94a5-dde38b550863 09dd2f4d-bd6c-4a56-8fff-69c9b99d0b49 +897f330c-09c1-4a3b-afcb-bba15eaf9367.mirbase21.mirnas.quantification.txt 18e0e996-8f23-4f53-94a5-dde38b550863 1fc34605-bf80-42da-be83-030277643a5d +02bcc8b6-df8d-459f-b1fa-92fefc2b113a.mirbase21.mirnas.quantification.txt 611600a6-43ec-4029-9682-cd6d6a3312ec 7eafee1c-92c2-46a0-8775-35b27cd2627a +02bcc8b6-df8d-459f-b1fa-92fefc2b113a.mirbase21.isoforms.quantification.txt 611600a6-43ec-4029-9682-cd6d6a3312ec edfd0211-a379-4ba8-9de8-8f3c46a5699c +4357992e-4034-49ba-bf2e-2b37f5adffd5.mirbase21.mirnas.quantification.txt ceb19678-b453-4529-b6cb-d02f9cb101b4 aae72e78-97b7-43b2-ba9c-4c2c0dcdd37e +d7b2fdac-3937-4545-b7b6-2beb70c362aa.mirbase21.isoforms.quantification.txt 7472b3ba-9b15-4d97-8708-a2dd82ca0f45 141c7cc5-aa53-4e24-ae9b-61ec8692d006 +489e1313-1bd0-4e09-a6b9-937559ae3a00.mirbase21.isoforms.quantification.txt a6aad7f9-8444-4c2f-8e4b-b19fd453544f ca40773b-570a-45a2-934b-735e9e803991 +0b0796b2-4d6f-4c54-886f-0ccf4128ab2a.mirbase21.mirnas.quantification.txt 808eb134-9c7d-43bb-b86c-2f3259193954 d68531b5-e558-437e-a85d-dc0e2e00567e +d2504e2b-bc9a-47f7-a612-257d386b536c.mirbase21.mirnas.quantification.txt 63a75e0b-9241-4f0e-9236-01a2e2c05b7e fdb44278-8fff-4f6c-b130-b255f841af9a +0b0796b2-4d6f-4c54-886f-0ccf4128ab2a.mirbase21.isoforms.quantification.txt 808eb134-9c7d-43bb-b86c-2f3259193954 506df437-3a4c-4ba6-9b6d-276042d20c6d +3db3c77d-c171-4020-82af-1643d1b18c0b.mirbase21.mirnas.quantification.txt a8c4a333-6b67-44c8-9000-516f8ccea788 c6b24881-995d-4914-8ba3-652f4d7097c5 +019f69d3-6dc9-4677-88d7-cee7b4dd77fb.mirbase21.mirnas.quantification.txt de548bdd-14ca-486b-bd16-a6fbdd5b50d2 a9bbfa84-1366-4c36-9e6e-4b4b47900909 +bc22897c-a0dc-45f7-b4ec-4b8e957bf512.mirbase21.mirnas.quantification.txt 04ecaf38-0232-4dcd-9242-308a22cc1331 74918167-80f0-48da-8f0f-2a696baeb75c +0e767624-17df-43ee-b43d-8b7d4282cc2a.mirnaseq.mirnas.quantification.txt 2c69f3a4-c26c-4fbb-a1c0-b1f57554c43a 55397fcb-1bbb-4206-a788-0398cccf9807 +365478d2-32f1-4773-b997-a39d13a606c5.mirbase21.isoforms.quantification.txt c183d3fb-2eee-44f8-890e-b9bf907141e6 d22f8693-adfb-452a-9cbb-1c71ad7d4ab8 +966888b8-9194-44b5-a7e8-feb9a82ef136.mirbase21.isoforms.quantification.txt 3f917550-89a6-404b-94df-938c99121411 75266a65-7bb1-40c4-b9d2-1bb73136e02b +f19b41a9-5103-42af-9bb0-dfe33cc75ee2.mirbase21.isoforms.quantification.txt 374ea8df-ecc4-44b0-b519-33efa5078018 a49256fa-3afe-4edf-8a95-0982163111f2 +f19b41a9-5103-42af-9bb0-dfe33cc75ee2.mirbase21.mirnas.quantification.txt 374ea8df-ecc4-44b0-b519-33efa5078018 5ccb60ce-6cf1-4bae-a3f0-bc979b6df86b +3a891c6d-b223-4873-b6b1-5bb2f9ac6788.mirbase21.mirnas.quantification.txt 2956e414-f167-438f-8747-a46fe0723622 3e477070-a8d4-4c0d-8e84-b36a108ceafa +e3ad30ce-354c-4032-9cf1-a725c1e45cb2.mirbase21.mirnas.quantification.txt 07fbdb3c-8337-4319-8255-f2363f8a031e 9373543a-3529-40bf-af53-6671ca260ad2 +b8909fc8-4eda-433c-afff-7c5aba6913c8.mirnaseq.isoforms.quantification.txt 2956e414-f167-438f-8747-a46fe0723622 713136b4-69e6-4807-8965-0db0c5f947ff +e3ad30ce-354c-4032-9cf1-a725c1e45cb2.mirbase21.isoforms.quantification.txt 07fbdb3c-8337-4319-8255-f2363f8a031e ee20715f-b12d-4662-8eb3-7f43e2e88e9a +60748b7b-a395-407d-a980-aa0e16f7adb9.mirbase21.isoforms.quantification.txt 9a30dee8-962a-49db-a85a-c39515c91b68 9fc61eaa-e32c-4171-98b2-595bc279bf54 +915f8cfc-2ef6-409d-8b9f-15de72b598ee.mirnaseq.isoforms.quantification.txt 00630714-7ab3-44e1-afff-186300edae44 a1f7fe29-d1bd-4df2-8f4c-ed5a49fe954b +d0dd6aca-e647-4165-867c-6035a1610d56.mirbase21.isoforms.quantification.txt 0b2ea4b7-98bb-4190-b682-2c75b447c90a e0724ccc-0cd1-408d-9102-cd056ac06a1c +5413501f-5f3b-4705-914f-dde9a3fb43a1.mirbase21.mirnas.quantification.txt 02d9aa2e-b16a-48ea-a420-5daed9fd51a6 bbb4ccff-f7d2-4775-97e6-99ad9a668a9e +53567b54-bb81-4dc7-9161-8206b11d87c7.mirbase21.isoforms.quantification.txt 0b519c08-9f23-4ceb-9a13-e16509ca55d7 1346e045-d8f8-4ad4-a4ea-469bbc3506b6 +11615736-838b-423e-a967-a38e14598395.mirbase21.isoforms.quantification.txt 0d23fa5b-95f8-4626-a4d2-c72ad3cc553b 0a96f59a-239e-4a06-9f58-28244e6af1a8 +b783c167-e867-48c6-a3fd-778e7dc01b97.mirbase21.mirnas.quantification.txt 18d21132-a795-4551-83ba-66483de423a2 d8dcb7f6-cc78-4c6e-9112-7e12a5d6dc2e +bf743280-5e6c-4f89-b1da-e55dc5cd36b5.mirbase21.isoforms.quantification.txt 0d5e232d-5aa2-4f6f-be58-ffd5f15ee0b8 8c893d02-fed5-4158-8141-a2cce8ea077d +d7183242-925f-40f8-bbac-86aa98ee8c0a.mirbase21.isoforms.quantification.txt 195ecf43-06bd-4ffe-8d8b-a766f3f7179b 8cc99141-780e-432d-8110-fe1b6aeb7ab3 +9022a525-9cb2-4b84-843f-dc9cefa38015.mirbase21.mirnas.quantification.txt 0de910b1-edaf-47e4-a265-727ee12ac1c3 558a24d8-e1a1-4213-bee8-fc2a4f258087 +4be0bc41-6fb3-4cec-85af-b8c1b4555c57.mirbase21.isoforms.quantification.txt 563853a2-9ac2-48be-adf3-1e547ee2b274 e6d30df3-1d96-4dcc-9c07-af947f96f56c +4be0bc41-6fb3-4cec-85af-b8c1b4555c57.mirbase21.mirnas.quantification.txt 563853a2-9ac2-48be-adf3-1e547ee2b274 ff462e0b-0d77-4110-a39f-c67f4ef9bb57 +c5a0784c-2ce1-4384-bac7-6aeb9edc7432.mirbase21.isoforms.quantification.txt 14c58def-60ee-48e0-a74b-da4eb77ef344 071c6f53-b51e-4bc2-9f52-92fae71dd391 +c2ea5a5f-f436-48d8-8382-a878bdafc579.mirbase21.isoforms.quantification.txt 0e475b3d-be3c-431a-ab12-5a867ea8f6cd bd4612aa-7e3b-478f-a1d6-f58a04e2b9fd +2646e3fe-22b6-4e1e-ba95-abc58316d18d.mirnaseq.mirnas.quantification.txt 1d9893c8-0de3-4b07-b0ba-a53019b23eb4 e657a856-0f13-463c-adc2-fe60a38d9761 +f9dda829-1102-4e7f-adfd-83c62255a88e.mirbase21.mirnas.quantification.txt 0c1a2e7d-e7e4-481e-a012-ef214c444497 f69d4aab-6f75-4953-9c68-a0c10c433ca6 +3b5bae0c-4394-4bd0-880f-cc3d038f8214.mirbase21.isoforms.quantification.txt 16ced1b8-64d5-4498-82df-4d37bfe5b310 b18c3fa9-5d39-486d-b9fd-3427c5cd0f11 +c5cc47b3-ea62-42f0-85d0-c97e438b8a57.mirbase21.isoforms.quantification.txt 242943fe-1fa0-4a12-8f7e-9c6c4af1194d cf5a9a35-be08-4f50-aca3-dc74d871d45d +8183655e-9600-41fd-b25b-fcf643b549e3.mirnaseq.mirnas.quantification.txt 538acb2a-c4ca-4656-a91c-841a42dbf15f 3a064502-3fcb-49e2-b4b1-80704772de5c +e293bbbd-e6e5-47fd-8cec-0288d5490710.mirbase21.isoforms.quantification.txt 28ed2d42-5b4c-4bca-b2b2-6b2a6d3c42cf dab809ce-1a88-44f1-b02e-125a80f7c554 +3ab8c815-ea19-4446-929e-3d949f49816a.mirbase21.mirnas.quantification.txt 2a924999-1fbf-470a-97bd-fd2276a9a366 b5109358-bfe3-4fe3-93be-b123fa43a85e +e76fb1d8-6e19-4842-9ad4-67dfdcdc94df.mirbase21.mirnas.quantification.txt 2cb50c2d-e749-4172-b101-d975507435c5 7ccd08d1-d672-4ba7-b51a-2585de6786ef +a8ec968d-7115-4b59-acaa-6f878023cb7f.mirbase21.mirnas.quantification.txt 700e91bb-d675-41b2-bbbd-935767c7b447 97c33585-8397-47b1-b394-03da70e9b3cc +cf786f9c-b120-4c44-a85e-b50b481927d0.mirbase21.mirnas.quantification.txt 32960bc7-839a-42c5-9460-3917fa578ffc 6e46f9f0-1ad9-4a33-ae6c-064c96b2c6cf +582804b9-a867-454e-a222-ff9042a7e75b.mirnaseq.mirnas.quantification.txt 2e05cd3a-a55f-43b8-b2a9-72fb742b89c9 1d9bab23-1565-416e-9924-52b98fe7fea8 +afee93af-90d1-4442-bc99-42f96251d3ce.mirbase21.isoforms.quantification.txt 33d36b64-4688-40a7-9a4f-7cd3d4cc683d 13b1976c-006d-446c-a890-38d445b72fbb +f0bd2687-335b-4172-a7ff-78686e992977.mirnaseq.isoforms.quantification.txt 3438c018-9856-4628-ae59-7d365713647f 4a8c7159-25ec-4013-a7a3-41164011b8ec +f0bd2687-335b-4172-a7ff-78686e992977.mirnaseq.mirnas.quantification.txt 3438c018-9856-4628-ae59-7d365713647f 6e65a090-65b0-4ad4-a482-6f276445fc60 +1c5456eb-85f7-44f3-b3fb-578f1d1fbf12.mirbase21.mirnas.quantification.txt 3445c524-5a37-40b6-8614-956d76eed939 7a30318f-5e7c-4be3-86cc-870c9cbba730 +70be7adb-395b-4a0a-b5c9-eb91bbed64c0.mirbase21.isoforms.quantification.txt 3018efe7-13a1-47ae-a726-8fc967c73841 ed0e8a31-3cec-4b21-a168-202808b8e34e +ea46c685-c7b0-4e28-85f1-f426f294defa.mirbase21.isoforms.quantification.txt 4160e048-f0b0-40f5-805b-e277a5893a3b e1e80eaf-5a9d-4a50-b58b-5367b95a30f1 +04c31914-f7f5-4e02-9103-16244fab1da0.mirbase21.mirnas.quantification.txt 36595b52-2b5f-4e87-80eb-37c29109e92a 859a2fac-23ed-4d1c-bc3e-a9422bc8a095 +904a2b2e-0c5d-48f6-8781-820b6774988d.mirbase21.mirnas.quantification.txt 502e8d02-2953-4514-a2e1-6179dd94da73 dda487bf-0537-4c57-9fa4-7de9e67c2e9f +904a2b2e-0c5d-48f6-8781-820b6774988d.mirbase21.isoforms.quantification.txt 502e8d02-2953-4514-a2e1-6179dd94da73 bf630875-14ab-4068-9239-88e845db38ac +e8b194c8-164b-436a-8015-b02f3c4c7ca4.mirnaseq.isoforms.quantification.txt 58d34254-4f5b-40a4-9e9f-7160062fb2a4 d2f8027a-7da6-438b-b8da-be3e1fd07648 +f2f6aaba-38b2-45c8-a8b2-3b1c09cc099d.mirbase21.isoforms.quantification.txt 378f7ea2-86b4-4072-80b8-e12d67193106 a461e853-3ccf-4587-a133-438cffdb6f66 +e8b194c8-164b-436a-8015-b02f3c4c7ca4.mirnaseq.mirnas.quantification.txt 58d34254-4f5b-40a4-9e9f-7160062fb2a4 7bee1728-318b-4487-8151-41b4b264ff84 +944015fa-f996-4d2a-8954-6a5e43e9f614.mirbase21.isoforms.quantification.txt 45957be6-e4df-4245-acf8-39dfc118ee19 4ab97375-4843-4190-9616-933d47ba7b71 +4d9c130c-9fc7-4880-bcfb-d61f226f7715.mirbase21.isoforms.quantification.txt 5201ee13-2aed-4641-9169-4d5ee07a23da fe6f5e33-9ef6-42e8-9aae-b13f3eafa5b8 +8370472f-92b2-4e55-a091-7c7e1193972f.mirbase21.mirnas.quantification.txt 58f5a54e-de50-4cca-afa1-cc331d8b3479 770e4bf4-83eb-419d-ba75-1e5104122059 +ff9781e6-32b9-4e36-ae48-02fbab715683.mirbase21.mirnas.quantification.txt 49bfd0fe-48ce-49db-9f76-ce2310410950 4943704b-5079-4140-876c-411134a1a3e8 +17d4b1e1-79b3-4b97-988f-d617f8d9b8eb.mirbase21.isoforms.quantification.txt 65435f50-a35d-49e3-a36e-b95d9e274ca0 76190eca-4aba-4693-beec-3ef93bb82c39 +a00d8c58-4840-41a0-bb3b-a1d63f9dfeb1.mirbase21.isoforms.quantification.txt 5e18b17d-4626-4b6d-8ac6-e560cee0376c e4104ac6-aab9-4aba-b0cc-fcf5022f31c0 +ba4b8482-d750-496f-bb94-f6d568549f1a.mirbase21.mirnas.quantification.txt 5c159ab5-8475-4d93-89b8-b6befed4a5b3 7658fe2e-48e4-45f6-971f-67708df10da1 +737d462a-812a-4a04-aea6-df3f52134493.mirbase21.isoforms.quantification.txt 662d77d1-1a43-427a-813b-e11edd30868e fd33f27e-7a60-4c98-b688-3a3c5b78132f +737d462a-812a-4a04-aea6-df3f52134493.mirbase21.mirnas.quantification.txt 662d77d1-1a43-427a-813b-e11edd30868e af94f688-7fba-42a0-a062-26cfaa8dbf89 +856f2c41-9a3c-4b2d-a1cf-20579979dbf9.mirnaseq.isoforms.quantification.txt 7621ed77-98bc-4b4e-8011-e18fcd014071 f886a80e-b427-47b6-86ce-6ed50c941a84 +34b98361-cb2b-4b22-90d5-f575b91bc525.mirnaseq.mirnas.quantification.txt 6c43727d-631a-40fb-b1a1-242a12889eaa b2033c32-0d03-465f-ab4c-e090c9aa14d6 +6e773590-88c4-4b6f-a4c4-e88cf0fd8185.mirbase21.isoforms.quantification.txt 66c92b9e-de3c-4d1a-bb69-46ffbc6caf33 48ea8efd-a5a1-449c-ae00-a9e96fea68b0 +0cb0d80c-c3cb-4981-b07e-b8babe1ec06e.mirbase21.isoforms.quantification.txt 5d7027f5-60a0-47ab-a79d-667c9acc0e54 26aa3460-07f4-4b32-8754-df154b4e4d0d +c254a61e-36be-48c2-a015-1c10496ae642.mirbase21.mirnas.quantification.txt 6746533a-8d0b-4ebc-87ec-49c8738121a8 7d586b64-5f18-475e-a015-ff21a7b8d327 +d51c919f-6b47-4881-8b11-05b39a2d2111.mirnaseq.isoforms.quantification.txt 81005bae-686a-4598-8994-49d90ebac56f bfca5067-1c69-44e2-a3eb-13ce8c6c47e7 +25df78ef-0889-4866-8802-34ca0f2e31ce.mirbase21.isoforms.quantification.txt 67f526f1-def5-43b4-bc89-154baae190fc 2c6c56fb-a13e-43fa-bf21-ae1bd8fdb8d6 +25df78ef-0889-4866-8802-34ca0f2e31ce.mirbase21.mirnas.quantification.txt 67f526f1-def5-43b4-bc89-154baae190fc 1d09c662-1fa5-4f66-a082-2d3a49f46dbd +86760094-294f-4fbb-b768-4381f658bead.mirbase21.mirnas.quantification.txt 62379be5-13f0-474b-94d3-6f944ec4ee96 9dd1af73-78fd-4e08-9f29-c62fd62ff7d7 +f1847183-2dd6-4047-8a21-32ba9bf93ad3.mirbase21.mirnas.quantification.txt 7a75d318-b301-4f77-a97f-4d6784d27216 9d45b5b2-21dc-4bf9-9dd7-dc208af1c6d8 +275d247a-f015-43c8-aff3-aebff9c36816.mirbase21.mirnas.quantification.txt 88180134-710f-46ea-9b06-5e5d860d6d9f 037b3457-6c4a-4073-9c93-00ca75a6b8ab +286f0db7-60b7-42bd-9161-585384c38fe6.mirnaseq.mirnas.quantification.txt 6f592f17-e00b-4d04-a45b-d9d4cf4c3075 0afa9f53-0f04-4d4d-9dbc-27a0a92abfd4 +760328e5-3c89-458d-8546-00d1468a8987.mirbase21.mirnas.quantification.txt 8a98a6e6-b763-4824-858b-fd2738e6c9a3 6e8e6c90-54a7-4590-a1c9-fcd51a792920 +36f5501e-6be3-4f70-b981-645a3044b652.mirbase21.mirnas.quantification.txt 9fb1ba57-2007-4477-b000-2d36f163efd2 3728332b-48dc-4cd2-a195-14c15061acda +868dd709-e0d7-4aca-bd4d-bcd22f828508.mirbase21.isoforms.quantification.txt a5030259-cf9c-4a58-8710-b9da8ee59320 ddc91a71-288d-43a5-b068-7ec0786e0973 +868dd709-e0d7-4aca-bd4d-bcd22f828508.mirbase21.mirnas.quantification.txt a5030259-cf9c-4a58-8710-b9da8ee59320 8ec2e302-bc00-42e9-8bd0-38b4e3cf2857 +f1c88ee9-a82c-4feb-b5cf-5d2eb23e7d03.mirbase21.mirnas.quantification.txt a782352e-c4bb-4c3e-ba82-456a47c3689a 396a5915-cf25-4842-a149-af9a4184c40e +c618942d-7a4a-4648-8e97-d7fb6b43f83a.mirnaseq.isoforms.quantification.txt 8727855e-120a-4216-a803-8cc6cd1159be 92992a4b-3f11-45ba-8fb8-37612f599729 +c473c1ff-0a58-4860-b1b8-c1a346df8642.mirbase21.mirnas.quantification.txt 8727855e-120a-4216-a803-8cc6cd1159be c52f328a-2b99-4a4a-bc3a-f147cf2ce44b +846f785e-0fb7-4fd6-a36a-8e642d050c71.mirbase21.mirnas.quantification.txt 8ac6ce06-ab50-4ab4-a469-9f8bf01be963 00abfcab-9fb2-4052-963d-6c4a5c7f6b3e +55fb058b-a120-400d-8e69-4e9ab4dbe5a1.mirbase21.mirnas.quantification.txt 8cad4217-5699-4735-9be3-fc0015a8d262 002e645a-37e2-4b4d-8f54-bc0a79c2d778 +3265cc80-54d0-4103-9b24-2fff0e770cae.mirbase21.isoforms.quantification.txt a85f6f9c-1e1d-44fc-85eb-3b2d96cfbc61 63f905c5-54e4-4726-b6df-d64de5b7f144 +dd3f7c1a-dc74-49a5-add6-d5565e1c5b89.mirbase21.isoforms.quantification.txt 955c80be-53df-4565-9303-a7abf96a2f81 1c47c3fc-7536-42e7-b131-19369a9f2895 +91114485-7448-4dc5-aba6-fef4e091ea97.mirbase21.mirnas.quantification.txt 92badeb5-a50e-4a62-a67e-6a8a59c948ab ed7d35dd-d306-4610-a0b3-d5c69637bd51 +ca8b1b15-238e-4763-9f26-71f5e71d7ac0.mirnaseq.isoforms.quantification.txt 99f1ae02-86ec-4d93-8cd4-650bf6f02c10 a94d4214-0bc3-4255-9fce-038beed9e173 +681ecf0b-0418-444e-98f5-148f1a957b2b.mirbase21.mirnas.quantification.txt c9524775-6b50-4793-8858-24b6a6d3e4e6 fce682ec-c221-439d-8423-a41bf0801537 +d3c4a9cf-95c5-4df0-b9a7-c32d6d6a8816.mirbase21.mirnas.quantification.txt b31d85cc-d2e2-4bd1-9986-d6bbe30e657f 2fabb2d2-ffd2-4fa0-accf-360cbcf0002b +90e3be7b-f6b6-48a9-84c5-84d3c05be565.mirnaseq.isoforms.quantification.txt bcb87812-94e3-4dc0-867e-d049b44a2690 85563830-5c01-481d-8fcd-e00002cb8dc8 +90e3be7b-f6b6-48a9-84c5-84d3c05be565.mirnaseq.mirnas.quantification.txt bcb87812-94e3-4dc0-867e-d049b44a2690 f7033493-97a5-4ca8-85fc-e912993c845a +1bf32c47-f557-4ce2-ae6f-043cf41d11f4.mirbase21.mirnas.quantification.txt 9af2248a-d86a-4277-93b4-8eba5a39bd3c eb182f4a-9502-4905-902a-947b14b3ce8b +07708b3c-5a20-4964-883c-f508935a5676.mirbase21.mirnas.quantification.txt cbe3309e-9b7b-4f62-87b5-0f5ed4218ada 4bd81eb2-ecf5-4e90-a432-2871196415a1 +594f25dc-c106-4f7c-bb4c-ec5e177c219b.mirnaseq.isoforms.quantification.txt c11cae7e-91cd-4470-a9d8-188a4f6b8fa1 ce3ff3b7-f76b-4393-8e63-e4c00289676a +a5d90be4-0242-4d83-a54a-a973b638b4c4.mirbase21.mirnas.quantification.txt afd92922-b8dc-48bd-a9c0-bc8d95855eb7 960cf19f-243e-41b6-83bd-71415b28e303 +369c3679-4d68-42f4-9cdf-6a4ce5765762.mirbase21.isoforms.quantification.txt c3f9ee36-d34f-472b-ac7f-801a0d400aa4 ed610477-f2bb-4276-8316-f8e2aeba9418 +fdccf2b5-8b46-4b15-9f97-a674fb12f84a.mirbase21.isoforms.quantification.txt 9c744ff8-1cde-4176-b6d7-0ab62bf42620 f36dcdec-67f0-4888-8df7-6e326617451c +8154f10d-7460-49cd-b309-829ef0d1ac24.mirbase21.mirnas.quantification.txt b7715ff6-57a6-4513-9447-aa8bc93f16d4 c6f3a5f1-c7a5-4a42-8649-e01745cd21a3 +4ae7b146-68b1-46b7-b973-9eb2128baacc.mirbase21.mirnas.quantification.txt d1976840-35f7-4423-8458-12fb32a52b33 0695d33b-04ec-4919-92ec-5604cf29794e +1bd07a8c-6095-4534-9c70-d88bda1cd148.mirbase21.mirnas.quantification.txt c6ede8ae-881c-47a0-a0ef-745ed4b7764a e37a2297-74e9-4d92-9088-d7c668ba321e +b4f43a86-3068-4016-bdd9-3e02f07e354d.mirnaseq.mirnas.quantification.txt d38ca631-ed5c-4182-a647-625060726fa7 893de126-594c-42f6-a9d3-28e810429baf +bda2d3fd-a28f-4b5d-aff9-267d757b3872.mirnaseq.isoforms.quantification.txt b783f33b-734a-4801-bf39-b559a2035c6f ac6c979b-06f3-4285-bac5-f6ccc38ce617 +d72ae1bb-2005-4654-b2f1-a815e7a9aeb6.mirbase21.isoforms.quantification.txt 9ec86cbd-8c74-4697-90da-529ab91ab835 9eb61833-ab14-4281-ae2f-0e605eab7610 +191aa531-3494-42fa-8996-af204937fa87.mirbase21.isoforms.quantification.txt b783f33b-734a-4801-bf39-b559a2035c6f 880498b0-e4ae-484c-bb27-eb7e6b98f64f +7076fbac-331c-4a9e-b6ca-a0e3d175fe3a.mirbase21.mirnas.quantification.txt b9418c6d-94f7-4db4-a1e4-f384b09d54cb ed1b33f8-0ae7-45b1-a04d-bdcb09dcb52b +36f5501e-6be3-4f70-b981-645a3044b652.mirbase21.isoforms.quantification.txt 9fb1ba57-2007-4477-b000-2d36f163efd2 9caddb2b-ae73-4e6a-8f34-bbf7c076ef20 +8e007476-d52c-4896-93ca-d55dcbb14bfe.mirnaseq.mirnas.quantification.txt c75c915f-ef4b-4c19-8ace-995e6c6015fd b83882d6-dcc9-4ae7-a7e5-1db4fc98a22e +ca74d2ee-20e5-4a73-ad1b-033c7be2cd89.mirbase21.isoforms.quantification.txt e35b2813-427e-4e83-95f6-4f0281f42a59 dfa6aeaf-5a47-4f2b-ba43-97ab8fbc66c7 +6792b31d-008b-4c0b-8122-6ef29bb85707.mirbase21.isoforms.quantification.txt ef57bc45-858f-4d4e-8407-b7eadfa43be5 fd768792-25f4-4a8c-8ae7-524f0223e299 +1af7f065-5d17-44eb-b134-2ccaf0c4d7f3.mirbase21.mirnas.quantification.txt f9824a6e-7a97-445c-8846-df8d8cddedaa e4995657-4555-4db6-af97-6a7a9965fec7 +5bc471e6-be47-4551-aa40-bd6c7633015f.mirbase21.isoforms.quantification.txt e3712e5a-4575-440f-89d1-8db9498baa88 c91f17ce-f661-4daf-ad00-40fbc3646abe +15c8eaef-0c38-4b40-a768-24e1ac2f8452.mirbase21.isoforms.quantification.txt ef5e85cf-2d82-4d52-a02c-fed5c76e4cec ff51df62-9f04-4ff2-b88c-c587483f19df +4cda8aa2-fae8-4313-a537-d2c50a4d800d.mirbase21.mirnas.quantification.txt f2dcf4cc-609d-4532-a90d-6ae2bbb53365 7600b412-7756-4cee-81ec-a7cc9e3a075f +bb5c7469-2fc8-40ec-9dd8-b6922dd8d68c.mirbase21.isoforms.quantification.txt fdd4adb8-9295-480a-9352-305b5eb51187 c97bde8a-a531-4e62-bd5b-9477ef061c19 +56d7e454-061d-4af1-b72e-154ce9d395ea.mirbase21.isoforms.quantification.txt f3af727e-b592-4828-94f5-22008666cf8c 5622b72e-2094-49e3-af6c-576fc4b8a7cf +681d1081-ed19-4553-b1ef-6a5e7e6fb236.mirbase21.isoforms.quantification.txt d8d13aa4-45d5-4e1a-a6cf-895bdf05e7b2 8b40177a-6262-4ba3-9c9b-aff27359e741 +000550a4-db6b-43ec-86c6-796522f7861f.mirbase21.isoforms.quantification.txt e641aed9-1dd8-4c30-b231-f12b20a76df0 fa70f247-d457-4898-97ce-dc02d127dbbc +4022b5bd-4978-42e8-8130-b57b3a46b7ea.mirbase21.mirnas.quantification.txt f65f2e78-c001-4ef3-ae88-3e4f83c7aceb 1b7d678a-bdeb-4582-a2eb-418f17dbd355 +4022b5bd-4978-42e8-8130-b57b3a46b7ea.mirbase21.isoforms.quantification.txt f65f2e78-c001-4ef3-ae88-3e4f83c7aceb dc312f6b-dd33-40fd-8a33-856abaf86380 +a723662d-3d41-4c77-8a58-f14af07fdca0.mirnaseq.mirnas.quantification.txt ff530f28-0ec0-4494-bb54-44bb055bae1c b2667d3a-d44c-4cd0-af82-81c814f198d5 +1f4965b2-353c-41a7-97e8-98ef7d625f7b.mirbase21.mirnas.quantification.txt 2c69f3a4-c26c-4fbb-a1c0-b1f57554c43a 03168f75-9e19-4ee6-befc-57953de9ad23 +a9b5f028-4b51-4ff7-92f5-462000eb9074.mirbase21.isoforms.quantification.txt 2ae65a06-df0f-4de1-a536-537cae0cc260 d1f5f67b-e184-4830-8204-19d33e3282ea +88fa6a0d-b092-4200-bcc4-d44525d2ed1e.mirbase21.mirnas.quantification.txt 05ba5839-e00a-4a9e-8ba3-ecb490781e62 aefec1ad-9a52-4dd0-9415-c1aeefbe4b6b +365478d2-32f1-4773-b997-a39d13a606c5.mirbase21.mirnas.quantification.txt c183d3fb-2eee-44f8-890e-b9bf907141e6 b2517477-f909-463a-b470-572ca4dee94d +7e733b33-2620-4010-b44b-e70f7501c424.mirbase21.isoforms.quantification.txt 26558703-a659-43f2-86cb-0695989bc14e b61db06d-8313-43c1-9543-2d52e18a5cf6 +b8909fc8-4eda-433c-afff-7c5aba6913c8.mirnaseq.mirnas.quantification.txt 2956e414-f167-438f-8747-a46fe0723622 0013e4f5-5ea2-4e99-b9d4-3d72d4bc15e0 +8292e9cc-cbee-4786-9880-0fdff2a99b49.mirbase21.isoforms.quantification.txt f64ebc7f-0e5a-42b4-af57-6cdb90d24f90 7016047d-ab1a-4115-b346-3792dcf45fae +da071e62-1257-41ce-8095-8071c479e23d.mirbase21.mirnas.quantification.txt 0740321b-f8a5-4e1d-b390-ca6187598fac f0267b76-ffba-4dce-9b1b-b79bae0180a7 +54226146-df11-45c7-be4e-3af9dc1540e7.mirbase21.mirnas.quantification.txt 0a48873a-092a-4b25-822b-b0b3c18c08a8 91d597e3-1338-4547-bc5a-16aad9253169 +54226146-df11-45c7-be4e-3af9dc1540e7.mirbase21.isoforms.quantification.txt 0a48873a-092a-4b25-822b-b0b3c18c08a8 94271c9e-2549-4d21-9027-1fd03e5c794b +55a33443-d2df-4771-9fe0-6f33e6cc69ce.mirbase21.mirnas.quantification.txt 52386f66-2877-4c75-894e-5c1dc03e6ef4 08782f35-bac0-436a-8591-4a7e85d23fc9 +60748b7b-a395-407d-a980-aa0e16f7adb9.mirbase21.mirnas.quantification.txt 9a30dee8-962a-49db-a85a-c39515c91b68 280101b0-f528-4adc-be81-ff77522756da +8388528f-4f0a-4939-89bb-64478d67b5bb.mirbase21.mirnas.quantification.txt 00630714-7ab3-44e1-afff-186300edae44 d82f8022-091b-44da-8322-0b60fa35680c +55a33443-d2df-4771-9fe0-6f33e6cc69ce.mirbase21.isoforms.quantification.txt 52386f66-2877-4c75-894e-5c1dc03e6ef4 8de18348-46fd-49da-8787-0a1d2c51950f +c602b5bc-d557-4b1a-b69c-0d272dfffc63.mirbase21.mirnas.quantification.txt 76cc2d21-eebc-4f09-9bc7-dbf7af0aafa8 0a23917f-804c-45b3-a428-9a80ef72161d +ec2c94e3-86a7-47a4-995a-36ae51c5b57a.mirbase21.mirnas.quantification.txt 098acb76-0bf5-44e5-bcae-f919cf5fa5e5 bb9af986-a734-4c17-a49e-2c94dc78129d +42d8a1c1-483d-43df-b7fb-fbdde6a93b82.mirbase21.mirnas.quantification.txt 0adadf17-c4b6-48b0-a326-21450de3e144 ae7aa6dc-18ea-4156-91d5-9b6638967de8 +86f959d3-2e4a-46ef-9f93-ed0003109311.mirnaseq.mirnas.quantification.txt 0d15e5aa-2483-4f81-973a-ff469296c911 82c96dbb-f73c-4325-b62a-244e329b206c +f58d3c14-b772-4d67-b643-d2e897356e90.mirbase21.isoforms.quantification.txt 55153632-1673-487a-85c0-f156377db1fc b94ca64a-351b-4bdb-aad8-2bcbf15269ea +38a02deb-561f-4de2-b90f-1bd8459f459e.mirbase21.isoforms.quantification.txt 196f4600-b6c9-4652-9f77-65c92883f8c1 705562ae-9524-4b31-828b-857497b9b0ca +ba286ba5-0b9d-4a2b-b9c8-4d6004eda96f.mirbase21.isoforms.quantification.txt 1aea3c25-d2bc-4ff5-bc27-32e939944e9d 94d978e1-2675-4caf-b209-a9da54412172 +bff56eb3-0abb-43be-97a3-545d9c748a79.mirbase21.isoforms.quantification.txt c435627c-159d-4a6d-a819-30abac24bf4d 7da17642-b071-4c17-b034-03aefd558b64 +2261e2ac-506a-4a85-b752-7d1796a338ad.mirbase21.isoforms.quantification.txt 21966708-4e66-4211-add0-f1515b09e362 848c367e-73bb-4b95-ae48-aa114a9113f7 +c2ea5a5f-f436-48d8-8382-a878bdafc579.mirbase21.mirnas.quantification.txt 0e475b3d-be3c-431a-ab12-5a867ea8f6cd 65dc2b3a-fee9-4a89-8800-d4946f5fe8d1 +2646e3fe-22b6-4e1e-ba95-abc58316d18d.mirnaseq.isoforms.quantification.txt 1d9893c8-0de3-4b07-b0ba-a53019b23eb4 ca1a4d5c-e836-4623-83c2-ea5e3e8ac879 +c5a0784c-2ce1-4384-bac7-6aeb9edc7432.mirbase21.mirnas.quantification.txt 14c58def-60ee-48e0-a74b-da4eb77ef344 3256fc15-612f-4bf9-90f9-5fd8a9d32d7a +2261e2ac-506a-4a85-b752-7d1796a338ad.mirbase21.mirnas.quantification.txt 21966708-4e66-4211-add0-f1515b09e362 939126f3-21df-4116-a6db-82a61fd18138 +3b5bae0c-4394-4bd0-880f-cc3d038f8214.mirbase21.mirnas.quantification.txt 16ced1b8-64d5-4498-82df-4d37bfe5b310 78b4ef99-78fb-4012-af54-f145a3072f37 +449f199a-a808-4e41-aaf8-0bf6960cfda8.mirnaseq.mirnas.quantification.txt 30b8f4cd-9245-4496-a8a8-c3e59093bc0a c696fc09-ba32-452f-867e-4449f5ac34db +dcfbd40a-bf99-46bd-8398-fa5000bba378.mirbase21.isoforms.quantification.txt 27920e1e-b9ab-4587-970a-0cba7025becb c1957821-f029-48ac-b633-0629b6e318cf +ab8ba07a-47e6-4d96-95ca-82a116e8dec0.mirbase21.mirnas.quantification.txt 2a3a6222-f477-4198-ab9e-cdf527c1a6cf 60f18ee9-9203-43c0-b00e-5e99912ba7ff +6698d89a-9954-4cd0-b31c-2b6bb9968471.mirnaseq.isoforms.quantification.txt 2a3a6222-f477-4198-ab9e-cdf527c1a6cf 3d51849e-36fe-45b7-9444-5e5d15ac34b4 +8183655e-9600-41fd-b25b-fcf643b549e3.mirnaseq.isoforms.quantification.txt 538acb2a-c4ca-4656-a91c-841a42dbf15f 017cc4bf-6db8-4233-b00b-b0bd00ef14e0 +33062b49-ef62-4d8d-8102-53538ae1c2da.mirbase21.isoforms.quantification.txt 31b997dd-aaea-4003-a64d-11d3e19b0bbc 49d4e124-0832-4c5c-ae55-921964b14dc2 +33062b49-ef62-4d8d-8102-53538ae1c2da.mirbase21.mirnas.quantification.txt 31b997dd-aaea-4003-a64d-11d3e19b0bbc dee9ef92-a324-426e-b9c2-736e95bc9def +b40c39f7-a56f-4381-ad3c-1d7935515a2e.mirnaseq.mirnas.quantification.txt 31b997dd-aaea-4003-a64d-11d3e19b0bbc aa6c3b4c-4322-41cd-be4a-37a36091df51 +296ba0ad-034f-4b13-865e-9fc2b2a19b4d.mirbase21.mirnas.quantification.txt 2cb82948-7cbe-4b6c-8414-c02f662de2d0 dadd6cc0-5684-424c-9ae3-9b4d51aa386a +2b6eb1a7-64df-4c16-8151-f4bda4556408.mirbase21.mirnas.quantification.txt 7dcc809b-e33a-4453-b92a-c00786f48cb0 b087c61b-5895-4543-8d6c-fd86051743cc +2b6eb1a7-64df-4c16-8151-f4bda4556408.mirbase21.isoforms.quantification.txt 7dcc809b-e33a-4453-b92a-c00786f48cb0 5ce47675-ea48-4104-b444-a48ace7dabe6 +296ba0ad-034f-4b13-865e-9fc2b2a19b4d.mirbase21.isoforms.quantification.txt 2cb82948-7cbe-4b6c-8414-c02f662de2d0 b2efca65-6913-4e55-9656-5c9554dcc44f +582804b9-a867-454e-a222-ff9042a7e75b.mirnaseq.isoforms.quantification.txt 2e05cd3a-a55f-43b8-b2a9-72fb742b89c9 4d9446ea-918c-4ad6-8019-8b868f1d5078 +8d42453d-e4e7-433a-bffa-f5436bb4710c.mirbase21.isoforms.quantification.txt 2ebb738c-4829-4720-931a-96c0fd117e2a 926ba834-88cc-4470-a3a5-50c9dade5b2c +afee93af-90d1-4442-bc99-42f96251d3ce.mirbase21.mirnas.quantification.txt 33d36b64-4688-40a7-9a4f-7cd3d4cc683d 176d9098-74a3-4d3d-aa7e-7ae6a5c1f8f0 +8d42453d-e4e7-433a-bffa-f5436bb4710c.mirbase21.mirnas.quantification.txt 2ebb738c-4829-4720-931a-96c0fd117e2a a9acac6b-b210-4fef-9569-b67d30e1808a +1c5456eb-85f7-44f3-b3fb-578f1d1fbf12.mirbase21.isoforms.quantification.txt 3445c524-5a37-40b6-8614-956d76eed939 17f11d34-dd33-4eba-ac3a-cbf7d98e61aa +70be7adb-395b-4a0a-b5c9-eb91bbed64c0.mirbase21.mirnas.quantification.txt 3018efe7-13a1-47ae-a726-8fc967c73841 36f1c7a7-8327-45f8-9e56-0933a9e8c880 +0bfb23d5-01dc-4c32-8ffa-d7ad1b4c3e72.mirbase21.isoforms.quantification.txt 34f545ab-d420-4dd2-8db4-3159896efd23 e27ee243-9cf8-4d5e-86aa-e8b4d391f486 +0bfb23d5-01dc-4c32-8ffa-d7ad1b4c3e72.mirbase21.mirnas.quantification.txt 34f545ab-d420-4dd2-8db4-3159896efd23 5a719794-8c48-40d8-8862-f7a4faef885e +40c9ce2f-5d6f-46dc-94da-1ea759b8cf11.mirbase21.isoforms.quantification.txt 35916942-e7aa-45db-ad27-03cba67d4d5b fa919cb8-e3ea-470b-a11d-fb49e96ace00 +40c9ce2f-5d6f-46dc-94da-1ea759b8cf11.mirbase21.mirnas.quantification.txt 35916942-e7aa-45db-ad27-03cba67d4d5b f500c7af-143a-4c53-b5c8-64d13131b2d5 +dde57550-3749-4204-b6d2-1a1c4a8f0ec8.mirbase21.isoforms.quantification.txt 4ca9c0e8-75a7-4665-9d88-6dd2bb44b1e1 3cf41244-5cf1-43f6-9f79-19125139c6bf +dde57550-3749-4204-b6d2-1a1c4a8f0ec8.mirbase21.mirnas.quantification.txt 4ca9c0e8-75a7-4665-9d88-6dd2bb44b1e1 22b0459a-6b63-4e73-abf3-953457302449 +ad52672f-9fa6-4d21-8790-884883a69949.mirbase21.mirnas.quantification.txt 4d71dd15-cd01-4dae-ad70-6dc325140207 8c1da9f3-b9f6-40ff-9a8e-3a053f7be1f0 +ad52672f-9fa6-4d21-8790-884883a69949.mirbase21.isoforms.quantification.txt 4d71dd15-cd01-4dae-ad70-6dc325140207 e1167ade-23c0-43cf-ae41-9f1195c294ad +a6e0650a-bf0c-4898-b929-6bed956145bd.mirbase21.isoforms.quantification.txt 4eac2c98-86d2-4ee6-a1d3-157d013c78dc 846a6d1f-36ac-4e03-b6ee-ae963e109bb9 +a6e0650a-bf0c-4898-b929-6bed956145bd.mirbase21.mirnas.quantification.txt 4eac2c98-86d2-4ee6-a1d3-157d013c78dc e0eea2bd-ccc7-4934-bfff-3c3008b452ef +33be9dca-c410-41a7-8692-d687d4c424b0.mirbase21.mirnas.quantification.txt 561968ce-da9a-4d69-8bc2-bc87b9550f93 643538ec-fb76-481f-84d7-634aab1fdd14 +c638c38b-e8c5-47ec-b6e9-ef578a297736.mirnaseq.mirnas.quantification.txt 514aa64e-a58d-48c2-aff9-498604cc11d6 a8bd423d-737f-43e8-80ee-52f0ad854541 +ff1303e5-5237-4829-b18b-355fb808c315.mirbase21.mirnas.quantification.txt 58d34254-4f5b-40a4-9e9f-7160062fb2a4 3c32784a-6a7b-4cb7-888a-387dc1bb66ee +f2f6aaba-38b2-45c8-a8b2-3b1c09cc099d.mirbase21.mirnas.quantification.txt 378f7ea2-86b4-4072-80b8-e12d67193106 c322e9be-6474-4251-922a-48257cf7515a +2c3a0fa9-8e72-4f4a-b531-5290fbb63207.mirnaseq.isoforms.quantification.txt 48f8afa8-7712-4428-b0d0-d8c3340504b6 bb402e39-385c-4d6f-83d0-711ac07b7bc6 +ff9781e6-32b9-4e36-ae48-02fbab715683.mirbase21.isoforms.quantification.txt 49bfd0fe-48ce-49db-9f76-ce2310410950 2d5960bf-6760-458d-900b-47d6766d5437 +33be9dca-c410-41a7-8692-d687d4c424b0.mirbase21.isoforms.quantification.txt 561968ce-da9a-4d69-8bc2-bc87b9550f93 62face3e-7708-4aa9-82e2-db67728197a8 +2ba533ca-0293-46e0-adfb-0d3653d98842.mirnaseq.mirnas.quantification.txt 66dc6379-a98b-498f-8109-e3a811d043ea aac65340-f9af-4a1e-a66d-4b241a7c5f10 +a1ba46b7-fc30-47c9-bb39-efac4f11785a.mirbase21.isoforms.quantification.txt 3c037acf-f453-4513-a6dd-129163ddde2a aefc13ee-f5dc-4e24-99e9-d94b0803cce4 +34b98361-cb2b-4b22-90d5-f575b91bc525.mirnaseq.isoforms.quantification.txt 6c43727d-631a-40fb-b1a1-242a12889eaa 7e300cff-74e6-42aa-ac63-c3334216a261 +c3d63a9f-bbfa-41df-8536-f1b73497c688.mirbase21.mirnas.quantification.txt 82093ed9-a3c8-4e34-931f-4ec7ae745711 bbc678f8-ce50-43ae-96dd-b7e1da51ebab +d6e6ac3e-d877-4425-9c40-c6f94c6ecb1d.mirbase21.mirnas.quantification.txt 8783e4b0-2b62-45d5-8cd9-f5a71cc0138e f3a3a870-32f9-4c64-ac98-cb8a5693a3d4 +55058adc-6f17-4400-8e9c-16be92342533.mirbase21.mirnas.quantification.txt 838693d5-1ae0-4d75-834b-e1b89b96b0ed 0931563f-089c-4931-9028-e23ad5de2613 +a65ab1cb-c2c6-44c2-a265-4bb9a8a6b4e5.mirbase21.isoforms.quantification.txt 6485b68f-caa7-45cd-9bc5-78c2add8191d 751cd462-c329-46a1-903d-a3c0cc0ea515 +5f2fa5de-453d-4650-aee6-8b1d87feddb7.mirbase21.isoforms.quantification.txt 756f6768-e69a-4fe9-aa41-7c58aabe4577 6e18481d-6d2c-49ed-8fbc-6cec47009946 +a9fb9fbc-2764-40d9-8408-3fde78399371.mirbase21.mirnas.quantification.txt 758e6b52-062e-4ca0-84d1-ea38477414ac 6bd0c587-1d7c-47f6-be00-ef6ceeb27f10 +3265cc80-54d0-4103-9b24-2fff0e770cae.mirbase21.mirnas.quantification.txt a85f6f9c-1e1d-44fc-85eb-3b2d96cfbc61 cb9a0f4c-ff83-44b0-86e3-85b38e67a099 +c473c1ff-0a58-4860-b1b8-c1a346df8642.mirbase21.isoforms.quantification.txt 8727855e-120a-4216-a803-8cc6cd1159be 8827af22-0379-4d28-ada6-74bce45bee1d +55fb058b-a120-400d-8e69-4e9ab4dbe5a1.mirbase21.isoforms.quantification.txt 8cad4217-5699-4735-9be3-fc0015a8d262 fc56ccfd-158b-4479-a191-32a6b235dfe9 +91114485-7448-4dc5-aba6-fef4e091ea97.mirbase21.isoforms.quantification.txt 92badeb5-a50e-4a62-a67e-6a8a59c948ab 510fe410-66cf-4e74-bcde-845c894b70c7 +1ac96a09-e3cd-46d0-8512-e294f1c6bece.mirbase21.mirnas.quantification.txt 8fac8e40-beac-4059-9d54-7ee530598cfd 24df7054-eeb2-4088-a94f-cb7955ce4f8e +1ac96a09-e3cd-46d0-8512-e294f1c6bece.mirbase21.isoforms.quantification.txt 8fac8e40-beac-4059-9d54-7ee530598cfd cd42da60-510b-44c6-ba39-2daa04ae31b5 +71780af1-64aa-4e23-b4c1-84aefe241452.mirbase21.isoforms.quantification.txt 933dbfbd-4697-403e-bd73-c17cb300c94b 4e3fed9d-9140-4f3a-bed2-6e6c0a209297 +919eb80a-856c-4635-8409-2880d5a4eec2.mirbase21.mirnas.quantification.txt b1e11e94-646b-4c44-9d33-1ca67d8356fb a67965db-1fce-4786-a4db-21dcee50adb6 +5b19c09a-3eee-4f0c-8cc9-355dea7cb4d1.mirbase21.mirnas.quantification.txt a9abe7a7-4126-414b-87d2-a6d25abcf1fa acdc8f8b-01ee-4de5-99bd-c996e6e05cfd +1eb184aa-cef0-4605-bbfe-8960a186f66e.mirbase21.mirnas.quantification.txt bc873b2a-35b7-4365-a2cc-e6a83063556e d31ee286-50d4-44fa-be47-92144f336b55 +7dc2c098-cb0c-48ef-8dcc-80007e7e3855.mirbase21.mirnas.quantification.txt 9446e349-71e6-455a-aa8f-53ec96597146 79e3fef1-5dd5-4987-ba90-552a132932b7 +0b5a33a3-d5ab-4d17-8215-9052767e44c8.mirbase21.mirnas.quantification.txt 94efd4f9-69b0-4efa-8a0c-61106e898fdd 1fd0d5bb-732b-4537-b456-ecdb44ed4fbe +dd3f7c1a-dc74-49a5-add6-d5565e1c5b89.mirbase21.mirnas.quantification.txt 955c80be-53df-4565-9303-a7abf96a2f81 6187ed4b-3719-4a8a-8d35-d9149e1e12a2 +5e283d2e-75c9-4757-b226-1fff7325a853.mirbase21.mirnas.quantification.txt b3511675-fd68-4745-8020-e290ca0fd115 d8937ae7-77f7-4155-adbc-f2168aad3241 +1bf32c47-f557-4ce2-ae6f-043cf41d11f4.mirbase21.isoforms.quantification.txt 9af2248a-d86a-4277-93b4-8eba5a39bd3c 33a029ad-7343-4913-a3cc-8c546a573598 +0041f79c-47fc-4d18-87fa-a26989c67b4c.mirbase21.mirnas.quantification.txt ce871097-a6e9-4139-897e-642ee24ee123 68fa2aa2-56c4-499a-a7a5-328a152c4ed3 +0dda1b40-2c4c-4265-b68c-c8e15e378080.mirbase21.mirnas.quantification.txt 9bbc01b4-056c-4ddc-aca4-ff20718646d0 7056a9c5-7a2f-4375-87c9-84b059a89f01 +369c3679-4d68-42f4-9cdf-6a4ce5765762.mirbase21.mirnas.quantification.txt c3f9ee36-d34f-472b-ac7f-801a0d400aa4 4a72bdd1-5aa1-4e28-9f00-9ec65808db99 +fdccf2b5-8b46-4b15-9f97-a674fb12f84a.mirbase21.mirnas.quantification.txt 9c744ff8-1cde-4176-b6d7-0ab62bf42620 66499933-caad-4d93-947b-4218a23dd208 +6a5618e4-8576-4fd4-b8df-40387045f0de.mirbase21.mirnas.quantification.txt cf1e86ec-4bcb-403c-831b-d67bddef14eb 49489f7f-f91b-49e0-9141-c9d9a50327a4 +7d39fb27-9748-46a4-b7dc-34921f90339c.mirbase21.isoforms.quantification.txt c5355491-e1e8-46a4-a05e-bafcaf2e7459 aaab7a36-331b-4bba-9a20-f19c299ab7b2 +4ae7b146-68b1-46b7-b973-9eb2128baacc.mirbase21.isoforms.quantification.txt d1976840-35f7-4423-8458-12fb32a52b33 4caaeaf0-4e26-477c-b6c8-dfd0985e6c9e +bb797f15-acaf-441d-acba-63161b0b9bd7.mirbase21.isoforms.quantification.txt 9e48a4b1-6917-4625-9d78-e4832eb816a5 ea0ec69b-9ab4-44a1-8202-88e57e9bd3fc +4aa6a9ab-1b21-4a02-849d-06d409385eb9.mirbase21.mirnas.quantification.txt d3dd5e69-9752-4b50-9b1f-814afbc2c3dd e9822593-07eb-4277-b5b7-6e02ddc209ef +1af7f065-5d17-44eb-b134-2ccaf0c4d7f3.mirbase21.isoforms.quantification.txt f9824a6e-7a97-445c-8846-df8d8cddedaa 7ca7ccdc-ded3-420b-9483-5c7d7ca1da78 +fabf3fda-b118-4f0a-803c-ce871e785317.mirnaseq.isoforms.quantification.txt d7f82e34-5b34-4e8c-a0cf-d7561bcea43c c44517bf-629d-4c28-8e4c-79c76ca4ca76 +15c8eaef-0c38-4b40-a768-24e1ac2f8452.mirbase21.mirnas.quantification.txt ef5e85cf-2d82-4d52-a02c-fed5c76e4cec feab8db5-cb19-468c-a6f4-15480ec98db7 +681d1081-ed19-4553-b1ef-6a5e7e6fb236.mirbase21.mirnas.quantification.txt d8d13aa4-45d5-4e1a-a6cf-895bdf05e7b2 5945cc55-e78c-4522-8ae8-57161bcab9fd +bb5c7469-2fc8-40ec-9dd8-b6922dd8d68c.mirbase21.mirnas.quantification.txt fdd4adb8-9295-480a-9352-305b5eb51187 b38b607d-ec7a-40f8-89e4-34477b87564e +ca44698c-e99e-4789-a606-28b44af5d8e8.mirbase21.isoforms.quantification.txt fdf83fdf-dfbb-4306-9a1b-b4487d18b402 a20f0a9d-643d-43c6-bd1f-00a639c13e19 +90e60733-1277-47e2-b6c8-2fb446868749.mirbase21.isoforms.quantification.txt feda41d8-ca56-425d-b149-4d5485328107 4e11dd54-2beb-4bdf-a5c7-5afb97795551 +94e0206d-2251-4856-aa9b-c18dc80f465a.mirbase21.isoforms.quantification.txt dac8d825-dd47-47ed-a426-0ee75feb76f3 478cc4ef-e0e5-46bc-9212-5de56fa5b38a +fba20f1c-3800-4494-89fd-13afab589b9f.mirbase21.mirnas.quantification.txt ff530f28-0ec0-4494-bb54-44bb055bae1c 129e6714-f57e-4faf-9234-d49518dcee28 +fba20f1c-3800-4494-89fd-13afab589b9f.mirbase21.isoforms.quantification.txt ff530f28-0ec0-4494-bb54-44bb055bae1c 9f276122-cbb4-4240-9af5-ce8d0055e991 +a723662d-3d41-4c77-8a58-f14af07fdca0.mirnaseq.isoforms.quantification.txt ff530f28-0ec0-4494-bb54-44bb055bae1c 6cbfabf9-3192-4d58-bb94-6a6dadf1626d +a5fc4b34-2f6a-47a5-8962-18c8023623c6.mirbase21.isoforms.quantification.txt e9b5336e-d724-4e7d-8c81-1147abd0a80d d88728ad-bb98-4733-ba29-3bb77132fdb0 +87b68243-b40b-457b-a707-089b8f3fcd2f.mirnaseq.mirnas.quantification.txt ead71c90-cc5e-42ce-8754-c3cf15a41134 38dfc2d0-f58c-4991-85a9-fcebdfde62d3 +630113c8-fa96-4d1e-9c1d-f3044cfaba91.mirbase21.mirnas.quantification.txt f7e01929-733b-420a-ab2b-051dd4a992e5 9881f72a-d6e4-4d8d-b474-0a3c76df0f77 +630113c8-fa96-4d1e-9c1d-f3044cfaba91.mirbase21.isoforms.quantification.txt f7e01929-733b-420a-ab2b-051dd4a992e5 9ba19183-4115-4402-b321-2eec1005647c +e9a951fc-2027-4b3d-8e8c-078868678b18.mirbase21.mirnas.quantification.txt e20ea417-7296-4da8-9fdb-71cd1f45153a 1ac789fe-3ad4-42cb-8aaa-e8ea97990fdf +4f659b4e-e335-4fdd-acdd-f4d363440ef6.mirbase21.mirnas.quantification.txt f8a5547f-f1bc-4c01-8b68-25b5ee0caeab 09729305-74a0-47c6-a78c-a819b1b3ea96 +f242cfca-41ca-4570-a6bb-b95e2602bf82.mirbase21.mirnas.quantification.txt ed21615c-0de3-421c-9e8d-8996026c4431 66dda1b4-b328-46e5-b16d-ace46f9cdeef +89835cb0-9535-4b9a-8232-490f563937c9.mirbase21.isoforms.quantification.txt d3164236-c14a-4230-b527-ecd1a3992f02 ac962826-d1dd-4e07-b865-cbebb103c2b8 +1e9a7419-58d3-41ca-9e31-a41c230bc53c.mirbase21.mirnas.quantification.txt c7cf6755-8856-435b-a443-174b22a25b07 d0e8a500-43ca-4e1a-8490-a641d45d0c3a +02d34874-3343-4c91-9ed9-47af1e8b544a.mirnaseq.mirnas.quantification.txt 44493c23-82e9-4d9f-8e3c-7b3f9ae44970 6e6d7a95-b8ef-4418-836a-1eacc3931d09 +c44f7a10-0274-492e-8d6e-e21e2699cc7a.mirbase21.isoforms.quantification.txt 4c18d9cf-4af4-4a86-8b1c-f78795fbbd7e 2857c0db-06ba-4502-9640-79e51f8086b5 +f888aada-7c47-4581-9739-6e6d861ab810.mirbase21.isoforms.quantification.txt e978a457-92ff-4eab-b759-ec6e74d973e8 a0633ba1-0dca-480a-ab68-3179a7c90fe2 +04f92f91-dfa4-45e5-8817-612c170610aa.mirbase21.isoforms.quantification.txt cddce77f-21e6-4124-9f03-96fb5ca7cefa 500ce180-2877-4d3e-898d-839c10b840f2 +f888aada-7c47-4581-9739-6e6d861ab810.mirbase21.mirnas.quantification.txt e978a457-92ff-4eab-b759-ec6e74d973e8 e210c1c9-007b-4bcb-97bb-2db5e52ae85b +c44f7a10-0274-492e-8d6e-e21e2699cc7a.mirbase21.mirnas.quantification.txt 4c18d9cf-4af4-4a86-8b1c-f78795fbbd7e 67c3dd8f-68de-41a8-afea-7b98c5427009 +9f419109-0d43-4da9-89e0-944c01050fed.mirbase21.isoforms.quantification.txt 9471bc5e-18da-4356-bb0f-c78edd35ff99 10f856e0-7bc0-4572-a5d6-b6d19a3a3fbb +fb3178bf-1785-4dad-b4d1-e09541819db4.mirbase21.mirnas.quantification.txt 5ced5b58-fab4-4bcd-b706-d6e49ce0cfc5 b5a4e5fd-5712-44f6-91b4-48afeca86b41 +c39da255-2b01-4121-b483-fe59d5080904.mirbase21.isoforms.quantification.txt b867e933-e3e3-4491-9bb6-b18c48d6f173 586dc493-7bbb-4ba6-a839-6740d46060e0 +4357992e-4034-49ba-bf2e-2b37f5adffd5.mirbase21.isoforms.quantification.txt ceb19678-b453-4529-b6cb-d02f9cb101b4 6e73ea54-591e-4e3a-92bc-127f4c4c0869 +489e1313-1bd0-4e09-a6b9-937559ae3a00.mirbase21.mirnas.quantification.txt a6aad7f9-8444-4c2f-8e4b-b19fd453544f 919efb3f-0e15-4d5a-b7fd-975f5fadc4c3 +605b4681-d649-4015-8249-37648bcd4abe.mirnaseq.isoforms.quantification.txt a22c1451-7841-4fa3-b2f2-5d5cd8aa67d3 18afd97c-1cf3-4f79-9fc1-2863354d2be3 +d05a1100-8710-49ef-94fe-417e7e6eb188.mirbase21.isoforms.quantification.txt 1d0225b5-f515-4197-bba7-3dc17e502b88 27e80773-82a1-4c43-b3cc-c63e2efaef4b +d2504e2b-bc9a-47f7-a612-257d386b536c.mirbase21.isoforms.quantification.txt 63a75e0b-9241-4f0e-9236-01a2e2c05b7e 74265a00-2000-4ed1-b72b-6a22e9a1e1b1 +c8231b40-ec8e-43d6-ae45-4447e24b57d8.mirbase21.isoforms.quantification.txt 7592a659-7175-486f-a16e-24a4b4365a36 d8230f13-d536-43b5-b0f2-85123c79b9f6 +a9b5f028-4b51-4ff7-92f5-462000eb9074.mirbase21.mirnas.quantification.txt 2ae65a06-df0f-4de1-a536-537cae0cc260 c7cf1796-d337-455e-8425-da45f80daa8d +88fa6a0d-b092-4200-bcc4-d44525d2ed1e.mirbase21.isoforms.quantification.txt 05ba5839-e00a-4a9e-8ba3-ecb490781e62 c64f0bc2-4369-47c9-aea1-037cd297e195 +7e733b33-2620-4010-b44b-e70f7501c424.mirbase21.mirnas.quantification.txt 26558703-a659-43f2-86cb-0695989bc14e 8d0f9f76-6db9-4c8f-80a8-f663a9b2f3eb +056f33a9-2429-47a7-9767-f535dccc224a.mirbase21.isoforms.quantification.txt ee0a4a13-613e-4c5d-96c3-8083a013702d 6ad7dab7-b6ab-4e77-b9ae-23a95eaee306 +bff79f43-0a8f-4a8c-8695-2f2bd8234f35.mirbase21.isoforms.quantification.txt b1c90c69-6149-4105-8182-ab9212f196be daec7d89-dd0e-4851-bdb1-6307feffffcf +056f33a9-2429-47a7-9767-f535dccc224a.mirbase21.mirnas.quantification.txt ee0a4a13-613e-4c5d-96c3-8083a013702d 196005c2-f88b-4b75-beec-95b9daa1cf9e +3a891c6d-b223-4873-b6b1-5bb2f9ac6788.mirbase21.isoforms.quantification.txt 2956e414-f167-438f-8747-a46fe0723622 c65c107b-be52-48b9-b38f-76a200c6f395 +da071e62-1257-41ce-8095-8071c479e23d.mirbase21.isoforms.quantification.txt 0740321b-f8a5-4e1d-b390-ca6187598fac 813df022-f0db-4dc3-82c4-38c5ba7a3782 +1a01e309-ad6e-4964-a81e-533b04d47a86.mirbase21.mirnas.quantification.txt 3768d34f-1527-40db-b116-cd80cee5ec3a 0ca7bc8a-386e-4da7-897f-9188172906b3 +0f4d00cf-39a5-4e6b-9e33-30c763e7ed75.mirbase21.mirnas.quantification.txt 29dccd25-4c4a-463b-a353-38a193337f38 905f80bd-1232-4332-bb89-eb0ac107f6e4 +6ce02f51-1f46-416a-9720-b76324abbfe0.mirbase21.mirnas.quantification.txt 005a6517-2e5a-4ea3-ab36-531522723607 c2d26b92-8ba6-4bf2-b09b-c9b821a838e7 +915f8cfc-2ef6-409d-8b9f-15de72b598ee.mirnaseq.mirnas.quantification.txt 00630714-7ab3-44e1-afff-186300edae44 6c9c81c5-8348-4746-89a3-13a7a81be628 +8388528f-4f0a-4939-89bb-64478d67b5bb.mirbase21.isoforms.quantification.txt 00630714-7ab3-44e1-afff-186300edae44 15abdb00-5908-4aa8-9697-078a2e6ee695 +53567b54-bb81-4dc7-9161-8206b11d87c7.mirbase21.mirnas.quantification.txt 0b519c08-9f23-4ceb-9a13-e16509ca55d7 9d87d2a6-2f6a-4cc3-a68b-1fb8fa9c0552 +de38b7a0-e739-4a51-bdbf-54b50ff5cd7d.mirbase21.isoforms.quantification.txt cbc5b936-ead5-4858-ab90-e639402789b0 8fe1711b-4d63-4da7-a2f1-2221b86628eb +86f959d3-2e4a-46ef-9f93-ed0003109311.mirnaseq.isoforms.quantification.txt 0d15e5aa-2483-4f81-973a-ff469296c911 5c4250a3-e82b-4c39-a0e7-5af064cb1ae4 +b783c167-e867-48c6-a3fd-778e7dc01b97.mirbase21.isoforms.quantification.txt 18d21132-a795-4551-83ba-66483de423a2 b9cf0bd5-ae12-4c64-9d02-cdf280db18df +0ebefb69-8b60-46e6-9165-53cdd735ba91.mirbase21.mirnas.quantification.txt d2ccefea-c1d6-465f-97b1-e51e29c5f1f8 34f3bf3f-09ac-41ee-bf65-3424ef382476 +d7183242-925f-40f8-bbac-86aa98ee8c0a.mirbase21.mirnas.quantification.txt 195ecf43-06bd-4ffe-8d8b-a766f3f7179b 44860148-ef4a-4f21-98d3-2d9f93d3ef2d +37b09dc5-ffab-425e-98d1-c9c7f0c8d8ea.mirbase21.isoforms.quantification.txt 2038fd65-d8f1-4b16-af90-b1c8f9a379a7 87c51d57-6bdd-4a52-93a0-717020c3c379 +38a02deb-561f-4de2-b90f-1bd8459f459e.mirbase21.mirnas.quantification.txt 196f4600-b6c9-4652-9f77-65c92883f8c1 f8ae7b11-19c9-40ee-b8d0-c94b266e9c4e +83e3608b-3891-4015-af9e-40ee65fe1acc.mirbase21.isoforms.quantification.txt 13319c20-02f6-4b5f-b24f-3d8f4084094c 7fb343a7-d726-4b2d-b94c-3cee5b1ce437 +a02e461a-95b8-4f26-941f-629eeca34993.mirnaseq.mirnas.quantification.txt 15c84da3-16e5-4909-aea9-cb5894b0f8af fb29cde1-5e5e-43d7-be3a-f8c63a7a3744 +c2271ef2-66ff-4257-9f25-d70baf6a667d.mirbase21.isoforms.quantification.txt 15c84da3-16e5-4909-aea9-cb5894b0f8af 5aa57728-7860-49d6-9753-5d97e2b2dda0 +87372239-7135-40af-ad1a-b60253a058bd.mirbase21.mirnas.quantification.txt 1db60f09-7f5a-4f21-8003-06a6abc781db f3e199d1-68bb-410b-a5c7-297198a22017 +c5cc47b3-ea62-42f0-85d0-c97e438b8a57.mirbase21.mirnas.quantification.txt 242943fe-1fa0-4a12-8f7e-9c6c4af1194d f03a9ee5-bef8-4c91-82e3-b3329b40969a +87372239-7135-40af-ad1a-b60253a058bd.mirbase21.isoforms.quantification.txt 1db60f09-7f5a-4f21-8003-06a6abc781db c8c2b08e-9b3f-45ed-91ef-cea5a5320e10 +d550140e-346f-41c8-8700-802124a0c8c1.mirbase21.isoforms.quantification.txt 1e14f098-17b2-4f54-8e4f-e38088008df7 ae272d47-a468-4a01-947f-69fd02582d15 +4c832c79-59b4-4678-8cd2-5fa9ef2c4c77.mirbase21.mirnas.quantification.txt 184aac07-44c1-47f1-8adf-50acbcc1762c 846773dd-4b70-44df-9a4d-eef02e349b3b +52329a5e-6d17-4b08-93e1-313d50f678e7.mirbase21.isoforms.quantification.txt 1ede8063-e0e9-466d-891c-ac8916f1b5fa b60c1605-333b-4443-8d9b-29fff7232f0e +071570c9-cca8-410c-ae31-ec0426622ebf.mirbase21.mirnas.quantification.txt 538acb2a-c4ca-4656-a91c-841a42dbf15f 7a0c0df9-13bc-4deb-a549-7179ec1e9425 +449f199a-a808-4e41-aaf8-0bf6960cfda8.mirnaseq.isoforms.quantification.txt 30b8f4cd-9245-4496-a8a8-c3e59093bc0a 5436b13d-f2a4-46f9-91a6-c73ad090a05a +faa20bec-80db-4b29-b9da-4c519c53f85e.mirbase21.mirnas.quantification.txt 30b8f4cd-9245-4496-a8a8-c3e59093bc0a b89d1bb6-37e3-4c1c-9059-68f3089d01c1 +d5168c61-99c5-4a24-aae4-7216050d8bee.mirbase21.mirnas.quantification.txt 75f2d97a-b96c-403f-8055-5c5c8083e856 6627c74c-9f5e-4fca-ba6d-69d138b342cc +5725c705-7bc6-4571-aba0-e8ffb4935ba8.mirbase21.isoforms.quantification.txt 65ddccd2-70a7-48b3-88e1-9d6fd1dcd11b b9fed702-0a99-4a33-9081-bbea64b6f350 +5725c705-7bc6-4571-aba0-e8ffb4935ba8.mirbase21.mirnas.quantification.txt 65ddccd2-70a7-48b3-88e1-9d6fd1dcd11b dada6e5e-a52e-4619-b520-d92b419832dd +a60c51fa-f8e8-4fb5-8f14-c678dbc8de0d.mirbase21.isoforms.quantification.txt 5e90e1ed-cbfd-44ba-a6ff-63ff576b3c73 ee2f5e64-4f27-47ad-98d6-fef474787b60 +005f1d2c-c079-4ce0-8d91-ddc8799a3b50.mirnaseq.mirnas.quantification.txt 5e90e1ed-cbfd-44ba-a6ff-63ff576b3c73 d0ae2847-25c7-470f-b2c6-fe96f6b73145 +856f2c41-9a3c-4b2d-a1cf-20579979dbf9.mirnaseq.mirnas.quantification.txt 7621ed77-98bc-4b4e-8011-e18fcd014071 8b730ca7-2fb1-4962-86a4-dd30e826ecbd +56e8be89-3bac-486b-af0b-36815b9421a5.mirbase21.mirnas.quantification.txt 5d36676e-4140-44b5-aa0e-b2af092b7dc0 a82a0343-34f0-4c4b-abb3-4c52fd08379a +6a4e771b-aa65-4918-9ad2-18f7250b3f17.mirbase21.mirnas.quantification.txt 79e6e31c-22a1-481c-903b-ab5499cbd450 77404ef1-6583-4207-ac61-af267f402a34 +f07893c5-c0b6-48fb-ab88-01adb7b7234a.mirbase21.mirnas.quantification.txt 3c8b5986-f9d5-4e7e-9dd4-3ad301451279 34c27265-f900-4a66-97f4-655eccbd85ba +2ba533ca-0293-46e0-adfb-0d3653d98842.mirnaseq.isoforms.quantification.txt 66dc6379-a98b-498f-8109-e3a811d043ea b00def36-a231-4b3e-8832-2135c4d8742f +e1dffaed-4b9a-4262-9a95-b6cdb08712bc.mirnaseq.isoforms.quantification.txt 7e6cdbc7-26a7-44f2-96fa-094738cbccae a401f421-a4ec-4cc2-8aa9-563cc7191b43 +a6c488e2-db0c-4c9d-8e18-c82dcf62b840.mirbase21.isoforms.quantification.txt 6cf9f872-2e59-45cf-bb5e-ebd7fa1b3caf 6170bc6b-a626-44c4-8002-6db41ef35582 +68f56d7b-9f53-4900-ba63-52c8f9ed90fd.mirbase21.mirnas.quantification.txt 3fc8f799-5bd3-4f48-baf0-c458ce86ab7e 99da515b-a969-43d9-905d-d7d47c7a37ff +a1490a33-ffdd-4f46-9d06-aec6039568b4.mirbase21.isoforms.quantification.txt 6d10d4ee-6331-4bba-93bc-a7b64cc0b22a 47c07434-a346-49c7-a695-172e6e053b58 +fe6dae2d-81ee-4b3c-abf4-0b0756f3fe07.mirbase21.mirnas.quantification.txt 79fd602b-3e8e-4353-aa78-4f5f170b607d 0fb59aa7-14eb-4574-933c-39d4ed004b10 +fe6dae2d-81ee-4b3c-abf4-0b0756f3fe07.mirbase21.isoforms.quantification.txt 79fd602b-3e8e-4353-aa78-4f5f170b607d 2557449f-e123-451e-8407-2dca2feddbd2 +c714e40e-9084-495a-ab7d-a262c878bcfd.mirbase21.isoforms.quantification.txt 6209e80d-a115-4f8e-bf0d-18461401a1c6 94f18372-e14b-47c7-9b10-f0cac932a5dd +e45dfc8a-c255-4b54-8f25-bab9306ea813.mirbase21.isoforms.quantification.txt 6a1be87b-c4e0-4fd4-b050-50a245b22038 d242dcd3-50a7-48ee-97a4-7d16c556eb8a +35f29152-33a6-4861-9356-9d7430275a5d.mirbase21.isoforms.quantification.txt 872d2922-7292-4681-adb7-d3b267eccbe7 eb072ae3-48d1-4ca6-869a-3f9f6c7f7aa8 +fbf1cb50-a917-4e0b-9e28-1ebc48827a17.mirbase21.mirnas.quantification.txt 6e84e89d-4f35-43b8-b47d-b1343b8c1ab9 2f9f7ad9-27fe-43f7-8a18-149c0398ee78 +bc282b33-4b39-49d1-90d3-7d74d9eb2119.mirbase21.isoforms.quantification.txt 6b06281b-d3a9-440e-a86c-ee7db003352a 537ccf42-746c-45fc-8951-6673541e567d +e43d7956-8e86-4098-ac19-f956f6a0efc7.mirnaseq.mirnas.quantification.txt 8783e4b0-2b62-45d5-8cd9-f5a71cc0138e 9b417051-5090-4a61-bd1a-afe27272ea91 +f1847183-2dd6-4047-8a21-32ba9bf93ad3.mirbase21.isoforms.quantification.txt 7a75d318-b301-4f77-a97f-4d6784d27216 1539ddf2-78cb-4830-9f8d-475fde951ef9 +f7506126-0f7a-4d12-b6bd-62c4f2f44d4c.mirbase21.isoforms.quantification.txt 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 8db20540-1a2e-465f-8400-46ae4c65c7f9 +275d247a-f015-43c8-aff3-aebff9c36816.mirbase21.isoforms.quantification.txt 88180134-710f-46ea-9b06-5e5d860d6d9f dd561a3a-a6bf-4922-8981-c469aef9349b +94c2c3f9-563f-4254-806f-4443c17a9859.mirbase21.isoforms.quantification.txt 7016714b-6af8-45dd-8341-1493927e5515 fbeb83a1-e8d9-4a81-99b5-44fcd1479924 +cd3c7eb0-1dcc-4199-82fd-385139002a1e.mirbase21.isoforms.quantification.txt 91a17d40-c8cb-4cce-b306-966382a8fe4a 927db998-2f6a-4a2a-9bbf-927e0f30e279 +94c2c3f9-563f-4254-806f-4443c17a9859.mirbase21.mirnas.quantification.txt 7016714b-6af8-45dd-8341-1493927e5515 838db6e0-d752-4da2-9560-be6b6ae557c9 +f324ea0f-a334-45a2-9354-a1161b9376fa.mirbase21.isoforms.quantification.txt 7b042fb2-8f53-4fb1-8a44-40cd2128b279 5522a69e-5307-42b2-a5f6-1c7ccb8b7aca +f324ea0f-a334-45a2-9354-a1161b9376fa.mirbase21.mirnas.quantification.txt 7b042fb2-8f53-4fb1-8a44-40cd2128b279 4949acfd-9d27-42c9-894c-ae8d77834e2f +5f2fa5de-453d-4650-aee6-8b1d87feddb7.mirbase21.mirnas.quantification.txt 756f6768-e69a-4fe9-aa41-7c58aabe4577 4cceafee-f979-4303-9175-d58ecb09b774 +3b523d31-7ec4-43d8-8a0c-7438293431d2.mirbase21.isoforms.quantification.txt 7ca97692-0bf5-4bbd-81ce-10a051d04bd5 cdb453f7-930e-42e0-9772-2a390eba1014 +2a432355-6a89-4f03-934d-de0c6a8ed907.mirbase21.isoforms.quantification.txt 91a6f311-c758-4e40-9abb-cc0f6584b9c9 4a841580-175e-44e9-afef-df3803117649 +846f785e-0fb7-4fd6-a36a-8e642d050c71.mirbase21.isoforms.quantification.txt 8ac6ce06-ab50-4ab4-a469-9f8bf01be963 2de92c3f-9060-4f1d-a811-190f18bfe930 +b3437cda-8bec-4309-9463-bff79c197cb1.mirbase21.mirnas.quantification.txt 7e34d3c1-1fab-4326-9a69-4260d2bac558 d7e0206a-082e-48ad-83d2-6304178971cb +7076fbac-331c-4a9e-b6ca-a0e3d175fe3a.mirbase21.isoforms.quantification.txt b9418c6d-94f7-4db4-a1e4-f384b09d54cb 82c00cb3-81a9-4b8f-b6d2-87f08cba706a +3ab42558-86e6-4d36-a977-258c3656ba27.mirbase21.isoforms.quantification.txt 90f4b65c-cfd4-4066-a5b9-842885c172e2 91aa6b19-38bc-4beb-baf8-0009c9dd0a60 +3de8cfb4-e769-4c4c-8930-ee9619bec3a5.mirbase21.mirnas.quantification.txt bc84c5c5-1785-4edd-b732-8987f862063e 1b958bb0-16a0-41f1-8618-8d4b6ce0c22c +3ab42558-86e6-4d36-a977-258c3656ba27.mirbase21.mirnas.quantification.txt 90f4b65c-cfd4-4066-a5b9-842885c172e2 0962589d-da9d-4a35-9d31-b34be9d5f0cc +90b48c1e-e0af-474f-bd6f-aff3f69504fc.mirbase21.mirnas.quantification.txt 914f84bf-578b-4f4d-93cb-378228ea58f6 879691a3-ace2-439d-8947-24df77cef933 +ec609581-69da-4349-92ef-7f4b76cb6791.mirbase21.isoforms.quantification.txt ac2e88ff-8b1e-4691-9a96-5a581f98d827 6f680262-c0a1-46f5-a815-7dadd0190258 +ec609581-69da-4349-92ef-7f4b76cb6791.mirbase21.mirnas.quantification.txt ac2e88ff-8b1e-4691-9a96-5a581f98d827 95c65560-9ada-40de-ac27-bc5f71ddbd53 +0a3cde41-87f6-49bb-b6fa-0e9e0f5e8102.mirbase21.mirnas.quantification.txt 99f1ae02-86ec-4d93-8cd4-650bf6f02c10 a038e7e8-6c0e-449f-8686-33114c3e7c7c +9f803e43-f74e-4fb8-b8d3-f590d2098a1c.mirbase21.isoforms.quantification.txt b4b49027-7815-4813-9769-a3fe3a26a37a 55f9f4a6-a1f2-4b15-916e-77bf925b92af +56b3278c-60e5-4d45-901a-77640b467872.mirnaseq.isoforms.quantification.txt cddbac56-2861-46a5-98a3-df32ab69d5da 9fed1669-e065-483c-8b74-bda33f45b8a2 +0041f79c-47fc-4d18-87fa-a26989c67b4c.mirbase21.isoforms.quantification.txt ce871097-a6e9-4139-897e-642ee24ee123 81d1bb1e-0bd8-43c4-ab28-cc6d45413543 +0dda1b40-2c4c-4265-b68c-c8e15e378080.mirbase21.isoforms.quantification.txt 9bbc01b4-056c-4ddc-aca4-ff20718646d0 eeef7c02-dd63-4ccb-b6d5-c2dbb30ab40a +1bd07a8c-6095-4534-9c70-d88bda1cd148.mirbase21.isoforms.quantification.txt c6ede8ae-881c-47a0-a0ef-745ed4b7764a 64e8e7c8-fdde-460a-ab47-ee1ac3910d55 +b4f43a86-3068-4016-bdd9-3e02f07e354d.mirnaseq.isoforms.quantification.txt d38ca631-ed5c-4182-a647-625060726fa7 869994f0-1a73-4f30-a600-bad02d4e6291 +69f6ed98-6cab-4404-b8ee-6f4c2fc72f64.mirbase21.mirnas.quantification.txt d38ca631-ed5c-4182-a647-625060726fa7 d0c369f0-55fe-41ee-be36-0984f72ca153 +bb797f15-acaf-441d-acba-63161b0b9bd7.mirbase21.mirnas.quantification.txt 9e48a4b1-6917-4625-9d78-e4832eb816a5 bae717b8-eaaf-4e0a-b3d1-aae35eabbabe +d72ae1bb-2005-4654-b2f1-a815e7a9aeb6.mirbase21.mirnas.quantification.txt 9ec86cbd-8c74-4697-90da-529ab91ab835 405a83a4-e5b8-4ba6-bec6-5e884bd26bf7 +4aa6a9ab-1b21-4a02-849d-06d409385eb9.mirbase21.isoforms.quantification.txt d3dd5e69-9752-4b50-9b1f-814afbc2c3dd 18548f61-2410-41f1-9ca4-91c5576e6199 +6792b31d-008b-4c0b-8122-6ef29bb85707.mirbase21.mirnas.quantification.txt ef57bc45-858f-4d4e-8407-b7eadfa43be5 1abcc218-5d02-47a7-80a3-1953ce597c20 +3b89783c-8650-45f3-ac39-96b8cb4c911e.mirbase21.isoforms.quantification.txt d7925dfc-18ce-46ab-a47b-9d06eacc96d0 222043a8-528a-4ae7-a1c4-504319abfdeb +9a945c94-acc7-48ac-83a3-58263e035a22.mirnaseq.isoforms.quantification.txt e3712e5a-4575-440f-89d1-8db9498baa88 5be831af-0945-46c8-be4e-00343ff07866 +11e937c8-a130-469d-8dfd-35f304318fb5.mirbase21.mirnas.quantification.txt fbb45305-de8d-4baf-8bd0-047b29c2e9d9 461c4bf9-7207-457d-9113-8a0364a141c6 +fabf3fda-b118-4f0a-803c-ce871e785317.mirnaseq.mirnas.quantification.txt d7f82e34-5b34-4e8c-a0cf-d7561bcea43c 8d19078b-cd0a-4ee4-96ca-3275ac07825d +5bc471e6-be47-4551-aa40-bd6c7633015f.mirbase21.mirnas.quantification.txt e3712e5a-4575-440f-89d1-8db9498baa88 5ce3a8ff-43f2-4087-833d-1c8716ef96b4 +4cda8aa2-fae8-4313-a537-d2c50a4d800d.mirbase21.isoforms.quantification.txt f2dcf4cc-609d-4532-a90d-6ae2bbb53365 0460e495-bed8-4064-a9af-d7b4465ee5aa +617626ba-04e4-45f0-83da-4f2d386a396a.mirbase21.isoforms.quantification.txt e5a329ec-e50e-4786-901d-b58474f8ea65 8f77e8a5-e562-407c-a778-a2ee20edb759 +617626ba-04e4-45f0-83da-4f2d386a396a.mirbase21.mirnas.quantification.txt e5a329ec-e50e-4786-901d-b58474f8ea65 142abe6c-2b87-4dc3-bdbc-20bd96849130 +90e60733-1277-47e2-b6c8-2fb446868749.mirbase21.mirnas.quantification.txt feda41d8-ca56-425d-b149-4d5485328107 922da2f2-c844-4d12-bc20-f7ab4cd624ff +94e0206d-2251-4856-aa9b-c18dc80f465a.mirbase21.mirnas.quantification.txt dac8d825-dd47-47ed-a426-0ee75feb76f3 7cc873ef-1204-4909-bc98-93db4cbb27da +000550a4-db6b-43ec-86c6-796522f7861f.mirbase21.mirnas.quantification.txt e641aed9-1dd8-4c30-b231-f12b20a76df0 befb4951-1e89-4d8b-beab-466200e86caf +bb8dc653-3446-403a-af8e-c79e700c7ab0.mirbase21.mirnas.quantification.txt f7752d6e-f9cd-4dc9-ab01-3ab87acb21e4 42f934f0-791d-45db-9f65-23bc66a7d9e9 +bb8dc653-3446-403a-af8e-c79e700c7ab0.mirbase21.isoforms.quantification.txt f7752d6e-f9cd-4dc9-ab01-3ab87acb21e4 cd762002-b04b-41bb-9096-a1c006e5c269 +42fc169b-a145-44c5-8beb-b3f3268e7f75.mirbase21.isoforms.quantification.txt df53c3c0-3605-4d2b-bdc7-96d9beab27ea d7a310a2-b624-48f1-84e1-007f84a2896b +87b68243-b40b-457b-a707-089b8f3fcd2f.mirnaseq.isoforms.quantification.txt ead71c90-cc5e-42ce-8754-c3cf15a41134 6129e20f-7292-476e-bb4d-2eb645dbc8e1 +45ba4f12-f418-4d4d-aa2b-418e6678ee5c.mirbase21.mirnas.quantification.txt ebe677e6-94b6-45be-a58d-eaae4cf63d12 ee9de52f-38c4-48df-a1a1-cd855831350f +ebe282a9-c211-4f2e-8769-07cab70c3906.mirbase21.mirnas.quantification.txt e294b940-2828-499c-be24-47ef6c2e9035 aaabeaf4-ebfd-452c-8d1b-56fc4f31474a +45ba4f12-f418-4d4d-aa2b-418e6678ee5c.mirbase21.isoforms.quantification.txt ebe677e6-94b6-45be-a58d-eaae4cf63d12 b31d550e-8dd5-46f9-8183-5ea70a4c6ee9 +f242cfca-41ca-4570-a6bb-b95e2602bf82.mirbase21.isoforms.quantification.txt ed21615c-0de3-421c-9e8d-8996026c4431 33cd3a5f-2528-4b89-a601-2fb12640e595 +605b4681-d649-4015-8249-37648bcd4abe.mirnaseq.mirnas.quantification.txt a22c1451-7841-4fa3-b2f2-5d5cd8aa67d3 21a80d78-6c60-40ab-8056-411807a3b605 +2ebc4202-1053-45da-a924-10e8ff9ad6a2.mirbase21.mirnas.quantification.txt ff844242-7559-4b07-b09e-69ea40e5ac6b 7d304e5a-dde0-4d10-be0c-4e08836c991f +f1b000fe-541d-49a5-acdc-2dbd16c2d4a3.mirbase21.isoforms.quantification.txt 077079c3-6877-467b-b9cc-5c650aae4f07 d70aa0f0-dbd0-488e-b67e-d887df354688 +1e9a7419-58d3-41ca-9e31-a41c230bc53c.mirbase21.isoforms.quantification.txt c7cf6755-8856-435b-a443-174b22a25b07 1a01559c-a578-4e17-89c2-90f154d916ef +18f8340e-9579-4f3c-a29e-bc87f0943b45.mirbase21.isoforms.quantification.txt 44493c23-82e9-4d9f-8e3c-7b3f9ae44970 6f1565f4-dc31-48f5-bddf-383c78e6bafd +18f8340e-9579-4f3c-a29e-bc87f0943b45.mirbase21.mirnas.quantification.txt 44493c23-82e9-4d9f-8e3c-7b3f9ae44970 1c02b2df-2617-4b4d-ae20-db3388115510 +89835cb0-9535-4b9a-8232-490f563937c9.mirbase21.mirnas.quantification.txt d3164236-c14a-4230-b527-ecd1a3992f02 9853df0e-e711-477d-bf6e-aad34a44af81 +fd49b73a-7479-4275-8069-491d0a62f439.mirbase21.mirnas.quantification.txt 72c40fba-f502-489b-ad87-843f52655894 be64bfee-9e20-4f2c-af18-0f52a9d36a81 +9f419109-0d43-4da9-89e0-944c01050fed.mirbase21.mirnas.quantification.txt 9471bc5e-18da-4356-bb0f-c78edd35ff99 b5acd9a6-cc9b-49c7-a723-1e93b746b746 +590a0ba3-9ba6-477d-9d69-1cf9c0b72d65.mirbase21.isoforms.quantification.txt 7d82ce56-32eb-4107-aa5c-c568764805c9 d712d20a-72ff-4dd0-a8fb-ee24a8ab9814 +590a0ba3-9ba6-477d-9d69-1cf9c0b72d65.mirbase21.mirnas.quantification.txt 7d82ce56-32eb-4107-aa5c-c568764805c9 7ff05304-0ff4-4349-b848-9646cad05943 +bbd6a518-d61b-411b-bac0-250b1ce741fa.mirbase21.mirnas.quantification.txt 914d8613-3c25-4a10-be50-28b42f4d3a5d faf0ba1a-bc20-4cfc-887d-98e251391b23 +bbd6a518-d61b-411b-bac0-250b1ce741fa.mirbase21.isoforms.quantification.txt 914d8613-3c25-4a10-be50-28b42f4d3a5d e7020554-379c-4684-8df2-47ab1923e5e8 +c39da255-2b01-4121-b483-fe59d5080904.mirbase21.mirnas.quantification.txt b867e933-e3e3-4491-9bb6-b18c48d6f173 cea310aa-10af-4b8b-9e3f-c92a7c00c9a0 +d7b2fdac-3937-4545-b7b6-2beb70c362aa.mirbase21.mirnas.quantification.txt 7472b3ba-9b15-4d97-8708-a2dd82ca0f45 9b867046-d7d8-45ca-82ac-660e721a9ac3 +e21e9e32-bedd-4433-8646-537387392c0e.mirbase21.isoforms.quantification.txt 05019013-7ea5-4905-ac79-901146ba2ee2 0d9cd17c-faad-4e3f-a139-08183e01e811 +e21e9e32-bedd-4433-8646-537387392c0e.mirbase21.mirnas.quantification.txt 05019013-7ea5-4905-ac79-901146ba2ee2 37e0e06e-ec5b-4eea-8872-ad6ce298ac84 +d05a1100-8710-49ef-94fe-417e7e6eb188.mirbase21.mirnas.quantification.txt 1d0225b5-f515-4197-bba7-3dc17e502b88 da233c45-1f7c-4ef6-8f47-87a1232f657f +3db3c77d-c171-4020-82af-1643d1b18c0b.mirbase21.isoforms.quantification.txt a8c4a333-6b67-44c8-9000-516f8ccea788 5516472e-6ca5-4b30-844f-09f0fec68a59 +019f69d3-6dc9-4677-88d7-cee7b4dd77fb.mirbase21.isoforms.quantification.txt de548bdd-14ca-486b-bd16-a6fbdd5b50d2 69a5753d-31e9-40f0-8cfc-04ca7897ab91 +bc22897c-a0dc-45f7-b4ec-4b8e957bf512.mirbase21.isoforms.quantification.txt 04ecaf38-0232-4dcd-9242-308a22cc1331 70f5e35e-739a-4274-92cb-0c2a11f8d542 +0e767624-17df-43ee-b43d-8b7d4282cc2a.mirnaseq.isoforms.quantification.txt 2c69f3a4-c26c-4fbb-a1c0-b1f57554c43a 5c0912ab-c663-4c7d-8a3d-50902a164abb +1f4965b2-353c-41a7-97e8-98ef7d625f7b.mirbase21.isoforms.quantification.txt 2c69f3a4-c26c-4fbb-a1c0-b1f57554c43a df19cc5f-b7f0-497a-95c2-99e404c7dd91 +c8231b40-ec8e-43d6-ae45-4447e24b57d8.mirbase21.mirnas.quantification.txt 7592a659-7175-486f-a16e-24a4b4365a36 3d790f95-f59f-4abb-b9b7-d8b6443983fd +966888b8-9194-44b5-a7e8-feb9a82ef136.mirbase21.mirnas.quantification.txt 3f917550-89a6-404b-94df-938c99121411 8ba26973-af21-481e-a306-5b2f97ab4243 +bff79f43-0a8f-4a8c-8695-2f2bd8234f35.mirbase21.mirnas.quantification.txt b1c90c69-6149-4105-8182-ab9212f196be a07d7c75-7453-4358-82b7-8313808a169d +8292e9cc-cbee-4786-9880-0fdff2a99b49.mirbase21.mirnas.quantification.txt f64ebc7f-0e5a-42b4-af57-6cdb90d24f90 3702cd30-9712-4dfd-80f7-04fa462c5dcd +1a01e309-ad6e-4964-a81e-533b04d47a86.mirbase21.isoforms.quantification.txt 3768d34f-1527-40db-b116-cd80cee5ec3a 877bd2bf-dd12-43dc-90e5-ff1cd27e862b +0f4d00cf-39a5-4e6b-9e33-30c763e7ed75.mirbase21.isoforms.quantification.txt 29dccd25-4c4a-463b-a353-38a193337f38 0be1943d-314e-4e9c-bcc5-622fe2e62206 +6ce02f51-1f46-416a-9720-b76324abbfe0.mirbase21.isoforms.quantification.txt 005a6517-2e5a-4ea3-ab36-531522723607 98a130b3-49ef-45a7-809a-82ab9755a807 +d0dd6aca-e647-4165-867c-6035a1610d56.mirbase21.mirnas.quantification.txt 0b2ea4b7-98bb-4190-b682-2c75b447c90a 874c95a0-e9c1-4227-8c64-998001383988 +d2e0ffcc-0118-4b67-8a97-31e3f3362fc8.mirnaseq.mirnas.quantification.txt 0b519c08-9f23-4ceb-9a13-e16509ca55d7 5758a4af-7134-4363-828e-4f5e9d693bd6 +d2e0ffcc-0118-4b67-8a97-31e3f3362fc8.mirnaseq.isoforms.quantification.txt 0b519c08-9f23-4ceb-9a13-e16509ca55d7 b1cfcb84-6fb0-4a31-b5d3-6e2ecf24fd69 +5413501f-5f3b-4705-914f-dde9a3fb43a1.mirbase21.isoforms.quantification.txt 02d9aa2e-b16a-48ea-a420-5daed9fd51a6 d9868bdc-fa86-4fa8-a772-fbd84a1613f1 +c602b5bc-d557-4b1a-b69c-0d272dfffc63.mirbase21.isoforms.quantification.txt 76cc2d21-eebc-4f09-9bc7-dbf7af0aafa8 aed6657d-70c8-4be1-a6aa-9549cb6a9bc4 +de38b7a0-e739-4a51-bdbf-54b50ff5cd7d.mirbase21.mirnas.quantification.txt cbc5b936-ead5-4858-ab90-e639402789b0 e58ae089-e62e-461a-a5aa-2ec61a41c172 +ec2c94e3-86a7-47a4-995a-36ae51c5b57a.mirbase21.isoforms.quantification.txt 098acb76-0bf5-44e5-bcae-f919cf5fa5e5 c6126cc7-84f5-424b-8e7f-0dd683759db2 +42d8a1c1-483d-43df-b7fb-fbdde6a93b82.mirbase21.isoforms.quantification.txt 0adadf17-c4b6-48b0-a326-21450de3e144 c4376886-dd6a-449d-85a7-ded3fa936927 +11615736-838b-423e-a967-a38e14598395.mirbase21.mirnas.quantification.txt 0d23fa5b-95f8-4626-a4d2-c72ad3cc553b 67c176a3-f1a4-478e-bc9f-c85fab51e1b1 +52329a5e-6d17-4b08-93e1-313d50f678e7.mirbase21.mirnas.quantification.txt 1ede8063-e0e9-466d-891c-ac8916f1b5fa fb270a41-f6f8-47b1-ade2-a5adc7f39e2f +f58d3c14-b772-4d67-b643-d2e897356e90.mirbase21.mirnas.quantification.txt 55153632-1673-487a-85c0-f156377db1fc cdf13089-4202-4e59-9157-4d22923224a2 +abb020b2-6dad-4ad5-9c00-ef43caba334c.mirbase21.mirnas.quantification.txt 20336269-5a5b-4ba7-8fe8-665a1f9af738 5692bc02-1298-4940-9110-703d6e04aeaa +bf743280-5e6c-4f89-b1da-e55dc5cd36b5.mirbase21.mirnas.quantification.txt 0d5e232d-5aa2-4f6f-be58-ffd5f15ee0b8 c59989f1-814d-4e8e-a314-ee652087d65f +09af3d9f-f60f-49c9-81b2-5e70fb57fb4a.mirbase21.isoforms.quantification.txt 12581634-eebb-4841-8498-71dc9d78c546 01760f5b-5447-4c76-aa92-b0034f1eb81a +09af3d9f-f60f-49c9-81b2-5e70fb57fb4a.mirbase21.mirnas.quantification.txt 12581634-eebb-4841-8498-71dc9d78c546 c915a8cc-9ae7-42e2-a76c-e1073e75434f +c25c9178-db7e-43e4-91bf-d49b4ce69989.mirbase21.mirnas.quantification.txt bc4bc342-20bf-40c3-af26-2c6f942da93d f5c3bd3f-17ab-4ff9-a4ef-30e55ea6c9a9 +83e3608b-3891-4015-af9e-40ee65fe1acc.mirbase21.mirnas.quantification.txt 13319c20-02f6-4b5f-b24f-3d8f4084094c 86086ef8-b365-46f5-afbb-3ca10781969b +613e2323-054d-4e25-b5ad-b648f20a621a.mirbase21.mirnas.quantification.txt 0e1598d8-cbe5-4113-95f1-4bcda061239b f33eb916-7019-47f1-98f8-bc24197cf848 +613e2323-054d-4e25-b5ad-b648f20a621a.mirbase21.isoforms.quantification.txt 0e1598d8-cbe5-4113-95f1-4bcda061239b 037ab7f9-670c-426d-9262-990e5fafdf80 +b82976f7-a437-407d-9b0d-111c4946c1fe.mirbase21.isoforms.quantification.txt 20c6be4d-7baf-4ea0-93e2-a5212f2e9b9c 7dd99caa-00b0-43d7-aed6-a4a3edbc6a8e +c2271ef2-66ff-4257-9f25-d70baf6a667d.mirbase21.mirnas.quantification.txt 15c84da3-16e5-4909-aea9-cb5894b0f8af de35e1b2-458b-4576-8cd6-4ca9884ae6bb +d550140e-346f-41c8-8700-802124a0c8c1.mirbase21.mirnas.quantification.txt 1e14f098-17b2-4f54-8e4f-e38088008df7 a76d1f5a-76dc-46de-9f27-8006dc0c9c64 +99e6c880-906c-4969-a733-57d0d8861d0e.mirbase21.mirnas.quantification.txt 7c466a5f-a6b4-4d1a-a0f5-ddcd7ef90ff1 2115bae1-cc72-4a7d-a3f5-219c813897b5 +aa862aa2-2f1d-4d11-aebd-4510387f1f7f.mirbase21.isoforms.quantification.txt 390eed6b-50af-48a9-9fd6-3a68a2bbb7f9 571e09e7-8770-414a-ba75-160709a39bce +ab8ba07a-47e6-4d96-95ca-82a116e8dec0.mirbase21.isoforms.quantification.txt 2a3a6222-f477-4198-ab9e-cdf527c1a6cf b1a95cdc-296c-41eb-94c2-a777a8dda073 +6698d89a-9954-4cd0-b31c-2b6bb9968471.mirnaseq.mirnas.quantification.txt 2a3a6222-f477-4198-ab9e-cdf527c1a6cf 6135b1fc-bac4-44fb-83c1-9a362f4c1058 +8d64af27-a2c2-4cf2-96f1-6e8592f926cb.mirbase21.isoforms.quantification.txt 34f285ab-6c31-4865-a0a7-a57af3567df0 8b8a4265-98b3-45e7-8651-3e44b69d775d +dcfbd40a-bf99-46bd-8398-fa5000bba378.mirbase21.mirnas.quantification.txt 27920e1e-b9ab-4587-970a-0cba7025becb 64afffb8-1b79-4051-9a3d-fd104a7145fc +faa20bec-80db-4b29-b9da-4c519c53f85e.mirbase21.isoforms.quantification.txt 30b8f4cd-9245-4496-a8a8-c3e59093bc0a fdae5a0b-235b-4113-afd7-22753e7b7b2f +e293bbbd-e6e5-47fd-8cec-0288d5490710.mirbase21.mirnas.quantification.txt 28ed2d42-5b4c-4bca-b2b2-6b2a6d3c42cf 27857f7c-b576-465e-a9d4-29e957a88df6 +262a75ee-f2c4-420e-bd54-51aa896028f5.mirbase21.isoforms.quantification.txt 2ab32e11-80d6-4ed0-a42e-da612219bbdd 8a3ee5f0-c9d4-4ebc-b736-4884b587035e +3ab8c815-ea19-4446-929e-3d949f49816a.mirbase21.isoforms.quantification.txt 2a924999-1fbf-470a-97bd-fd2276a9a366 737fb45c-fc01-45f9-907e-6298f940993d +e76fb1d8-6e19-4842-9ad4-67dfdcdc94df.mirbase21.isoforms.quantification.txt 2cb50c2d-e749-4172-b101-d975507435c5 59fdf078-9224-4366-ae9b-12ffe4441b1a +483b3516-7fe7-4c12-91b2-172c8041f187.mirbase21.isoforms.quantification.txt 41178cbc-db73-4007-b5d8-febebf7f578d cddcac32-8a66-4074-a64e-b8a661a51f38 +04c31914-f7f5-4e02-9103-16244fab1da0.mirbase21.isoforms.quantification.txt 36595b52-2b5f-4e87-80eb-37c29109e92a 91854a7c-7efd-438c-96a3-b9edf86362bb +0f48ac7c-d892-467e-bf2a-1d6122881e5e.mirbase21.isoforms.quantification.txt 565d06a1-3640-4274-8fb3-8cad7e578876 22e23054-d583-4de3-906f-ba35420e40ae +89493459-8839-41fa-9a6f-4e09ef790f85.mirbase21.mirnas.quantification.txt 446ce2a3-d328-443c-a419-3344baad0e16 fe884482-47e2-4ea4-9351-d464fd28c06b +356cdbfc-2329-4548-a24e-71b5de680fe8.mirbase21.isoforms.quantification.txt 512de609-757b-42be-8b30-c414f71af422 39af2f58-7a6e-45b3-9940-f97552885a33 +356cdbfc-2329-4548-a24e-71b5de680fe8.mirbase21.mirnas.quantification.txt 512de609-757b-42be-8b30-c414f71af422 e1770500-8994-488b-95a1-908c85487016 +c638c38b-e8c5-47ec-b6e9-ef578a297736.mirnaseq.isoforms.quantification.txt 514aa64e-a58d-48c2-aff9-498604cc11d6 a9648122-f000-4465-bafe-49230db49bc5 +944015fa-f996-4d2a-8954-6a5e43e9f614.mirbase21.mirnas.quantification.txt 45957be6-e4df-4245-acf8-39dfc118ee19 05117d47-0d43-483c-b3e7-ac747a98a237 +3a3e7883-849d-4918-a954-7af33548c012.mirbase21.isoforms.quantification.txt 5503b3a1-7d03-41b2-9ec8-e478c5414d67 526d1d12-6177-4401-bedb-015662fa17bd +e5850774-2c46-45c4-a352-098d49e1f3d4.mirbase21.isoforms.quantification.txt 4c099644-047c-42a3-8187-bfcbfe6662e4 4254b3d4-af47-40fc-b0cc-e1767f9c9055 +0c45657e-7944-4660-b202-bd075681d77a.mirbase21.isoforms.quantification.txt 3b81ec7c-0934-4649-9231-9919dd26dd15 53bab95e-3412-4f0f-9980-425da8d7b79c +146bf0ae-0c2a-4281-a1e5-ba31f0ba12bf.mirbase21.mirnas.quantification.txt 59b3fbfe-0b7c-41e5-b756-ee7e23730df5 15933601-0ce6-4bba-b78b-760b88973f32 +d5168c61-99c5-4a24-aae4-7216050d8bee.mirbase21.isoforms.quantification.txt 75f2d97a-b96c-403f-8055-5c5c8083e856 ec0cc4a0-b2df-4d90-b5d3-041a4be72473 +17d4b1e1-79b3-4b97-988f-d617f8d9b8eb.mirbase21.mirnas.quantification.txt 65435f50-a35d-49e3-a36e-b95d9e274ca0 e4f86fa9-c443-4b9a-a33b-214d67849cbb +ba4b8482-d750-496f-bb94-f6d568549f1a.mirbase21.isoforms.quantification.txt 5c159ab5-8475-4d93-89b8-b6befed4a5b3 78d71caf-5dc1-4fda-a01e-2a41e4520d52 +05166d9f-df78-44e8-a37c-cf65b2dc95d7.mirbase21.mirnas.quantification.txt 3bc8a74f-49bd-46b6-a3a4-68ca838e83c6 705f8a25-2902-405a-9727-11e96344a9ba +56e8be89-3bac-486b-af0b-36815b9421a5.mirbase21.isoforms.quantification.txt 5d36676e-4140-44b5-aa0e-b2af092b7dc0 17c21030-14dc-4611-a4bb-4169c74a8ef4 +05327ee7-fee0-44f7-94f4-1f350c783410.mirbase21.isoforms.quantification.txt 60014a6e-6a13-4f92-bbfd-eeeee9632f98 2ed5b809-57e7-4486-befd-1fccb6a086d1 +766881fe-01d6-4a1b-9312-1dde8f1e1f80.mirbase21.isoforms.quantification.txt 602e2934-223a-44db-8c33-06eb05d72f94 7fa26e68-2b29-4d0c-8300-d56c370eb4ba +6be3b7da-c8fe-43c8-ae31-41e52c70af9f.mirnaseq.isoforms.quantification.txt 3c8b5986-f9d5-4e7e-9dd4-3ad301451279 a1fa87f6-9ea5-46ec-99d2-e832afb887b9 +e1dffaed-4b9a-4262-9a95-b6cdb08712bc.mirnaseq.mirnas.quantification.txt 7e6cdbc7-26a7-44f2-96fa-094738cbccae 7f01fecc-1a79-442b-8cdb-8b3ea48d4a61 +9b95700a-1c83-4f52-8634-928b5d20a0d4.mirbase21.mirnas.quantification.txt 619b14f3-b8cc-4c0a-8304-6719853d592a 0153ac3e-a952-4409-9a80-cb502393c3ff +9b95700a-1c83-4f52-8634-928b5d20a0d4.mirbase21.isoforms.quantification.txt 619b14f3-b8cc-4c0a-8304-6719853d592a 29ffa94e-b6b4-4af5-9fc5-58d33c062bb7 +6a4e771b-aa65-4918-9ad2-18f7250b3f17.mirbase21.isoforms.quantification.txt 79e6e31c-22a1-481c-903b-ab5499cbd450 bb429499-923c-4b6d-a6cc-06319c8410b7 +f3975093-55c6-41c4-bfcc-3df2e5281853.mirbase21.mirnas.quantification.txt 81005bae-686a-4598-8994-49d90ebac56f e8edd292-9a38-4023-8f76-b796c7289a1f +68f56d7b-9f53-4900-ba63-52c8f9ed90fd.mirbase21.isoforms.quantification.txt 3fc8f799-5bd3-4f48-baf0-c458ce86ab7e 53a97ac7-8a4e-4e77-aca9-49d50d93c693 +6432f7d5-aae4-46ac-bc8a-580d9047579c.mirbase21.isoforms.quantification.txt 7a08efd0-f984-430e-a8eb-1881047214b6 0b56e0ed-b3bc-49ea-8ad6-3156e118ecff +aea53e86-ea23-4a00-9b68-eb8dafcf17ea.mirbase21.isoforms.quantification.txt 6ad8bc89-d8e9-48c2-bc25-c8e51f972b4d e8ed5d77-49ce-475d-91f1-e633185ed60c +35f29152-33a6-4861-9356-9d7430275a5d.mirbase21.mirnas.quantification.txt 872d2922-7292-4681-adb7-d3b267eccbe7 14e55baf-fc2d-4cee-b75a-fffa9bc6f7d9 +e43d7956-8e86-4098-ac19-f956f6a0efc7.mirnaseq.isoforms.quantification.txt 8783e4b0-2b62-45d5-8cd9-f5a71cc0138e 3c172e70-050c-4e03-8bad-bebf4edb40cb +fbf1cb50-a917-4e0b-9e28-1ebc48827a17.mirbase21.isoforms.quantification.txt 6e84e89d-4f35-43b8-b47d-b1343b8c1ab9 70416d1e-cdd8-42f3-b7aa-99d5a807b381 +bc282b33-4b39-49d1-90d3-7d74d9eb2119.mirbase21.mirnas.quantification.txt 6b06281b-d3a9-440e-a86c-ee7db003352a 9028831f-eded-4961-8ea1-151ece499b53 +f7506126-0f7a-4d12-b6bd-62c4f2f44d4c.mirbase21.mirnas.quantification.txt 62efb5ae-43dc-4a4c-a898-6cd9c6dba027 cbf7c7cd-e0fb-480c-8108-cbaa57a39841 +cd3c7eb0-1dcc-4199-82fd-385139002a1e.mirbase21.mirnas.quantification.txt 91a17d40-c8cb-4cce-b306-966382a8fe4a 1faeb00b-93aa-489f-8612-dbcb69353b33 +0201f538-e899-4a77-96aa-b563c3712eda.mirbase21.isoforms.quantification.txt 85a85a11-7200-4e96-97af-6ba26d680d59 cfc1995a-80eb-44e2-a1ea-d263a63f2b92 +760328e5-3c89-458d-8546-00d1468a8987.mirbase21.isoforms.quantification.txt 8a98a6e6-b763-4824-858b-fd2738e6c9a3 c7462d8b-2d2e-4b84-86e0-9b6a5e88f7ff +a9fb9fbc-2764-40d9-8408-3fde78399371.mirbase21.isoforms.quantification.txt 758e6b52-062e-4ca0-84d1-ea38477414ac ff143cbb-a486-45b1-a5fc-3dbaaa2108f3 +b3437cda-8bec-4309-9463-bff79c197cb1.mirbase21.isoforms.quantification.txt 7e34d3c1-1fab-4326-9a69-4260d2bac558 459bd3f8-7cf6-48a1-a646-23c1c3106991 +a5d90be4-0242-4d83-a54a-a973b638b4c4.mirbase21.isoforms.quantification.txt afd92922-b8dc-48bd-a9c0-bc8d95855eb7 e85af5e0-8e38-4d4c-858b-34d321f4c817 +031ed697-812f-41dd-9a5b-ceae4b1ed991.mirnaseq.mirnas.quantification.txt a88b7e66-5f12-4023-a7e2-fcfbd1f25977 1ab98075-8c95-4934-8499-0c55b23bebbe +919eb80a-856c-4635-8409-2880d5a4eec2.mirbase21.isoforms.quantification.txt b1e11e94-646b-4c44-9d33-1ca67d8356fb 828f3d41-5097-4580-ad7a-89f7faa047fb +71780af1-64aa-4e23-b4c1-84aefe241452.mirbase21.mirnas.quantification.txt 933dbfbd-4697-403e-bd73-c17cb300c94b 974b7e16-5ee5-4bc1-b539-cd6e3808805e +3de8cfb4-e769-4c4c-8930-ee9619bec3a5.mirbase21.isoforms.quantification.txt bc84c5c5-1785-4edd-b732-8987f862063e c3090f29-7a38-4d4b-acc3-4cd4efb1f43b +0a3cde41-87f6-49bb-b6fa-0e9e0f5e8102.mirbase21.isoforms.quantification.txt 99f1ae02-86ec-4d93-8cd4-650bf6f02c10 59d2cf1e-a650-4368-8768-b14fd7368226 +d3c4a9cf-95c5-4df0-b9a7-c32d6d6a8816.mirbase21.isoforms.quantification.txt b31d85cc-d2e2-4bd1-9986-d6bbe30e657f 01af3640-0036-4c6b-9d71-6d241d375907 +b1400409-8a0d-4c0e-bc77-61ead36743a4.mirbase21.isoforms.quantification.txt c11cae7e-91cd-4470-a9d8-188a4f6b8fa1 1be79025-98bd-4d32-a735-588ac51bb236 +07708b3c-5a20-4964-883c-f508935a5676.mirbase21.isoforms.quantification.txt cbe3309e-9b7b-4f62-87b5-0f5ed4218ada a00ab07e-35bf-4cc5-beac-43aee88ad504 +b1400409-8a0d-4c0e-bc77-61ead36743a4.mirbase21.mirnas.quantification.txt c11cae7e-91cd-4470-a9d8-188a4f6b8fa1 1d599c7d-3bda-47a9-ad2f-94af5d9e810d +56b3278c-60e5-4d45-901a-77640b467872.mirnaseq.mirnas.quantification.txt cddbac56-2861-46a5-98a3-df32ab69d5da cfbe9c23-9bf8-4c48-88ee-12bb2b0c3659 +abb020b2-6dad-4ad5-9c00-ef43caba334c.mirbase21.isoforms.quantification.txt 20336269-5a5b-4ba7-8fe8-665a1f9af738 808b961c-2c70-43ed-9e81-ecb031e6c3b9 +37b09dc5-ffab-425e-98d1-c9c7f0c8d8ea.mirbase21.mirnas.quantification.txt 2038fd65-d8f1-4b16-af90-b1c8f9a379a7 5e188175-1acc-4492-af53-8eef15400b61 +c25c9178-db7e-43e4-91bf-d49b4ce69989.mirbase21.isoforms.quantification.txt bc4bc342-20bf-40c3-af26-2c6f942da93d 2475285b-0545-418e-b826-7aa65b6332b4 +4f51062a-f95c-42aa-a5ab-ea7d25be2c89.mirbase21.isoforms.quantification.txt 0dd95368-0713-45f0-84f4-c91af9cbba74 3b837060-55d3-4dc6-9ac9-0c604dd62ade +4f51062a-f95c-42aa-a5ab-ea7d25be2c89.mirbase21.mirnas.quantification.txt 0dd95368-0713-45f0-84f4-c91af9cbba74 b121b8f9-e1ad-48f5-93ef-688568350411 +9022a525-9cb2-4b84-843f-dc9cefa38015.mirbase21.isoforms.quantification.txt 0de910b1-edaf-47e4-a265-727ee12ac1c3 c14c52fc-b743-4f25-b33b-86605e643008 +ba286ba5-0b9d-4a2b-b9c8-4d6004eda96f.mirbase21.mirnas.quantification.txt 1aea3c25-d2bc-4ff5-bc27-32e939944e9d bcc6a1f0-505c-4a33-a858-663421a037fe +b82976f7-a437-407d-9b0d-111c4946c1fe.mirbase21.mirnas.quantification.txt 20c6be4d-7baf-4ea0-93e2-a5212f2e9b9c c81fa237-177a-461b-9bf3-7ddd7701db6c +a02e461a-95b8-4f26-941f-629eeca34993.mirnaseq.isoforms.quantification.txt 15c84da3-16e5-4909-aea9-cb5894b0f8af 833ad80e-2f57-49d1-9537-b755cc879046 +f9dda829-1102-4e7f-adfd-83c62255a88e.mirbase21.isoforms.quantification.txt 0c1a2e7d-e7e4-481e-a012-ef214c444497 76b30d8c-af99-4051-a924-33b344d5b7e3 +622e7e9c-2ee8-4fc0-95bb-55234e3ea98e.mirbase21.mirnas.quantification.txt 29d26e7e-f4ae-4476-9a3f-27d5ec2ccb8a e7d66859-59f0-4b6c-b760-611f6e894097 +99e6c880-906c-4969-a733-57d0d8861d0e.mirbase21.isoforms.quantification.txt 7c466a5f-a6b4-4d1a-a0f5-ddcd7ef90ff1 29697764-68cc-4b54-b57f-ae4edec89b2b +622e7e9c-2ee8-4fc0-95bb-55234e3ea98e.mirbase21.isoforms.quantification.txt 29d26e7e-f4ae-4476-9a3f-27d5ec2ccb8a 27503d04-be52-4194-a94e-9080eda76cb7 +aa862aa2-2f1d-4d11-aebd-4510387f1f7f.mirbase21.mirnas.quantification.txt 390eed6b-50af-48a9-9fd6-3a68a2bbb7f9 9130b38c-192e-402b-9c15-8b10a6bf1f4a +617cc00b-3cdb-4723-a441-6c3bd4976693.mirbase21.isoforms.quantification.txt 263e85e2-7b6f-453f-8fd0-e5ea1409fece d44d863b-987a-463c-a186-b0d584e73feb +4c832c79-59b4-4678-8cd2-5fa9ef2c4c77.mirbase21.isoforms.quantification.txt 184aac07-44c1-47f1-8adf-50acbcc1762c 170ec180-41dc-4fca-8a30-10ff9a729648 +617cc00b-3cdb-4723-a441-6c3bd4976693.mirbase21.mirnas.quantification.txt 263e85e2-7b6f-453f-8fd0-e5ea1409fece 193e8403-c57c-444c-9be1-2d6594bd6ff6 +8d64af27-a2c2-4cf2-96f1-6e8592f926cb.mirbase21.mirnas.quantification.txt 34f285ab-6c31-4865-a0a7-a57af3567df0 484cfef0-bf82-447a-b5b1-06f5d188be1f +071570c9-cca8-410c-ae31-ec0426622ebf.mirbase21.isoforms.quantification.txt 538acb2a-c4ca-4656-a91c-841a42dbf15f 0004e15f-5b5a-4184-893a-b078fbdcf942 +262a75ee-f2c4-420e-bd54-51aa896028f5.mirbase21.mirnas.quantification.txt 2ab32e11-80d6-4ed0-a42e-da612219bbdd 3dfe577b-538f-48eb-b70c-d60a3d357ae7 +e3d9c827-e270-4f6e-9a59-d57b38c10d33.mirbase21.mirnas.quantification.txt eeb9d147-608d-4692-8adf-2f601d23a8ff dab72bac-ecc7-44a7-bc1e-796af86f9cc1 +e3d9c827-e270-4f6e-9a59-d57b38c10d33.mirbase21.isoforms.quantification.txt eeb9d147-608d-4692-8adf-2f601d23a8ff a378f26e-c29a-42c3-8007-61e3330220c6 +b40c39f7-a56f-4381-ad3c-1d7935515a2e.mirnaseq.isoforms.quantification.txt 31b997dd-aaea-4003-a64d-11d3e19b0bbc af65032d-7afa-4977-abc1-abbd60b24348 +cf786f9c-b120-4c44-a85e-b50b481927d0.mirbase21.isoforms.quantification.txt 32960bc7-839a-42c5-9460-3917fa578ffc 519819c1-9108-4350-a833-658222cafd34 +483b3516-7fe7-4c12-91b2-172c8041f187.mirbase21.mirnas.quantification.txt 41178cbc-db73-4007-b5d8-febebf7f578d 38292b4f-939a-4ef8-8fc5-cf9aa6ed74fb +ea46c685-c7b0-4e28-85f1-f426f294defa.mirbase21.mirnas.quantification.txt 4160e048-f0b0-40f5-805b-e277a5893a3b 52fbbcf5-d530-4c80-9b17-fa9d3f8a0674 +0f48ac7c-d892-467e-bf2a-1d6122881e5e.mirbase21.mirnas.quantification.txt 565d06a1-3640-4274-8fb3-8cad7e578876 80c74c06-fede-4815-a9cb-3cd71374a6a3 +89493459-8839-41fa-9a6f-4e09ef790f85.mirbase21.isoforms.quantification.txt 446ce2a3-d328-443c-a419-3344baad0e16 1e608ab7-603c-44f9-a1af-4bb6c3543e3f +bfd9ac05-0670-43a0-8052-d535e969d0d2.mirbase21.isoforms.quantification.txt 44e840c9-ea54-4dba-9b2a-264ef1f2c304 4c4ec16c-34f9-4d30-9689-6f36fa9457d3 +bfd9ac05-0670-43a0-8052-d535e969d0d2.mirbase21.mirnas.quantification.txt 44e840c9-ea54-4dba-9b2a-264ef1f2c304 2115449b-1169-4e83-9a15-7f08d44df98d +4d9c130c-9fc7-4880-bcfb-d61f226f7715.mirbase21.mirnas.quantification.txt 5201ee13-2aed-4641-9169-4d5ee07a23da 0882974b-3a85-40b4-ae4f-145b1f6a44a5 +ff1303e5-5237-4829-b18b-355fb808c315.mirbase21.isoforms.quantification.txt 58d34254-4f5b-40a4-9e9f-7160062fb2a4 7cf798c9-4ccc-4830-87db-c4d33b7263fc +2c3a0fa9-8e72-4f4a-b531-5290fbb63207.mirnaseq.mirnas.quantification.txt 48f8afa8-7712-4428-b0d0-d8c3340504b6 c517b280-0b98-492e-876f-34157f013cf0 +3a3e7883-849d-4918-a954-7af33548c012.mirbase21.mirnas.quantification.txt 5503b3a1-7d03-41b2-9ec8-e478c5414d67 1a6962ec-c337-4c28-a47f-29377147de79 +8370472f-92b2-4e55-a091-7c7e1193972f.mirbase21.isoforms.quantification.txt 58f5a54e-de50-4cca-afa1-cc331d8b3479 65714ab7-cb2b-40fa-96e3-9426ee4f0c7e +146bf0ae-0c2a-4281-a1e5-ba31f0ba12bf.mirbase21.isoforms.quantification.txt 59b3fbfe-0b7c-41e5-b756-ee7e23730df5 f3cb8d55-8e56-4097-9acf-04423a825a89 +e5850774-2c46-45c4-a352-098d49e1f3d4.mirbase21.mirnas.quantification.txt 4c099644-047c-42a3-8187-bfcbfe6662e4 057a5e36-16c7-47bc-abee-ae63de57f0de +0c45657e-7944-4660-b202-bd075681d77a.mirbase21.mirnas.quantification.txt 3b81ec7c-0934-4649-9231-9919dd26dd15 d4673163-3c0c-46bc-95ec-667244c9831d +a00d8c58-4840-41a0-bb3b-a1d63f9dfeb1.mirbase21.mirnas.quantification.txt 5e18b17d-4626-4b6d-8ac6-e560cee0376c 09b9df51-286a-427d-a627-760d12bb467f +05166d9f-df78-44e8-a37c-cf65b2dc95d7.mirbase21.isoforms.quantification.txt 3bc8a74f-49bd-46b6-a3a4-68ca838e83c6 f42c161b-4071-4eca-b0ab-0353d72b933a +a60c51fa-f8e8-4fb5-8f14-c678dbc8de0d.mirbase21.mirnas.quantification.txt 5e90e1ed-cbfd-44ba-a6ff-63ff576b3c73 6724f378-fa2b-4adc-80d1-91b296443c19 +766881fe-01d6-4a1b-9312-1dde8f1e1f80.mirbase21.mirnas.quantification.txt 602e2934-223a-44db-8c33-06eb05d72f94 92290d7d-421c-41cb-94f6-a358c0c28907 +6e773590-88c4-4b6f-a4c4-e88cf0fd8185.mirbase21.mirnas.quantification.txt 66c92b9e-de3c-4d1a-bb69-46ffbc6caf33 143e5572-4a30-4104-ad37-ff495c03cff2 +a1ba46b7-fc30-47c9-bb39-efac4f11785a.mirbase21.mirnas.quantification.txt 3c037acf-f453-4513-a6dd-129163ddde2a 9987a25f-b493-47e2-9c89-6a0c4d723fd7 +6be3b7da-c8fe-43c8-ae31-41e52c70af9f.mirnaseq.mirnas.quantification.txt 3c8b5986-f9d5-4e7e-9dd4-3ad301451279 d3d403f1-8889-4248-bfe1-aa95b43fc46e +f07893c5-c0b6-48fb-ab88-01adb7b7234a.mirbase21.isoforms.quantification.txt 3c8b5986-f9d5-4e7e-9dd4-3ad301451279 a4ba804f-0d47-4e35-97b3-4239b077d731 +a6c488e2-db0c-4c9d-8e18-c82dcf62b840.mirbase21.mirnas.quantification.txt 6cf9f872-2e59-45cf-bb5e-ebd7fa1b3caf b3826382-c392-4c8c-a811-5684e1809ab6 +c254a61e-36be-48c2-a015-1c10496ae642.mirbase21.isoforms.quantification.txt 6746533a-8d0b-4ebc-87ec-49c8738121a8 70ff5abf-285e-4c88-a8b1-5d8543c25aca +a1490a33-ffdd-4f46-9d06-aec6039568b4.mirbase21.mirnas.quantification.txt 6d10d4ee-6331-4bba-93bc-a7b64cc0b22a 6b2c21a8-6489-406d-b91b-b46ed0cf2034 +f3975093-55c6-41c4-bfcc-3df2e5281853.mirbase21.isoforms.quantification.txt 81005bae-686a-4598-8994-49d90ebac56f 91687548-aef4-4c5b-a994-a206c5c2db79 +922c1d22-ea6d-4cfe-b2f7-98041de376ed.mirbase21.isoforms.quantification.txt 818dc159-aba4-46bc-a4ed-68ee0f8c4461 838fbb4e-4e5e-41b0-8d19-a8ba28c9c503 +922c1d22-ea6d-4cfe-b2f7-98041de376ed.mirbase21.mirnas.quantification.txt 818dc159-aba4-46bc-a4ed-68ee0f8c4461 28378948-6c11-4115-92f6-8e0289d39993 +aea53e86-ea23-4a00-9b68-eb8dafcf17ea.mirbase21.mirnas.quantification.txt 6ad8bc89-d8e9-48c2-bc25-c8e51f972b4d 0442f96a-bf17-405c-abb2-2ad1944bd962 +c3d63a9f-bbfa-41df-8536-f1b73497c688.mirbase21.isoforms.quantification.txt 82093ed9-a3c8-4e34-931f-4ec7ae745711 9e68a248-4c95-4fbe-a0e6-a14aa5d0d199 +55058adc-6f17-4400-8e9c-16be92342533.mirbase21.isoforms.quantification.txt 838693d5-1ae0-4d75-834b-e1b89b96b0ed 1b3823ea-12bc-4dd7-b941-a42d9a79078c +d6e6ac3e-d877-4425-9c40-c6f94c6ecb1d.mirbase21.isoforms.quantification.txt 8783e4b0-2b62-45d5-8cd9-f5a71cc0138e b3279b13-5a74-4794-9f84-fa9fe302c0ba +0201f538-e899-4a77-96aa-b563c3712eda.mirbase21.mirnas.quantification.txt 85a85a11-7200-4e96-97af-6ba26d680d59 e732a90f-5cd8-44f5-b46b-b613b5eb188c +27b3ce43-b028-4639-afdf-4ef2ef3592d2.mirbase21.mirnas.quantification.txt 867f9563-16c9-45a8-b519-6df61ba1b6b7 bbb7e561-97f2-46fb-8190-a3ac5d27ea42 +2a432355-6a89-4f03-934d-de0c6a8ed907.mirbase21.mirnas.quantification.txt 91a6f311-c758-4e40-9abb-cc0f6584b9c9 1bc3dd97-de24-4ffe-8deb-22857c39f65c +031ed697-812f-41dd-9a5b-ceae4b1ed991.mirnaseq.isoforms.quantification.txt a88b7e66-5f12-4023-a7e2-fcfbd1f25977 d19b35ed-15e3-4b20-ac17-22ba5c03d949 +681ecf0b-0418-444e-98f5-148f1a957b2b.mirbase21.isoforms.quantification.txt c9524775-6b50-4793-8858-24b6a6d3e4e6 12751a1c-3b67-4f53-844e-f894be9fcdf3 +bcade1c9-49ae-4874-b5a2-43a54c7ce4c5.mirnaseq.mirnas.quantification.txt c9524775-6b50-4793-8858-24b6a6d3e4e6 8290fb45-cda2-46fb-802b-11616175c0d5 +ca8b1b15-238e-4763-9f26-71f5e71d7ac0.mirnaseq.mirnas.quantification.txt 99f1ae02-86ec-4d93-8cd4-650bf6f02c10 687abb9b-fc28-45a4-b8ad-13ec6ac3de52 +dc2acc89-19d4-4795-aa36-983fe1029e86.mirbase21.mirnas.quantification.txt c9e28934-8379-4511-817c-d787f2c4ca3a 9c72c1d0-73b3-4cc5-915a-bc92393aaa40 +0b5a33a3-d5ab-4d17-8215-9052767e44c8.mirbase21.isoforms.quantification.txt 94efd4f9-69b0-4efa-8a0c-61106e898fdd 5a6bd2cc-5401-4cc5-9e59-abcf8204c5b2 +dc2acc89-19d4-4795-aa36-983fe1029e86.mirbase21.isoforms.quantification.txt c9e28934-8379-4511-817c-d787f2c4ca3a 4ca695f3-5e52-41b3-a4a4-2f1200e2ca7d +1f1e8c1b-1eb8-4efd-bf25-0c8c7e939c30.mirbase21.isoforms.quantification.txt 17181157-c9e2-4bd6-8653-f5dce56f9053 5ba50377-7b3b-488a-a939-e0b76113a8d2 +78db0e91-71ff-46bf-9ace-22ae8aba21fa.mirbase21.isoforms.quantification.txt 86b513ba-df09-485d-92d4-fb9e888f7350 74aba152-e71a-4175-8cbf-17890188fe40 +78c9c71a-7ed8-4e63-8b06-aa8c5f8a1f16.mirbase21.isoforms.quantification.txt 0484a929-7a7f-4926-8d25-470ddab082ec dfcda3da-8004-439b-8bc4-ec6b94a63378 +ef2cb396-9fe1-41ef-a637-86c1d0cf669b.mirbase21.isoforms.quantification.txt 13f5814c-1f99-4ffa-84a4-3bbd8979faae c4458b18-ae36-4d0b-bf82-04c8f40b7afc +495bd808-d3f9-4490-9e29-8afb0211f9a1.mirbase21.mirnas.quantification.txt 56a30462-2819-4c18-95be-8e73880a4921 51d8da81-e323-4f90-8b46-8da93d289ee4 +4c7812eb-0939-4521-8dbf-bfe2cb1c73d9.mirbase21.mirnas.quantification.txt cbc7f427-5f7b-4267-ad56-055d8880a4cc 19e322d3-be7c-45e2-9548-d567d14b709e +4c7812eb-0939-4521-8dbf-bfe2cb1c73d9.mirbase21.isoforms.quantification.txt cbc7f427-5f7b-4267-ad56-055d8880a4cc f3f19a33-9ff9-4225-97ef-7873dd48e37e +e61d4ce3-c0f1-4d4d-9205-f09fed9bf43f.mirbase21.mirnas.quantification.txt d7b3156d-672a-4a55-868d-9ca6a09fcb0f ebf7fe08-225f-48c3-8fa2-b76579b95289 +139df8ff-6e24-465c-970b-20f7ff444afb.mirbase21.mirnas.quantification.txt d0673efd-3315-4dd5-8ab6-912bfa07dceb bd69bd70-9b09-4d08-a738-5a58606be02f +c0d5ebbc-312d-4b7b-98ef-6938080ff4e5.mirnaseq.isoforms.quantification.txt 25a0a9e6-4f5b-45d8-8f34-abfd31d5ff1b a5763cc9-3217-41d7-be0b-9e9285eecd22 +b81a1160-be17-47ef-b8fb-0e022340edb6.mirbase21.isoforms.quantification.txt 25a0a9e6-4f5b-45d8-8f34-abfd31d5ff1b 4fc5f12d-f241-4bbd-aa88-62d75fd18acc +313bf802-3721-4ec1-87fd-3bab7c541f32.mirbase21.mirnas.quantification.txt b8c3d99c-429b-42a3-b486-6fbcb90cc2e0 5364ad12-30c5-4a84-94e6-772d6d6a5344 +27b7aae2-07ed-4a4f-a6fa-c27a41355b90.mirbase21.isoforms.quantification.txt 460616ec-f66f-483b-88c1-757edd86261d 6f5416da-4162-4190-8baf-35f9779ea007 +16fc7599-1ca5-4179-ac55-811a89c3ec32.mirbase21.isoforms.quantification.txt 08c64000-d320-4e4d-974b-da503d48890c 7947ae39-264a-42f1-b22a-a60e3760e568 +c47dcf28-933f-408f-ad07-0c760c6314bd.mirbase21.mirnas.quantification.txt c3e443b9-5dc5-4793-91e3-534f21485268 9e14d7af-3396-4ede-b51e-c961a95f305e +559313a3-7242-4619-9a97-1f24e26dae26.mirbase21.mirnas.quantification.txt b46263ab-c3ca-4fda-a895-74c7e6e6fe22 9f323175-4196-4406-a12a-3883dee09de1 +c47dcf28-933f-408f-ad07-0c760c6314bd.mirbase21.isoforms.quantification.txt c3e443b9-5dc5-4793-91e3-534f21485268 5b11fe93-9545-4a52-afc9-21eb78ad0821 +20e569b2-2679-4e3a-b81d-3c210253c3e1.mirbase21.isoforms.quantification.txt 8e1b8811-1eb2-4337-852c-c19eaa0ee418 154e54df-fe2d-4087-a435-e469a24a5b3c +e13b4565-bb53-404e-a71b-0b37700e9727.mirbase21.isoforms.quantification.txt c0c3caab-9277-4a31-a96c-c607e38d5ccc 06b54636-5027-4e65-9d92-5af434943689 +0b5a0f87-7a1a-4e7f-9b04-347f5270fe4f.mirbase21.mirnas.quantification.txt f34aa3b6-e966-49c6-bc55-130545772c53 98978d5c-9f2b-4f89-899f-ce8a08290ff9 +0b5a0f87-7a1a-4e7f-9b04-347f5270fe4f.mirbase21.isoforms.quantification.txt f34aa3b6-e966-49c6-bc55-130545772c53 c7745005-e749-4888-a916-56e42c357cb9 +9f76cbf7-4885-49b9-950f-94b693afdb2b.mirbase21.mirnas.quantification.txt 93095c36-2263-438f-a619-a4a4d6ae13c7 d72f9eb2-e0d6-4834-b890-4f8caf17a938 +e13810e3-d924-435f-92f5-972ede0ba5c8.mirbase21.mirnas.quantification.txt ea605be2-6578-4e01-8ec3-bbd84c0b7f1d ca88293f-037a-4726-8f3b-c859c3e6ab95 +219985f8-56c1-4e98-bdaf-ed154f838787.mirbase21.isoforms.quantification.txt 1858b58f-fdf4-413c-9c29-96ae85b88a74 c29dcd2f-9341-49ac-828b-4158810879b1 +219985f8-56c1-4e98-bdaf-ed154f838787.mirbase21.mirnas.quantification.txt 1858b58f-fdf4-413c-9c29-96ae85b88a74 ddc960ba-6afe-4702-acd1-a97752a3ec0d +789ae3f2-df58-48b1-b017-4f47f761ad57.mirbase21.mirnas.quantification.txt 242da7d0-8c6a-4395-9a0d-aa36e7c25ce6 644eaddc-cc18-4d10-9375-02f9c1627c7c +60b196ad-8929-404d-b2a2-14ef281cdf6b.mirbase21.mirnas.quantification.txt 21f6bf91-dfc6-4a59-8b76-88a0f95c7b47 ec6a0945-1e62-4a61-bd6a-0dbb82058a7d +d78a635f-6a46-4c82-a6cb-20f133148214.mirbase21.mirnas.quantification.txt b25570ed-baca-4e3f-87c6-2ef18119ba49 13ec6a53-c180-4f4d-8fcd-caf84f19ab54 +6ec97e54-755d-44d1-b5cc-c60cb736df3c.mirbase21.isoforms.quantification.txt 29949b65-2913-4c86-bbd7-b85c5df6f15e 491ea17b-49a5-41a1-a081-b6c8b1589e3c +cf14f0f0-9e50-4a58-bd91-14f5c544e1be.mirbase21.mirnas.quantification.txt fd4740db-76a8-4362-be71-7b609479bb67 7c696430-8d7d-468e-8cc0-5ed72d96e469 +dc302f21-11d9-458d-a09a-2e6f0699a04f.mirbase21.mirnas.quantification.txt 0724f800-e873-45d0-bc56-809d0ec4f6e9 d06ba3b8-0e99-4536-bbdb-3e6415d9adbc +4522e86d-a860-4ab8-a8e8-8001d3287255.mirbase21.isoforms.quantification.txt 708eec28-2348-4e15-b98c-8c6f9d057b1e ae6955af-6dc0-4ea1-98fe-59d96f9ec253 +ce5e1133-e1d1-4724-ad06-b034eaec4694.mirbase21.isoforms.quantification.txt b120b701-c194-43d7-a491-3206fac38ec1 d4786b59-4e9d-4764-8512-a189ccf625c4 +24326c13-d83a-4498-adb7-a9f340d2e5f8.mirbase21.isoforms.quantification.txt 5c6f3cd4-19c5-418d-b1be-d3fbf63e99db 286c752a-368d-4243-94cc-a7429e09cd78 +e28327dd-1ac7-45df-b812-841bdc8d0216.mirbase21.mirnas.quantification.txt 635f5335-b008-428e-b005-615776a6643f 383da782-e97a-4346-82b0-8d379c83b0e0 +24326c13-d83a-4498-adb7-a9f340d2e5f8.mirbase21.mirnas.quantification.txt 5c6f3cd4-19c5-418d-b1be-d3fbf63e99db c788469d-5fca-46af-858f-ef26624149ca +e9d2b04c-c3eb-4d71-9a33-420badc763ee.mirbase21.mirnas.quantification.txt 94bd4c68-4bfc-4db3-9365-97c867747133 6d75c12f-4a60-45eb-92f0-44efb1d05980 +dbc68340-b121-4f8b-86f6-5baee0ae60c2.mirbase21.mirnas.quantification.txt c73244fd-d486-439f-a94f-fb0bd4e9ac8f e36694c5-431c-4405-acbc-cc56b32ea4b5 +13f82612-0824-461f-b5b4-03322e7984e6.mirbase21.isoforms.quantification.txt 47681e4b-01e8-4779-b966-ce57aff4b712 cf5ac1ad-cdf6-430d-8440-c3b0a6fad177 +7ea6581d-bb19-49e0-a430-7796d0b651c6.mirbase21.mirnas.quantification.txt 78777a80-cc6c-46c9-a14a-837ac7943719 bdc72569-8da5-45fd-9633-17c38481a370 +13f82612-0824-461f-b5b4-03322e7984e6.mirbase21.mirnas.quantification.txt 47681e4b-01e8-4779-b966-ce57aff4b712 18e6779a-fa91-475a-b412-7945af45d87b +28bfb2b0-4e14-44e5-ad3a-e1d7ca3e4efd.mirbase21.isoforms.quantification.txt 33dc48d8-2e01-482b-944c-ac10da727ec9 595b4228-c831-429e-8406-da881e32a45e +5c324295-219b-491d-9d05-2030b839eb82.mirnaseq.mirnas.quantification.txt 4b930a10-4b12-4428-84f9-3255b4a3bc4f 39eab952-2e4b-4a71-8394-6f7e15d71680 +39598a1c-cfa9-4660-b39b-0b17fc87443e.mirbase21.isoforms.quantification.txt 4b930a10-4b12-4428-84f9-3255b4a3bc4f 40f6c5a3-8807-428e-b0ab-70673377803f +67b376d2-5852-4bab-8ec9-afc8b803b186.mirbase21.mirnas.quantification.txt 314e446d-3a57-4c91-ac2e-4fc211456ee6 8c753196-0344-48cd-944e-97002e56a8c0 +7e2036aa-30da-41ef-87c4-e0dae7341aa7.mirbase21.isoforms.quantification.txt 5ed14506-f69a-4da8-9965-72d3270b9f72 4c23dd73-bc49-4fda-bc0f-9208e6060ac1 +c7448ff7-9f40-4a67-9bd1-3d990508124e.mirbase21.mirnas.quantification.txt f3618472-32dc-4c90-a407-90050f68be85 2cba33ba-2a15-45fd-9f1e-799c79b22287 +7e2036aa-30da-41ef-87c4-e0dae7341aa7.mirbase21.mirnas.quantification.txt 5ed14506-f69a-4da8-9965-72d3270b9f72 ab759b77-b63b-48d9-9703-658b9502557d +1ba68c7a-b648-4830-a5df-07b1f2de563b.mirbase21.isoforms.quantification.txt 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 bdd5a846-9e0a-4c2a-9738-3f96025cfa3e +1ba68c7a-b648-4830-a5df-07b1f2de563b.mirbase21.mirnas.quantification.txt 7e01f23a-0b0e-46a2-9f30-c3a9d2c779d2 4e051a9b-9e96-42e9-99bf-e4692e25df19 +b495eb0f-a0b2-4017-8989-86f9bc116742.mirbase21.mirnas.quantification.txt 4a2ca7b8-729d-4fab-a6f3-a5d1e5d1f4f3 134a20fa-1b48-4c14-a962-dbc1521e6788 +d1a64a3b-7d3b-4636-8d2a-baf56068b1dd.mirbase21.mirnas.quantification.txt 88d61634-913c-435a-8d25-e019c8dab7da 78f4f9f4-2391-4c4a-a06c-bf6f3df1bd85 +f7df30ab-bdd8-4ddd-becd-4843a779586f.mirbase21.isoforms.quantification.txt 58427bce-6b81-4083-aeda-25f59e292bbc e9005d0f-bf41-4abd-887b-7821246318fa +ca58ca71-b14f-4a77-9f63-2b02ff9a99d8.mirnaseq.mirnas.quantification.txt 8a6d2ce3-cc57-451b-9b07-8263782aa23f 88ad986f-d9cd-437e-b5be-642a563191a8 +8fc1da04-3059-4d14-9e79-0b4f5046ea78.mirbase21.isoforms.quantification.txt 8a6d2ce3-cc57-451b-9b07-8263782aa23f 8c8d42af-67aa-41be-bce1-868d5db907ac +04276a5a-23dd-467f-b8c8-60ce5e892f0c.mirbase21.isoforms.quantification.txt 2ee36d9d-128b-4761-aa1a-a637da106f3d a38ba416-8749-4e05-b335-99397bbc4a53 +bb5d455e-c711-4ef2-8246-eade36c730e9.mirbase21.isoforms.quantification.txt 22178c3c-6b04-46d8-8041-dc83fa195029 c9c6abf6-f3d6-467d-8992-fa6c24a0392b +203185b2-ccff-49c5-a00f-d37f6737a4bb.mirbase21.mirnas.quantification.txt c9e58844-9d61-44a2-aee6-1760bc19711b d8cf9f92-de90-45a8-b1a4-5303edde0963 +203185b2-ccff-49c5-a00f-d37f6737a4bb.mirbase21.isoforms.quantification.txt c9e58844-9d61-44a2-aee6-1760bc19711b ad9b1cb9-c458-4772-998d-8e325a1174cc +005f1d2c-c079-4ce0-8d91-ddc8799a3b50.mirnaseq.isoforms.quantification.txt 5e90e1ed-cbfd-44ba-a6ff-63ff576b3c73 b23efaab-c0a4-4264-9077-2d0f45c68481 +05327ee7-fee0-44f7-94f4-1f350c783410.mirbase21.mirnas.quantification.txt 60014a6e-6a13-4f92-bbfd-eeeee9632f98 03cacdbc-0a68-4ea4-9bad-f3bae67d2047 +0cb0d80c-c3cb-4981-b07e-b8babe1ec06e.mirbase21.mirnas.quantification.txt 5d7027f5-60a0-47ab-a79d-667c9acc0e54 8df16847-ab8d-4231-b88f-e61bb75e050f +bc6d7b65-d651-4f9e-a3f0-4f098b01e7c4.mirnaseq.mirnas.quantification.txt 3c037acf-f453-4513-a6dd-129163ddde2a 660b4e8f-73d6-4533-8ec3-36d3de86ebd8 +bc6d7b65-d651-4f9e-a3f0-4f098b01e7c4.mirnaseq.isoforms.quantification.txt 3c037acf-f453-4513-a6dd-129163ddde2a 7e5f91e4-66ab-497b-b768-efdfcf184004 +d51c919f-6b47-4881-8b11-05b39a2d2111.mirnaseq.mirnas.quantification.txt 81005bae-686a-4598-8994-49d90ebac56f db90a623-fab3-4e4b-9387-d3f2315a01eb +c714e40e-9084-495a-ab7d-a262c878bcfd.mirbase21.mirnas.quantification.txt 6209e80d-a115-4f8e-bf0d-18461401a1c6 82723d57-95d6-42f7-8253-0cd75b6c3c0d +6432f7d5-aae4-46ac-bc8a-580d9047579c.mirbase21.mirnas.quantification.txt 7a08efd0-f984-430e-a8eb-1881047214b6 f464b430-d095-4c05-82ce-437b5ceccab5 +e45dfc8a-c255-4b54-8f25-bab9306ea813.mirbase21.mirnas.quantification.txt 6a1be87b-c4e0-4fd4-b050-50a245b22038 998c84c9-d2f3-456a-aa74-a0dbbb7c9dba +86760094-294f-4fbb-b768-4381f658bead.mirbase21.isoforms.quantification.txt 62379be5-13f0-474b-94d3-6f944ec4ee96 a5ddff83-d3f6-4931-8211-c5964f8fc726 +286f0db7-60b7-42bd-9161-585384c38fe6.mirnaseq.isoforms.quantification.txt 6f592f17-e00b-4d04-a45b-d9d4cf4c3075 84c6c90a-f2c6-457d-94ed-2b67ec8e3595 +a65ab1cb-c2c6-44c2-a265-4bb9a8a6b4e5.mirbase21.mirnas.quantification.txt 6485b68f-caa7-45cd-9bc5-78c2add8191d 4a33ffe1-1e0e-42b2-a5ac-6fa99a00e91b +27b3ce43-b028-4639-afdf-4ef2ef3592d2.mirbase21.isoforms.quantification.txt 867f9563-16c9-45a8-b519-6df61ba1b6b7 f12d3ca0-340f-48bb-9499-79ebab516a1c +3b523d31-7ec4-43d8-8a0c-7438293431d2.mirbase21.mirnas.quantification.txt 7ca97692-0bf5-4bbd-81ce-10a051d04bd5 b8d3e38d-67fa-4d5b-9e7b-202ac5ad547b +c618942d-7a4a-4648-8e97-d7fb6b43f83a.mirnaseq.mirnas.quantification.txt 8727855e-120a-4216-a803-8cc6cd1159be b7a21d1a-3b75-4c14-a31e-5a7e38c0c369 +f1c88ee9-a82c-4feb-b5cf-5d2eb23e7d03.mirbase21.isoforms.quantification.txt a782352e-c4bb-4c3e-ba82-456a47c3689a edd0949f-7f47-478f-bae1-9a8b52f8ae55 +f796e328-7a09-4ee3-b7e9-76db92e849bf.mirbase21.mirnas.quantification.txt 94030805-8beb-441a-af73-11a80768edb5 63111a58-b63a-410a-86f6-a34c1813d509 +f796e328-7a09-4ee3-b7e9-76db92e849bf.mirbase21.isoforms.quantification.txt 94030805-8beb-441a-af73-11a80768edb5 ed3610a4-08cc-4d0d-bfb3-604b759051aa +90b48c1e-e0af-474f-bd6f-aff3f69504fc.mirbase21.isoforms.quantification.txt 914f84bf-578b-4f4d-93cb-378228ea58f6 af71412b-71d4-43d7-820e-14af5f79b9a2 +7dc2c098-cb0c-48ef-8dcc-80007e7e3855.mirbase21.isoforms.quantification.txt 9446e349-71e6-455a-aa8f-53ec96597146 d95ba6b9-adde-4dae-bfe5-dd58fcd4df16 +5b19c09a-3eee-4f0c-8cc9-355dea7cb4d1.mirbase21.isoforms.quantification.txt a9abe7a7-4126-414b-87d2-a6d25abcf1fa 4e412aaf-5de4-4fd5-bd1d-891129efbb42 +1eb184aa-cef0-4605-bbfe-8960a186f66e.mirbase21.isoforms.quantification.txt bc873b2a-35b7-4365-a2cc-e6a83063556e 4487ff79-37ce-4c3d-868c-6af84314ad65 +5e283d2e-75c9-4757-b226-1fff7325a853.mirbase21.isoforms.quantification.txt b3511675-fd68-4745-8020-e290ca0fd115 5d2a0d79-b0b4-447d-aeb0-8087781508ef +72a38b5e-82ed-40db-a6b8-3c5d9500783a.mirbase21.mirnas.quantification.txt ae914f23-87b9-4169-a7f7-a3483078c902 36ef794f-d4e9-4fa1-be9a-4992b3799f2d +9f803e43-f74e-4fb8-b8d3-f590d2098a1c.mirbase21.mirnas.quantification.txt b4b49027-7815-4813-9769-a3fe3a26a37a e77fb21a-3041-42f3-8d13-ec15262fea60 +72a38b5e-82ed-40db-a6b8-3c5d9500783a.mirbase21.isoforms.quantification.txt ae914f23-87b9-4169-a7f7-a3483078c902 85bed994-df2a-487e-a8e4-295642368075 +594f25dc-c106-4f7c-bb4c-ec5e177c219b.mirnaseq.mirnas.quantification.txt c11cae7e-91cd-4470-a9d8-188a4f6b8fa1 7b1bd134-4587-4b23-9513-ff49400b3b92 +13eae60e-6622-4a9f-a67f-3b6558a61b64.mirbase21.mirnas.quantification.txt b520aae5-65a6-4b27-bc2a-10b02c7b1aeb d1573eaf-1557-4cfd-bd29-d02395e12d12 +13eae60e-6622-4a9f-a67f-3b6558a61b64.mirbase21.isoforms.quantification.txt b520aae5-65a6-4b27-bc2a-10b02c7b1aeb 4c47c81a-f5fe-48b7-80d1-9fdc386d199f +7d39fb27-9748-46a4-b7dc-34921f90339c.mirbase21.mirnas.quantification.txt c5355491-e1e8-46a4-a05e-bafcaf2e7459 b10221df-896b-449f-8526-a606763c95f0 +6a5618e4-8576-4fd4-b8df-40387045f0de.mirbase21.isoforms.quantification.txt cf1e86ec-4bcb-403c-831b-d67bddef14eb eb7fc76f-f368-4f23-a0ff-c4e6685a5849 +8154f10d-7460-49cd-b309-829ef0d1ac24.mirbase21.isoforms.quantification.txt b7715ff6-57a6-4513-9447-aa8bc93f16d4 f08123cf-5773-448d-b773-c74c18c0df50 +69f6ed98-6cab-4404-b8ee-6f4c2fc72f64.mirbase21.isoforms.quantification.txt d38ca631-ed5c-4182-a647-625060726fa7 368f5107-b487-46a3-8afc-b7e3f2fafe3b +267afda3-a583-405d-83f4-77ab73658349.mirbase21.mirnas.quantification.txt c70228cc-79c0-4c00-8926-6671c1474701 0c966e5a-edde-4a34-9170-c36cf32503d7 +267afda3-a583-405d-83f4-77ab73658349.mirbase21.isoforms.quantification.txt c70228cc-79c0-4c00-8926-6671c1474701 0bc92ff6-ee8d-487d-a48b-8f87023e41b0 +bda2d3fd-a28f-4b5d-aff9-267d757b3872.mirnaseq.mirnas.quantification.txt b783f33b-734a-4801-bf39-b559a2035c6f 3c3a5e8d-c69c-417e-8a1b-5328c830f79e +191aa531-3494-42fa-8996-af204937fa87.mirbase21.mirnas.quantification.txt b783f33b-734a-4801-bf39-b559a2035c6f cca12e1f-e86a-4cdd-801b-47278cd34138 +3d04b083-eb9e-4d9d-85be-f1779bdce885.mirbase21.mirnas.quantification.txt d77ef9cf-f8e6-4ee9-8d4f-1106885f6b06 6aceb340-257c-4c3a-a62d-5a1e5d20b2c0 +5eb1c64c-6766-44e2-9842-632b8c3c1831.mirbase21.isoforms.quantification.txt c75c915f-ef4b-4c19-8ace-995e6c6015fd 5f5688d4-d6be-466f-b200-24dd603c4d5a +5eb1c64c-6766-44e2-9842-632b8c3c1831.mirbase21.mirnas.quantification.txt c75c915f-ef4b-4c19-8ace-995e6c6015fd 7ea5358d-cef3-4043-8bc9-7350e279d060 +8e007476-d52c-4896-93ca-d55dcbb14bfe.mirnaseq.isoforms.quantification.txt c75c915f-ef4b-4c19-8ace-995e6c6015fd 945466d1-9d25-478c-b645-5a33647459cc +bcade1c9-49ae-4874-b5a2-43a54c7ce4c5.mirnaseq.isoforms.quantification.txt c9524775-6b50-4793-8858-24b6a6d3e4e6 c98bc573-975e-4784-bf80-3482bb1708d3 +3d04b083-eb9e-4d9d-85be-f1779bdce885.mirbase21.isoforms.quantification.txt d77ef9cf-f8e6-4ee9-8d4f-1106885f6b06 dddd5360-1e06-4d6b-b1a6-f7c454d4cc4d +3b89783c-8650-45f3-ac39-96b8cb4c911e.mirbase21.mirnas.quantification.txt d7925dfc-18ce-46ab-a47b-9d06eacc96d0 586bcf84-4b83-458f-8d9d-1cdc39b4af83 +ca74d2ee-20e5-4a73-ad1b-033c7be2cd89.mirbase21.mirnas.quantification.txt e35b2813-427e-4e83-95f6-4f0281f42a59 49375bab-4df4-409c-9516-9f4f935f457f +11e937c8-a130-469d-8dfd-35f304318fb5.mirbase21.isoforms.quantification.txt fbb45305-de8d-4baf-8bd0-047b29c2e9d9 4f5e85e2-4041-484f-8404-590b71bf6c82 +9a945c94-acc7-48ac-83a3-58263e035a22.mirnaseq.mirnas.quantification.txt e3712e5a-4575-440f-89d1-8db9498baa88 3f543827-8e29-4bf6-8403-a4355a542c05 +e9a0f14a-1f8e-4466-8c22-3b88ab6b03a6.mirbase21.isoforms.quantification.txt e43d3769-e25f-4fb7-9080-ea26defaf094 afe28f50-0a11-4ddb-b3a9-5b5bf888c5e9 +e9a0f14a-1f8e-4466-8c22-3b88ab6b03a6.mirbase21.mirnas.quantification.txt e43d3769-e25f-4fb7-9080-ea26defaf094 03d2af4b-0032-43b0-a49b-c9d4fe316e42 +56d7e454-061d-4af1-b72e-154ce9d395ea.mirbase21.mirnas.quantification.txt f3af727e-b592-4828-94f5-22008666cf8c 51d53856-444f-40f5-8313-75153ab11d53 +ca44698c-e99e-4789-a606-28b44af5d8e8.mirbase21.mirnas.quantification.txt fdf83fdf-dfbb-4306-9a1b-b4487d18b402 14d25bf8-ab6b-43d3-ae13-e3092eb9fe68 +f0f36077-a302-4304-8e6e-017164e3e9a4.mirbase21.isoforms.quantification.txt da274941-3edd-420b-9262-bbd959923c67 60ef973e-76af-46a6-80c5-f2ce1f85539b +f0f36077-a302-4304-8e6e-017164e3e9a4.mirbase21.mirnas.quantification.txt da274941-3edd-420b-9262-bbd959923c67 6f44c3ca-ee47-41fc-bd26-351acbb2f35d +e79c63db-7a28-4079-b4c3-c3b511c92934.mirbase21.isoforms.quantification.txt dc5a6ce7-01e5-408d-812e-e3e0ddc1cde5 19fc5f2b-4b1c-439a-8b1e-2da86d479413 +e79c63db-7a28-4079-b4c3-c3b511c92934.mirbase21.mirnas.quantification.txt dc5a6ce7-01e5-408d-812e-e3e0ddc1cde5 550f465e-bcda-4c3e-aa8f-c05063d5307d +a5fc4b34-2f6a-47a5-8962-18c8023623c6.mirbase21.mirnas.quantification.txt e9b5336e-d724-4e7d-8c81-1147abd0a80d 5fa22735-fdbd-4dc4-bb32-beeff84f8496 +4ef3cd73-d552-4ad4-a040-2642163ef710.mirbase21.mirnas.quantification.txt ead71c90-cc5e-42ce-8754-c3cf15a41134 76ae6192-e0ea-49d0-856c-c62a89e10d54 +42fc169b-a145-44c5-8beb-b3f3268e7f75.mirbase21.mirnas.quantification.txt df53c3c0-3605-4d2b-bdc7-96d9beab27ea 818f3729-4ffa-4471-a537-f37c21e317ed +4ef3cd73-d552-4ad4-a040-2642163ef710.mirbase21.isoforms.quantification.txt ead71c90-cc5e-42ce-8754-c3cf15a41134 93569cc8-a2a5-4434-976a-d2858cc8a871 +e9a951fc-2027-4b3d-8e8c-078868678b18.mirbase21.isoforms.quantification.txt e20ea417-7296-4da8-9fdb-71cd1f45153a 7d59a5e2-ade3-4039-aab7-28fb4d4e481e +ebe282a9-c211-4f2e-8769-07cab70c3906.mirbase21.isoforms.quantification.txt e294b940-2828-499c-be24-47ef6c2e9035 c9e66f79-e45b-4831-a5bf-707e3c7f3036 +4f659b4e-e335-4fdd-acdd-f4d363440ef6.mirbase21.isoforms.quantification.txt f8a5547f-f1bc-4c01-8b68-25b5ee0caeab 8382eea2-d18b-415c-a224-fed6e6ffbbab +0bc6e13f-37e2-4ca6-8db3-a57bbfccaa18.mirbase21.mirnas.quantification.txt eec69ea9-ceb8-456a-aff4-41fb8a261e36 2127eee4-8fb3-41f3-a6b7-aa85591aab28 +0bc6e13f-37e2-4ca6-8db3-a57bbfccaa18.mirbase21.isoforms.quantification.txt eec69ea9-ceb8-456a-aff4-41fb8a261e36 1fb59801-516b-4f6f-8897-9a61383d8f89 +b3de131e-cfcc-4a2e-a4b4-6c759d3b1341.mirbase21.mirnas.quantification.txt f8e9d538-7291-4fe7-b3f2-d01676a027f9 d4efbd0c-2c6d-4649-b2c1-9061d0799be5 +b3de131e-cfcc-4a2e-a4b4-6c759d3b1341.mirbase21.isoforms.quantification.txt f8e9d538-7291-4fe7-b3f2-d01676a027f9 24ef1178-31a6-4573-a946-209800c91935 +41bd2df3-9714-4471-a39b-5250a15c293e.mirnaseq.isoforms.quantification.txt 9c439d71-50e3-48d2-82a6-4ff0b4ce284a fff29d00-c8aa-4233-ba50-8afeb5aa306b +0a4770f8-2ba0-4c6c-91ea-0e19058612ca.mirnaseq.mirnas.quantification.txt a8856f5a-594e-4ce6-86f2-4ddc5ec46df5 3736871a-cea8-4c66-b80c-8c56d202fccd +0a4770f8-2ba0-4c6c-91ea-0e19058612ca.mirnaseq.isoforms.quantification.txt a8856f5a-594e-4ce6-86f2-4ddc5ec46df5 3d45c639-675f-4e9f-b391-e1bdf06d4db3 +fc62cd94-42d1-40ff-94b9-4b838122d26e.mirnaseq.mirnas.quantification.txt ca7bc7fd-6ce1-4d63-b935-804ff4d3abc2 e9e99950-e8eb-485c-b896-2cb42bde452c +d17b7165-5159-4c16-9d91-cbf705aa2f2a.mirnaseq.isoforms.quantification.txt d341953c-f4a1-4c6b-ac1a-50f1b956c696 a25a563c-14bd-479e-9c59-81b7d275e8c3 +f3f2634f-f137-460c-aab5-bca4162082d0.mirnaseq.isoforms.quantification.txt d341953c-f4a1-4c6b-ac1a-50f1b956c696 e1e5d8af-9a43-49b6-bb58-de9dd3cbea93 +99a72ef1-21f0-4623-8d6b-f3d0ffc7e6da.mirnaseq.mirnas.quantification.txt e4b062d4-30a1-4661-b5ec-28c532cbad0d ad6562ce-eeb9-4195-b24d-e325a644bd80 +d60780c8-4ea9-4f1f-839d-20051dd9d315.mirnaseq.isoforms.quantification.txt 2df05263-7905-463f-9a78-3ece600174e5 03c2d687-d2f8-4664-850a-631a7ef5a76d +99110560-03b9-4865-b3b4-ac2897f6655c.mirnaseq.isoforms.quantification.txt aa78feca-4396-4e6b-8621-84fafedf29c9 ecd4c2a7-ce91-4b22-b01c-ba64f896f151 +d60780c8-4ea9-4f1f-839d-20051dd9d315.mirnaseq.mirnas.quantification.txt 2df05263-7905-463f-9a78-3ece600174e5 c685031c-4344-4ff1-96d4-9d22101d2c24 +68dcd330-1b92-455b-98dd-277752982324.mirnaseq.isoforms.quantification.txt 30eb4b39-20c9-4d1c-8d87-ec84971943fc 64bad3e0-92d2-4c6b-bda0-edba27c66516 +41bd2df3-9714-4471-a39b-5250a15c293e.mirnaseq.mirnas.quantification.txt 9c439d71-50e3-48d2-82a6-4ff0b4ce284a 99527841-1f59-4ab9-8022-a937af3b3eda +d5d04a49-4d50-4890-91ef-32ec23f24b8b.mirnaseq.isoforms.quantification.txt 9c439d71-50e3-48d2-82a6-4ff0b4ce284a 8aef6504-dee4-4549-9fe8-3adb4716e421 +42b6beaf-9d3d-412d-8bb2-49ce227cd1fe.mirnaseq.isoforms.quantification.txt a7364c7c-cc66-468d-8a6e-11cc58adf3d6 0f1f422b-8008-42d5-b068-d941e510fdf2 +42b6beaf-9d3d-412d-8bb2-49ce227cd1fe.mirnaseq.mirnas.quantification.txt a7364c7c-cc66-468d-8a6e-11cc58adf3d6 77aa8fe0-a4ea-4004-8b0d-5abf4c9d3c4b +b0795825-67f0-434f-9c43-1e16c5193370.mirnaseq.mirnas.quantification.txt a7364c7c-cc66-468d-8a6e-11cc58adf3d6 652086d7-4ef9-4785-abba-2d83dcbcae28 +f16225c7-5770-43ce-a136-b485c86598cc.mirnaseq.mirnas.quantification.txt a7364c7c-cc66-468d-8a6e-11cc58adf3d6 944922c0-7c97-4fd3-92eb-842d2bf6602d +f3f2634f-f137-460c-aab5-bca4162082d0.mirnaseq.mirnas.quantification.txt d341953c-f4a1-4c6b-ac1a-50f1b956c696 30a2f034-6f30-4bde-8ee6-09a84fc9c154 +99a72ef1-21f0-4623-8d6b-f3d0ffc7e6da.mirnaseq.isoforms.quantification.txt e4b062d4-30a1-4661-b5ec-28c532cbad0d e5d00f31-018a-4d88-9069-6a3bf09fe679 +62d717d1-2ecb-4f2b-a904-8cb837c87cbc.mirnaseq.isoforms.quantification.txt 5538445e-03c2-4466-a09a-83d5a527b26e a608b7ce-dc3c-400a-9100-4d4463585f9f +62d717d1-2ecb-4f2b-a904-8cb837c87cbc.mirnaseq.mirnas.quantification.txt 5538445e-03c2-4466-a09a-83d5a527b26e 3a8aea9f-e23a-43fa-8b16-970317dc85d5 +99110560-03b9-4865-b3b4-ac2897f6655c.mirnaseq.mirnas.quantification.txt aa78feca-4396-4e6b-8621-84fafedf29c9 e46a93e0-0f27-4e7e-83c3-55986533ef5f +100b356f-b4e6-4f47-8894-872a8d2294d1.mirnaseq.isoforms.quantification.txt aa78feca-4396-4e6b-8621-84fafedf29c9 c5458e6e-0fc5-445f-80e7-aa080ce72234 +100b356f-b4e6-4f47-8894-872a8d2294d1.mirnaseq.mirnas.quantification.txt aa78feca-4396-4e6b-8621-84fafedf29c9 63bdbfbf-f0cb-4c35-a1cb-e2c875e178fb +68dcd330-1b92-455b-98dd-277752982324.mirnaseq.mirnas.quantification.txt 30eb4b39-20c9-4d1c-8d87-ec84971943fc 6b674aa3-eb3a-4667-bd43-30c065c41c72 +f8456da0-a9f1-42d8-ab76-3d3a5e6b2287.mirnaseq.isoforms.quantification.txt 4a10c499-7f11-49dc-b865-b6cbaf5b1df7 628fbd32-0757-4044-b29a-296379ee5096 +d5d04a49-4d50-4890-91ef-32ec23f24b8b.mirnaseq.mirnas.quantification.txt 9c439d71-50e3-48d2-82a6-4ff0b4ce284a c7cc9cb9-c739-4bdb-a987-6a8074855598 +b0795825-67f0-434f-9c43-1e16c5193370.mirnaseq.isoforms.quantification.txt a7364c7c-cc66-468d-8a6e-11cc58adf3d6 5132720a-88c1-41af-9c12-c446d475a393 +f16225c7-5770-43ce-a136-b485c86598cc.mirnaseq.isoforms.quantification.txt a7364c7c-cc66-468d-8a6e-11cc58adf3d6 bc47bd7f-93df-4d26-9fc6-68edb7b2936f +ee8e7cb7-88c3-4515-8357-a8ae3e648115.mirnaseq.mirnas.quantification.txt a7364c7c-cc66-468d-8a6e-11cc58adf3d6 8338b7f9-e8d7-47ad-935e-7901af0f1a1a +ee8e7cb7-88c3-4515-8357-a8ae3e648115.mirnaseq.isoforms.quantification.txt a7364c7c-cc66-468d-8a6e-11cc58adf3d6 e115ec61-3a86-47b2-b8aa-f29d31031a3e +4f065202-1678-436b-9236-6bd407b3b12d.mirnaseq.isoforms.quantification.txt a7364c7c-cc66-468d-8a6e-11cc58adf3d6 f145e0d7-c567-488c-864f-c52536489f79 +110de312-1030-4a49-bfe3-30908efc35d0.mirnaseq.isoforms.quantification.txt d2d0522a-bad8-4282-b67d-bed52e7efab4 53fe998f-200d-4f18-be9f-1481db2189ed +fc62cd94-42d1-40ff-94b9-4b838122d26e.mirnaseq.isoforms.quantification.txt ca7bc7fd-6ce1-4d63-b935-804ff4d3abc2 3da5cb80-f24d-49e2-b8d6-ef461559fd2b +c1574073-aa1e-4a6f-89d5-567031a63940.mirnaseq.mirnas.quantification.txt d341953c-f4a1-4c6b-ac1a-50f1b956c696 dba14e53-5cbc-450b-aae7-1f51c14e1589 +d17b7165-5159-4c16-9d91-cbf705aa2f2a.mirnaseq.mirnas.quantification.txt d341953c-f4a1-4c6b-ac1a-50f1b956c696 d93fbcbe-0d45-47e6-9950-69869f8d4226 +d4a02d52-9fd2-40f3-ad2b-b7774fc90526.mirnaseq.mirnas.quantification.txt 5538445e-03c2-4466-a09a-83d5a527b26e 769a368c-797b-4eda-8a1d-1d478ed43547 +e6717ec1-5854-4b60-9483-3bd64d43b2fe.mirnaseq.mirnas.quantification.txt 05cbd57f-0c12-486e-8ced-edb9ed3cbbb0 b85596d2-efb8-4b29-a8bc-27c06f607de4 +66510711-8197-481d-b071-89dc4a3d8f35.mirnaseq.mirnas.quantification.txt 1bfa0189-6e43-4d76-928c-026673ec775e a02963f1-61f9-4c3d-bc09-343b29145d5f +7050665c-3623-4d2c-ba18-6659eb94472b.mirnaseq.mirnas.quantification.txt 05cbd57f-0c12-486e-8ced-edb9ed3cbbb0 e7ddbc2c-df6a-46ff-80e5-33ff8ccc3dae +7050665c-3623-4d2c-ba18-6659eb94472b.mirnaseq.isoforms.quantification.txt 05cbd57f-0c12-486e-8ced-edb9ed3cbbb0 3f67c103-fbb2-4bab-97f2-ab60da1751d3 +4fbb2e62-35bd-4a09-8d7b-9b25ba1de902.mirnaseq.mirnas.quantification.txt 0bcca666-3c62-4eb9-a47c-93bb7c020ad6 0f02b60d-fafc-4fac-b6c4-2a531a8316b4 +66510711-8197-481d-b071-89dc4a3d8f35.mirnaseq.isoforms.quantification.txt 1bfa0189-6e43-4d76-928c-026673ec775e b99f73d1-353f-4338-857c-75cab69c2a37 +afa25f5f-eb4d-4f0e-ae49-320b7ce604df.mirnaseq.mirnas.quantification.txt 5fd76dd8-87e1-422d-bac2-63e447ca3ba4 2f68765d-2ac7-4496-bba7-c0912a3741b4 +d4a02d52-9fd2-40f3-ad2b-b7774fc90526.mirnaseq.isoforms.quantification.txt 5538445e-03c2-4466-a09a-83d5a527b26e 8017b394-4fc0-4009-8f58-30d83e148dcf +e6717ec1-5854-4b60-9483-3bd64d43b2fe.mirnaseq.isoforms.quantification.txt 05cbd57f-0c12-486e-8ced-edb9ed3cbbb0 1d1ec4e9-6e9e-491f-aa35-98e5ccf511d9 +4fbb2e62-35bd-4a09-8d7b-9b25ba1de902.mirnaseq.isoforms.quantification.txt 0bcca666-3c62-4eb9-a47c-93bb7c020ad6 f3af7d05-7eab-4f87-a1cb-7827ea07d9bf +9fb875c6-d3a9-4d36-b84a-a4bd8cc7eb5c.mirnaseq.isoforms.quantification.txt 1bfa0189-6e43-4d76-928c-026673ec775e 13a8689f-f04b-4034-9396-403f07a54382 +9fb875c6-d3a9-4d36-b84a-a4bd8cc7eb5c.mirnaseq.mirnas.quantification.txt 1bfa0189-6e43-4d76-928c-026673ec775e e12972c9-7b9e-4a04-8e8c-dcff1eac1503 +afa25f5f-eb4d-4f0e-ae49-320b7ce604df.mirnaseq.isoforms.quantification.txt 5fd76dd8-87e1-422d-bac2-63e447ca3ba4 f30bc32d-7f7b-47e4-86ac-541755e23809